ETH Price: $3,158.69 (-8.99%)
Gas: 3 Gwei

Token

QUILNODES (QUILN)
 

Overview

Max Total Supply

100,000,000 QUILN

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,200,000 QUILN

Value
$0.00
0x1234567fE5adC6DFAd0EA285Df5b98eE8fa7355c
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:
QUILNODES

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, value);
    }

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

File 7 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 8 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 9 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 10 of 10 : QUILNODES.sol
// SPDX-License-Identifier: UNLICENSED

/**
 *
 * Website: https://quilnodes.com/
 * Dapp: https://app.quilnodes.com/
 * Twitter: https://x.com/QuilNodes/
 * Telegram: https://t.me/QuilNodes
 *
 */
pragma solidity ^0.8.23;

import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

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

contract QUILNODES is Ownable, ERC20 {
    IUniswapV2Router02 immutable router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public pair;

    bool private isOpenTrading;
    address public devNode;

    uint256 public constant _totalSupply = 100000000 ether;
    uint256 private _maxWalletSize = 1500000 ether;
    uint256 public swapTokenAt = 100000 ether;

    uint256 private _buy;
    uint256 private _sell;
    uint256 public _finalTax = 5;
    uint256 public counter = 20;

    bool public limit = true;
    mapping(address => bool) private _isExcludedFromFees;

    event SwapBack(uint256 amount);
    error MaxWalletAmountError();

    constructor() ERC20("QUILNODES", "QUILN") Ownable(_msgSender()) {
        devNode = address(0x1c15DF36Bd70772A75b10528DB85EAB6da7357eF);
        pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );
        _isExcludedFromFees[devNode] = true;
        _isExcludedFromFees[_msgSender()] = true;

        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(router)] = true;
        _isExcludedFromFees[address(0xdead)] = true;
        _mint(_msgSender(), _totalSupply);
        _approve(_msgSender(), address(router), type(uint256).max);
    }

    function openTrading() external onlyOwner {
        require(!isOpenTrading, "trading already opened");
        isOpenTrading = true;
    }

    function removeLimit() external onlyOwner {
        limit = false;
        _maxWalletSize = _totalSupply;
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (
            _isExcludedFromFees[from] ||
            _isExcludedFromFees[to] ||
            (to != pair && from != pair) ||
            _swapping
        ) {
            super._update(from, to, amount);
            return;
        }

        require(isOpenTrading, "Trading not open yet");

        if (limit) {
            if (to != pair && balanceOf(to) + amount > _maxWalletSize) {
                revert MaxWalletAmountError();
            }
        }

        if (to == pair && balanceOf(address(this)) >= swapTokenAt) {
            swapBack();
        }

        uint256 _fees;

        // BUY
        if (from == pair) {
            _buy++;
            _fees = (amount * (_buy > counter ? _finalTax : counter)) / 100;
        } else if (to == pair) {
            // SELL
            _sell++;
            _fees = (amount * (_sell > counter ? _finalTax : counter)) / 100;
        }

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

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

    bool private _swapping = false;
    modifier onSwap() {
        _swapping = true;
        _;
        _swapping = false;
    }

    function swapBack() private onSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        _approve(address(this), address(router), swapTokenAt);

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            swapTokenAt,
            0,
            path,
            address(this),
            block.timestamp
        );

        uint256 devTax = address(this).balance;
        (bool _success, ) = payable(devNode).call{value: devTax}("");
        require(_success, "Failed to send ETH to dev_address");

        emit SwapBack(swapTokenAt);
    }

    function getIsExcludedFromFees(
        address _address
    ) external view returns (bool) {
        return _isExcludedFromFees[_address];
    }

    function excludedFromFees(
        address _address,
        bool _value
    ) external onlyOwner {
        _isExcludedFromFees[_address] = _value;
    }

    function setSwapTokenAt(uint256 _swapTokenAt) external onlyOwner {
        swapTokenAt = _swapTokenAt;
    }

    receive() external payable {}

    function emergency() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"MaxWalletAmountError","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_finalTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devNode","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergency","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getIsExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapTokenAt","type":"uint256"}],"name":"setSwapTokenAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"},{"stateMutability":"payable","type":"receive"}]

60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506a013da329b633647180000060085569152d02c7e14af68000006009556005600c556014600d556001600e60006101000a81548160ff0219169083151502179055506000601060006101000a81548160ff021916908315150217905550348015620000b557600080fd5b506040518060400160405280600981526020017f5155494c4e4f44455300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5155494c4e000000000000000000000000000000000000000000000000000000815250620001326200064060201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001a75760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200019e919062001471565b60405180910390fd5b620001b8816200064860201b60201c565b508160049081620001ca919062001708565b508060059081620001dc919062001708565b505050731c15df36bd70772a75b10528db85eab6da7357ef600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000282573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a8919062001825565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000312573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000338919062001825565b6040518363ffffffff1660e01b81526004016200035792919062001857565b6020604051808303816000875af115801562000377573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039d919062001825565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60006200046d6200064060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005f6620005de6200064060201b60201c565b6a52b7d2dcc80cd2e40000006200070c60201b60201c565b6200063a6200060a6200064060201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200079960201b60201c565b62001d9e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007815760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000778919062001471565b60405180910390fd5b6200079560008383620007b360201b60201c565b5050565b620007ae838383600162000c8460201b60201c565b505050565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620008555750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806200090a5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620009095750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80620009225750601060009054906101000a900460ff165b1562000941576200093b83838362000e6460201b60201c565b62000c7f565b600660149054906101000a900460ff1662000993576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200098a90620018e5565b60405180910390fd5b600e60009054906101000a900460ff161562000a5f57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801562000a2657506008548162000a18846200109760201b60201c565b62000a24919062001936565b115b1562000a5e576040517fa16b39f900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801562000acf575060095462000acc306200109760201b60201c565b10155b1562000ae65762000ae5620010e060201b60201c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000b9457600a600081548092919062000b539062001971565b91905055506064600d54600a541162000b6f57600d5462000b73565b600c545b8362000b809190620019be565b62000b8c919062001a38565b905062000c3c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000c3b57600b600081548092919062000bff9062001971565b91905055506064600d54600b541162000c1b57600d5462000c1f565b600c545b8362000c2c9190620019be565b62000c38919062001a38565b90505b5b600081111562000c6a5762000c5984308362000e6460201b60201c565b808262000c67919062001a70565b91505b62000c7d84848462000e6460201b60201c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000cf95760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000cf0919062001471565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000d6e5760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000d65919062001471565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000e5e578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000e55919062001abc565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000eba57806003600082825462000ead919062001936565b9250508190555062000f92565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000f4a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000f419392919062001ad9565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000fdd57806003600082825403925050819055506200102b565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200108a919062001abc565b60405180910390a3505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6001601060006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156200111b576200111a62001499565b5b6040519080825280602002602001820160405280156200114a5781602001602082028036833780820191505090505b509050308160008151811062001165576200116462001b16565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620011ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001213919062001825565b816001815181106200122a576200122962001b16565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506200127b306080516009546200079960201b60201c565b60805173ffffffffffffffffffffffffffffffffffffffff1663791ac94760095460008430426040518663ffffffff1660e01b8152600401620012c395949392919062001c56565b600060405180830381600087803b158015620012de57600080fd5b505af1158015620012f3573d6000803e3d6000fd5b5050505060004790506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051620013469062001cef565b60006040518083038185875af1925050503d806000811462001385576040519150601f19603f3d011682016040523d82523d6000602084013e6200138a565b606091505b5050905080620013d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013c89062001d7c565b60405180910390fd5b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee0560095460405162001404919062001abc565b60405180910390a15050506000601060006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062001459826200142c565b9050919050565b6200146b816200144c565b82525050565b600060208201905062001488600083018462001460565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200151057607f821691505b602082108103620015265762001525620014c8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620015907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001551565b6200159c868362001551565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620015e9620015e3620015dd84620015b4565b620015be565b620015b4565b9050919050565b6000819050919050565b6200160583620015c8565b6200161d6200161482620015f0565b8484546200155e565b825550505050565b600090565b6200163462001625565b62001641818484620015fa565b505050565b5b8181101562001669576200165d6000826200162a565b60018101905062001647565b5050565b601f821115620016b85762001682816200152c565b6200168d8462001541565b810160208510156200169d578190505b620016b5620016ac8562001541565b83018262001646565b50505b505050565b600082821c905092915050565b6000620016dd60001984600802620016bd565b1980831691505092915050565b6000620016f88383620016ca565b9150826002028217905092915050565b62001713826200148e565b67ffffffffffffffff8111156200172f576200172e62001499565b5b6200173b8254620014f7565b620017488282856200166d565b600060209050601f8311600181146200178057600084156200176b578287015190505b620017778582620016ea565b865550620017e7565b601f19841662001790866200152c565b60005b82811015620017ba5784890151825560018201915060208501945060208101905062001793565b86831015620017da5784890151620017d6601f891682620016ca565b8355505b6001600288020188555050505b505050505050565b600080fd5b620017ff816200144c565b81146200180b57600080fd5b50565b6000815190506200181f81620017f4565b92915050565b6000602082840312156200183e576200183d620017ef565b5b60006200184e848285016200180e565b91505092915050565b60006040820190506200186e600083018562001460565b6200187d602083018462001460565b9392505050565b600082825260208201905092915050565b7f54726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b6000620018cd60148362001884565b9150620018da8262001895565b602082019050919050565b600060208201905081810360008301526200190081620018be565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200194382620015b4565b91506200195083620015b4565b92508282019050808211156200196b576200196a62001907565b5b92915050565b60006200197e82620015b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620019b357620019b262001907565b5b600182019050919050565b6000620019cb82620015b4565b9150620019d883620015b4565b9250828202620019e881620015b4565b9150828204841483151762001a025762001a0162001907565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062001a4582620015b4565b915062001a5283620015b4565b92508262001a655762001a6462001a09565b5b828204905092915050565b600062001a7d82620015b4565b915062001a8a83620015b4565b925082820390508181111562001aa55762001aa462001907565b5b92915050565b62001ab681620015b4565b82525050565b600060208201905062001ad3600083018462001aab565b92915050565b600060608201905062001af0600083018662001460565b62001aff602083018562001aab565b62001b0e604083018462001aab565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600062001b7062001b6a62001b648462001b45565b620015be565b620015b4565b9050919050565b62001b828162001b4f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62001bbf816200144c565b82525050565b600062001bd3838362001bb4565b60208301905092915050565b6000602082019050919050565b600062001bf98262001b88565b62001c05818562001b93565b935062001c128362001ba4565b8060005b8381101562001c4957815162001c2d888262001bc5565b975062001c3a8362001bdf565b92505060018101905062001c16565b5085935050505092915050565b600060a08201905062001c6d600083018862001aab565b62001c7c602083018762001b77565b818103604083015262001c90818662001bec565b905062001ca1606083018562001460565b62001cb0608083018462001aab565b9695505050505050565b600081905092915050565b50565b600062001cd760008362001cba565b915062001ce48262001cc5565b600082019050919050565b600062001cfc8262001cc8565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f206465765f61646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062001d6460218362001884565b915062001d718262001d06565b604082019050919050565b6000602082019050818103600083015262001d978162001d55565b9050919050565b6080516123d862001dc86000396000818161176e0152818161184f015261187801526123d86000f3fe60806040526004361061016a5760003560e01c806373bc5a36116100d1578063a4d66daf1161008a578063c9567bf911610064578063c9567bf91461052b578063caa6fea414610542578063dd62ed3e14610559578063f2fde38b1461059657610171565b8063a4d66daf14610498578063a8aa1b31146104c3578063a9059cbb146104ee57610171565b806373bc5a36146103865780637b16cea0146103b1578063864b3167146103ee5780638da5cb5b1461041757806394dbb8321461044257806395d89b411461046d57610171565b8063313ce56711610123578063313ce5671461029a5780633eaaf86b146102c557806361bc221a146102f0578063622565891461031b57806370a0823114610332578063715018a61461036f57610171565b806306fdde0314610176578063095ea7b3146101a157806310f50776146101de57806316697fc51461020957806318160ddd1461023257806323b872dd1461025d57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b6105bf565b6040516101989190611ac8565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611b83565b610651565b6040516101d59190611bde565b60405180910390f35b3480156101ea57600080fd5b506101f3610674565b6040516102009190611c08565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190611c4f565b61069a565b005b34801561023e57600080fd5b506102476106fd565b6040516102549190611c9e565b60405180910390f35b34801561026957600080fd5b50610284600480360381019061027f9190611cb9565b610707565b6040516102919190611bde565b60405180910390f35b3480156102a657600080fd5b506102af610736565b6040516102bc9190611d28565b60405180910390f35b3480156102d157600080fd5b506102da61073f565b6040516102e79190611c9e565b60405180910390f35b3480156102fc57600080fd5b5061030561074e565b6040516103129190611c9e565b60405180910390f35b34801561032757600080fd5b50610330610754565b005b34801561033e57600080fd5b5061035960048036038101906103549190611d43565b61078b565b6040516103669190611c9e565b60405180910390f35b34801561037b57600080fd5b506103846107d4565b005b34801561039257600080fd5b5061039b6107e8565b6040516103a89190611c9e565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190611d43565b6107ee565b6040516103e59190611bde565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190611d70565b610844565b005b34801561042357600080fd5b5061042c610856565b6040516104399190611c08565b60405180910390f35b34801561044e57600080fd5b5061045761087f565b6040516104649190611c9e565b60405180910390f35b34801561047957600080fd5b50610482610885565b60405161048f9190611ac8565b60405180910390f35b3480156104a457600080fd5b506104ad610917565b6040516104ba9190611bde565b60405180910390f35b3480156104cf57600080fd5b506104d861092a565b6040516104e59190611c08565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190611b83565b610950565b6040516105229190611bde565b60405180910390f35b34801561053757600080fd5b50610540610973565b005b34801561054e57600080fd5b506105576109e8565b005b34801561056557600080fd5b50610580600480360381019061057b9190611d9d565b610a40565b60405161058d9190611c9e565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190611d43565b610ac7565b005b6060600480546105ce90611e0c565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90611e0c565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b60008061065c610b4d565b9050610669818585610b55565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106a2610b67565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b600080610712610b4d565b905061071f858285610bee565b61072a858585610c82565b60019150509392505050565b60006012905090565b6a52b7d2dcc80cd2e400000081565b600d5481565b61075c610b67565b6000600e60006101000a81548160ff0219169083151502179055506a52b7d2dcc80cd2e4000000600881905550565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107dc610b67565b6107e66000610d76565b565b60095481565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61084c610b67565b8060098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b60606005805461089490611e0c565b80601f01602080910402602001604051908101604052809291908181526020018280546108c090611e0c565b801561090d5780601f106108e25761010080835404028352916020019161090d565b820191906000526020600020905b8154815290600101906020018083116108f057829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061095b610b4d565b9050610968818585610c82565b600191505092915050565b61097b610b67565b600660149054906101000a900460ff16156109cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c290611e89565b60405180910390fd5b6001600660146101000a81548160ff021916908315150217905550565b6109f0610b67565b6109f8610856565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a3d573d6000803e3d6000fd5b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610acf610b67565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b415760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b389190611c08565b60405180910390fd5b610b4a81610d76565b50565b600033905090565b610b628383836001610e3a565b505050565b610b6f610b4d565b73ffffffffffffffffffffffffffffffffffffffff16610b8d610856565b73ffffffffffffffffffffffffffffffffffffffff1614610bec57610bb0610b4d565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610be39190611c08565b60405180910390fd5b565b6000610bfa8484610a40565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c7c5781811015610c6c578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c6393929190611ea9565b60405180910390fd5b610c7b84848484036000610e3a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf45760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ceb9190611c08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d665760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d5d9190611c08565b60405180910390fd5b610d71838383611011565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610eac5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ea39190611c08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f1e5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f159190611c08565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561100b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110029190611c9e565b60405180910390a35b50505050565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110b25750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111655750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156111645750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b8061117c5750601060009054906101000a900460ff165b156111915761118c83838361148c565b611487565b600660149054906101000a900460ff166111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790611f2c565b60405180910390fd5b600e60009054906101000a900460ff161561129f57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561126757506008548161125b8461078b565b6112659190611f7b565b115b1561129e576040517fa16b39f900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561130657506009546113033061078b565b10155b15611314576113136116b4565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113b857600a600081548092919061137e90611faf565b91905055506064600d54600a541161139857600d5461139c565b600c545b836113a79190611ff7565b6113b19190612068565b9050611457565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361145657600b600081548092919061142090611faf565b91905055506064600d54600b541161143a57600d5461143e565b600c545b836114499190611ff7565b6114539190612068565b90505b5b600081111561147a5761146b84308361148c565b80826114779190612099565b91505b61148584848461148c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114de5780600360008282546114d29190611f7b565b925050819055506115b3565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561156b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161156293929190611ea9565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115fc578060036000828254039250508190555061164a565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116a79190611c9e565b60405180910390a3505050565b6001601060006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156116ec576116eb6120cd565b5b60405190808252806020026020018201604052801561171a5781602001602082028036833780820191505090505b5090503081600081518110611732576117316120fc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117fb9190612140565b8160018151811061180f5761180e6120fc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611876307f0000000000000000000000000000000000000000000000000000000000000000600954610b55565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94760095460008430426040518663ffffffff1660e01b81526004016118da959493929190612270565b600060405180830381600087803b1580156118f457600080fd5b505af1158015611908573d6000803e3d6000fd5b5050505060004790506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611959906122fb565b60006040518083038185875af1925050503d8060008114611996576040519150601f19603f3d011682016040523d82523d6000602084013e61199b565b606091505b50509050806119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690612382565b60405180910390fd5b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600954604051611a109190611c9e565b60405180910390a15050506000601060006101000a81548160ff021916908315150217905550565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a72578082015181840152602081019050611a57565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a9a82611a38565b611aa48185611a43565b9350611ab4818560208601611a54565b611abd81611a7e565b840191505092915050565b60006020820190508181036000830152611ae28184611a8f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b1a82611aef565b9050919050565b611b2a81611b0f565b8114611b3557600080fd5b50565b600081359050611b4781611b21565b92915050565b6000819050919050565b611b6081611b4d565b8114611b6b57600080fd5b50565b600081359050611b7d81611b57565b92915050565b60008060408385031215611b9a57611b99611aea565b5b6000611ba885828601611b38565b9250506020611bb985828601611b6e565b9150509250929050565b60008115159050919050565b611bd881611bc3565b82525050565b6000602082019050611bf36000830184611bcf565b92915050565b611c0281611b0f565b82525050565b6000602082019050611c1d6000830184611bf9565b92915050565b611c2c81611bc3565b8114611c3757600080fd5b50565b600081359050611c4981611c23565b92915050565b60008060408385031215611c6657611c65611aea565b5b6000611c7485828601611b38565b9250506020611c8585828601611c3a565b9150509250929050565b611c9881611b4d565b82525050565b6000602082019050611cb36000830184611c8f565b92915050565b600080600060608486031215611cd257611cd1611aea565b5b6000611ce086828701611b38565b9350506020611cf186828701611b38565b9250506040611d0286828701611b6e565b9150509250925092565b600060ff82169050919050565b611d2281611d0c565b82525050565b6000602082019050611d3d6000830184611d19565b92915050565b600060208284031215611d5957611d58611aea565b5b6000611d6784828501611b38565b91505092915050565b600060208284031215611d8657611d85611aea565b5b6000611d9484828501611b6e565b91505092915050565b60008060408385031215611db457611db3611aea565b5b6000611dc285828601611b38565b9250506020611dd385828601611b38565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e2457607f821691505b602082108103611e3757611e36611ddd565b5b50919050565b7f74726164696e6720616c7265616479206f70656e656400000000000000000000600082015250565b6000611e73601683611a43565b9150611e7e82611e3d565b602082019050919050565b60006020820190508181036000830152611ea281611e66565b9050919050565b6000606082019050611ebe6000830186611bf9565b611ecb6020830185611c8f565b611ed86040830184611c8f565b949350505050565b7f54726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b6000611f16601483611a43565b9150611f2182611ee0565b602082019050919050565b60006020820190508181036000830152611f4581611f09565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f8682611b4d565b9150611f9183611b4d565b9250828201905080821115611fa957611fa8611f4c565b5b92915050565b6000611fba82611b4d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611fec57611feb611f4c565b5b600182019050919050565b600061200282611b4d565b915061200d83611b4d565b925082820261201b81611b4d565b9150828204841483151761203257612031611f4c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061207382611b4d565b915061207e83611b4d565b92508261208e5761208d612039565b5b828204905092915050565b60006120a482611b4d565b91506120af83611b4d565b92508282039050818111156120c7576120c6611f4c565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061213a81611b21565b92915050565b60006020828403121561215657612155611aea565b5b60006121648482850161212b565b91505092915050565b6000819050919050565b6000819050919050565b600061219c6121976121928461216d565b612177565b611b4d565b9050919050565b6121ac81612181565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6121e781611b0f565b82525050565b60006121f983836121de565b60208301905092915050565b6000602082019050919050565b600061221d826121b2565b61222781856121bd565b9350612232836121ce565b8060005b8381101561226357815161224a88826121ed565b975061225583612205565b925050600181019050612236565b5085935050505092915050565b600060a0820190506122856000830188611c8f565b61229260208301876121a3565b81810360408301526122a48186612212565b90506122b36060830185611bf9565b6122c06080830184611c8f565b9695505050505050565b600081905092915050565b50565b60006122e56000836122ca565b91506122f0826122d5565b600082019050919050565b6000612306826122d8565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f206465765f61646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061236c602183611a43565b915061237782612310565b604082019050919050565b6000602082019050818103600083015261239b8161235f565b905091905056fea264697066735822122021c1c50bf6ca89a6004732d07c6a5e5a8547e9fe7b37b272283151be182b04d664736f6c63430008170033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806373bc5a36116100d1578063a4d66daf1161008a578063c9567bf911610064578063c9567bf91461052b578063caa6fea414610542578063dd62ed3e14610559578063f2fde38b1461059657610171565b8063a4d66daf14610498578063a8aa1b31146104c3578063a9059cbb146104ee57610171565b806373bc5a36146103865780637b16cea0146103b1578063864b3167146103ee5780638da5cb5b1461041757806394dbb8321461044257806395d89b411461046d57610171565b8063313ce56711610123578063313ce5671461029a5780633eaaf86b146102c557806361bc221a146102f0578063622565891461031b57806370a0823114610332578063715018a61461036f57610171565b806306fdde0314610176578063095ea7b3146101a157806310f50776146101de57806316697fc51461020957806318160ddd1461023257806323b872dd1461025d57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b6105bf565b6040516101989190611ac8565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611b83565b610651565b6040516101d59190611bde565b60405180910390f35b3480156101ea57600080fd5b506101f3610674565b6040516102009190611c08565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190611c4f565b61069a565b005b34801561023e57600080fd5b506102476106fd565b6040516102549190611c9e565b60405180910390f35b34801561026957600080fd5b50610284600480360381019061027f9190611cb9565b610707565b6040516102919190611bde565b60405180910390f35b3480156102a657600080fd5b506102af610736565b6040516102bc9190611d28565b60405180910390f35b3480156102d157600080fd5b506102da61073f565b6040516102e79190611c9e565b60405180910390f35b3480156102fc57600080fd5b5061030561074e565b6040516103129190611c9e565b60405180910390f35b34801561032757600080fd5b50610330610754565b005b34801561033e57600080fd5b5061035960048036038101906103549190611d43565b61078b565b6040516103669190611c9e565b60405180910390f35b34801561037b57600080fd5b506103846107d4565b005b34801561039257600080fd5b5061039b6107e8565b6040516103a89190611c9e565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190611d43565b6107ee565b6040516103e59190611bde565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190611d70565b610844565b005b34801561042357600080fd5b5061042c610856565b6040516104399190611c08565b60405180910390f35b34801561044e57600080fd5b5061045761087f565b6040516104649190611c9e565b60405180910390f35b34801561047957600080fd5b50610482610885565b60405161048f9190611ac8565b60405180910390f35b3480156104a457600080fd5b506104ad610917565b6040516104ba9190611bde565b60405180910390f35b3480156104cf57600080fd5b506104d861092a565b6040516104e59190611c08565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190611b83565b610950565b6040516105229190611bde565b60405180910390f35b34801561053757600080fd5b50610540610973565b005b34801561054e57600080fd5b506105576109e8565b005b34801561056557600080fd5b50610580600480360381019061057b9190611d9d565b610a40565b60405161058d9190611c9e565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190611d43565b610ac7565b005b6060600480546105ce90611e0c565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90611e0c565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b60008061065c610b4d565b9050610669818585610b55565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106a2610b67565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b600080610712610b4d565b905061071f858285610bee565b61072a858585610c82565b60019150509392505050565b60006012905090565b6a52b7d2dcc80cd2e400000081565b600d5481565b61075c610b67565b6000600e60006101000a81548160ff0219169083151502179055506a52b7d2dcc80cd2e4000000600881905550565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107dc610b67565b6107e66000610d76565b565b60095481565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61084c610b67565b8060098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b60606005805461089490611e0c565b80601f01602080910402602001604051908101604052809291908181526020018280546108c090611e0c565b801561090d5780601f106108e25761010080835404028352916020019161090d565b820191906000526020600020905b8154815290600101906020018083116108f057829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061095b610b4d565b9050610968818585610c82565b600191505092915050565b61097b610b67565b600660149054906101000a900460ff16156109cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c290611e89565b60405180910390fd5b6001600660146101000a81548160ff021916908315150217905550565b6109f0610b67565b6109f8610856565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a3d573d6000803e3d6000fd5b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610acf610b67565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b415760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b389190611c08565b60405180910390fd5b610b4a81610d76565b50565b600033905090565b610b628383836001610e3a565b505050565b610b6f610b4d565b73ffffffffffffffffffffffffffffffffffffffff16610b8d610856565b73ffffffffffffffffffffffffffffffffffffffff1614610bec57610bb0610b4d565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610be39190611c08565b60405180910390fd5b565b6000610bfa8484610a40565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c7c5781811015610c6c578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c6393929190611ea9565b60405180910390fd5b610c7b84848484036000610e3a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf45760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ceb9190611c08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d665760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d5d9190611c08565b60405180910390fd5b610d71838383611011565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610eac5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ea39190611c08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f1e5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f159190611c08565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561100b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110029190611c9e565b60405180910390a35b50505050565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110b25750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111655750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156111645750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b8061117c5750601060009054906101000a900460ff165b156111915761118c83838361148c565b611487565b600660149054906101000a900460ff166111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790611f2c565b60405180910390fd5b600e60009054906101000a900460ff161561129f57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561126757506008548161125b8461078b565b6112659190611f7b565b115b1561129e576040517fa16b39f900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561130657506009546113033061078b565b10155b15611314576113136116b4565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113b857600a600081548092919061137e90611faf565b91905055506064600d54600a541161139857600d5461139c565b600c545b836113a79190611ff7565b6113b19190612068565b9050611457565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361145657600b600081548092919061142090611faf565b91905055506064600d54600b541161143a57600d5461143e565b600c545b836114499190611ff7565b6114539190612068565b90505b5b600081111561147a5761146b84308361148c565b80826114779190612099565b91505b61148584848461148c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114de5780600360008282546114d29190611f7b565b925050819055506115b3565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561156b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161156293929190611ea9565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115fc578060036000828254039250508190555061164a565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116a79190611c9e565b60405180910390a3505050565b6001601060006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156116ec576116eb6120cd565b5b60405190808252806020026020018201604052801561171a5781602001602082028036833780820191505090505b5090503081600081518110611732576117316120fc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117fb9190612140565b8160018151811061180f5761180e6120fc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611876307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600954610b55565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94760095460008430426040518663ffffffff1660e01b81526004016118da959493929190612270565b600060405180830381600087803b1580156118f457600080fd5b505af1158015611908573d6000803e3d6000fd5b5050505060004790506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611959906122fb565b60006040518083038185875af1925050503d8060008114611996576040519150601f19603f3d011682016040523d82523d6000602084013e61199b565b606091505b50509050806119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690612382565b60405180910390fd5b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600954604051611a109190611c9e565b60405180910390a15050506000601060006101000a81548160ff021916908315150217905550565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a72578082015181840152602081019050611a57565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a9a82611a38565b611aa48185611a43565b9350611ab4818560208601611a54565b611abd81611a7e565b840191505092915050565b60006020820190508181036000830152611ae28184611a8f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b1a82611aef565b9050919050565b611b2a81611b0f565b8114611b3557600080fd5b50565b600081359050611b4781611b21565b92915050565b6000819050919050565b611b6081611b4d565b8114611b6b57600080fd5b50565b600081359050611b7d81611b57565b92915050565b60008060408385031215611b9a57611b99611aea565b5b6000611ba885828601611b38565b9250506020611bb985828601611b6e565b9150509250929050565b60008115159050919050565b611bd881611bc3565b82525050565b6000602082019050611bf36000830184611bcf565b92915050565b611c0281611b0f565b82525050565b6000602082019050611c1d6000830184611bf9565b92915050565b611c2c81611bc3565b8114611c3757600080fd5b50565b600081359050611c4981611c23565b92915050565b60008060408385031215611c6657611c65611aea565b5b6000611c7485828601611b38565b9250506020611c8585828601611c3a565b9150509250929050565b611c9881611b4d565b82525050565b6000602082019050611cb36000830184611c8f565b92915050565b600080600060608486031215611cd257611cd1611aea565b5b6000611ce086828701611b38565b9350506020611cf186828701611b38565b9250506040611d0286828701611b6e565b9150509250925092565b600060ff82169050919050565b611d2281611d0c565b82525050565b6000602082019050611d3d6000830184611d19565b92915050565b600060208284031215611d5957611d58611aea565b5b6000611d6784828501611b38565b91505092915050565b600060208284031215611d8657611d85611aea565b5b6000611d9484828501611b6e565b91505092915050565b60008060408385031215611db457611db3611aea565b5b6000611dc285828601611b38565b9250506020611dd385828601611b38565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e2457607f821691505b602082108103611e3757611e36611ddd565b5b50919050565b7f74726164696e6720616c7265616479206f70656e656400000000000000000000600082015250565b6000611e73601683611a43565b9150611e7e82611e3d565b602082019050919050565b60006020820190508181036000830152611ea281611e66565b9050919050565b6000606082019050611ebe6000830186611bf9565b611ecb6020830185611c8f565b611ed86040830184611c8f565b949350505050565b7f54726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b6000611f16601483611a43565b9150611f2182611ee0565b602082019050919050565b60006020820190508181036000830152611f4581611f09565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f8682611b4d565b9150611f9183611b4d565b9250828201905080821115611fa957611fa8611f4c565b5b92915050565b6000611fba82611b4d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611fec57611feb611f4c565b5b600182019050919050565b600061200282611b4d565b915061200d83611b4d565b925082820261201b81611b4d565b9150828204841483151761203257612031611f4c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061207382611b4d565b915061207e83611b4d565b92508261208e5761208d612039565b5b828204905092915050565b60006120a482611b4d565b91506120af83611b4d565b92508282039050818111156120c7576120c6611f4c565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061213a81611b21565b92915050565b60006020828403121561215657612155611aea565b5b60006121648482850161212b565b91505092915050565b6000819050919050565b6000819050919050565b600061219c6121976121928461216d565b612177565b611b4d565b9050919050565b6121ac81612181565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6121e781611b0f565b82525050565b60006121f983836121de565b60208301905092915050565b6000602082019050919050565b600061221d826121b2565b61222781856121bd565b9350612232836121ce565b8060005b8381101561226357815161224a88826121ed565b975061225583612205565b925050600181019050612236565b5085935050505092915050565b600060a0820190506122856000830188611c8f565b61229260208301876121a3565b81810360408301526122a48186612212565b90506122b36060830185611bf9565b6122c06080830184611c8f565b9695505050505050565b600081905092915050565b50565b60006122e56000836122ca565b91506122f0826122d5565b600082019050919050565b6000612306826122d8565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f206465765f61646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061236c602183611a43565b915061237782612310565b604082019050919050565b6000602082019050818103600083015261239b8161235f565b905091905056fea264697066735822122021c1c50bf6ca89a6004732d07c6a5e5a8547e9fe7b37b272283151be182b04d664736f6c63430008170033

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.