ETH Price: $3,343.12 (-1.35%)
Gas: 5.54 Gwei

Token

LayerOP (OPL)
 

Overview

Max Total Supply

210,000,000 OPL

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
109,432.812274384331972195 OPL

Value
$0.00
0x40b5935ac3e7a6864ed5ac8c40b3134cb8124169
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:
LayerOP

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 10 : LayerOP.sol
// Website  : https://layerop.io
// Telegram : https://t.me/LayerOP_io
// Twitter  : https://x.com/LayerOP_io
// Docs     : https://docs.layerop.io

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

contract LayerOP is ERC20, Ownable {
    error TradingDisabled();
    error MaxWallet();
    error OnlyOwnerOrAdmin();
    error InvalidAmount();

    event SwapBack();
    event ExcludeFromFees(address wallet, bool status);
    event EnableTrading();
    event RemoveLimit();
    event UpdateTaxWallet(address newAddress);
    event UpdateSwapAtAmount(uint256 newAmount);
    event UpdateSwapRepeat(uint256 newAmount);

    string private __name = "LayerOP";
    string private __symbol = "OPL";
    uint256 private constant TOTAL_SUPPLY = 210_000_000 ether;

    address private constant V2_ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address private immutable _pair;
    address private _taxWallet;

    uint256 private constant TAX = 5;
    uint256 private constant INIT_TAX = 20;
    uint256 private constant REDUCE_TAX_AT = 20;
    uint256 private _buy;
    uint256 private _sell;
    uint256 private _maxWallet = TOTAL_SUPPLY / 100;
    uint256 private _swapAt = 500_000 ether;
    uint256 private _swapRepeatInBlock = 5;
    bool private _tradingEnabled;
    bool private _limit = true;
    bool private _swapping;

    mapping(address => bool) private _excludeFromFees;
    mapping(uint256 => uint256) private _repeatAtBlock;

    constructor() Ownable(_msgSender()) ERC20(__name, __symbol) {
        _pair = IUniswapV2Factory(IUniswapV2Router02(V2_ROUTER).factory()).createPair(
            address(this), IUniswapV2Router02(V2_ROUTER).WETH()
        );
        _taxWallet = _msgSender();
        _setExcludeFromFees(address(this), true);
        _setExcludeFromFees(V2_ROUTER, true);
        _setExcludeFromFees(_msgSender(), true);
        _mint(_msgSender(), TOTAL_SUPPLY);
        _approve(_msgSender(), V2_ROUTER, type(uint256).max);
        _approve(address(this), V2_ROUTER, type(uint256).max);
    }

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

    function enableTrading() external onlyOwner {
        _tradingEnabled = true;
        emit EnableTrading();
    }

    function removeLimit() external onlyOwner {
        _limit = false;
        emit RemoveLimit();
    }

    function setSwapAtAmount(uint256 value) external onlyOwner {
        if (value == 0 || value > TOTAL_SUPPLY / 100) {
            revert InvalidAmount();
        }
        _swapAt = value;
        emit UpdateSwapAtAmount(value);
    }

    function setSwapRepeatBlock(uint256 repeat) external onlyOwner {
        if (repeat == 0) {
            revert InvalidAmount();
        }
        _swapRepeatInBlock = repeat;
        emit UpdateSwapRepeat(repeat);
    }

    function updateTaxWallet(address newAddress) external {
        if (_msgSender() != owner() && _msgSender() != _taxWallet) {
            revert OnlyOwnerOrAdmin();
        }
        _setExcludeFromFees(newAddress, true);
        _taxWallet = newAddress;
        emit UpdateTaxWallet(newAddress);
    }

    function setExcludeFromFees(address wallet, bool status) external onlyOwner {
        _setExcludeFromFees(wallet, status);
    }

    function _setExcludeFromFees(address wallet, bool status) internal {
        _excludeFromFees[wallet] = status;
        emit ExcludeFromFees(wallet, status);
    }

    function _update(address from, address to, uint256 amount) internal override {
        if (_excludeFromFees[from] || _excludeFromFees[to] || (to != _pair && from != _pair) || _swapping) {
            super._update(from, to, amount);
            return;
        }
        if (!_tradingEnabled) {
            revert TradingDisabled();
        }

        if (to == _pair && _canSwapBack()) {
            _swapBack();
        }
        uint256 _amount = _handleFee(from, to, amount);
        super._update(from, to, _amount);
    }

    function _handleFee(address from, address to, uint256 amount) internal returns (uint256 newAmount) {
        uint256 taxAmount = (amount * TAX) / 100;
        if (from == _pair && _buy >= REDUCE_TAX_AT) {
            _buy++;
            taxAmount = (amount * INIT_TAX) / 100;
        } else if (to == _pair && _sell >= REDUCE_TAX_AT) {
            _sell++;
            taxAmount = (amount * INIT_TAX) / 100;
        }
        super._update(from, address(this), taxAmount);
        newAmount = amount - taxAmount;
        if (_limit && to != _pair && balanceOf(to) + newAmount > _maxWallet) {
            revert MaxWallet();
        }
    }

    function _canSwapBack() internal view returns (bool) {
        return _repeatAtBlock[block.number] < _swapRepeatInBlock && balanceOf(address(this)) >= _swapAt;
    }

    function _swapBack() internal onSwap {
        _repeatAtBlock[block.number]++;
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = IUniswapV2Router02(V2_ROUTER).WETH();
        IUniswapV2Router02(V2_ROUTER).swapExactTokensForETHSupportingFeeOnTransferTokens(
            _swapAt, 0, path, _taxWallet, block.timestamp
        );
        emit SwapBack();
    }
}

File 2 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 3 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 4 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 5 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 6 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 7 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 8 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 9 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 10 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;
}

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":"InvalidAmount","type":"error"},{"inputs":[],"name":"MaxWallet","type":"error"},{"inputs":[],"name":"OnlyOwnerOrAdmin","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TradingDisabled","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":[],"name":"EnableTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"ExcludeFromFees","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":[],"name":"RemoveLimit","type":"event"},{"anonymous":false,"inputs":[],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdateSwapAtAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdateSwapRepeat","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"UpdateTaxWallet","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"repeat","type":"uint256"}],"name":"setSwapRepeatBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526040518060400160405280600781526020017f4c617965724f5000000000000000000000000000000000000000000000000000815250600690816200004a919062001609565b506040518060400160405280600381526020017f4f504c00000000000000000000000000000000000000000000000000000000008152506007908162000091919062001609565b5060646aadb53acfa41aee12000000620000ac91906200174e565b600b556969e10de76676d0800000600c556005600d556001600e60016101000a81548160ff021916908315150217905550348015620000ea57600080fd5b50620000fb6200060960201b60201c565b600680546200010a90620013f8565b80601f01602080910402602001604051908101604052809291908181526020018280546200013890620013f8565b8015620001895780601f106200015d5761010080835404028352916020019162000189565b820191906000526020600020905b8154815290600101906020018083116200016b57829003601f168201915b5050505050600780546200019d90620013f8565b80601f0160208091040260200160405190810160405280929190818152602001828054620001cb90620013f8565b80156200021c5780601f10620001f0576101008083540402835291602001916200021c565b820191906000526020600020905b815481529060010190602001808311620001fe57829003601f168201915b5050505050816003908162000232919062001609565b50806004908162000244919062001609565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620002bc5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620002b39190620017cb565b60405180910390fd5b620002cd816200061160201b60201c565b50737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200032e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035491906200181e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003f691906200181e565b6040518363ffffffff1660e01b81526004016200041592919062001850565b6020604051808303816000875af115801562000435573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045b91906200181e565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200049e6200060960201b60201c565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004f1306001620006d760201b60201c565b62000518737a250d5630b4cf539739df2c5dacb4c659f2488d6001620006d760201b60201c565b6200053a6200052c6200060960201b60201c565b6001620006d760201b60201c565b620005666200054e6200060960201b60201c565b6aadb53acfa41aee120000006200076d60201b60201c565b620005bc6200057a6200060960201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620007fa60201b60201c565b6200060330737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620007fa60201b60201c565b62001be4565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78282604051620007619291906200189a565b60405180910390a15050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007e25760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620007d99190620017cb565b60405180910390fd5b620007f6600083836200081460201b60201c565b5050565b6200080f838383600162000a3b60201b60201c565b505050565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620008b65750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806200092b575060805173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156200092a575060805173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80620009435750600e60029054906101000a900460ff165b1562000962576200095c83838362000c1b60201b60201c565b62000a36565b600e60009054906101000a900460ff16620009a9576040517fbcb8b8fb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60805173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015620009f35750620009f262000e4b60201b60201c565b5b1562000a0a5762000a0962000e8960201b60201c565b5b600062000a1f8484846200114460201b60201c565b905062000a3484848362000c1b60201b60201c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000ab05760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000aa79190620017cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b255760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000b1c9190620017cb565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000c15578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000c0c9190620018d8565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000c7157806002600082825462000c649190620018f5565b9250508190555062000d47565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000d00578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000cf79392919062001930565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d92578060026000828254039250508190555062000ddf565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000e3e9190620018d8565b60405180910390a3505050565b6000600d54601060004381526020019081526020016000205410801562000e845750600c5462000e81306200134760201b60201c565b10155b905090565b6001600e60026101000a81548160ff02191690831515021790555060106000438152602001908152602001600020600081548092919062000eca906200196d565b91905055506000600267ffffffffffffffff81111562000eef5762000eee6200139a565b5b60405190808252806020026020018201604052801562000f1e5781602001602082028036833780820191505090505b509050308160008151811062000f395762000f38620019ba565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000fd3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ff991906200181e565b8160018151811062001010576200100f620019ba565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947600c54600084600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401620010c695949392919062001afa565b600060405180830381600087803b158015620010e157600080fd5b505af1158015620010f6573d6000803e3d6000fd5b505050507f3f468fa137d8f3bc1ed0165066ae4356a2665e48e7a5fe32b9a20860a380a58760405160405180910390a1506000600e60026101000a81548160ff021916908315150217905550565b600080606460058462001158919062001b5e565b6200116491906200174e565b905060805173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015620011a75750601460095410155b15620011ec5760096000815480929190620011c2906200196d565b91905055506064601484620011d8919062001b5e565b620011e491906200174e565b90506200126e565b60805173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156200122d57506014600a5410155b156200126d57600a600081548092919062001248906200196d565b919050555060646014846200125e919062001b5e565b6200126a91906200174e565b90505b5b6200128185308362000c1b60201b60201c565b80836200128f919062001ba9565b9150600e60019054906101000a900460ff168015620012dc575060805173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015620013075750600b5482620012f9866200134760201b60201c565b620013059190620018f5565b115b156200133f576040517f4a4a9a6800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b509392505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200141157607f821691505b602082108103620014275762001426620013c9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620014917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001452565b6200149d868362001452565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620014ea620014e4620014de84620014b5565b620014bf565b620014b5565b9050919050565b6000819050919050565b6200150683620014c9565b6200151e6200151582620014f1565b8484546200145f565b825550505050565b600090565b6200153562001526565b62001542818484620014fb565b505050565b5b818110156200156a576200155e6000826200152b565b60018101905062001548565b5050565b601f821115620015b95762001583816200142d565b6200158e8462001442565b810160208510156200159e578190505b620015b6620015ad8562001442565b83018262001547565b50505b505050565b600082821c905092915050565b6000620015de60001984600802620015be565b1980831691505092915050565b6000620015f98383620015cb565b9150826002028217905092915050565b62001614826200138f565b67ffffffffffffffff81111562001630576200162f6200139a565b5b6200163c8254620013f8565b620016498282856200156e565b600060209050601f8311600181146200168157600084156200166c578287015190505b620016788582620015eb565b865550620016e8565b601f19841662001691866200142d565b60005b82811015620016bb5784890151825560018201915060208501945060208101905062001694565b86831015620016db5784890151620016d7601f891682620015cb565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200175b82620014b5565b91506200176883620014b5565b9250826200177b576200177a620016f0565b5b828204905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620017b38262001786565b9050919050565b620017c581620017a6565b82525050565b6000602082019050620017e26000830184620017ba565b92915050565b600080fd5b620017f881620017a6565b81146200180457600080fd5b50565b6000815190506200181881620017ed565b92915050565b600060208284031215620018375762001836620017e8565b5b6000620018478482850162001807565b91505092915050565b6000604082019050620018676000830185620017ba565b620018766020830184620017ba565b9392505050565b60008115159050919050565b62001894816200187d565b82525050565b6000604082019050620018b16000830185620017ba565b620018c0602083018462001889565b9392505050565b620018d281620014b5565b82525050565b6000602082019050620018ef6000830184620018c7565b92915050565b60006200190282620014b5565b91506200190f83620014b5565b92508282019050808211156200192a57620019296200171f565b5b92915050565b6000606082019050620019476000830186620017ba565b620019566020830185620018c7565b620019656040830184620018c7565b949350505050565b60006200197a82620014b5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620019af57620019ae6200171f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600062001a1462001a0e62001a0884620019e9565b620014bf565b620014b5565b9050919050565b62001a2681620019f3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62001a6381620017a6565b82525050565b600062001a77838362001a58565b60208301905092915050565b6000602082019050919050565b600062001a9d8262001a2c565b62001aa9818562001a37565b935062001ab68362001a48565b8060005b8381101562001aed57815162001ad1888262001a69565b975062001ade8362001a83565b92505060018101905062001aba565b5085935050505092915050565b600060a08201905062001b116000830188620018c7565b62001b20602083018762001a1b565b818103604083015262001b34818662001a90565b905062001b456060830185620017ba565b62001b546080830184620018c7565b9695505050505050565b600062001b6b82620014b5565b915062001b7883620014b5565b925082820262001b8881620014b5565b9150828204841483151762001ba25762001ba16200171f565b5b5092915050565b600062001bb682620014b5565b915062001bc383620014b5565b925082820390508181111562001bde5762001bdd6200171f565b5b92915050565b6080516120bc62001c2360003960008181610fc901528181611020015281816110e4015281816116920152818161172d01526117f501526120bc6000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806374c9f603116100a2578063a81f353811610071578063a81f353814610297578063a9059cbb146102b3578063d63cad22146102e3578063dd62ed3e146102ff578063f2fde38b1461032f57610116565b806374c9f603146102355780638a8c523c146102515780638da5cb5b1461025b57806395d89b411461027957610116565b8063313ce567116100e9578063313ce567146101b757806362256589146101d55780636402511e146101df57806370a08231146101fb578063715018a61461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361034b565b6040516101309190611933565b60405180910390f35b610153600480360381019061014e91906119ee565b6103dd565b6040516101609190611a49565b60405180910390f35b610171610400565b60405161017e9190611a73565b60405180910390f35b6101a1600480360381019061019c9190611a8e565b61040a565b6040516101ae9190611a49565b60405180910390f35b6101bf610439565b6040516101cc9190611afd565b60405180910390f35b6101dd610442565b005b6101f960048036038101906101f49190611b18565b610493565b005b61021560048036038101906102109190611b45565b610538565b6040516102229190611a73565b60405180910390f35b610233610580565b005b61024f600480360381019061024a9190611b45565b610594565b005b6102596106f0565b005b610263610741565b6040516102709190611b81565b60405180910390f35b61028161076b565b60405161028e9190611933565b60405180910390f35b6102b160048036038101906102ac9190611b18565b6107fd565b005b6102cd60048036038101906102c891906119ee565b610880565b6040516102da9190611a49565b60405180910390f35b6102fd60048036038101906102f89190611bc8565b6108a3565b005b61031960048036038101906103149190611c08565b6108b9565b6040516103269190611a73565b60405180910390f35b61034960048036038101906103449190611b45565b610940565b005b60606003805461035a90611c77565b80601f016020809104026020016040519081016040528092919081815260200182805461038690611c77565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b6000806103e86109c6565b90506103f58185856109ce565b600191505092915050565b6000600254905090565b6000806104156109c6565b90506104228582856109e0565b61042d858585610a74565b60019150509392505050565b60006012905090565b61044a610b68565b6000600e60016101000a81548160ff0219169083151502179055507f2d53e1bd10978dd02f36cd1d3680151195d9f7358e0c867bc753abecafb55e4360405160405180910390a1565b61049b610b68565b60008114806104c0575060646aadb53acfa41aee120000006104bd9190611d06565b81115b156104f7576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c819055507fa8086a475de17ab96e1096526a5103d04341f2c1db7069fbb26374b367b3dc318160405161052d9190611a73565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610588610b68565b6105926000610bef565b565b61059c610741565b73ffffffffffffffffffffffffffffffffffffffff166105ba6109c6565b73ffffffffffffffffffffffffffffffffffffffff16141580156106335750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661061a6109c6565b73ffffffffffffffffffffffffffffffffffffffff1614155b1561066a576040517fde19571600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610675816001610cb5565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fe809fa0c811040b61000c05b031840776748942548895c25aaa593062063e700816040516106e59190611b81565b60405180910390a150565b6106f8610b68565b6001600e60006101000a81548160ff0219169083151502179055507f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d60405160405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461077a90611c77565b80601f01602080910402602001604051908101604052809291908181526020018280546107a690611c77565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b610805610b68565b6000810361083f576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d819055507fbbbc21f71f4c53e96031502a1c57561e15517c1ed7b2f10b0d86e0ebc8629150816040516108759190611a73565b60405180910390a150565b60008061088b6109c6565b9050610898818585610a74565b600191505092915050565b6108ab610b68565b6108b58282610cb5565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610948610b68565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ba5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109b19190611b81565b60405180910390fd5b6109c381610bef565b50565b600033905090565b6109db8383836001610d49565b505050565b60006109ec84846108b9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a6e5781811015610a5e578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610a5593929190611d37565b60405180910390fd5b610a6d84848484036000610d49565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae65760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610add9190611b81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b585760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b4f9190611b81565b60405180910390fd5b610b63838383610f20565b505050565b610b706109c6565b73ffffffffffffffffffffffffffffffffffffffff16610b8e610741565b73ffffffffffffffffffffffffffffffffffffffff1614610bed57610bb16109c6565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610be49190611b81565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78282604051610d3d929190611d6e565b60405180910390a15050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610dbb5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610db29190611b81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2d5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e249190611b81565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610f1a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f119190611a73565b60405180910390a35b50505050565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fc15750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061107057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561106f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806110875750600e60029054906101000a900460ff165b1561109c57611097838383611170565b61116b565b600e60009054906101000a900460ff166110e2576040517fbcb8b8fb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156111415750611140611395565b5b1561114f5761114e6113ca565b5b600061115c848484611672565b9050611169848483611170565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111c25780600260008282546111b69190611d97565b92505081905550611295565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561124e578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161124593929190611d37565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112de578060026000828254039250508190555061132b565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113889190611a73565b60405180910390a3505050565b6000600d5460106000438152602001908152602001600020541080156113c55750600c546113c230610538565b10155b905090565b6001600e60026101000a81548160ff02191690831515021790555060106000438152602001908152602001600020600081548092919061140990611dcb565b91905055506000600267ffffffffffffffff81111561142b5761142a611e13565b5b6040519080825280602002602001820160405280156114595781602001602082028036833780820191505090505b509050308160008151811061147157611470611e42565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561150a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152e9190611e86565b8160018151811061154257611541611e42565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947600c54600084600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016115f6959493929190611fb6565b600060405180830381600087803b15801561161057600080fd5b505af1158015611624573d6000803e3d6000fd5b505050507f3f468fa137d8f3bc1ed0165066ae4356a2665e48e7a5fe32b9a20860a380a58760405160405180910390a1506000600e60026101000a81548160ff021916908315150217905550565b60008060646005846116849190612010565b61168e9190611d06565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156116ee5750601460095410155b1561172b576009600081548092919061170690611dcb565b9190505550606460148461171a9190612010565b6117249190611d06565b90506117c3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561178957506014600a5410155b156117c257600a60008154809291906117a190611dcb565b919050555060646014846117b59190612010565b6117bf9190611d06565b90505b5b6117ce853083611170565b80836117da9190612052565b9150600e60019054906101000a900460ff16801561184457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156118645750600b548261185886610538565b6118629190611d97565b115b1561189b576040517f4a4a9a6800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118dd5780820151818401526020810190506118c2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611905826118a3565b61190f81856118ae565b935061191f8185602086016118bf565b611928816118e9565b840191505092915050565b6000602082019050818103600083015261194d81846118fa565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119858261195a565b9050919050565b6119958161197a565b81146119a057600080fd5b50565b6000813590506119b28161198c565b92915050565b6000819050919050565b6119cb816119b8565b81146119d657600080fd5b50565b6000813590506119e8816119c2565b92915050565b60008060408385031215611a0557611a04611955565b5b6000611a13858286016119a3565b9250506020611a24858286016119d9565b9150509250929050565b60008115159050919050565b611a4381611a2e565b82525050565b6000602082019050611a5e6000830184611a3a565b92915050565b611a6d816119b8565b82525050565b6000602082019050611a886000830184611a64565b92915050565b600080600060608486031215611aa757611aa6611955565b5b6000611ab5868287016119a3565b9350506020611ac6868287016119a3565b9250506040611ad7868287016119d9565b9150509250925092565b600060ff82169050919050565b611af781611ae1565b82525050565b6000602082019050611b126000830184611aee565b92915050565b600060208284031215611b2e57611b2d611955565b5b6000611b3c848285016119d9565b91505092915050565b600060208284031215611b5b57611b5a611955565b5b6000611b69848285016119a3565b91505092915050565b611b7b8161197a565b82525050565b6000602082019050611b966000830184611b72565b92915050565b611ba581611a2e565b8114611bb057600080fd5b50565b600081359050611bc281611b9c565b92915050565b60008060408385031215611bdf57611bde611955565b5b6000611bed858286016119a3565b9250506020611bfe85828601611bb3565b9150509250929050565b60008060408385031215611c1f57611c1e611955565b5b6000611c2d858286016119a3565b9250506020611c3e858286016119a3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c8f57607f821691505b602082108103611ca257611ca1611c48565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d11826119b8565b9150611d1c836119b8565b925082611d2c57611d2b611ca8565b5b828204905092915050565b6000606082019050611d4c6000830186611b72565b611d596020830185611a64565b611d666040830184611a64565b949350505050565b6000604082019050611d836000830185611b72565b611d906020830184611a3a565b9392505050565b6000611da2826119b8565b9150611dad836119b8565b9250828201905080821115611dc557611dc4611cd7565b5b92915050565b6000611dd6826119b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611e0857611e07611cd7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050611e808161198c565b92915050565b600060208284031215611e9c57611e9b611955565b5b6000611eaa84828501611e71565b91505092915050565b6000819050919050565b6000819050919050565b6000611ee2611edd611ed884611eb3565b611ebd565b6119b8565b9050919050565b611ef281611ec7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611f2d8161197a565b82525050565b6000611f3f8383611f24565b60208301905092915050565b6000602082019050919050565b6000611f6382611ef8565b611f6d8185611f03565b9350611f7883611f14565b8060005b83811015611fa9578151611f908882611f33565b9750611f9b83611f4b565b925050600181019050611f7c565b5085935050505092915050565b600060a082019050611fcb6000830188611a64565b611fd86020830187611ee9565b8181036040830152611fea8186611f58565b9050611ff96060830185611b72565b6120066080830184611a64565b9695505050505050565b600061201b826119b8565b9150612026836119b8565b9250828202612034816119b8565b9150828204841483151761204b5761204a611cd7565b5b5092915050565b600061205d826119b8565b9150612068836119b8565b92508282039050818111156120805761207f611cd7565b5b9291505056fea26469706673582212202a740af7f74fc7b06caeaf66ce72c29dd0d10b7755ada2ce695921c7f3e3110b64736f6c63430008180033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806374c9f603116100a2578063a81f353811610071578063a81f353814610297578063a9059cbb146102b3578063d63cad22146102e3578063dd62ed3e146102ff578063f2fde38b1461032f57610116565b806374c9f603146102355780638a8c523c146102515780638da5cb5b1461025b57806395d89b411461027957610116565b8063313ce567116100e9578063313ce567146101b757806362256589146101d55780636402511e146101df57806370a08231146101fb578063715018a61461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361034b565b6040516101309190611933565b60405180910390f35b610153600480360381019061014e91906119ee565b6103dd565b6040516101609190611a49565b60405180910390f35b610171610400565b60405161017e9190611a73565b60405180910390f35b6101a1600480360381019061019c9190611a8e565b61040a565b6040516101ae9190611a49565b60405180910390f35b6101bf610439565b6040516101cc9190611afd565b60405180910390f35b6101dd610442565b005b6101f960048036038101906101f49190611b18565b610493565b005b61021560048036038101906102109190611b45565b610538565b6040516102229190611a73565b60405180910390f35b610233610580565b005b61024f600480360381019061024a9190611b45565b610594565b005b6102596106f0565b005b610263610741565b6040516102709190611b81565b60405180910390f35b61028161076b565b60405161028e9190611933565b60405180910390f35b6102b160048036038101906102ac9190611b18565b6107fd565b005b6102cd60048036038101906102c891906119ee565b610880565b6040516102da9190611a49565b60405180910390f35b6102fd60048036038101906102f89190611bc8565b6108a3565b005b61031960048036038101906103149190611c08565b6108b9565b6040516103269190611a73565b60405180910390f35b61034960048036038101906103449190611b45565b610940565b005b60606003805461035a90611c77565b80601f016020809104026020016040519081016040528092919081815260200182805461038690611c77565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b6000806103e86109c6565b90506103f58185856109ce565b600191505092915050565b6000600254905090565b6000806104156109c6565b90506104228582856109e0565b61042d858585610a74565b60019150509392505050565b60006012905090565b61044a610b68565b6000600e60016101000a81548160ff0219169083151502179055507f2d53e1bd10978dd02f36cd1d3680151195d9f7358e0c867bc753abecafb55e4360405160405180910390a1565b61049b610b68565b60008114806104c0575060646aadb53acfa41aee120000006104bd9190611d06565b81115b156104f7576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c819055507fa8086a475de17ab96e1096526a5103d04341f2c1db7069fbb26374b367b3dc318160405161052d9190611a73565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610588610b68565b6105926000610bef565b565b61059c610741565b73ffffffffffffffffffffffffffffffffffffffff166105ba6109c6565b73ffffffffffffffffffffffffffffffffffffffff16141580156106335750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661061a6109c6565b73ffffffffffffffffffffffffffffffffffffffff1614155b1561066a576040517fde19571600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610675816001610cb5565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fe809fa0c811040b61000c05b031840776748942548895c25aaa593062063e700816040516106e59190611b81565b60405180910390a150565b6106f8610b68565b6001600e60006101000a81548160ff0219169083151502179055507f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d60405160405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461077a90611c77565b80601f01602080910402602001604051908101604052809291908181526020018280546107a690611c77565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b610805610b68565b6000810361083f576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d819055507fbbbc21f71f4c53e96031502a1c57561e15517c1ed7b2f10b0d86e0ebc8629150816040516108759190611a73565b60405180910390a150565b60008061088b6109c6565b9050610898818585610a74565b600191505092915050565b6108ab610b68565b6108b58282610cb5565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610948610b68565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ba5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109b19190611b81565b60405180910390fd5b6109c381610bef565b50565b600033905090565b6109db8383836001610d49565b505050565b60006109ec84846108b9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a6e5781811015610a5e578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610a5593929190611d37565b60405180910390fd5b610a6d84848484036000610d49565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae65760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610add9190611b81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b585760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b4f9190611b81565b60405180910390fd5b610b63838383610f20565b505050565b610b706109c6565b73ffffffffffffffffffffffffffffffffffffffff16610b8e610741565b73ffffffffffffffffffffffffffffffffffffffff1614610bed57610bb16109c6565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610be49190611b81565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78282604051610d3d929190611d6e565b60405180910390a15050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610dbb5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610db29190611b81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2d5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e249190611b81565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610f1a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f119190611a73565b60405180910390a35b50505050565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fc15750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061107057507f000000000000000000000000139eda6ac154a51f9664445e10283a4e65ca295b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561106f57507f000000000000000000000000139eda6ac154a51f9664445e10283a4e65ca295b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806110875750600e60029054906101000a900460ff165b1561109c57611097838383611170565b61116b565b600e60009054906101000a900460ff166110e2576040517fbcb8b8fb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000139eda6ac154a51f9664445e10283a4e65ca295b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156111415750611140611395565b5b1561114f5761114e6113ca565b5b600061115c848484611672565b9050611169848483611170565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111c25780600260008282546111b69190611d97565b92505081905550611295565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561124e578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161124593929190611d37565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112de578060026000828254039250508190555061132b565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113889190611a73565b60405180910390a3505050565b6000600d5460106000438152602001908152602001600020541080156113c55750600c546113c230610538565b10155b905090565b6001600e60026101000a81548160ff02191690831515021790555060106000438152602001908152602001600020600081548092919061140990611dcb565b91905055506000600267ffffffffffffffff81111561142b5761142a611e13565b5b6040519080825280602002602001820160405280156114595781602001602082028036833780820191505090505b509050308160008151811061147157611470611e42565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561150a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152e9190611e86565b8160018151811061154257611541611e42565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947600c54600084600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016115f6959493929190611fb6565b600060405180830381600087803b15801561161057600080fd5b505af1158015611624573d6000803e3d6000fd5b505050507f3f468fa137d8f3bc1ed0165066ae4356a2665e48e7a5fe32b9a20860a380a58760405160405180910390a1506000600e60026101000a81548160ff021916908315150217905550565b60008060646005846116849190612010565b61168e9190611d06565b90507f000000000000000000000000139eda6ac154a51f9664445e10283a4e65ca295b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156116ee5750601460095410155b1561172b576009600081548092919061170690611dcb565b9190505550606460148461171a9190612010565b6117249190611d06565b90506117c3565b7f000000000000000000000000139eda6ac154a51f9664445e10283a4e65ca295b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561178957506014600a5410155b156117c257600a60008154809291906117a190611dcb565b919050555060646014846117b59190612010565b6117bf9190611d06565b90505b5b6117ce853083611170565b80836117da9190612052565b9150600e60019054906101000a900460ff16801561184457507f000000000000000000000000139eda6ac154a51f9664445e10283a4e65ca295b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156118645750600b548261185886610538565b6118629190611d97565b115b1561189b576040517f4a4a9a6800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118dd5780820151818401526020810190506118c2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611905826118a3565b61190f81856118ae565b935061191f8185602086016118bf565b611928816118e9565b840191505092915050565b6000602082019050818103600083015261194d81846118fa565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119858261195a565b9050919050565b6119958161197a565b81146119a057600080fd5b50565b6000813590506119b28161198c565b92915050565b6000819050919050565b6119cb816119b8565b81146119d657600080fd5b50565b6000813590506119e8816119c2565b92915050565b60008060408385031215611a0557611a04611955565b5b6000611a13858286016119a3565b9250506020611a24858286016119d9565b9150509250929050565b60008115159050919050565b611a4381611a2e565b82525050565b6000602082019050611a5e6000830184611a3a565b92915050565b611a6d816119b8565b82525050565b6000602082019050611a886000830184611a64565b92915050565b600080600060608486031215611aa757611aa6611955565b5b6000611ab5868287016119a3565b9350506020611ac6868287016119a3565b9250506040611ad7868287016119d9565b9150509250925092565b600060ff82169050919050565b611af781611ae1565b82525050565b6000602082019050611b126000830184611aee565b92915050565b600060208284031215611b2e57611b2d611955565b5b6000611b3c848285016119d9565b91505092915050565b600060208284031215611b5b57611b5a611955565b5b6000611b69848285016119a3565b91505092915050565b611b7b8161197a565b82525050565b6000602082019050611b966000830184611b72565b92915050565b611ba581611a2e565b8114611bb057600080fd5b50565b600081359050611bc281611b9c565b92915050565b60008060408385031215611bdf57611bde611955565b5b6000611bed858286016119a3565b9250506020611bfe85828601611bb3565b9150509250929050565b60008060408385031215611c1f57611c1e611955565b5b6000611c2d858286016119a3565b9250506020611c3e858286016119a3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c8f57607f821691505b602082108103611ca257611ca1611c48565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d11826119b8565b9150611d1c836119b8565b925082611d2c57611d2b611ca8565b5b828204905092915050565b6000606082019050611d4c6000830186611b72565b611d596020830185611a64565b611d666040830184611a64565b949350505050565b6000604082019050611d836000830185611b72565b611d906020830184611a3a565b9392505050565b6000611da2826119b8565b9150611dad836119b8565b9250828201905080821115611dc557611dc4611cd7565b5b92915050565b6000611dd6826119b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611e0857611e07611cd7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050611e808161198c565b92915050565b600060208284031215611e9c57611e9b611955565b5b6000611eaa84828501611e71565b91505092915050565b6000819050919050565b6000819050919050565b6000611ee2611edd611ed884611eb3565b611ebd565b6119b8565b9050919050565b611ef281611ec7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611f2d8161197a565b82525050565b6000611f3f8383611f24565b60208301905092915050565b6000602082019050919050565b6000611f6382611ef8565b611f6d8185611f03565b9350611f7883611f14565b8060005b83811015611fa9578151611f908882611f33565b9750611f9b83611f4b565b925050600181019050611f7c565b5085935050505092915050565b600060a082019050611fcb6000830188611a64565b611fd86020830187611ee9565b8181036040830152611fea8186611f58565b9050611ff96060830185611b72565b6120066080830184611a64565b9695505050505050565b600061201b826119b8565b9150612026836119b8565b9250828202612034816119b8565b9150828204841483151761204b5761204a611cd7565b5b5092915050565b600061205d826119b8565b9150612068836119b8565b92508282039050818111156120805761207f611cd7565b5b9291505056fea26469706673582212202a740af7f74fc7b06caeaf66ce72c29dd0d10b7755ada2ce695921c7f3e3110b64736f6c63430008180033

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.