ETH Price: $2,362.18 (-4.11%)

Token

Kindred Swap (KND)
 

Overview

Max Total Supply

100,000,000 KND

Holders

336

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
43,465.537506943001285297 KND

Value
$0.00
0x35B5371aF9036F97F6c91761B8357a6cCb50c1C0
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:
Kindred

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 7 : Kindred.sol
pragma solidity ^0.8.20;
import "openzeppelin-contracts/contracts/token/ERC20/ERC20.sol";
import "openzeppelin-contracts/contracts/access/Ownable.sol";

// ╻┏ ╻┏┓╻╺┳┓┏━┓┏━╸╺┳┓   ┏━┓╻ ╻┏━┓┏━┓   ┏━╸┏┓╻┏━╸╻┏┓╻┏━╸
// ┣┻┓┃┃┗┫ ┃┃┣┳┛┣╸  ┃┃   ┗━┓┃╻┃┣━┫┣━┛   ┣╸ ┃┗┫┃╺┓┃┃┗┫┣╸
// β•Ή β•Ήβ•Ήβ•Ή ╹╺┻┛╹┗╸┗━╸╺┻┛   ┗━┛┗┻┛╹ β•Ήβ•Ή     ┗━╸╹ ╹┗━┛╹╹ ╹┗━╸

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

interface IUniswapV2Router {
    function WETH() external pure returns (address);

    function factory() external pure returns (address);

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

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

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

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

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

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

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

contract Kindred is Ownable, ERC20 {
    IUniswapV2Router public immutable uniswapV2Router;

    address public constant ZERO_ADDRESS = address(0);
    address public constant DEAD_ADDRESS = address(0xdEaD);

    address public immutable uniswapV2Pair;
    address public operationsWallet;
    address public developmentWallet;

    bool public isLimitsEnabled;
    bool public isCooldownEnabled;
    bool public isTaxEnabled;
    bool private inSwapBack;
    bool public isLaunched;

    uint256 public launchBlock;
    uint256 public launchTime;

    uint256 private lastSwapBackExecutionBlock;

    uint256 public constant MAX_FEE = 25;

    uint256 public maxBuy;
    uint256 public maxSell;
    uint256 public maxWallet;

    uint256 public swapTokensAtAmount;
    uint256 public buyFee;
    uint256 public sellFee;
    uint256 public transferFee;

    mapping(address => bool) public isBot;
    mapping(address => bool) public isExcludedFromFees;
    mapping(address => bool) public isExcludedFromLimits;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    event Launch();
    event SetOperationsWallet(address newWallet, address oldWallet);
    event SetDevelopmentWallet(address newWallet, address oldWallet);
    event SetLimitsEnabled(bool status);
    event SetCooldownEnabled(bool status);
    event SetTaxesEnabled(bool status);
    event SetMaxBuy(uint256 amount);
    event SetMaxSell(uint256 amount);
    event SetMaxWallet(uint256 amount);
    event SetSwapTokensAtAmount(uint256 newValue, uint256 oldValue);
    event SetBuyFees(uint256 newValue, uint256 oldValue);
    event SetSellFees(uint256 newValue, uint256 oldValue);
    event SetTransferFees(uint256 newValue, uint256 oldValue);
    event ExcludeFromFees(address account, bool isExcluded);
    event ExcludeFromLimits(address account, bool isExcluded);
    event SetBots(address account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address pair, bool value);
    event WithdrawStuckTokens(address token, uint256 amount);

    error AlreadyLaunched();
    error AddressZero();
    error AmountTooLow();
    error AmountTooHigh();
    error FeeTooHigh();
    error AMMAlreadySet();
    error NoNativeTokens();
    error NoTokens();
    error FailedToWithdrawNativeTokens();
    error BotDetected();
    error TransferDelay();
    error MaxBuyAmountExceed();
    error MaxSellAmountExceed();
    error MaxWalletAmountExceed();
    error NotLaunched();

    modifier lockSwapBack() {
        inSwapBack = true;
        _;
        inSwapBack = false;
    }

    constructor(
        address opsWallet,
        address devWallet
    ) Ownable(msg.sender) ERC20("Kindred Swap", "KND") {
        address sender = msg.sender;
        _mint(sender, 100_000_000 ether);
        uint256 totalSupply = totalSupply();

        operationsWallet = opsWallet;
        developmentWallet = devWallet;

        maxBuy = (totalSupply * 13) / 1000; // 1.3% of total supply
        maxSell = (totalSupply * 13) / 1000; // 1.3% of total supply
        maxWallet = (totalSupply * 13) / 1000; // 1.3% of total supply
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% of total supply

        isLimitsEnabled = true;
        isCooldownEnabled = false;
        isTaxEnabled = true;

        buyFee = 25;
        sellFee = 35;
        transferFee = 50;

        uniswapV2Router = IUniswapV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
                address(this),
                uniswapV2Router.WETH()
            );

        _setAutomatedMarketMakerPair(uniswapV2Pair, true);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        _excludeFromFees(address(this), true);
        _excludeFromFees(address(0xdead), true);
        _excludeFromFees(sender, true);
        _excludeFromFees(operationsWallet, true);
        _excludeFromFees(developmentWallet, true);

        _excludeFromLimits(address(this), true);
        _excludeFromLimits(address(0xdead), true);
        _excludeFromLimits(sender, true);
        _excludeFromLimits(operationsWallet, true);
        _excludeFromLimits(developmentWallet, true);
    }

    receive() external payable {}

    fallback() external payable {}

    function _transferOwnership(address newOwner) internal override {
        address oldOwner = owner();
        if (oldOwner != address(0)) {
            _excludeFromFees(oldOwner, false);
            _excludeFromLimits(oldOwner, false);
        }
        _excludeFromFees(newOwner, true);
        _excludeFromLimits(newOwner, true);
        super._transferOwnership(newOwner);
    }

    function launch() external onlyOwner {
        require(!isLaunched, "AlreadyLaunched");
        isLaunched = true;
        launchBlock = block.number;
        launchTime = block.timestamp;
        emit Launch();
    }

    function setOperationsWallet(address _operationsWallet) external onlyOwner {
        require(_operationsWallet != address(0), "AddressZero");
        address oldWallet = operationsWallet;
        operationsWallet = _operationsWallet;
        emit SetOperationsWallet(operationsWallet, oldWallet);
    }

    function setDevelopmentWallet(
        address _developmentWallet
    ) external onlyOwner {
        require(_developmentWallet != address(0), "AddressZero");
        address oldWallet = developmentWallet;
        developmentWallet = _developmentWallet;
        emit SetDevelopmentWallet(developmentWallet, oldWallet);
    }

    function setLimitsEnabled(bool value) external onlyOwner {
        isLimitsEnabled = value;
        emit SetLimitsEnabled(value);
    }

    function setCooldownEnabled(bool value) external onlyOwner {
        isCooldownEnabled = value;
        emit SetCooldownEnabled(value);
    }

    function setTaxesEnabled(bool value) external onlyOwner {
        isTaxEnabled = value;
        emit SetTaxesEnabled(value);
    }

    function setMaxBuy(uint256 amount) external onlyOwner {
        require(amount >= ((totalSupply() * 2) / 1000), "AmountTooLow");
        maxBuy = amount;
        emit SetMaxBuy(maxBuy);
    }

    function setMaxSell(uint256 amount) external onlyOwner {
        require(amount >= ((totalSupply() * 2) / 1000), "AmountTooLow");
        maxSell = amount;
        emit SetMaxSell(maxSell);
    }

    function setMaxWallet(uint256 amount) external onlyOwner {
        require(amount >= ((totalSupply() * 3) / 1000), "AmountTooLow");
        maxWallet = amount;
        emit SetMaxWallet(maxWallet);
    }

    function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
        uint256 _totalSupply = totalSupply();
        require(amount >= (_totalSupply * 1) / 1000000, "AmountTooLow");
        require(amount <= (_totalSupply * 5) / 1000, "AmountTooHigh");
        uint256 oldValue = swapTokensAtAmount;
        swapTokensAtAmount = amount;
        emit SetSwapTokensAtAmount(amount, oldValue);
    }

    function setBuyFees(uint256 _buyFee) external onlyOwner {
        require(_buyFee <= MAX_FEE, "FeeTooHigh");
        uint256 oldValue = buyFee;
        buyFee = _buyFee;
        emit SetBuyFees(_buyFee, oldValue);
    }

    function setSellFees(uint256 _sellFee) external onlyOwner {
        require(_sellFee <= MAX_FEE, "FeeTooHigh");
        uint256 oldValue = sellFee;
        sellFee = _sellFee;
        emit SetSellFees(_sellFee, oldValue);
    }

    function setTransferFees(uint256 _transferFee) external onlyOwner {
        require(_transferFee <= MAX_FEE, "FeeTooHigh");
        uint256 oldValue = transferFee;
        transferFee = _transferFee;
        emit SetTransferFees(_transferFee, oldValue);
    }

    function excludeFromFees(
        address[] calldata accounts,
        bool value
    ) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _excludeFromFees(accounts[i], value);
        }
    }

    function excludeFromLimits(
        address[] calldata accounts,
        bool value
    ) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _excludeFromLimits(accounts[i], value);
        }
    }

    function setBots(
        address[] calldata accounts,
        bool value
    ) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            if (
                (!automatedMarketMakerPairs[accounts[i]]) &&
                (accounts[i] != address(uniswapV2Router)) &&
                (accounts[i] != address(this)) &&
                (accounts[i] != ZERO_ADDRESS) &&
                (!isExcludedFromFees[accounts[i]] &&
                    !isExcludedFromLimits[accounts[i]])
            ) _setBots(accounts[i], value);
        }
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) external onlyOwner {
        require(!automatedMarketMakerPairs[pair], "AMMAlreadySet");
        _setAutomatedMarketMakerPair(pair, value);
    }

    function withdrawStuckTokens(address _token) external onlyOwner {
        address sender = msg.sender;
        uint256 amount;
        if (_token == ZERO_ADDRESS) {
            bool success;
            amount = address(this).balance;
            require(amount > 0, "NoNativeTokens");
            (success, ) = address(sender).call{ value: amount }("");
            require(success, "FailedToWithdrawNativeTokens");
        } else {
            amount = IERC20(_token).balanceOf(address(this));
            require(amount > 0, "NoTokens");
            IERC20(_token).transfer(msg.sender, amount);
        }
        emit WithdrawStuckTokens(_token, amount);
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        address sender = msg.sender;
        address origin = tx.origin;

        require(!isBot[from], "BotDetected");
        require(sender == from || !isBot[sender], "BotDetected");

        require(
            origin == from || origin == sender || !isBot[origin],
            "BotDetected"
        );

        require(
            isLaunched ||
                isExcludedFromLimits[from] ||
                isExcludedFromLimits[to],
            "NotLaunched"
        );

        bool limits = isLimitsEnabled &&
            !inSwapBack &&
            !(isExcludedFromLimits[from] || isExcludedFromLimits[to]);
        if (limits) {
            if (
                from != owner() &&
                to != owner() &&
                to != ZERO_ADDRESS &&
                to != DEAD_ADDRESS
            ) {
                if (isCooldownEnabled) {
                    if (to != address(uniswapV2Router) && to != uniswapV2Pair) {
                        require(
                            _holderLastTransferTimestamp[origin] <
                                block.number - 3 &&
                                _holderLastTransferTimestamp[to] <
                                block.number - 3,
                            "TransferDelay"
                        );
                        _holderLastTransferTimestamp[origin] = block.number;
                        _holderLastTransferTimestamp[to] = block.number;
                    }
                }

                if (
                    automatedMarketMakerPairs[from] && !isExcludedFromLimits[to]
                ) {
                    require(amount <= maxBuy, "MaxBuyAmountExceed");
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "MaxWalletAmountExceed"
                    );
                } else if (
                    automatedMarketMakerPairs[to] && !isExcludedFromLimits[from]
                ) {
                    require(amount <= maxSell, "MaxSellAmountExceed");
                } else if (!isExcludedFromLimits[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "MaxWalletAmountExceed"
                    );
                }
            }
        }

        bool takeFee = isTaxEnabled &&
            !inSwapBack &&
            !(isExcludedFromFees[from] || isExcludedFromFees[to]);

        if (takeFee) {
            uint256 fees = 0;
            if (automatedMarketMakerPairs[to] && sellFee > 0) {
                fees = (amount * sellFee) / 100;
            } else if (automatedMarketMakerPairs[from] && buyFee > 0) {
                fees = (amount * buyFee) / 100;
            } else if (
                !automatedMarketMakerPairs[to] &&
                !automatedMarketMakerPairs[from] &&
                transferFee > 0
            ) {
                fees = (amount * transferFee) / 100;
            }

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

        uint256 balance = balanceOf(address(this));
        bool shouldSwap = balance >= swapTokensAtAmount;
        if (takeFee && !automatedMarketMakerPairs[from] && shouldSwap) {
            if (block.number > lastSwapBackExecutionBlock) {
                _swapBack(balance);
                lastSwapBackExecutionBlock = block.number;
            }
        }

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

    function _swapBack(uint256 balance) internal virtual lockSwapBack {
        bool success;
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uint256 maxSwapAmount = swapTokensAtAmount * 20;

        if (balance > maxSwapAmount) {
            balance = maxSwapAmount;
        }

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            balance,
            0,
            path,
            address(this),
            block.timestamp
        );

        uint256 ethBalance = address(this).balance;

        uint256 ethForOperations = ethBalance / 2;

        uint256 ethForDevelopment = ethBalance - ethForOperations;

        (success, ) = address(operationsWallet).call{ value: ethForOperations }(
            ""
        );

        (success, ) = address(developmentWallet).call{
            value: ethForDevelopment
        }("");
    }

    function _excludeFromFees(address account, bool value) internal virtual {
        isExcludedFromFees[account] = value;
        emit ExcludeFromFees(account, value);
    }

    function _excludeFromLimits(address account, bool value) internal virtual {
        isExcludedFromLimits[account] = value;
        emit ExcludeFromLimits(account, value);
    }

    function _setBots(address account, bool value) internal virtual {
        isBot[account] = value;
        emit SetBots(account, value);
    }

    function _setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) internal virtual {
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }
}

File 2 of 7 : 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 7 : 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 7 : 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 7 : 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 7 : 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 7 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"opsWallet","type":"address"},{"internalType":"address","name":"devWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AMMAlreadySet","type":"error"},{"inputs":[],"name":"AddressZero","type":"error"},{"inputs":[],"name":"AlreadyLaunched","type":"error"},{"inputs":[],"name":"AmountTooHigh","type":"error"},{"inputs":[],"name":"AmountTooLow","type":"error"},{"inputs":[],"name":"BotDetected","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedToWithdrawNativeTokens","type":"error"},{"inputs":[],"name":"FeeTooHigh","type":"error"},{"inputs":[],"name":"MaxBuyAmountExceed","type":"error"},{"inputs":[],"name":"MaxSellAmountExceed","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceed","type":"error"},{"inputs":[],"name":"NoNativeTokens","type":"error"},{"inputs":[],"name":"NoTokens","type":"error"},{"inputs":[],"name":"NotLaunched","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":"TransferDelay","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"Launch","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":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"SetBots","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetBuyFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetCooldownEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetDevelopmentWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetLimitsEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetOperationsWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSellFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSwapTokensAtAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetTaxesEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetTransferFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawStuckTokens","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ZERO_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsWallet","type":"address"}],"name":"setOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"name":"setTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040523480156200001157600080fd5b50604051620079f7380380620079f78339818101604052810190620000379190620020ff565b6040518060400160405280600c81526020017f4b696e64726564205377617000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b4e44000000000000000000000000000000000000000000000000000000000081525033600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001195760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000110919062002157565b60405180910390fd5b6200012a816200068460201b60201c565b5081600490816200013c9190620023ee565b5080600590816200014e9190620023ee565b505050600033905062000173816a52b7d2dcc80cd2e40000006200072f60201b60201c565b600062000185620007bc60201b60201c565b905083600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103e8600d826200021b919062002504565b6200022791906200257e565b600b819055506103e8600d826200023f919062002504565b6200024b91906200257e565b600c819055506103e8600d8262000263919062002504565b6200026f91906200257e565b600d8190555061271060058262000287919062002504565b6200029391906200257e565b600e819055506001600760146101000a81548160ff0219169083151502179055506000600760156101000a81548160ff0219169083151502179055506001600760166101000a81548160ff0219169083151502179055506019600f8190555060236010819055506032601181905550737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000398573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003be9190620025b6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000428573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044e9190620025b6565b6040518363ffffffff1660e01b81526004016200046d929190620025e8565b6020604051808303816000875af11580156200048d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004b39190620025b6565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620004fb60a0516001620007c660201b60201c565b62000530306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200085c60201b60201c565b620005433060016200087660201b60201c565b6200055861dead60016200087660201b60201c565b6200056b8260016200087660201b60201c565b620005a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200087660201b60201c565b620005d5600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200087660201b60201c565b620005e83060016200090c60201b60201c565b620005fd61dead60016200090c60201b60201c565b620006108260016200090c60201b60201c565b62000645600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200090c60201b60201c565b6200067a600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200090c60201b60201c565b5050505062002bed565b600062000696620009a260201b60201c565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614620006f457620006e08160006200087660201b60201c565b620006f38160006200090c60201b60201c565b5b620007078260016200087660201b60201c565b6200071a8260016200090c60201b60201c565b6200072b82620009cb60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007a45760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200079b919062002157565b60405180910390fd5b620007b86000838362000a8f60201b60201c565b5050565b6000600354905090565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab82826040516200085092919062002632565b60405180910390a15050565b620008718383836001620018a660201b60201c565b505050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782826040516200090092919062002632565b60405180910390a15050565b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282826040516200099692919062002632565b60405180910390a15050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60003390506000329050601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000b29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b2090620026c0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148062000bae5750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000bf0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000be790620026c0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16148062000c5657508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b8062000cac5750601260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000cee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ce590620026c0565b60405180910390fd5b600760189054906101000a900460ff168062000d535750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8062000da85750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b62000dea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000de19062002732565b60405180910390fd5b6000600760149054906101000a900460ff16801562000e165750600760179054906101000a900460ff16155b801562000ec25750601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168062000ec05750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b155b90508015620014dc5762000edb620009a260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415801562000f52575062000f22620009a260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801562000f8c5750600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801562000fc7575061dead73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15620014db57600760159054906101000a900460ff1615620011cb5760805173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801562001050575060a05173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15620011ca5760034362001065919062002754565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054108015620010ff5750600343620010bd919062002754565b601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b62001141576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200113890620027df565b60405180910390fd5b43601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156200126f5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156200132857600b54841115620012bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620012b49062002851565b60405180910390fd5b600d54620012d18662001a8660201b60201c565b85620012de919062002873565b111562001322576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200131990620028fe565b60405180910390fd5b620014da565b601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015620013cc5750601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156200142057600c548411156200141a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620014119062002970565b60405180910390fd5b620014d9565b601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16620014d857600d54620014868662001a8660201b60201c565b8562001493919062002873565b1115620014d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620014ce90620028fe565b60405180910390fd5b5b5b5b5b5b6000600760169054906101000a900460ff168015620015085750600760179054906101000a900460ff16155b8015620015b45750601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620015b25750601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b155b90508015620017dc576000601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156200161b57506000601054115b15620016475760646010548762001633919062002504565b6200163f91906200257e565b9050620017ac565b601560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015620016a357506000600f54115b15620016cf576064600f5487620016bb919062002504565b620016c791906200257e565b9050620017ab565b601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620017745750601560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156200178357506000601154115b15620017aa576064601154876200179b919062002504565b620017a791906200257e565b90505b5b5b6000811115620017da578086620017c4919062002754565b9550620017d988308362001acf60201b60201c565b5b505b6000620017ef3062001a8660201b60201c565b90506000600e548210159050828015620018535750601560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156200185d5750805b156200188857600a5443111562001887576200187f8262001d0260201b60201c565b43600a819055505b5b6200189b89898962001acf60201b60201c565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036200191b5760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162001912919062002157565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620019905760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162001987919062002157565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562001a80578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162001a779190620029a3565b60405180910390a35b50505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362001b2557806003600082825462001b18919062002873565b9250508190555062001bfd565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562001bb5578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162001bac93929190620029c0565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001c48578060036000828254039250508190555062001c96565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001cf59190620029a3565b60405180910390a3505050565b6001600760176101000a81548160ff021916908315150217905550600080600267ffffffffffffffff81111562001d3e5762001d3d6200217f565b5b60405190808252806020026020018201604052801562001d6d5781602001602082028036833780820191505090505b509050308160008151811062001d885762001d87620029fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001e10573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001e369190620025b6565b8160018151811062001e4d5762001e4c620029fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060006014600e5462001e9a919062002504565b90508084111562001ea9578093505b60805173ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008530426040518663ffffffff1660e01b815260040162001eef95949392919062002b3d565b600060405180830381600087803b15801562001f0a57600080fd5b505af115801562001f1f573d6000803e3d6000fd5b505050506000479050600060028262001f3991906200257e565b90506000818362001f4b919062002754565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405162001f959062002bd6565b60006040518083038185875af1925050503d806000811462001fd4576040519150601f19603f3d011682016040523d82523d6000602084013e62001fd9565b606091505b505080965050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051620020279062002bd6565b60006040518083038185875af1925050503d806000811462002066576040519150601f19603f3d011682016040523d82523d6000602084013e6200206b565b606091505b5050809650505050505050506000600760176101000a81548160ff02191690831515021790555050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620020c7826200209a565b9050919050565b620020d981620020ba565b8114620020e557600080fd5b50565b600081519050620020f981620020ce565b92915050565b6000806040838503121562002119576200211862002095565b5b60006200212985828601620020e8565b92505060206200213c85828601620020e8565b9150509250929050565b6200215181620020ba565b82525050565b60006020820190506200216e600083018462002146565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620021f657607f821691505b6020821081036200220c576200220b620021ae565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620022767fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262002237565b62002282868362002237565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620022cf620022c9620022c3846200229a565b620022a4565b6200229a565b9050919050565b6000819050919050565b620022eb83620022ae565b62002303620022fa82620022d6565b84845462002244565b825550505050565b600090565b6200231a6200230b565b62002327818484620022e0565b505050565b5b818110156200234f576200234360008262002310565b6001810190506200232d565b5050565b601f8211156200239e57620023688162002212565b620023738462002227565b8101602085101562002383578190505b6200239b620023928562002227565b8301826200232c565b50505b505050565b600082821c905092915050565b6000620023c360001984600802620023a3565b1980831691505092915050565b6000620023de8383620023b0565b9150826002028217905092915050565b620023f98262002174565b67ffffffffffffffff8111156200241557620024146200217f565b5b620024218254620021dd565b6200242e82828562002353565b600060209050601f83116001811462002466576000841562002451578287015190505b6200245d8582620023d0565b865550620024cd565b601f198416620024768662002212565b60005b82811015620024a05784890151825560018201915060208501945060208101905062002479565b86831015620024c05784890151620024bc601f891682620023b0565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062002511826200229a565b91506200251e836200229a565b92508282026200252e816200229a565b91508282048414831517620025485762002547620024d5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200258b826200229a565b915062002598836200229a565b925082620025ab57620025aa6200254f565b5b828204905092915050565b600060208284031215620025cf57620025ce62002095565b5b6000620025df84828501620020e8565b91505092915050565b6000604082019050620025ff600083018562002146565b6200260e602083018462002146565b9392505050565b60008115159050919050565b6200262c8162002615565b82525050565b600060408201905062002649600083018562002146565b62002658602083018462002621565b9392505050565b600082825260208201905092915050565b7f426f744465746563746564000000000000000000000000000000000000000000600082015250565b6000620026a8600b836200265f565b9150620026b58262002670565b602082019050919050565b60006020820190508181036000830152620026db8162002699565b9050919050565b7f4e6f744c61756e63686564000000000000000000000000000000000000000000600082015250565b60006200271a600b836200265f565b91506200272782620026e2565b602082019050919050565b600060208201905081810360008301526200274d816200270b565b9050919050565b600062002761826200229a565b91506200276e836200229a565b9250828203905081811115620027895762002788620024d5565b5b92915050565b7f5472616e7366657244656c617900000000000000000000000000000000000000600082015250565b6000620027c7600d836200265f565b9150620027d4826200278f565b602082019050919050565b60006020820190508181036000830152620027fa81620027b8565b9050919050565b7f4d6178427579416d6f756e744578636565640000000000000000000000000000600082015250565b6000620028396012836200265f565b9150620028468262002801565b602082019050919050565b600060208201905081810360008301526200286c816200282a565b9050919050565b600062002880826200229a565b91506200288d836200229a565b9250828201905080821115620028a857620028a7620024d5565b5b92915050565b7f4d617857616c6c6574416d6f756e744578636565640000000000000000000000600082015250565b6000620028e66015836200265f565b9150620028f382620028ae565b602082019050919050565b600060208201905081810360008301526200291981620028d7565b9050919050565b7f4d617853656c6c416d6f756e7445786365656400000000000000000000000000600082015250565b6000620029586013836200265f565b9150620029658262002920565b602082019050919050565b600060208201905081810360008301526200298b8162002949565b9050919050565b6200299d816200229a565b82525050565b6000602082019050620029ba600083018462002992565b92915050565b6000606082019050620029d7600083018662002146565b620029e6602083018562002992565b620029f5604083018462002992565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600062002a5762002a5162002a4b8462002a2c565b620022a4565b6200229a565b9050919050565b62002a698162002a36565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62002aa681620020ba565b82525050565b600062002aba838362002a9b565b60208301905092915050565b6000602082019050919050565b600062002ae08262002a6f565b62002aec818562002a7a565b935062002af98362002a8b565b8060005b8381101562002b3057815162002b14888262002aac565b975062002b218362002ac6565b92505060018101905062002afd565b5085935050505092915050565b600060a08201905062002b54600083018862002992565b62002b63602083018762002a5e565b818103604083015262002b77818662002ad3565b905062002b88606083018562002146565b62002b97608083018462002992565b9695505050505050565b600081905092915050565b50565b600062002bbe60008362002ba1565b915062002bcb8262002bac565b600082019050919050565b600062002be38262002baf565b9150819050919050565b60805160a051614dc162002c3660003960008181610f6b0152612e20015260008181610e6a0152818161158101528181612dc9015281816139fc0152613af80152614dc16000f3fe6080604052600436106103395760003560e01c80638da5cb5b116101ab578063cb963728116100f7578063e6c1909b11610095578063f2fde38b1161006f578063f2fde38b14610c02578063f53bc83514610c2b578063f8b45b0514610c54578063fd72e22a14610c7f57610340565b8063e6c1909b14610b85578063ee5ecc8914610bb0578063ef998cf014610bd957610340565b8063d5759ba3116100d1578063d5759ba314610ac9578063dcf7aef314610af4578063dd62ed3e14610b1d578063e2f4560514610b5a57610340565b8063cb96372814610a4c578063d00efb2f14610a75578063d26ed3e314610aa057610340565b8063acb2ad6f11610164578063b62496f51161013e578063b62496f51461098e578063b8eb3546146109cb578063bc063e1a146109f6578063c04a541414610a2157610340565b8063acb2ad6f14610911578063ad29ffde1461093c578063afa4f3b21461096557610340565b80638da5cb5b1461080357806395927c251461082e57806395d89b41146108575780639a7a23d6146108825780639c0db5f3146108ab578063a9059cbb146108d457610340565b806349bd5a5e116102855780635d0044ca1161022357806370db69d6116101fd57806370db69d61461076d578063715018a61461079857806372ac2486146107af578063790ca413146107d857610340565b80635d0044ca146106dc5780636ca541e51461070557806370a082311461073057610340565b8063538ba4f91161025f578063538ba4f9146106225780635932ead11461064d57806359512ab0146106765780635cce86cd1461069f57610340565b806349bd5a5e1461058f5780634e6fd6c4146105ba5780634fbee193146105e557610340565b806323b872dd116102f2578063313ce567116102cc578063313ce567146104d35780633bbac579146104fe57806341aea9de1461053b578063470624021461056457610340565b806323b872dd146104405780632b14ca561461047d578063307aebc9146104a857610340565b806301339c211461034257806306fdde0314610359578063095ea7b314610384578063106a5a8f146103c15780631694505e146103ea57806318160ddd1461041557610340565b3661034057005b005b34801561034e57600080fd5b50610357610caa565b005b34801561036557600080fd5b5061036e610d59565b60405161037b9190613d80565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a69190613e40565b610deb565b6040516103b89190613e9b565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190613f47565b610e0e565b005b3480156103f657600080fd5b506103ff610e68565b60405161040c9190614006565b60405180910390f35b34801561042157600080fd5b5061042a610e8c565b6040516104379190614030565b60405180910390f35b34801561044c57600080fd5b506104676004803603810190610462919061404b565b610e96565b6040516104749190613e9b565b60405180910390f35b34801561048957600080fd5b50610492610ec5565b60405161049f9190614030565b60405180910390f35b3480156104b457600080fd5b506104bd610ecb565b6040516104ca9190613e9b565b60405180910390f35b3480156104df57600080fd5b506104e8610ede565b6040516104f591906140ba565b60405180910390f35b34801561050a57600080fd5b50610525600480360381019061052091906140d5565b610ee7565b6040516105329190613e9b565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190614102565b610f07565b005b34801561057057600080fd5b50610579610f63565b6040516105869190614030565b60405180910390f35b34801561059b57600080fd5b506105a4610f69565b6040516105b1919061413e565b60405180910390f35b3480156105c657600080fd5b506105cf610f8d565b6040516105dc919061413e565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906140d5565b610f93565b6040516106199190613e9b565b60405180910390f35b34801561062e57600080fd5b50610637610fb3565b604051610644919061413e565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f9190614102565b610fb8565b005b34801561068257600080fd5b5061069d60048036038101906106989190614102565b611014565b005b3480156106ab57600080fd5b506106c660048036038101906106c191906140d5565b611070565b6040516106d39190613e9b565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190614159565b611090565b005b34801561071157600080fd5b5061071a61113e565b6040516107279190613e9b565b60405180910390f35b34801561073c57600080fd5b50610757600480360381019061075291906140d5565b611151565b6040516107649190614030565b60405180910390f35b34801561077957600080fd5b5061078261119a565b60405161078f9190614030565b60405180910390f35b3480156107a457600080fd5b506107ad6111a0565b005b3480156107bb57600080fd5b506107d660048036038101906107d191906140d5565b6111b4565b005b3480156107e457600080fd5b506107ed6112f2565b6040516107fa9190614030565b60405180910390f35b34801561080f57600080fd5b506108186112f8565b604051610825919061413e565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190614159565b611321565b005b34801561086357600080fd5b5061086c6113b8565b6040516108799190613d80565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614186565b61144a565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190613f47565b6114ed565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190613e40565b6117fa565b6040516109089190613e9b565b60405180910390f35b34801561091d57600080fd5b5061092661181d565b6040516109339190614030565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613f47565b611823565b005b34801561097157600080fd5b5061098c60048036038101906109879190614159565b61187d565b005b34801561099a57600080fd5b506109b560048036038101906109b091906140d5565b611996565b6040516109c29190613e9b565b60405180910390f35b3480156109d757600080fd5b506109e06119b6565b6040516109ed9190614030565b60405180910390f35b348015610a0257600080fd5b50610a0b6119bc565b604051610a189190614030565b60405180910390f35b348015610a2d57600080fd5b50610a366119c1565b604051610a43919061413e565b60405180910390f35b348015610a5857600080fd5b50610a736004803603810190610a6e91906140d5565b6119e7565b005b348015610a8157600080fd5b50610a8a611ca0565b604051610a979190614030565b60405180910390f35b348015610aac57600080fd5b50610ac76004803603810190610ac29190614159565b611ca6565b005b348015610ad557600080fd5b50610ade611d3d565b604051610aeb9190613e9b565b60405180910390f35b348015610b0057600080fd5b50610b1b6004803603810190610b169190614159565b611d50565b005b348015610b2957600080fd5b50610b446004803603810190610b3f91906141c6565b611de7565b604051610b519190614030565b60405180910390f35b348015610b6657600080fd5b50610b6f611e6e565b604051610b7c9190614030565b60405180910390f35b348015610b9157600080fd5b50610b9a611e74565b604051610ba79190613e9b565b60405180910390f35b348015610bbc57600080fd5b50610bd76004803603810190610bd291906140d5565b611e87565b005b348015610be557600080fd5b50610c006004803603810190610bfb9190614159565b611fc5565b005b348015610c0e57600080fd5b50610c296004803603810190610c2491906140d5565b612073565b005b348015610c3757600080fd5b50610c526004803603810190610c4d9190614159565b6120f9565b005b348015610c6057600080fd5b50610c696121a7565b604051610c769190614030565b60405180910390f35b348015610c8b57600080fd5b50610c946121ad565b604051610ca1919061413e565b60405180910390f35b610cb26121d3565b600760189054906101000a900460ff1615610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990614252565b60405180910390fd5b6001600760186101000a81548160ff02191690831515021790555043600881905550426009819055507f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e266960405160405180910390a1565b606060048054610d68906142a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d94906142a1565b8015610de15780601f10610db657610100808354040283529160200191610de1565b820191906000526020600020905b815481529060010190602001808311610dc457829003601f168201915b5050505050905090565b600080610df661225a565b9050610e03818585612262565b600191505092915050565b610e166121d3565b60005b83839050811015610e6257610e55848483818110610e3a57610e396142d2565b5b9050602002016020810190610e4f91906140d5565b83612274565b8080600101915050610e19565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600354905090565b600080610ea161225a565b9050610eae858285612308565b610eb985858561239c565b60019150509392505050565b60105481565b600760189054906101000a900460ff1681565b60006012905090565b60126020528060005260406000206000915054906101000a900460ff1681565b610f0f6121d3565b80600760146101000a81548160ff0219169083151502179055507ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78181604051610f589190613e9b565b60405180910390a150565b600f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b61dead81565b60136020528060005260406000206000915054906101000a900460ff1681565b600081565b610fc06121d3565b80600760156101000a81548160ff0219169083151502179055507f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f816040516110099190613e9b565b60405180910390a150565b61101c6121d3565b80600760166101000a81548160ff0219169083151502179055507f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b816040516110659190613e9b565b60405180910390a150565b60146020528060005260406000206000915054906101000a900460ff1681565b6110986121d3565b6103e860036110a5610e8c565b6110af9190614330565b6110b991906143a1565b8110156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f29061441e565b60405180910390fd5b80600d819055507fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf636186600d546040516111339190614030565b60405180910390a150565b600760159054906101000a900460ff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600b5481565b6111a86121d3565b6111b26000612490565b565b6111bc6121d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361122b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112229061448a565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516112e69291906144aa565b60405180910390a15050565b60095481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113296121d3565b601981111561136d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113649061451f565b60405180910390fd5b60006010549050816010819055507f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b0182826040516113ac92919061453f565b60405180910390a15050565b6060600580546113c7906142a1565b80601f01602080910402602001604051908101604052809291908181526020018280546113f3906142a1565b80156114405780601f1061141557610100808354040283529160200191611440565b820191906000526020600020905b81548152906001019060200180831161142357829003601f168201915b5050505050905090565b6114526121d3565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d6906145b4565b60405180910390fd5b6114e9828261250a565b5050565b6114f56121d3565b60005b838390508110156117f4576015600085858481811061151a576115196142d2565b5b905060200201602081019061152f91906140d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115f757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168484838181106115c9576115c86142d2565b5b90506020020160208101906115de91906140d5565b73ffffffffffffffffffffffffffffffffffffffff1614155b801561165657503073ffffffffffffffffffffffffffffffffffffffff16848483818110611628576116276142d2565b5b905060200201602081019061163d91906140d5565b73ffffffffffffffffffffffffffffffffffffffff1614155b80156116b65750600073ffffffffffffffffffffffffffffffffffffffff16848483818110611688576116876142d2565b5b905060200201602081019061169d91906140d5565b73ffffffffffffffffffffffffffffffffffffffff1614155b80156117b05750601360008585848181106116d4576116d36142d2565b5b90506020020160208101906116e991906140d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156117af5750601460008585848181106117505761174f6142d2565b5b905060200201602081019061176591906140d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b156117e7576117e68484838181106117cb576117ca6142d2565b5b90506020020160208101906117e091906140d5565b8361259e565b5b80806001019150506114f8565b50505050565b60008061180561225a565b905061181281858561239c565b600191505092915050565b60115481565b61182b6121d3565b60005b838390508110156118775761186a84848381811061184f5761184e6142d2565b5b905060200201602081019061186491906140d5565b83612632565b808060010191505061182e565b50505050565b6118856121d3565b600061188f610e8c565b9050620f42406001826118a29190614330565b6118ac91906143a1565b8210156118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e59061441e565b60405180910390fd5b6103e86005826118fe9190614330565b61190891906143a1565b82111561194a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194190614620565b60405180910390fd5b6000600e54905082600e819055507f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca838260405161198992919061453f565b60405180910390a1505050565b60156020528060005260406000206000915054906101000a900460ff1681565b600c5481565b601981565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119ef6121d3565b600033905060008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b2357600047915060008211611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a689061468c565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1682604051611a95906146dd565b60006040518083038185875af1925050503d8060008114611ad2576040519150601f19603f3d011682016040523d82523d6000602084013e611ad7565b606091505b50508091505080611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b149061473e565b60405180910390fd5b50611c62565b8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611b5c919061413e565b602060405180830381865afa158015611b79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9d9190614773565b905060008111611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd9906147ec565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611c1d92919061480c565b6020604051808303816000875af1158015611c3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c60919061484a565b505b7f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b8382604051611c9392919061480c565b60405180910390a1505050565b60085481565b611cae6121d3565b6019811115611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce99061451f565b60405180910390fd5b60006011549050816011819055507f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc258282604051611d3192919061453f565b60405180910390a15050565b600760149054906101000a900460ff1681565b611d586121d3565b6019811115611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d939061451f565b60405180910390fd5b6000600f54905081600f819055507f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d8282604051611ddb92919061453f565b60405180910390a15050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e5481565b600760169054906101000a900460ff1681565b611e8f6121d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef59061448a565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae005600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051611fb99291906144aa565b60405180910390a15050565b611fcd6121d3565b6103e86002611fda610e8c565b611fe49190614330565b611fee91906143a1565b811015612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120279061441e565b60405180910390fd5b80600c819055507f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b7600c546040516120689190614030565b60405180910390a150565b61207b6121d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120ed5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016120e4919061413e565b60405180910390fd5b6120f681612490565b50565b6121016121d3565b6103e8600261210e610e8c565b6121189190614330565b61212291906143a1565b811015612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b9061441e565b60405180910390fd5b80600b819055507f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f600b5460405161219c9190614030565b60405180910390a150565b600d5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6121db61225a565b73ffffffffffffffffffffffffffffffffffffffff166121f96112f8565b73ffffffffffffffffffffffffffffffffffffffff16146122585761221c61225a565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161224f919061413e565b60405180910390fd5b565b600033905090565b61226f83838360016126c6565b505050565b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282826040516122fc929190614877565b60405180910390a15050565b60006123148484611de7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146123965781811015612386578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161237d939291906148a0565b60405180910390fd5b612395848484840360006126c6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361240e5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401612405919061413e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124805760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401612477919061413e565b60405180910390fd5b61248b83838361289d565b505050565b600061249a6112f8565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124e7576124db816000612632565b6124e6816000612274565b5b6124f2826001612632565b6124fd826001612274565b61250682613655565b5050565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab8282604051612592929190614877565b60405180910390a15050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc88282604051612626929190614877565b60405180910390a15050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782826040516126ba929190614877565b60405180910390a15050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036127385760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161272f919061413e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127aa5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016127a1919061413e565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015612897578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161288e9190614030565b60405180910390a35b50505050565b60003390506000329050601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292b90614923565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806129b85750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6129f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ee90614923565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480612a5c57508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b80612ab15750601260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae790614923565b60405180910390fd5b600760189054906101000a900460ff1680612b545750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80612ba85750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bde9061498f565b60405180910390fd5b6000600760149054906101000a900460ff168015612c125750600760179054906101000a900460ff16155b8015612cbc5750601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cba5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b155b905080156132cb57612ccc6112f8565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015612d3a5750612d0a6112f8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612d735750600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612dad575061dead73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156132ca57600760159054906101000a900460ff1615612fe1577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015612e6f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15612fe057600343612e8191906149af565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054108015612f185750600343612ed691906149af565b601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b612f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4e90614a2f565b60405180910390fd5b43601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130845750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561312b57600b548411156130ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c590614a9b565b60405180910390fd5b600d546130da86611151565b856130e59190614abb565b1115613126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311d90614b3b565b60405180910390fd5b6132c9565b601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ce5750601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561321d57600c54841115613218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320f90614ba7565b60405180910390fd5b6132c8565b601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166132c757600d5461327a86611151565b856132859190614abb565b11156132c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132bd90614b3b565b60405180910390fd5b5b5b5b5b5b6000600760169054906101000a900460ff1680156132f65750600760179054906101000a900460ff16155b80156133a05750601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061339e5750601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b155b905080156135a7576000601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561340557506000601054115b1561342b5760646010548761341a9190614330565b61342491906143a1565b9050613582565b601560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561348657506000600f54115b156134ac576064600f548761349b9190614330565b6134a591906143a1565b9050613581565b601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156135505750601560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561355e57506000601154115b15613580576064601154876135739190614330565b61357d91906143a1565b90505b5b5b60008111156135a557808661359791906149af565b95506135a4883083613719565b5b505b60006135b230611151565b90506000600e5482101590508280156136155750601560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561361e5750805b1561363f57600a5443111561363e5761363682613941565b43600a819055505b5b61364a898989613719565b505050505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361376b57806003600082825461375f9190614abb565b92505081905550613840565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156137f8578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016137ef939291906148a0565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361388957806003600082825403925050819055506138d7565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139349190614030565b60405180910390a3505050565b6001600760176101000a81548160ff021916908315150217905550600080600267ffffffffffffffff81111561397a57613979614bc7565b5b6040519080825280602002602001820160405280156139a85781602001602082028036833780820191505090505b50905030816000815181106139c0576139bf6142d2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a899190614c0b565b81600181518110613a9d57613a9c6142d2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060006014600e54613ae89190614330565b905080841115613af6578093505b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008530426040518663ffffffff1660e01b8152600401613b58959493929190614d31565b600060405180830381600087803b158015613b7257600080fd5b505af1158015613b86573d6000803e3d6000fd5b5050505060004790506000600282613b9e91906143a1565b905060008183613bae91906149af565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613bf6906146dd565b60006040518083038185875af1925050503d8060008114613c33576040519150601f19603f3d011682016040523d82523d6000602084013e613c38565b606091505b505080965050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613c84906146dd565b60006040518083038185875af1925050503d8060008114613cc1576040519150601f19603f3d011682016040523d82523d6000602084013e613cc6565b606091505b5050809650505050505050506000600760176101000a81548160ff02191690831515021790555050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d2a578082015181840152602081019050613d0f565b60008484015250505050565b6000601f19601f8301169050919050565b6000613d5282613cf0565b613d5c8185613cfb565b9350613d6c818560208601613d0c565b613d7581613d36565b840191505092915050565b60006020820190508181036000830152613d9a8184613d47565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dd782613dac565b9050919050565b613de781613dcc565b8114613df257600080fd5b50565b600081359050613e0481613dde565b92915050565b6000819050919050565b613e1d81613e0a565b8114613e2857600080fd5b50565b600081359050613e3a81613e14565b92915050565b60008060408385031215613e5757613e56613da2565b5b6000613e6585828601613df5565b9250506020613e7685828601613e2b565b9150509250929050565b60008115159050919050565b613e9581613e80565b82525050565b6000602082019050613eb06000830184613e8c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613edb57613eda613eb6565b5b8235905067ffffffffffffffff811115613ef857613ef7613ebb565b5b602083019150836020820283011115613f1457613f13613ec0565b5b9250929050565b613f2481613e80565b8114613f2f57600080fd5b50565b600081359050613f4181613f1b565b92915050565b600080600060408486031215613f6057613f5f613da2565b5b600084013567ffffffffffffffff811115613f7e57613f7d613da7565b5b613f8a86828701613ec5565b93509350506020613f9d86828701613f32565b9150509250925092565b6000819050919050565b6000613fcc613fc7613fc284613dac565b613fa7565b613dac565b9050919050565b6000613fde82613fb1565b9050919050565b6000613ff082613fd3565b9050919050565b61400081613fe5565b82525050565b600060208201905061401b6000830184613ff7565b92915050565b61402a81613e0a565b82525050565b60006020820190506140456000830184614021565b92915050565b60008060006060848603121561406457614063613da2565b5b600061407286828701613df5565b935050602061408386828701613df5565b925050604061409486828701613e2b565b9150509250925092565b600060ff82169050919050565b6140b48161409e565b82525050565b60006020820190506140cf60008301846140ab565b92915050565b6000602082840312156140eb576140ea613da2565b5b60006140f984828501613df5565b91505092915050565b60006020828403121561411857614117613da2565b5b600061412684828501613f32565b91505092915050565b61413881613dcc565b82525050565b6000602082019050614153600083018461412f565b92915050565b60006020828403121561416f5761416e613da2565b5b600061417d84828501613e2b565b91505092915050565b6000806040838503121561419d5761419c613da2565b5b60006141ab85828601613df5565b92505060206141bc85828601613f32565b9150509250929050565b600080604083850312156141dd576141dc613da2565b5b60006141eb85828601613df5565b92505060206141fc85828601613df5565b9150509250929050565b7f416c72656164794c61756e636865640000000000000000000000000000000000600082015250565b600061423c600f83613cfb565b915061424782614206565b602082019050919050565b6000602082019050818103600083015261426b8161422f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142b957607f821691505b6020821081036142cc576142cb614272565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061433b82613e0a565b915061434683613e0a565b925082820261435481613e0a565b9150828204841483151761436b5761436a614301565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143ac82613e0a565b91506143b783613e0a565b9250826143c7576143c6614372565b5b828204905092915050565b7f416d6f756e74546f6f4c6f770000000000000000000000000000000000000000600082015250565b6000614408600c83613cfb565b9150614413826143d2565b602082019050919050565b60006020820190508181036000830152614437816143fb565b9050919050565b7f416464726573735a65726f000000000000000000000000000000000000000000600082015250565b6000614474600b83613cfb565b915061447f8261443e565b602082019050919050565b600060208201905081810360008301526144a381614467565b9050919050565b60006040820190506144bf600083018561412f565b6144cc602083018461412f565b9392505050565b7f466565546f6f4869676800000000000000000000000000000000000000000000600082015250565b6000614509600a83613cfb565b9150614514826144d3565b602082019050919050565b60006020820190508181036000830152614538816144fc565b9050919050565b60006040820190506145546000830185614021565b6145616020830184614021565b9392505050565b7f414d4d416c726561647953657400000000000000000000000000000000000000600082015250565b600061459e600d83613cfb565b91506145a982614568565b602082019050919050565b600060208201905081810360008301526145cd81614591565b9050919050565b7f416d6f756e74546f6f4869676800000000000000000000000000000000000000600082015250565b600061460a600d83613cfb565b9150614615826145d4565b602082019050919050565b60006020820190508181036000830152614639816145fd565b9050919050565b7f4e6f4e6174697665546f6b656e73000000000000000000000000000000000000600082015250565b6000614676600e83613cfb565b915061468182614640565b602082019050919050565b600060208201905081810360008301526146a581614669565b9050919050565b600081905092915050565b50565b60006146c76000836146ac565b91506146d2826146b7565b600082019050919050565b60006146e8826146ba565b9150819050919050565b7f4661696c6564546f57697468647261774e6174697665546f6b656e7300000000600082015250565b6000614728601c83613cfb565b9150614733826146f2565b602082019050919050565b600060208201905081810360008301526147578161471b565b9050919050565b60008151905061476d81613e14565b92915050565b60006020828403121561478957614788613da2565b5b60006147978482850161475e565b91505092915050565b7f4e6f546f6b656e73000000000000000000000000000000000000000000000000600082015250565b60006147d6600883613cfb565b91506147e1826147a0565b602082019050919050565b60006020820190508181036000830152614805816147c9565b9050919050565b6000604082019050614821600083018561412f565b61482e6020830184614021565b9392505050565b60008151905061484481613f1b565b92915050565b6000602082840312156148605761485f613da2565b5b600061486e84828501614835565b91505092915050565b600060408201905061488c600083018561412f565b6148996020830184613e8c565b9392505050565b60006060820190506148b5600083018661412f565b6148c26020830185614021565b6148cf6040830184614021565b949350505050565b7f426f744465746563746564000000000000000000000000000000000000000000600082015250565b600061490d600b83613cfb565b9150614918826148d7565b602082019050919050565b6000602082019050818103600083015261493c81614900565b9050919050565b7f4e6f744c61756e63686564000000000000000000000000000000000000000000600082015250565b6000614979600b83613cfb565b915061498482614943565b602082019050919050565b600060208201905081810360008301526149a88161496c565b9050919050565b60006149ba82613e0a565b91506149c583613e0a565b92508282039050818111156149dd576149dc614301565b5b92915050565b7f5472616e7366657244656c617900000000000000000000000000000000000000600082015250565b6000614a19600d83613cfb565b9150614a24826149e3565b602082019050919050565b60006020820190508181036000830152614a4881614a0c565b9050919050565b7f4d6178427579416d6f756e744578636565640000000000000000000000000000600082015250565b6000614a85601283613cfb565b9150614a9082614a4f565b602082019050919050565b60006020820190508181036000830152614ab481614a78565b9050919050565b6000614ac682613e0a565b9150614ad183613e0a565b9250828201905080821115614ae957614ae8614301565b5b92915050565b7f4d617857616c6c6574416d6f756e744578636565640000000000000000000000600082015250565b6000614b25601583613cfb565b9150614b3082614aef565b602082019050919050565b60006020820190508181036000830152614b5481614b18565b9050919050565b7f4d617853656c6c416d6f756e7445786365656400000000000000000000000000600082015250565b6000614b91601383613cfb565b9150614b9c82614b5b565b602082019050919050565b60006020820190508181036000830152614bc081614b84565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614c0581613dde565b92915050565b600060208284031215614c2157614c20613da2565b5b6000614c2f84828501614bf6565b91505092915050565b6000819050919050565b6000614c5d614c58614c5384614c38565b613fa7565b613e0a565b9050919050565b614c6d81614c42565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ca881613dcc565b82525050565b6000614cba8383614c9f565b60208301905092915050565b6000602082019050919050565b6000614cde82614c73565b614ce88185614c7e565b9350614cf383614c8f565b8060005b83811015614d24578151614d0b8882614cae565b9750614d1683614cc6565b925050600181019050614cf7565b5085935050505092915050565b600060a082019050614d466000830188614021565b614d536020830187614c64565b8181036040830152614d658186614cd3565b9050614d74606083018561412f565b614d816080830184614021565b969550505050505056fea2646970667358221220646f19c5fe607c1ac7ecdfd7bd43fb66a64702b227f66d287b1495951f58039a64736f6c63430008180033000000000000000000000000f73caffa4dfe888e6acf7e68e5361e82863be26000000000000000000000000097d8e067c2ed6fa31b18218fe34ae1f0513dfac4

Deployed Bytecode

0x6080604052600436106103395760003560e01c80638da5cb5b116101ab578063cb963728116100f7578063e6c1909b11610095578063f2fde38b1161006f578063f2fde38b14610c02578063f53bc83514610c2b578063f8b45b0514610c54578063fd72e22a14610c7f57610340565b8063e6c1909b14610b85578063ee5ecc8914610bb0578063ef998cf014610bd957610340565b8063d5759ba3116100d1578063d5759ba314610ac9578063dcf7aef314610af4578063dd62ed3e14610b1d578063e2f4560514610b5a57610340565b8063cb96372814610a4c578063d00efb2f14610a75578063d26ed3e314610aa057610340565b8063acb2ad6f11610164578063b62496f51161013e578063b62496f51461098e578063b8eb3546146109cb578063bc063e1a146109f6578063c04a541414610a2157610340565b8063acb2ad6f14610911578063ad29ffde1461093c578063afa4f3b21461096557610340565b80638da5cb5b1461080357806395927c251461082e57806395d89b41146108575780639a7a23d6146108825780639c0db5f3146108ab578063a9059cbb146108d457610340565b806349bd5a5e116102855780635d0044ca1161022357806370db69d6116101fd57806370db69d61461076d578063715018a61461079857806372ac2486146107af578063790ca413146107d857610340565b80635d0044ca146106dc5780636ca541e51461070557806370a082311461073057610340565b8063538ba4f91161025f578063538ba4f9146106225780635932ead11461064d57806359512ab0146106765780635cce86cd1461069f57610340565b806349bd5a5e1461058f5780634e6fd6c4146105ba5780634fbee193146105e557610340565b806323b872dd116102f2578063313ce567116102cc578063313ce567146104d35780633bbac579146104fe57806341aea9de1461053b578063470624021461056457610340565b806323b872dd146104405780632b14ca561461047d578063307aebc9146104a857610340565b806301339c211461034257806306fdde0314610359578063095ea7b314610384578063106a5a8f146103c15780631694505e146103ea57806318160ddd1461041557610340565b3661034057005b005b34801561034e57600080fd5b50610357610caa565b005b34801561036557600080fd5b5061036e610d59565b60405161037b9190613d80565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a69190613e40565b610deb565b6040516103b89190613e9b565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190613f47565b610e0e565b005b3480156103f657600080fd5b506103ff610e68565b60405161040c9190614006565b60405180910390f35b34801561042157600080fd5b5061042a610e8c565b6040516104379190614030565b60405180910390f35b34801561044c57600080fd5b506104676004803603810190610462919061404b565b610e96565b6040516104749190613e9b565b60405180910390f35b34801561048957600080fd5b50610492610ec5565b60405161049f9190614030565b60405180910390f35b3480156104b457600080fd5b506104bd610ecb565b6040516104ca9190613e9b565b60405180910390f35b3480156104df57600080fd5b506104e8610ede565b6040516104f591906140ba565b60405180910390f35b34801561050a57600080fd5b50610525600480360381019061052091906140d5565b610ee7565b6040516105329190613e9b565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190614102565b610f07565b005b34801561057057600080fd5b50610579610f63565b6040516105869190614030565b60405180910390f35b34801561059b57600080fd5b506105a4610f69565b6040516105b1919061413e565b60405180910390f35b3480156105c657600080fd5b506105cf610f8d565b6040516105dc919061413e565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906140d5565b610f93565b6040516106199190613e9b565b60405180910390f35b34801561062e57600080fd5b50610637610fb3565b604051610644919061413e565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f9190614102565b610fb8565b005b34801561068257600080fd5b5061069d60048036038101906106989190614102565b611014565b005b3480156106ab57600080fd5b506106c660048036038101906106c191906140d5565b611070565b6040516106d39190613e9b565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190614159565b611090565b005b34801561071157600080fd5b5061071a61113e565b6040516107279190613e9b565b60405180910390f35b34801561073c57600080fd5b50610757600480360381019061075291906140d5565b611151565b6040516107649190614030565b60405180910390f35b34801561077957600080fd5b5061078261119a565b60405161078f9190614030565b60405180910390f35b3480156107a457600080fd5b506107ad6111a0565b005b3480156107bb57600080fd5b506107d660048036038101906107d191906140d5565b6111b4565b005b3480156107e457600080fd5b506107ed6112f2565b6040516107fa9190614030565b60405180910390f35b34801561080f57600080fd5b506108186112f8565b604051610825919061413e565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190614159565b611321565b005b34801561086357600080fd5b5061086c6113b8565b6040516108799190613d80565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614186565b61144a565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190613f47565b6114ed565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190613e40565b6117fa565b6040516109089190613e9b565b60405180910390f35b34801561091d57600080fd5b5061092661181d565b6040516109339190614030565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613f47565b611823565b005b34801561097157600080fd5b5061098c60048036038101906109879190614159565b61187d565b005b34801561099a57600080fd5b506109b560048036038101906109b091906140d5565b611996565b6040516109c29190613e9b565b60405180910390f35b3480156109d757600080fd5b506109e06119b6565b6040516109ed9190614030565b60405180910390f35b348015610a0257600080fd5b50610a0b6119bc565b604051610a189190614030565b60405180910390f35b348015610a2d57600080fd5b50610a366119c1565b604051610a43919061413e565b60405180910390f35b348015610a5857600080fd5b50610a736004803603810190610a6e91906140d5565b6119e7565b005b348015610a8157600080fd5b50610a8a611ca0565b604051610a979190614030565b60405180910390f35b348015610aac57600080fd5b50610ac76004803603810190610ac29190614159565b611ca6565b005b348015610ad557600080fd5b50610ade611d3d565b604051610aeb9190613e9b565b60405180910390f35b348015610b0057600080fd5b50610b1b6004803603810190610b169190614159565b611d50565b005b348015610b2957600080fd5b50610b446004803603810190610b3f91906141c6565b611de7565b604051610b519190614030565b60405180910390f35b348015610b6657600080fd5b50610b6f611e6e565b604051610b7c9190614030565b60405180910390f35b348015610b9157600080fd5b50610b9a611e74565b604051610ba79190613e9b565b60405180910390f35b348015610bbc57600080fd5b50610bd76004803603810190610bd291906140d5565b611e87565b005b348015610be557600080fd5b50610c006004803603810190610bfb9190614159565b611fc5565b005b348015610c0e57600080fd5b50610c296004803603810190610c2491906140d5565b612073565b005b348015610c3757600080fd5b50610c526004803603810190610c4d9190614159565b6120f9565b005b348015610c6057600080fd5b50610c696121a7565b604051610c769190614030565b60405180910390f35b348015610c8b57600080fd5b50610c946121ad565b604051610ca1919061413e565b60405180910390f35b610cb26121d3565b600760189054906101000a900460ff1615610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990614252565b60405180910390fd5b6001600760186101000a81548160ff02191690831515021790555043600881905550426009819055507f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e266960405160405180910390a1565b606060048054610d68906142a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d94906142a1565b8015610de15780601f10610db657610100808354040283529160200191610de1565b820191906000526020600020905b815481529060010190602001808311610dc457829003601f168201915b5050505050905090565b600080610df661225a565b9050610e03818585612262565b600191505092915050565b610e166121d3565b60005b83839050811015610e6257610e55848483818110610e3a57610e396142d2565b5b9050602002016020810190610e4f91906140d5565b83612274565b8080600101915050610e19565b50505050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600354905090565b600080610ea161225a565b9050610eae858285612308565b610eb985858561239c565b60019150509392505050565b60105481565b600760189054906101000a900460ff1681565b60006012905090565b60126020528060005260406000206000915054906101000a900460ff1681565b610f0f6121d3565b80600760146101000a81548160ff0219169083151502179055507ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78181604051610f589190613e9b565b60405180910390a150565b600f5481565b7f000000000000000000000000bce867d7ed54175d46c184aa11513d6d102ff91081565b61dead81565b60136020528060005260406000206000915054906101000a900460ff1681565b600081565b610fc06121d3565b80600760156101000a81548160ff0219169083151502179055507f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f816040516110099190613e9b565b60405180910390a150565b61101c6121d3565b80600760166101000a81548160ff0219169083151502179055507f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b816040516110659190613e9b565b60405180910390a150565b60146020528060005260406000206000915054906101000a900460ff1681565b6110986121d3565b6103e860036110a5610e8c565b6110af9190614330565b6110b991906143a1565b8110156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f29061441e565b60405180910390fd5b80600d819055507fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf636186600d546040516111339190614030565b60405180910390a150565b600760159054906101000a900460ff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600b5481565b6111a86121d3565b6111b26000612490565b565b6111bc6121d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361122b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112229061448a565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516112e69291906144aa565b60405180910390a15050565b60095481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113296121d3565b601981111561136d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113649061451f565b60405180910390fd5b60006010549050816010819055507f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b0182826040516113ac92919061453f565b60405180910390a15050565b6060600580546113c7906142a1565b80601f01602080910402602001604051908101604052809291908181526020018280546113f3906142a1565b80156114405780601f1061141557610100808354040283529160200191611440565b820191906000526020600020905b81548152906001019060200180831161142357829003601f168201915b5050505050905090565b6114526121d3565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d6906145b4565b60405180910390fd5b6114e9828261250a565b5050565b6114f56121d3565b60005b838390508110156117f4576015600085858481811061151a576115196142d2565b5b905060200201602081019061152f91906140d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115f757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168484838181106115c9576115c86142d2565b5b90506020020160208101906115de91906140d5565b73ffffffffffffffffffffffffffffffffffffffff1614155b801561165657503073ffffffffffffffffffffffffffffffffffffffff16848483818110611628576116276142d2565b5b905060200201602081019061163d91906140d5565b73ffffffffffffffffffffffffffffffffffffffff1614155b80156116b65750600073ffffffffffffffffffffffffffffffffffffffff16848483818110611688576116876142d2565b5b905060200201602081019061169d91906140d5565b73ffffffffffffffffffffffffffffffffffffffff1614155b80156117b05750601360008585848181106116d4576116d36142d2565b5b90506020020160208101906116e991906140d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156117af5750601460008585848181106117505761174f6142d2565b5b905060200201602081019061176591906140d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b156117e7576117e68484838181106117cb576117ca6142d2565b5b90506020020160208101906117e091906140d5565b8361259e565b5b80806001019150506114f8565b50505050565b60008061180561225a565b905061181281858561239c565b600191505092915050565b60115481565b61182b6121d3565b60005b838390508110156118775761186a84848381811061184f5761184e6142d2565b5b905060200201602081019061186491906140d5565b83612632565b808060010191505061182e565b50505050565b6118856121d3565b600061188f610e8c565b9050620f42406001826118a29190614330565b6118ac91906143a1565b8210156118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e59061441e565b60405180910390fd5b6103e86005826118fe9190614330565b61190891906143a1565b82111561194a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194190614620565b60405180910390fd5b6000600e54905082600e819055507f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca838260405161198992919061453f565b60405180910390a1505050565b60156020528060005260406000206000915054906101000a900460ff1681565b600c5481565b601981565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119ef6121d3565b600033905060008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b2357600047915060008211611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a689061468c565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1682604051611a95906146dd565b60006040518083038185875af1925050503d8060008114611ad2576040519150601f19603f3d011682016040523d82523d6000602084013e611ad7565b606091505b50508091505080611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b149061473e565b60405180910390fd5b50611c62565b8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611b5c919061413e565b602060405180830381865afa158015611b79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9d9190614773565b905060008111611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd9906147ec565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611c1d92919061480c565b6020604051808303816000875af1158015611c3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c60919061484a565b505b7f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b8382604051611c9392919061480c565b60405180910390a1505050565b60085481565b611cae6121d3565b6019811115611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce99061451f565b60405180910390fd5b60006011549050816011819055507f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc258282604051611d3192919061453f565b60405180910390a15050565b600760149054906101000a900460ff1681565b611d586121d3565b6019811115611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d939061451f565b60405180910390fd5b6000600f54905081600f819055507f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d8282604051611ddb92919061453f565b60405180910390a15050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e5481565b600760169054906101000a900460ff1681565b611e8f6121d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef59061448a565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae005600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051611fb99291906144aa565b60405180910390a15050565b611fcd6121d3565b6103e86002611fda610e8c565b611fe49190614330565b611fee91906143a1565b811015612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120279061441e565b60405180910390fd5b80600c819055507f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b7600c546040516120689190614030565b60405180910390a150565b61207b6121d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120ed5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016120e4919061413e565b60405180910390fd5b6120f681612490565b50565b6121016121d3565b6103e8600261210e610e8c565b6121189190614330565b61212291906143a1565b811015612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b9061441e565b60405180910390fd5b80600b819055507f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f600b5460405161219c9190614030565b60405180910390a150565b600d5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6121db61225a565b73ffffffffffffffffffffffffffffffffffffffff166121f96112f8565b73ffffffffffffffffffffffffffffffffffffffff16146122585761221c61225a565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161224f919061413e565b60405180910390fd5b565b600033905090565b61226f83838360016126c6565b505050565b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282826040516122fc929190614877565b60405180910390a15050565b60006123148484611de7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146123965781811015612386578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161237d939291906148a0565b60405180910390fd5b612395848484840360006126c6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361240e5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401612405919061413e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124805760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401612477919061413e565b60405180910390fd5b61248b83838361289d565b505050565b600061249a6112f8565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124e7576124db816000612632565b6124e6816000612274565b5b6124f2826001612632565b6124fd826001612274565b61250682613655565b5050565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab8282604051612592929190614877565b60405180910390a15050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc88282604051612626929190614877565b60405180910390a15050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782826040516126ba929190614877565b60405180910390a15050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036127385760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161272f919061413e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127aa5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016127a1919061413e565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015612897578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161288e9190614030565b60405180910390a35b50505050565b60003390506000329050601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292b90614923565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806129b85750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6129f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ee90614923565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480612a5c57508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b80612ab15750601260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae790614923565b60405180910390fd5b600760189054906101000a900460ff1680612b545750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80612ba85750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bde9061498f565b60405180910390fd5b6000600760149054906101000a900460ff168015612c125750600760179054906101000a900460ff16155b8015612cbc5750601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cba5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b155b905080156132cb57612ccc6112f8565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015612d3a5750612d0a6112f8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612d735750600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612dad575061dead73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156132ca57600760159054906101000a900460ff1615612fe1577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015612e6f57507f000000000000000000000000bce867d7ed54175d46c184aa11513d6d102ff91073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15612fe057600343612e8191906149af565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054108015612f185750600343612ed691906149af565b601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b612f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4e90614a2f565b60405180910390fd5b43601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130845750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561312b57600b548411156130ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c590614a9b565b60405180910390fd5b600d546130da86611151565b856130e59190614abb565b1115613126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311d90614b3b565b60405180910390fd5b6132c9565b601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ce5750601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561321d57600c54841115613218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320f90614ba7565b60405180910390fd5b6132c8565b601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166132c757600d5461327a86611151565b856132859190614abb565b11156132c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132bd90614b3b565b60405180910390fd5b5b5b5b5b5b6000600760169054906101000a900460ff1680156132f65750600760179054906101000a900460ff16155b80156133a05750601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061339e5750601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b155b905080156135a7576000601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561340557506000601054115b1561342b5760646010548761341a9190614330565b61342491906143a1565b9050613582565b601560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561348657506000600f54115b156134ac576064600f548761349b9190614330565b6134a591906143a1565b9050613581565b601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156135505750601560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561355e57506000601154115b15613580576064601154876135739190614330565b61357d91906143a1565b90505b5b5b60008111156135a557808661359791906149af565b95506135a4883083613719565b5b505b60006135b230611151565b90506000600e5482101590508280156136155750601560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561361e5750805b1561363f57600a5443111561363e5761363682613941565b43600a819055505b5b61364a898989613719565b505050505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361376b57806003600082825461375f9190614abb565b92505081905550613840565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156137f8578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016137ef939291906148a0565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361388957806003600082825403925050819055506138d7565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139349190614030565b60405180910390a3505050565b6001600760176101000a81548160ff021916908315150217905550600080600267ffffffffffffffff81111561397a57613979614bc7565b5b6040519080825280602002602001820160405280156139a85781602001602082028036833780820191505090505b50905030816000815181106139c0576139bf6142d2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a899190614c0b565b81600181518110613a9d57613a9c6142d2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060006014600e54613ae89190614330565b905080841115613af6578093505b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008530426040518663ffffffff1660e01b8152600401613b58959493929190614d31565b600060405180830381600087803b158015613b7257600080fd5b505af1158015613b86573d6000803e3d6000fd5b5050505060004790506000600282613b9e91906143a1565b905060008183613bae91906149af565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613bf6906146dd565b60006040518083038185875af1925050503d8060008114613c33576040519150601f19603f3d011682016040523d82523d6000602084013e613c38565b606091505b505080965050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613c84906146dd565b60006040518083038185875af1925050503d8060008114613cc1576040519150601f19603f3d011682016040523d82523d6000602084013e613cc6565b606091505b5050809650505050505050506000600760176101000a81548160ff02191690831515021790555050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d2a578082015181840152602081019050613d0f565b60008484015250505050565b6000601f19601f8301169050919050565b6000613d5282613cf0565b613d5c8185613cfb565b9350613d6c818560208601613d0c565b613d7581613d36565b840191505092915050565b60006020820190508181036000830152613d9a8184613d47565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dd782613dac565b9050919050565b613de781613dcc565b8114613df257600080fd5b50565b600081359050613e0481613dde565b92915050565b6000819050919050565b613e1d81613e0a565b8114613e2857600080fd5b50565b600081359050613e3a81613e14565b92915050565b60008060408385031215613e5757613e56613da2565b5b6000613e6585828601613df5565b9250506020613e7685828601613e2b565b9150509250929050565b60008115159050919050565b613e9581613e80565b82525050565b6000602082019050613eb06000830184613e8c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613edb57613eda613eb6565b5b8235905067ffffffffffffffff811115613ef857613ef7613ebb565b5b602083019150836020820283011115613f1457613f13613ec0565b5b9250929050565b613f2481613e80565b8114613f2f57600080fd5b50565b600081359050613f4181613f1b565b92915050565b600080600060408486031215613f6057613f5f613da2565b5b600084013567ffffffffffffffff811115613f7e57613f7d613da7565b5b613f8a86828701613ec5565b93509350506020613f9d86828701613f32565b9150509250925092565b6000819050919050565b6000613fcc613fc7613fc284613dac565b613fa7565b613dac565b9050919050565b6000613fde82613fb1565b9050919050565b6000613ff082613fd3565b9050919050565b61400081613fe5565b82525050565b600060208201905061401b6000830184613ff7565b92915050565b61402a81613e0a565b82525050565b60006020820190506140456000830184614021565b92915050565b60008060006060848603121561406457614063613da2565b5b600061407286828701613df5565b935050602061408386828701613df5565b925050604061409486828701613e2b565b9150509250925092565b600060ff82169050919050565b6140b48161409e565b82525050565b60006020820190506140cf60008301846140ab565b92915050565b6000602082840312156140eb576140ea613da2565b5b60006140f984828501613df5565b91505092915050565b60006020828403121561411857614117613da2565b5b600061412684828501613f32565b91505092915050565b61413881613dcc565b82525050565b6000602082019050614153600083018461412f565b92915050565b60006020828403121561416f5761416e613da2565b5b600061417d84828501613e2b565b91505092915050565b6000806040838503121561419d5761419c613da2565b5b60006141ab85828601613df5565b92505060206141bc85828601613f32565b9150509250929050565b600080604083850312156141dd576141dc613da2565b5b60006141eb85828601613df5565b92505060206141fc85828601613df5565b9150509250929050565b7f416c72656164794c61756e636865640000000000000000000000000000000000600082015250565b600061423c600f83613cfb565b915061424782614206565b602082019050919050565b6000602082019050818103600083015261426b8161422f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142b957607f821691505b6020821081036142cc576142cb614272565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061433b82613e0a565b915061434683613e0a565b925082820261435481613e0a565b9150828204841483151761436b5761436a614301565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143ac82613e0a565b91506143b783613e0a565b9250826143c7576143c6614372565b5b828204905092915050565b7f416d6f756e74546f6f4c6f770000000000000000000000000000000000000000600082015250565b6000614408600c83613cfb565b9150614413826143d2565b602082019050919050565b60006020820190508181036000830152614437816143fb565b9050919050565b7f416464726573735a65726f000000000000000000000000000000000000000000600082015250565b6000614474600b83613cfb565b915061447f8261443e565b602082019050919050565b600060208201905081810360008301526144a381614467565b9050919050565b60006040820190506144bf600083018561412f565b6144cc602083018461412f565b9392505050565b7f466565546f6f4869676800000000000000000000000000000000000000000000600082015250565b6000614509600a83613cfb565b9150614514826144d3565b602082019050919050565b60006020820190508181036000830152614538816144fc565b9050919050565b60006040820190506145546000830185614021565b6145616020830184614021565b9392505050565b7f414d4d416c726561647953657400000000000000000000000000000000000000600082015250565b600061459e600d83613cfb565b91506145a982614568565b602082019050919050565b600060208201905081810360008301526145cd81614591565b9050919050565b7f416d6f756e74546f6f4869676800000000000000000000000000000000000000600082015250565b600061460a600d83613cfb565b9150614615826145d4565b602082019050919050565b60006020820190508181036000830152614639816145fd565b9050919050565b7f4e6f4e6174697665546f6b656e73000000000000000000000000000000000000600082015250565b6000614676600e83613cfb565b915061468182614640565b602082019050919050565b600060208201905081810360008301526146a581614669565b9050919050565b600081905092915050565b50565b60006146c76000836146ac565b91506146d2826146b7565b600082019050919050565b60006146e8826146ba565b9150819050919050565b7f4661696c6564546f57697468647261774e6174697665546f6b656e7300000000600082015250565b6000614728601c83613cfb565b9150614733826146f2565b602082019050919050565b600060208201905081810360008301526147578161471b565b9050919050565b60008151905061476d81613e14565b92915050565b60006020828403121561478957614788613da2565b5b60006147978482850161475e565b91505092915050565b7f4e6f546f6b656e73000000000000000000000000000000000000000000000000600082015250565b60006147d6600883613cfb565b91506147e1826147a0565b602082019050919050565b60006020820190508181036000830152614805816147c9565b9050919050565b6000604082019050614821600083018561412f565b61482e6020830184614021565b9392505050565b60008151905061484481613f1b565b92915050565b6000602082840312156148605761485f613da2565b5b600061486e84828501614835565b91505092915050565b600060408201905061488c600083018561412f565b6148996020830184613e8c565b9392505050565b60006060820190506148b5600083018661412f565b6148c26020830185614021565b6148cf6040830184614021565b949350505050565b7f426f744465746563746564000000000000000000000000000000000000000000600082015250565b600061490d600b83613cfb565b9150614918826148d7565b602082019050919050565b6000602082019050818103600083015261493c81614900565b9050919050565b7f4e6f744c61756e63686564000000000000000000000000000000000000000000600082015250565b6000614979600b83613cfb565b915061498482614943565b602082019050919050565b600060208201905081810360008301526149a88161496c565b9050919050565b60006149ba82613e0a565b91506149c583613e0a565b92508282039050818111156149dd576149dc614301565b5b92915050565b7f5472616e7366657244656c617900000000000000000000000000000000000000600082015250565b6000614a19600d83613cfb565b9150614a24826149e3565b602082019050919050565b60006020820190508181036000830152614a4881614a0c565b9050919050565b7f4d6178427579416d6f756e744578636565640000000000000000000000000000600082015250565b6000614a85601283613cfb565b9150614a9082614a4f565b602082019050919050565b60006020820190508181036000830152614ab481614a78565b9050919050565b6000614ac682613e0a565b9150614ad183613e0a565b9250828201905080821115614ae957614ae8614301565b5b92915050565b7f4d617857616c6c6574416d6f756e744578636565640000000000000000000000600082015250565b6000614b25601583613cfb565b9150614b3082614aef565b602082019050919050565b60006020820190508181036000830152614b5481614b18565b9050919050565b7f4d617853656c6c416d6f756e7445786365656400000000000000000000000000600082015250565b6000614b91601383613cfb565b9150614b9c82614b5b565b602082019050919050565b60006020820190508181036000830152614bc081614b84565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614c0581613dde565b92915050565b600060208284031215614c2157614c20613da2565b5b6000614c2f84828501614bf6565b91505092915050565b6000819050919050565b6000614c5d614c58614c5384614c38565b613fa7565b613e0a565b9050919050565b614c6d81614c42565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ca881613dcc565b82525050565b6000614cba8383614c9f565b60208301905092915050565b6000602082019050919050565b6000614cde82614c73565b614ce88185614c7e565b9350614cf383614c8f565b8060005b83811015614d24578151614d0b8882614cae565b9750614d1683614cc6565b925050600181019050614cf7565b5085935050505092915050565b600060a082019050614d466000830188614021565b614d536020830187614c64565b8181036040830152614d658186614cd3565b9050614d74606083018561412f565b614d816080830184614021565b969550505050505056fea2646970667358221220646f19c5fe607c1ac7ecdfd7bd43fb66a64702b227f66d287b1495951f58039a64736f6c63430008180033

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

000000000000000000000000f73caffa4dfe888e6acf7e68e5361e82863be26000000000000000000000000097d8e067c2ed6fa31b18218fe34ae1f0513dfac4

-----Decoded View---------------
Arg [0] : opsWallet (address): 0xF73cAffa4dFE888e6ACF7e68E5361e82863BE260
Arg [1] : devWallet (address): 0x97D8E067C2eD6fA31b18218fe34Ae1F0513DFac4

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f73caffa4dfe888e6acf7e68e5361e82863be260
Arg [1] : 00000000000000000000000097d8e067c2ed6fa31b18218fe34ae1f0513dfac4


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.