ETH Price: $3,211.81 (-3.16%)
 

Overview

Max Total Supply

888,888,888 WING

Holders

3

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Wings

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 11 : Wings.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./IUniRouter.sol";

/*
I see you nerd! ⌐⊙_⊙
*/

contract Wings is ERC20, Ownable {
    using Address for address payable;
    using SafeERC20 for IERC20;

    IUniRouter public immutable uniRouter;
    address public immutable uniPair;
    address public marketingAddress;
    address public repurchaseAddress;
    address public nftHolderAddress;
    address public lockedTokenAddress;

    uint256 public marketingBps = 5000;
    uint256 public repurchaseBps = 2500;
    uint256 public nftHolderBps = 1500;

    mapping(address => bool) public freelos;
    mapping(address => bool) public liberatos;

    uint256 public sellPercent = 0;
    uint256 public buyPercent = 0;

    uint256 public maxTx;
    uint256 public maxWallet;

    bool public openTrading = false;

    // Errors
    error UnauthorizedCaller();
    error TradingNotOpen();
    error LimitExceeded();

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _totalSupply,
        address _router
    ) ERC20(_name, _symbol) Ownable(msg.sender) {
        uniRouter = IUniRouter(_router);
        uniPair = IUniFactory(uniRouter.factory()).createPair(
            address(this),
            uniRouter.WETH()
        );

        marketingAddress = 0x91218f351422c03d5202d81C0f86676371deA121;
        repurchaseAddress = 0x906DEB29011F948baD4daa32a34878E8635F5718;
        nftHolderAddress = 0x6effFb1f8605d943B19dBF821cc3Db89F3478e37;
        lockedTokenAddress = 0x511E55d7D71e1412760d7De9f2fde25B1f2deDD8;

        freelos[msg.sender] = true;
        freelos[address(this)] = true;
        freelos[marketingAddress] = true;
        freelos[repurchaseAddress] = true;
        freelos[nftHolderAddress] = true;
        freelos[lockedTokenAddress] = true;
        liberatos[msg.sender] = true;
        liberatos[uniPair] = true;
        liberatos[marketingAddress] = true;
        liberatos[repurchaseAddress] = true;
        liberatos[nftHolderAddress] = true;
        liberatos[lockedTokenAddress] = true;
        liberatos[address(this)] = true;
        liberatos[address(0)] = true;

        maxTx = _totalSupply / 20;
        maxWallet = _totalSupply / 20;

        _mint(msg.sender, _totalSupply);
    }

    function setWallets(address _marketingWallet, address _repurchaseWallet, address _nftHolderWallet, address _lockedTokenWallet) external onlyOwner {
        marketingAddress = _marketingWallet;
        repurchaseAddress = _repurchaseWallet;
        nftHolderAddress = _nftHolderWallet;
        lockedTokenAddress = _lockedTokenWallet;

        freelos[marketingAddress] = true;
        freelos[repurchaseAddress] = true;
        freelos[nftHolderAddress] = true;
        freelos[lockedTokenAddress] = true;

        liberatos[marketingAddress] = true;
        liberatos[repurchaseAddress] = true;
        liberatos[nftHolderAddress] = true;
        liberatos[lockedTokenAddress] = true;
    }

    function setShare(uint256 _marketingBps, uint256 _repurchaseBps, uint256 _nftHolderBps) external onlyOwner {
        require(_marketingBps + _repurchaseBps + _nftHolderBps <= 10000, "Invalid share");
        marketingBps = _marketingBps;
        repurchaseBps = _repurchaseBps;
        nftHolderBps = _nftHolderBps;
    }

    function setLimits(uint256 _maxTx, uint256 _maxWallet) external onlyOwner {
        maxTx = _maxTx;
        maxWallet = _maxWallet;
    }

    function removeLimits() external onlyOwner {
        maxTx = type(uint256).max;
        maxWallet = type(uint256).max;
    }

    function setConfig(
        uint256 _buyPercent,
        uint256 _sellPercent
    ) external onlyOwner {
        buyPercent = _buyPercent;
        sellPercent = _sellPercent;
    }

    function clearStuckToken(address _token, uint256 _numTokens) external {
        if (_numTokens == 0) {
            _numTokens = IERC20(_token).balanceOf(address(this));
        }

        uint256 marketingShare = (_numTokens * marketingBps) / 10000;
        uint256 repurchaseShare = (_numTokens * repurchaseBps) / 10000;
        uint256 nftHolderShare = (_numTokens * nftHolderBps) / 10000;
        uint256 lockedTokenShare = _numTokens - marketingShare - repurchaseShare - nftHolderShare;

        IERC20(_token).safeTransfer(marketingAddress, marketingShare);
        IERC20(_token).safeTransfer(repurchaseAddress, repurchaseShare);
        IERC20(_token).safeTransfer(nftHolderAddress, nftHolderShare);
        IERC20(_token).safeTransfer(lockedTokenAddress, lockedTokenShare);
    }

    function startTrading() external onlyOwner {
        openTrading = true;
    }

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        if (!openTrading && from != owner() && to != owner()) {
            revert TradingNotOpen();
        }

        if (from != owner() && !liberatos[to]) {
            uint256 heldTokens = balanceOf(to);
            if ((heldTokens + value) > maxWallet) {
                revert LimitExceeded();
            }
        }

        if (value > maxTx && !liberatos[from]) {
            revert LimitExceeded();
        }

        if (
            !freelos[from] && !freelos[to] && (from == uniPair || to == uniPair)
        ) {
            uint256 antibotAmt = from == uniPair
                ? ((value * buyPercent) / 100)
                : ((value * sellPercent) / 100);
            super._update(from, address(this), antibotAmt);
            super._update(from, to, value - antibotAmt);
        } else {
            super._update(from, to, value);
        }
    }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, value);
    }

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

File 6 of 11 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

File 8 of 11 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}

File 9 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

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

pragma solidity ^0.8.20;

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

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

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

File 11 of 11 : IUniRouter.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;

interface IUniRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"LimitExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"TradingNotOpen","type":"error"},{"inputs":[],"name":"UnauthorizedCaller","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"clearStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freelos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liberatos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockedTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"nftHolderAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftHolderBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"repurchaseAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"repurchaseBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyPercent","type":"uint256"},{"internalType":"uint256","name":"_sellPercent","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingBps","type":"uint256"},{"internalType":"uint256","name":"_repurchaseBps","type":"uint256"},{"internalType":"uint256","name":"_nftHolderBps","type":"uint256"}],"name":"setShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_repurchaseWallet","type":"address"},{"internalType":"address","name":"_nftHolderWallet","type":"address"},{"internalType":"address","name":"_lockedTokenWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniRouter","outputs":[{"internalType":"contract IUniRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c0604052611388600a556109c4600b556105dc600c556000600f5560006010556000601360006101000a81548160ff0219169083151502179055503480156200004857600080fd5b50604051620044cd380380620044cd83398181016040528101906200006e9190620014ea565b3384848160039081620000829190620017db565b508060049081620000949190620017db565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200010c5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001039190620018d3565b60405180910390fd5b6200011d8162000a6a60201b60201c565b508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c69190620018f0565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000230573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002569190620018f0565b6040518363ffffffff1660e01b81526004016200027592919062001922565b6020604051808303816000875af115801562000295573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bb9190620018f0565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250507391218f351422c03d5202d81c0f86676371dea121600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073906deb29011f948bad4daa32a34878e8635f5718600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736efffb1f8605d943b19dbf821cc3db89f3478e37600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073511e55d7d71e1412760d7de9f2fde25b1f2dedd8600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060148262000a339190620019ad565b60118190555060148262000a489190620019ad565b60128190555062000a60338362000b3060201b60201c565b5050505062001b11565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ba55760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000b9c9190620018d3565b60405180910390fd5b62000bb96000838362000bbd60201b60201c565b5050565b601360009054906101000a900460ff1615801562000c16575062000be66200101560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801562000c5e575062000c2e6200101560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562000c96576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000ca66200101560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562000d2c5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000d9357600062000d45836200103f60201b60201c565b9050601254828262000d589190620019e5565b111562000d91576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6011548111801562000def5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000e27576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801562000ecc5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801562000f3f575060a05173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148062000f3e575060a05173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b1562000ffc57600060a05173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161462000fa1576064600f548362000f8f919062001a20565b62000f9b9190620019ad565b62000fc0565b60646010548362000fb3919062001a20565b62000fbf9190620019ad565b5b905062000fd58430836200108760201b60201c565b62000ff58484838562000fe9919062001a6b565b6200108760201b60201c565b5062001010565b6200100f8383836200108760201b60201c565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620010dd578060026000828254620010d09190620019e5565b92505081905550620011b3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200116c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620011639392919062001ab7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620011fe57806002600082825403925050819055506200124b565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620012aa919062001af4565b60405180910390a3505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200132082620012d5565b810181811067ffffffffffffffff82111715620013425762001341620012e6565b5b80604052505050565b600062001357620012b7565b905062001365828262001315565b919050565b600067ffffffffffffffff821115620013885762001387620012e6565b5b6200139382620012d5565b9050602081019050919050565b60005b83811015620013c0578082015181840152602081019050620013a3565b60008484015250505050565b6000620013e3620013dd846200136a565b6200134b565b905082815260208101848484011115620014025762001401620012d0565b5b6200140f848285620013a0565b509392505050565b600082601f8301126200142f576200142e620012cb565b5b815162001441848260208601620013cc565b91505092915050565b6000819050919050565b6200145f816200144a565b81146200146b57600080fd5b50565b6000815190506200147f8162001454565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620014b28262001485565b9050919050565b620014c481620014a5565b8114620014d057600080fd5b50565b600081519050620014e481620014b9565b92915050565b60008060008060808587031215620015075762001506620012c1565b5b600085015167ffffffffffffffff811115620015285762001527620012c6565b5b620015368782880162001417565b945050602085015167ffffffffffffffff8111156200155a5762001559620012c6565b5b620015688782880162001417565b93505060406200157b878288016200146e565b92505060606200158e87828801620014d3565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620015ed57607f821691505b602082108103620016035762001602620015a5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200166d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200162e565b6200167986836200162e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620016bc620016b6620016b0846200144a565b62001691565b6200144a565b9050919050565b6000819050919050565b620016d8836200169b565b620016f0620016e782620016c3565b8484546200163b565b825550505050565b600090565b62001707620016f8565b62001714818484620016cd565b505050565b5b818110156200173c5762001730600082620016fd565b6001810190506200171a565b5050565b601f8211156200178b57620017558162001609565b62001760846200161e565b8101602085101562001770578190505b620017886200177f856200161e565b83018262001719565b50505b505050565b600082821c905092915050565b6000620017b06000198460080262001790565b1980831691505092915050565b6000620017cb83836200179d565b9150826002028217905092915050565b620017e6826200159a565b67ffffffffffffffff811115620018025762001801620012e6565b5b6200180e8254620015d4565b6200181b82828562001740565b600060209050601f8311600181146200185357600084156200183e578287015190505b6200184a8582620017bd565b865550620018ba565b601f198416620018638662001609565b60005b828110156200188d5784890151825560018201915060208501945060208101905062001866565b86831015620018ad5784890151620018a9601f8916826200179d565b8355505b6001600288020188555050505b505050505050565b620018cd81620014a5565b82525050565b6000602082019050620018ea6000830184620018c2565b92915050565b600060208284031215620019095762001908620012c1565b5b60006200191984828501620014d3565b91505092915050565b6000604082019050620019396000830185620018c2565b620019486020830184620018c2565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620019ba826200144a565b9150620019c7836200144a565b925082620019da57620019d96200194f565b5b828204905092915050565b6000620019f2826200144a565b9150620019ff836200144a565b925082820190508082111562001a1a5762001a196200197e565b5b92915050565b600062001a2d826200144a565b915062001a3a836200144a565b925082820262001a4a816200144a565b9150828204841483151762001a645762001a636200197e565b5b5092915050565b600062001a78826200144a565b915062001a85836200144a565b925082820390508181111562001aa05762001a9f6200197e565b5b92915050565b62001ab1816200144a565b82525050565b600060608201905062001ace6000830186620018c2565b62001add602083018562001aa6565b62001aec604083018462001aa6565b949350505050565b600060208201905062001b0b600083018462001aa6565b92915050565b60805160a05161298162001b4c6000396000818161084101528181611b8801528181611bdd0152611c350152600061113301526129816000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c8063751039fc11610125578063a9059cbb116100ad578063d36d04971161007c578063d36d0497146105c0578063dd62ed3e146105de578063f2fde38b1461060e578063f8b45b051461062a578063fe85ff661461064857610211565b8063a9059cbb14610538578063b050909e14610568578063c4590d3f14610586578063c9567bf9146105a257610211565b806394c1fc30116100f457806394c1fc30146104a257806395d89b41146104c0578063a0e47bf6146104de578063a5ece941146104fc578063a666ff3c1461051a57610211565b8063751039fc1461044257806377b54bad1461044c57806383672f3e146104685780638da5cb5b1461048457610211565b8063293230b8116101a85780634f1455c9116101775780634f1455c9146103ae57806366e3540a146103cc57806370a08231146103ea578063715018a61461041a5780637437681e1461042457610211565b8063293230b814610338578063313ce5671461034257806332972e4614610360578063471131ac1461037e57610211565b806318160ddd116101e457806318160ddd146102b25780631e34c585146102d05780631fad3b39146102ec57806323b872dd1461030857610211565b806306fdde0314610216578063095ea7b31461023457806312fb55501461026457806317ab952914610294575b600080fd5b61021e610666565b60405161022b91906121fd565b60405180910390f35b61024e600480360381019061024991906122b8565b6106f8565b60405161025b9190612313565b60405180910390f35b61027e6004803603810190610279919061232e565b61071b565b60405161028b9190612313565b60405180910390f35b61029c61073b565b6040516102a9919061236a565b60405180910390f35b6102ba610741565b6040516102c7919061236a565b60405180910390f35b6102ea60048036038101906102e59190612385565b61074b565b005b610306600480360381019061030191906123c5565b610765565b005b610322600480360381019061031d9190612418565b6107e2565b60405161032f9190612313565b60405180910390f35b610340610811565b005b61034a610836565b6040516103579190612487565b60405180910390f35b61036861083f565b60405161037591906124b1565b60405180910390f35b6103986004803603810190610393919061232e565b610863565b6040516103a59190612313565b60405180910390f35b6103b6610883565b6040516103c3919061236a565b60405180910390f35b6103d4610889565b6040516103e1919061236a565b60405180910390f35b61040460048036038101906103ff919061232e565b61088f565b604051610411919061236a565b60405180910390f35b6104226108d7565b005b61042c6108eb565b604051610439919061236a565b60405180910390f35b61044a6108f1565b005b610466600480360381019061046191906122b8565b610949565b005b610482600480360381019061047d91906124cc565b610b8d565b005b61048c61106f565b60405161049991906124b1565b60405180910390f35b6104aa611099565b6040516104b7919061236a565b60405180910390f35b6104c861109f565b6040516104d591906121fd565b60405180910390f35b6104e6611131565b6040516104f39190612592565b60405180910390f35b610504611155565b60405161051191906124b1565b60405180910390f35b61052261117b565b60405161052f91906124b1565b60405180910390f35b610552600480360381019061054d91906122b8565b6111a1565b60405161055f9190612313565b60405180910390f35b6105706111c4565b60405161057d91906124b1565b60405180910390f35b6105a0600480360381019061059b9190612385565b6111ea565b005b6105aa611204565b6040516105b79190612313565b60405180910390f35b6105c8611217565b6040516105d5919061236a565b60405180910390f35b6105f860048036038101906105f391906125ad565b61121d565b604051610605919061236a565b60405180910390f35b6106286004803603810190610623919061232e565b6112a4565b005b61063261132a565b60405161063f919061236a565b60405180910390f35b610650611330565b60405161065d91906124b1565b60405180910390f35b6060600380546106759061261c565b80601f01602080910402602001604051908101604052809291908181526020018280546106a19061261c565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b5050505050905090565b600080610703611356565b905061071081858561135e565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600b5481565b6000600254905090565b610753611370565b8160108190555080600f819055505050565b61076d611370565b61271081838561077d919061267c565b610787919061267c565b11156107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf906126fc565b60405180910390fd5b82600a8190555081600b8190555080600c81905550505050565b6000806107ed611356565b90506107fa8582856113f7565b61080585858561148b565b60019150509392505050565b610819611370565b6001601360006101000a81548160ff021916908315150217905550565b60006012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d6020528060005260406000206000915054906101000a900460ff1681565b60105481565b600a5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108df611370565b6108e9600061157f565b565b60115481565b6108f9611370565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6011819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff601281905550565b600081036109ce578173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161098a91906124b1565b602060405180830381865afa1580156109a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cb9190612731565b90505b6000612710600a54836109e1919061275e565b6109eb91906127cf565b90506000612710600b5484610a00919061275e565b610a0a91906127cf565b90506000612710600c5485610a1f919061275e565b610a2991906127cf565b9050600081838587610a3b9190612800565b610a459190612800565b610a4f9190612800565b9050610a9e600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16858873ffffffffffffffffffffffffffffffffffffffff166116459092919063ffffffff16565b610aeb600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16848873ffffffffffffffffffffffffffffffffffffffff166116459092919063ffffffff16565b610b38600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838873ffffffffffffffffffffffffffffffffffffffff166116459092919063ffffffff16565b610b85600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828873ffffffffffffffffffffffffffffffffffffffff166116459092919063ffffffff16565b505050505050565b610b95611370565b83600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b6060600480546110ae9061261c565b80601f01602080910402602001604051908101604052809291908181526020018280546110da9061261c565b80156111275780601f106110fc57610100808354040283529160200191611127565b820191906000526020600020905b81548152906001019060200180831161110a57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806111ac611356565b90506111b981858561148b565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111f2611370565b81601181905550806012819055505050565b601360009054906101000a900460ff1681565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112ac611370565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361131e5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161131591906124b1565b60405180910390fd5b6113278161157f565b50565b60125481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b61136b83838360016116c4565b505050565b611378611356565b73ffffffffffffffffffffffffffffffffffffffff1661139661106f565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576113b9611356565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016113ec91906124b1565b60405180910390fd5b565b6000611403848461121d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114855781811015611475578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161146c93929190612834565b60405180910390fd5b611484848484840360006116c4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114fd5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016114f491906124b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361156f5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161156691906124b1565b60405180910390fd5b61157a83838361189b565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116bf838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb858560405160240161167892919061286b565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611cfa565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117365760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161172d91906124b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117a85760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161179f91906124b1565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611895578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161188c919061236a565b60405180910390a35b50505050565b601360009054906101000a900460ff161580156118eb57506118bb61106f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561192a57506118fa61106f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611961576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61196961106f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156119ee5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a495760006119fe8361088f565b90506012548282611a0f919061267c565b1115611a47576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b60115481118015611aa45750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611adb576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b7f5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c2c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611c2b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15611ce95760007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611ca5576064600f5483611c96919061275e565b611ca091906127cf565b611cc0565b606460105483611cb5919061275e565b611cbf91906127cf565b5b9050611ccd843083611d91565b611ce384848385611cde9190612800565b611d91565b50611cf5565b611cf4838383611d91565b5b505050565b6000611d25828473ffffffffffffffffffffffffffffffffffffffff16611fb690919063ffffffff16565b90506000815114158015611d4a575080806020019051810190611d4891906128c0565b155b15611d8c57826040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401611d8391906124b1565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611de3578060026000828254611dd7919061267c565b92505081905550611eb6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e6f578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611e6693929190612834565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611eff5780600260008282540392505081905550611f4c565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611fa9919061236a565b60405180910390a3505050565b6060611fc483836000611fcc565b905092915050565b60608147101561201357306040517fcd78605900000000000000000000000000000000000000000000000000000000815260040161200a91906124b1565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff16848660405161203c9190612934565b60006040518083038185875af1925050503d8060008114612079576040519150601f19603f3d011682016040523d82523d6000602084013e61207e565b606091505b509150915061208e868383612099565b925050509392505050565b6060826120ae576120a982612128565b612120565b600082511480156120d6575060008473ffffffffffffffffffffffffffffffffffffffff163b145b1561211857836040517f9996b31500000000000000000000000000000000000000000000000000000000815260040161210f91906124b1565b60405180910390fd5b819050612121565b5b9392505050565b60008151111561213b5780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081519050919050565b600082825260208201905092915050565b60005b838110156121a757808201518184015260208101905061218c565b60008484015250505050565b6000601f19601f8301169050919050565b60006121cf8261216d565b6121d98185612178565b93506121e9818560208601612189565b6121f2816121b3565b840191505092915050565b6000602082019050818103600083015261221781846121c4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061224f82612224565b9050919050565b61225f81612244565b811461226a57600080fd5b50565b60008135905061227c81612256565b92915050565b6000819050919050565b61229581612282565b81146122a057600080fd5b50565b6000813590506122b28161228c565b92915050565b600080604083850312156122cf576122ce61221f565b5b60006122dd8582860161226d565b92505060206122ee858286016122a3565b9150509250929050565b60008115159050919050565b61230d816122f8565b82525050565b60006020820190506123286000830184612304565b92915050565b6000602082840312156123445761234361221f565b5b60006123528482850161226d565b91505092915050565b61236481612282565b82525050565b600060208201905061237f600083018461235b565b92915050565b6000806040838503121561239c5761239b61221f565b5b60006123aa858286016122a3565b92505060206123bb858286016122a3565b9150509250929050565b6000806000606084860312156123de576123dd61221f565b5b60006123ec868287016122a3565b93505060206123fd868287016122a3565b925050604061240e868287016122a3565b9150509250925092565b6000806000606084860312156124315761243061221f565b5b600061243f8682870161226d565b93505060206124508682870161226d565b9250506040612461868287016122a3565b9150509250925092565b600060ff82169050919050565b6124818161246b565b82525050565b600060208201905061249c6000830184612478565b92915050565b6124ab81612244565b82525050565b60006020820190506124c660008301846124a2565b92915050565b600080600080608085870312156124e6576124e561221f565b5b60006124f48782880161226d565b94505060206125058782880161226d565b93505060406125168782880161226d565b92505060606125278782880161226d565b91505092959194509250565b6000819050919050565b600061255861255361254e84612224565b612533565b612224565b9050919050565b600061256a8261253d565b9050919050565b600061257c8261255f565b9050919050565b61258c81612571565b82525050565b60006020820190506125a76000830184612583565b92915050565b600080604083850312156125c4576125c361221f565b5b60006125d28582860161226d565b92505060206125e38582860161226d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061263457607f821691505b602082108103612647576126466125ed565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061268782612282565b915061269283612282565b92508282019050808211156126aa576126a961264d565b5b92915050565b7f496e76616c696420736861726500000000000000000000000000000000000000600082015250565b60006126e6600d83612178565b91506126f1826126b0565b602082019050919050565b60006020820190508181036000830152612715816126d9565b9050919050565b60008151905061272b8161228c565b92915050565b6000602082840312156127475761274661221f565b5b60006127558482850161271c565b91505092915050565b600061276982612282565b915061277483612282565b925082820261278281612282565b915082820484148315176127995761279861264d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006127da82612282565b91506127e583612282565b9250826127f5576127f46127a0565b5b828204905092915050565b600061280b82612282565b915061281683612282565b925082820390508181111561282e5761282d61264d565b5b92915050565b600060608201905061284960008301866124a2565b612856602083018561235b565b612863604083018461235b565b949350505050565b600060408201905061288060008301856124a2565b61288d602083018461235b565b9392505050565b61289d816122f8565b81146128a857600080fd5b50565b6000815190506128ba81612894565b92915050565b6000602082840312156128d6576128d561221f565b5b60006128e4848285016128ab565b91505092915050565b600081519050919050565b600081905092915050565b600061290e826128ed565b61291881856128f8565b9350612928818560208601612189565b80840191505092915050565b60006129408284612903565b91508190509291505056fea264697066735822122080a9ef8098755fa5e1d7390f7be35c4c2cac1e8e1fd86d2c55b1475c56e97c8064736f6c63430008180033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000002df458b2c635dcf55e000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000b5368696261202457696e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000457494e4700000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c8063751039fc11610125578063a9059cbb116100ad578063d36d04971161007c578063d36d0497146105c0578063dd62ed3e146105de578063f2fde38b1461060e578063f8b45b051461062a578063fe85ff661461064857610211565b8063a9059cbb14610538578063b050909e14610568578063c4590d3f14610586578063c9567bf9146105a257610211565b806394c1fc30116100f457806394c1fc30146104a257806395d89b41146104c0578063a0e47bf6146104de578063a5ece941146104fc578063a666ff3c1461051a57610211565b8063751039fc1461044257806377b54bad1461044c57806383672f3e146104685780638da5cb5b1461048457610211565b8063293230b8116101a85780634f1455c9116101775780634f1455c9146103ae57806366e3540a146103cc57806370a08231146103ea578063715018a61461041a5780637437681e1461042457610211565b8063293230b814610338578063313ce5671461034257806332972e4614610360578063471131ac1461037e57610211565b806318160ddd116101e457806318160ddd146102b25780631e34c585146102d05780631fad3b39146102ec57806323b872dd1461030857610211565b806306fdde0314610216578063095ea7b31461023457806312fb55501461026457806317ab952914610294575b600080fd5b61021e610666565b60405161022b91906121fd565b60405180910390f35b61024e600480360381019061024991906122b8565b6106f8565b60405161025b9190612313565b60405180910390f35b61027e6004803603810190610279919061232e565b61071b565b60405161028b9190612313565b60405180910390f35b61029c61073b565b6040516102a9919061236a565b60405180910390f35b6102ba610741565b6040516102c7919061236a565b60405180910390f35b6102ea60048036038101906102e59190612385565b61074b565b005b610306600480360381019061030191906123c5565b610765565b005b610322600480360381019061031d9190612418565b6107e2565b60405161032f9190612313565b60405180910390f35b610340610811565b005b61034a610836565b6040516103579190612487565b60405180910390f35b61036861083f565b60405161037591906124b1565b60405180910390f35b6103986004803603810190610393919061232e565b610863565b6040516103a59190612313565b60405180910390f35b6103b6610883565b6040516103c3919061236a565b60405180910390f35b6103d4610889565b6040516103e1919061236a565b60405180910390f35b61040460048036038101906103ff919061232e565b61088f565b604051610411919061236a565b60405180910390f35b6104226108d7565b005b61042c6108eb565b604051610439919061236a565b60405180910390f35b61044a6108f1565b005b610466600480360381019061046191906122b8565b610949565b005b610482600480360381019061047d91906124cc565b610b8d565b005b61048c61106f565b60405161049991906124b1565b60405180910390f35b6104aa611099565b6040516104b7919061236a565b60405180910390f35b6104c861109f565b6040516104d591906121fd565b60405180910390f35b6104e6611131565b6040516104f39190612592565b60405180910390f35b610504611155565b60405161051191906124b1565b60405180910390f35b61052261117b565b60405161052f91906124b1565b60405180910390f35b610552600480360381019061054d91906122b8565b6111a1565b60405161055f9190612313565b60405180910390f35b6105706111c4565b60405161057d91906124b1565b60405180910390f35b6105a0600480360381019061059b9190612385565b6111ea565b005b6105aa611204565b6040516105b79190612313565b60405180910390f35b6105c8611217565b6040516105d5919061236a565b60405180910390f35b6105f860048036038101906105f391906125ad565b61121d565b604051610605919061236a565b60405180910390f35b6106286004803603810190610623919061232e565b6112a4565b005b61063261132a565b60405161063f919061236a565b60405180910390f35b610650611330565b60405161065d91906124b1565b60405180910390f35b6060600380546106759061261c565b80601f01602080910402602001604051908101604052809291908181526020018280546106a19061261c565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b5050505050905090565b600080610703611356565b905061071081858561135e565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600b5481565b6000600254905090565b610753611370565b8160108190555080600f819055505050565b61076d611370565b61271081838561077d919061267c565b610787919061267c565b11156107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf906126fc565b60405180910390fd5b82600a8190555081600b8190555080600c81905550505050565b6000806107ed611356565b90506107fa8582856113f7565b61080585858561148b565b60019150509392505050565b610819611370565b6001601360006101000a81548160ff021916908315150217905550565b60006012905090565b7f000000000000000000000000187f6affab2aff5133b5fbd11ea0aeb26217ccc381565b600d6020528060005260406000206000915054906101000a900460ff1681565b60105481565b600a5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108df611370565b6108e9600061157f565b565b60115481565b6108f9611370565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6011819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff601281905550565b600081036109ce578173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161098a91906124b1565b602060405180830381865afa1580156109a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cb9190612731565b90505b6000612710600a54836109e1919061275e565b6109eb91906127cf565b90506000612710600b5484610a00919061275e565b610a0a91906127cf565b90506000612710600c5485610a1f919061275e565b610a2991906127cf565b9050600081838587610a3b9190612800565b610a459190612800565b610a4f9190612800565b9050610a9e600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16858873ffffffffffffffffffffffffffffffffffffffff166116459092919063ffffffff16565b610aeb600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16848873ffffffffffffffffffffffffffffffffffffffff166116459092919063ffffffff16565b610b38600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838873ffffffffffffffffffffffffffffffffffffffff166116459092919063ffffffff16565b610b85600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828873ffffffffffffffffffffffffffffffffffffffff166116459092919063ffffffff16565b505050505050565b610b95611370565b83600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b6060600480546110ae9061261c565b80601f01602080910402602001604051908101604052809291908181526020018280546110da9061261c565b80156111275780601f106110fc57610100808354040283529160200191611127565b820191906000526020600020905b81548152906001019060200180831161110a57829003601f168201915b5050505050905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806111ac611356565b90506111b981858561148b565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111f2611370565b81601181905550806012819055505050565b601360009054906101000a900460ff1681565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112ac611370565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361131e5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161131591906124b1565b60405180910390fd5b6113278161157f565b50565b60125481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b61136b83838360016116c4565b505050565b611378611356565b73ffffffffffffffffffffffffffffffffffffffff1661139661106f565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576113b9611356565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016113ec91906124b1565b60405180910390fd5b565b6000611403848461121d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114855781811015611475578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161146c93929190612834565b60405180910390fd5b611484848484840360006116c4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114fd5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016114f491906124b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361156f5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161156691906124b1565b60405180910390fd5b61157a83838361189b565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116bf838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb858560405160240161167892919061286b565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611cfa565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117365760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161172d91906124b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117a85760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161179f91906124b1565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611895578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161188c919061236a565b60405180910390a35b50505050565b601360009054906101000a900460ff161580156118eb57506118bb61106f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561192a57506118fa61106f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611961576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61196961106f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156119ee5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a495760006119fe8361088f565b90506012548282611a0f919061267c565b1115611a47576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b60115481118015611aa45750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611adb576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b7f5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c2c57507f000000000000000000000000187f6affab2aff5133b5fbd11ea0aeb26217ccc373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611c2b57507f000000000000000000000000187f6affab2aff5133b5fbd11ea0aeb26217ccc373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15611ce95760007f000000000000000000000000187f6affab2aff5133b5fbd11ea0aeb26217ccc373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611ca5576064600f5483611c96919061275e565b611ca091906127cf565b611cc0565b606460105483611cb5919061275e565b611cbf91906127cf565b5b9050611ccd843083611d91565b611ce384848385611cde9190612800565b611d91565b50611cf5565b611cf4838383611d91565b5b505050565b6000611d25828473ffffffffffffffffffffffffffffffffffffffff16611fb690919063ffffffff16565b90506000815114158015611d4a575080806020019051810190611d4891906128c0565b155b15611d8c57826040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401611d8391906124b1565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611de3578060026000828254611dd7919061267c565b92505081905550611eb6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e6f578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611e6693929190612834565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611eff5780600260008282540392505081905550611f4c565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611fa9919061236a565b60405180910390a3505050565b6060611fc483836000611fcc565b905092915050565b60608147101561201357306040517fcd78605900000000000000000000000000000000000000000000000000000000815260040161200a91906124b1565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff16848660405161203c9190612934565b60006040518083038185875af1925050503d8060008114612079576040519150601f19603f3d011682016040523d82523d6000602084013e61207e565b606091505b509150915061208e868383612099565b925050509392505050565b6060826120ae576120a982612128565b612120565b600082511480156120d6575060008473ffffffffffffffffffffffffffffffffffffffff163b145b1561211857836040517f9996b31500000000000000000000000000000000000000000000000000000000815260040161210f91906124b1565b60405180910390fd5b819050612121565b5b9392505050565b60008151111561213b5780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081519050919050565b600082825260208201905092915050565b60005b838110156121a757808201518184015260208101905061218c565b60008484015250505050565b6000601f19601f8301169050919050565b60006121cf8261216d565b6121d98185612178565b93506121e9818560208601612189565b6121f2816121b3565b840191505092915050565b6000602082019050818103600083015261221781846121c4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061224f82612224565b9050919050565b61225f81612244565b811461226a57600080fd5b50565b60008135905061227c81612256565b92915050565b6000819050919050565b61229581612282565b81146122a057600080fd5b50565b6000813590506122b28161228c565b92915050565b600080604083850312156122cf576122ce61221f565b5b60006122dd8582860161226d565b92505060206122ee858286016122a3565b9150509250929050565b60008115159050919050565b61230d816122f8565b82525050565b60006020820190506123286000830184612304565b92915050565b6000602082840312156123445761234361221f565b5b60006123528482850161226d565b91505092915050565b61236481612282565b82525050565b600060208201905061237f600083018461235b565b92915050565b6000806040838503121561239c5761239b61221f565b5b60006123aa858286016122a3565b92505060206123bb858286016122a3565b9150509250929050565b6000806000606084860312156123de576123dd61221f565b5b60006123ec868287016122a3565b93505060206123fd868287016122a3565b925050604061240e868287016122a3565b9150509250925092565b6000806000606084860312156124315761243061221f565b5b600061243f8682870161226d565b93505060206124508682870161226d565b9250506040612461868287016122a3565b9150509250925092565b600060ff82169050919050565b6124818161246b565b82525050565b600060208201905061249c6000830184612478565b92915050565b6124ab81612244565b82525050565b60006020820190506124c660008301846124a2565b92915050565b600080600080608085870312156124e6576124e561221f565b5b60006124f48782880161226d565b94505060206125058782880161226d565b93505060406125168782880161226d565b92505060606125278782880161226d565b91505092959194509250565b6000819050919050565b600061255861255361254e84612224565b612533565b612224565b9050919050565b600061256a8261253d565b9050919050565b600061257c8261255f565b9050919050565b61258c81612571565b82525050565b60006020820190506125a76000830184612583565b92915050565b600080604083850312156125c4576125c361221f565b5b60006125d28582860161226d565b92505060206125e38582860161226d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061263457607f821691505b602082108103612647576126466125ed565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061268782612282565b915061269283612282565b92508282019050808211156126aa576126a961264d565b5b92915050565b7f496e76616c696420736861726500000000000000000000000000000000000000600082015250565b60006126e6600d83612178565b91506126f1826126b0565b602082019050919050565b60006020820190508181036000830152612715816126d9565b9050919050565b60008151905061272b8161228c565b92915050565b6000602082840312156127475761274661221f565b5b60006127558482850161271c565b91505092915050565b600061276982612282565b915061277483612282565b925082820261278281612282565b915082820484148315176127995761279861264d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006127da82612282565b91506127e583612282565b9250826127f5576127f46127a0565b5b828204905092915050565b600061280b82612282565b915061281683612282565b925082820390508181111561282e5761282d61264d565b5b92915050565b600060608201905061284960008301866124a2565b612856602083018561235b565b612863604083018461235b565b949350505050565b600060408201905061288060008301856124a2565b61288d602083018461235b565b9392505050565b61289d816122f8565b81146128a857600080fd5b50565b6000815190506128ba81612894565b92915050565b6000602082840312156128d6576128d561221f565b5b60006128e4848285016128ab565b91505092915050565b600081519050919050565b600081905092915050565b600061290e826128ed565b61291881856128f8565b9350612928818560208601612189565b80840191505092915050565b60006129408284612903565b91508190509291505056fea264697066735822122080a9ef8098755fa5e1d7390f7be35c4c2cac1e8e1fd86d2c55b1475c56e97c8064736f6c63430008180033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000002df458b2c635dcf55e000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000b5368696261202457696e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000457494e4700000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Shiba $Wing
Arg [1] : _symbol (string): WING
Arg [2] : _totalSupply (uint256): 888888888000000000000000000
Arg [3] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000002df458b2c635dcf55e00000
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 5368696261202457696e67000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 57494e4700000000000000000000000000000000000000000000000000000000


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.