ETH Price: $3,286.41 (+0.97%)
Gas: 5 Gwei

Token

Patriots Coin (PTC)
 

Overview

Max Total Supply

17,760,000 PTC

Holders

199

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
29,796.929735278982271101 PTC

Value
$0.00
0xa48e12df736229089849317f4daf843dcdf5c924
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:
PatriotsCoin

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : PatriotsCoin.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

// Interface for interacting with V2 router contract
interface IRouter {
    function factory() external pure returns (address);

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

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

// Interface for interacting with factory contract
interface IFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

contract PatriotsCoin is ERC20Burnable, Ownable {
    constructor(
        address initialOwner,
        address _teamWallet,
        address _marketingWallet,
        uint8 _swapAtPercentage // 1 ≙ 0.01%
    )
    ERC20("Patriots Coin", "PTC")
    Ownable(msg.sender)
    {
        SWAP_PAIR = IFactory(ROUTER.factory()).createPair(
            address(this),
            WETH
        );
        setPair(SWAP_PAIR, true);
        _mint(initialOwner, 17760000 * 10 ** 18);
        setSwapAtPercentage(_swapAtPercentage); 
        setThreshold(2 * 10 ** 17);
        setTax(200, 100);
        setExcludedFromTaxStatus(initialOwner, true);
        setExcludedFromTaxStatus(address(this), true);
        setTeamWallet(_teamWallet);
        setMarketingWallet(_marketingWallet);
        _approve(address(this), address(ROUTER), ~uint256(0));
        transferOwnership(initialOwner);
    }

    mapping (address => bool) public isPair;
    mapping (address => bool) public isExcludedFromTax;
    uint256 public threshold;
    address payable public marketingWallet;
    address payable public teamWallet;
    address public immutable SWAP_PAIR;
    // WETH contract
    address private constant WETH = 
        0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    // PREME Token contract
    address private constant PREME =
        0x7d0C49057c09501595A8ce23b773BB36A40b521F;
    // deadWallet used by PREME Token
    address private constant DEAD_WALLET =
        0xdEAD000000000000000042069420694206942069;
    // UniSwap RouterV2
    IRouter public constant ROUTER =
        IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    uint16 public totalTax;
    uint16 public marketingTax;
    uint8 public swapAtPercentage;
    bool public isBurnFinished;
    bool inSwapAndLiquify;
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    } 

    event SetTax(
        uint16 indexed totalTax,
        uint16 indexed marketingTax
    );
    event SetThreshold(uint256 indexed threshold);
    event FailedToSwap(address indexed token, uint256 amount);
    event FailedToPayout(address indexed payoutaddress);
    event SetSwapAtPercentage(uint8 indexed swapAtPercentage);
    event SetTeamWallet(address indexed teamwallet);
    event SetMarketingWallet(address indexed marketingWallet);
    event SetPair(address indexed pair, bool indexed value);
    event SetExcludeFromTaxStatus(
        address indexed account,
        bool indexed isExcluded
    );

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        if (
            totalTax != 0 && !(isExcludedFromTax[from] || isExcludedFromTax[to])
        ) {
            if (isPair[to] || isPair[from]) {
                if (
                    balanceOf(address(this)) > balanceOf(SWAP_PAIR) *
                        swapAtPercentage / 10000 &&
                    isPair[to] &&
                    !inSwapAndLiquify
                ) handleTax();
                uint256 extraFee = value * totalTax / 10000;
                super._update(from, address(this), extraFee);
                value -= extraFee;
            }   
        }     
        super._update(from, to, value);
    }

    // Internal function to handle and distribute the collected tax
    function handleTax() private lockTheSwap {
        /* Sets maxAmount to 1% of SWAP_PAIR holdings and
        swapAmount to maxAmount if balance > maxAmount */
        uint256 maxAmount = balanceOf(SWAP_PAIR) / 100;
        uint256 swapAmount =
            balanceOf(address(this)) > maxAmount
                ? maxAmount
                : balanceOf(address(this));
        swapTokensForETH(swapAmount);
        if (address(this).balance > threshold) {
            if (marketingTax != 0) {
                if (!isBurnFinished) {
                    burnPREME(
                        address(this).balance * marketingTax / totalTax
                    );
                    if (block.timestamp > 1730782799) isBurnFinished = true;
                } else {
                    (bool succeed, ) = marketingWallet.call {
                        value: address(this).balance * marketingTax / totalTax
                    }('');
                    // If transfer fails, the contract will proceed
                    if (!succeed) emit FailedToPayout (marketingWallet);
                }
            }
            // Remaining funds are team tax (total tax - marketing tax)
            if (address(this).balance != 0) {
                (bool succeed, ) = teamWallet.call {
                    value: address(this).balance
                }('');
                // If transfer fails, the contract will proceed
                if (!succeed) emit FailedToPayout (teamWallet);
            }
        }
    }

    // Internal function to swap collected tax to ETH
    function swapTokensForETH(uint256 amount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH;
        try
            ROUTER.swapExactTokensForETH(
                amount,
                0, 
                path,
                address(this),
                block.timestamp
            )
        {} catch {
            // If swap fails, the contract will proceed
            emit FailedToSwap(address(this), amount);
            return;
        } 
    }

    // Internal function to buy and burn PREME (receiver is deadWallet)
    function burnPREME(uint256 amount) private {
        address[] memory path = new address[](2);
        path[0] = WETH;
        path[1] = PREME;
        try
            ROUTER.swapExactETHForTokensSupportingFeeOnTransferTokens{
                value: amount
            }(0, path, DEAD_WALLET, block.timestamp)
        {} catch {
            // If swap fails, the contract will proceed
            emit FailedToSwap(PREME, amount);
            return;
        }          
    }

    // Function to set taxed pair status
    function setPair(address pair, bool value) public onlyOwner {
        require(
            isPair[pair] != value,
            "Pair is already set to this value"
        );
        isPair[pair] = value;
        emit SetPair(pair, value);
    }

    /* Function to set the threshold for automatically swap
    (percentage of SWAP_PAIR holdings max. 50 ≙ 0.5%) */
    function setSwapAtPercentage(uint8 newPercentage) public onlyOwner {
        require(
            newPercentage != swapAtPercentage,
            "SwapAtPercentage is already set to this value"
        );
        require(
            newPercentage <= 50,
            "SwapAtPercentage can't exceed 50 (0.5%)"
        );
        swapAtPercentage = newPercentage;
        emit SetSwapAtPercentage(newPercentage);
    }

    // Function to set the ETH threshold for distribution (in WEI, max. 1 ETH)
    function setThreshold(uint256 newThreshold) public onlyOwner {
        require(
            newThreshold != threshold,
            "Threshold is already set to this value"
        );
        require(
            isBurnFinished || newThreshold <= 1 * 10 ** 18,
            "Threshold can't exceed 1 ETH if PREME burn isn't finished"
        );
        threshold = newThreshold;
        emit SetThreshold(newThreshold);
    }

    // Function to set tax (max 200 ≙ 2%)
    function setTax(
        uint16 newTotalTax,
        uint16 newMarketingTax
    ) public onlyOwner {
        require(
            /* As long as PREME burn period isn't finished,
            marketing tax is used for it and can't be changed */
            isBurnFinished || newMarketingTax == 100,
            "Marketing can't be changed if PREME burn isn't finished"
        );
        require(
            newMarketingTax <= newTotalTax && newTotalTax <= 200,
            "Total can't exceed (2%)"
        );
        totalTax = newTotalTax;
        marketingTax = newMarketingTax;
        emit SetTax(newTotalTax, newMarketingTax);
    }

    // Function to make team tax transparent (not used in code)
    function teamTax() public view returns(uint16){
        return totalTax - marketingTax;
    }

    // Function to set excluded from tax status
    function setExcludedFromTaxStatus(
        address account,
        bool isExcluded
    ) public onlyOwner {
        require(
            isExcludedFromTax[account] != isExcluded,
            "Account is already set to this value"
        );
        require(
            account != address(this) || isExcluded,
            "Contract needs to stay excluded"
        );
        isExcludedFromTax[account] = isExcluded;
        emit SetExcludeFromTaxStatus(account, isExcluded);
    }

    // Function to set payout address for marketing
    function setMarketingWallet(address newAddress) public onlyOwner {
        require(
            newAddress != marketingWallet,
            "Marketing wallet is already set to this value"
        );
        if (isExcludedFromTax[marketingWallet]) {
            setExcludedFromTaxStatus(marketingWallet, false);
            setExcludedFromTaxStatus(newAddress, true);
        }
        marketingWallet = payable(newAddress);
        emit SetMarketingWallet(newAddress);
    }

    // Function to set payout address for project
    function setTeamWallet(address newAddress) public onlyOwner {
        require(
            newAddress != teamWallet,
            "Team wallet is already set to this value"
        );
        if (isExcludedFromTax[teamWallet]) {
            setExcludedFromTaxStatus(teamWallet, false);
            setExcludedFromTaxStatus(newAddress, true);
        }
        teamWallet = payable(newAddress);
        emit SetTeamWallet(newAddress);
    }

    // Function to transfer ownership
    function transferOwnership(address newOwner) public override onlyOwner {
        if (isExcludedFromTax[owner()]) {
            setExcludedFromTaxStatus(owner(), false);
            setExcludedFromTaxStatus(newOwner, true);
        }
        super.transferOwnership(newOwner);
    }

    // Function to manually swap the collected tax
    function manualSwap() external onlyOwner {
        require(
            balanceOf(address(this)) != 0,
            "No tokens available to swap"
        );
        handleTax();
    }

    // To receive ETH (only during swap)
    receive() external payable { 
        require(inSwapAndLiquify);
    }
}

File 2 of 8 : 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 8 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, deducting from
     * the caller's allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

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

pragma solidity ^0.8.20;

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

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

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

File 5 of 8 : 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 6 of 8 : 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 7 of 8 : 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 8 of 8 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"address","name":"_teamWallet","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"uint8","name":"_swapAtPercentage","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"payoutaddress","type":"address"}],"name":"FailedToPayout","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FailedToSwap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"SetExcludeFromTaxStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"marketingWallet","type":"address"}],"name":"SetMarketingWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint8","name":"swapAtPercentage","type":"uint8"}],"name":"SetSwapAtPercentage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"totalTax","type":"uint16"},{"indexed":true,"internalType":"uint16","name":"marketingTax","type":"uint16"}],"name":"SetTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"teamwallet","type":"address"}],"name":"SetTeamWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"SetThreshold","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ROUTER","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SWAP_PAIR","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnFinished","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingTax","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"setExcludedFromTaxStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newPercentage","type":"uint8"}],"name":"setSwapAtPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newTotalTax","type":"uint16"},{"internalType":"uint16","name":"newMarketingTax","type":"uint16"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"setThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAtPercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamTax","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTax","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405234801562000010575f80fd5b5060405162006a1438038062006a14833981810160405281019062000036919062002076565b336040518060400160405280600d81526020017f50617472696f747320436f696e000000000000000000000000000000000000008152506040518060400160405280600381526020017f50544300000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062002349565b508060049081620000c6919062002349565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013c575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200013391906200243e565b60405180910390fd5b6200014d816200039360201b60201c565b50737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001d2919062002459565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b81526004016200022292919062002489565b6020604051808303815f875af11580156200023f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000265919062002459565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050620002ad60805160016200045660201b60201c565b620002ca846a0eb0d387777f349c0000006200059660201b60201c565b620002db816200062060201b60201c565b620002f46702c68af0bb1400006200072260201b60201c565b6200030860c860646200081660201b60201c565b6200031b8460016200095c60201b60201c565b6200032e3060016200095c60201b60201c565b6200033f8362000b1760201b60201c565b620003508262000cf760201b60201c565b6200037830737a250d5630b4cf539739df2c5dacb4c659f2488d5f1962000ed760201b60201c565b620003898462000ef160201b60201c565b5050505062003077565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200046662000fa960201b60201c565b80151560065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503620004f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ef9062002538565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167ff40a563af144a84735f7f6c7c3029794b0ac17713e5f048d3fd00ed85aa4ca7a60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000609575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200060091906200243e565b60405180910390fd5b6200061c5f83836200104b60201b60201c565b5050565b6200063062000fa960201b60201c565b600a60189054906101000a900460ff1660ff168160ff16036200068a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200068190620025cc565b60405180910390fd5b60328160ff161115620006d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006cb9062002660565b60405180910390fd5b80600a60186101000a81548160ff021916908360ff1602179055508060ff167fd993e88411e8d896bbbe51121e41b519b2d88b3d9af231f0ea13a5dfe0e54eac60405160405180910390a250565b6200073262000fa960201b60201c565b600854810362000779576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077090620026f4565b60405180910390fd5b600a60199054906101000a900460ff16806200079d5750670de0b6b3a76400008111155b620007df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007d69062002788565b60405180910390fd5b80600881905550807f46e8115bf463f9c29a9424fe152addef1bfaf2b43180d19bb7c2c78cc0ff1ebf60405160405180910390a250565b6200082662000fa960201b60201c565b600a60199054906101000a900460ff168062000846575060648161ffff16145b62000888576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200087f906200281c565b60405180910390fd5b8161ffff168161ffff1611158015620008a6575060c88261ffff1611155b620008e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008df906200288a565b60405180910390fd5b81600a60146101000a81548161ffff021916908361ffff16021790555080600a60166101000a81548161ffff021916908361ffff1602179055508061ffff168261ffff167fe7c1815e2fde01dbf39b1398f4178377b7c6709a2ff5354234a80c04be8be96960405160405180910390a35050565b6200096c62000fa960201b60201c565b80151560075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503620009fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f5906200291e565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158062000a375750805b62000a79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a70906200298c565b60405180910390fd5b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f6b8f4f35f1d56250908e430133b4145bf1bee87efd3d5ce502acfca0b8d356c960405160405180910390a35050565b62000b2762000fa960201b60201c565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000bb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bb09062002a20565b60405180910390fd5b60075f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161562000c715762000c5d600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f6200095c60201b60201c565b62000c708160016200095c60201b60201c565b5b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fc6a5dd316fe9d0339f2769deab7e31f64c8f5b101ffd85dfc9a83dbeaf2e69da60405160405180910390a250565b62000d0762000fa960201b60201c565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000d99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d909062002ab4565b60405180910390fd5b60075f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161562000e515762000e3d60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f6200095c60201b60201c565b62000e508160016200095c60201b60201c565b5b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f1d5165cf8e89286f2d38f9d17d4f9b30a4197d38fd9dafde1d3bf78dbc7e49f060405160405180910390a250565b62000eec8383836001620012fa60201b60201c565b505050565b62000f0162000fa960201b60201c565b60075f62000f14620014d260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161562000f955762000f8162000f74620014d260201b60201c565b5f6200095c60201b60201c565b62000f948160016200095c60201b60201c565b5b62000fa681620014fa60201b60201c565b50565b62000fb96200159160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000fdf620014d260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462001049576200100b6200159160201b60201c565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016200104091906200243e565b60405180910390fd5b565b5f600a60149054906101000a900461ffff1661ffff161415801562001109575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168062001107575060075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b155b15620012e25760065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680620011ab575060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15620012e157612710600a60189054906101000a900460ff1660ff16620011da6080516200159860201b60201c565b620011e6919062002b01565b620011f2919062002b78565b62001203306200159860201b60201c565b11801562001257575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015620012715750600a601a9054906101000a900460ff16155b15620012885762001287620015dd60201b60201c565b5b5f612710600a60149054906101000a900461ffff1661ffff1683620012ae919062002b01565b620012ba919062002b78565b9050620012cf8430836200197d60201b60201c565b8082620012dd919062002baf565b9150505b5b620012f58383836200197d60201b60201c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036200136d575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016200136491906200243e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620013e0575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401620013d791906200243e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015620014cc578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051620014c3919062002bfa565b60405180910390a35b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200150a62000fa960201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200157d575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200157491906200243e565b60405180910390fd5b6200158e816200039360201b60201c565b50565b5f33905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6001600a601a6101000a81548160ff0219169083151502179055505f60646200160e6080516200159860201b60201c565b6200161a919062002b78565b90505f816200162f306200159860201b60201c565b116200164c5762001646306200159860201b60201c565b6200164e565b815b9050620016618162001ba160201b60201c565b6008544711156200195f575f600a60169054906101000a900461ffff1661ffff16146200185c57600a60199054906101000a900460ff166200171f57620016f0600a60149054906101000a900461ffff1661ffff16600a60169054906101000a900461ffff1661ffff1647620016d8919062002b01565b620016e4919062002b78565b62001da360201b60201c565b636729a64f42111562001719576001600a60196101000a81548160ff0219169083151502179055505b6200185b565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600a60149054906101000a900461ffff1661ffff16600a60169054906101000a900461ffff1661ffff16476200178f919062002b01565b6200179b919062002b78565b604051620017a99062002c46565b5f6040518083038185875af1925050503d805f8114620017e5576040519150601f19603f3d011682016040523d82523d5f602084013e620017ea565b606091505b5050905080620018595760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167faae6f49a69d34825354babc54f6bc380b03be17523d79c360166d42e83098a5460405160405180910390a25b505b5b5f47146200195e575f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051620018ac9062002c46565b5f6040518083038185875af1925050503d805f8114620018e8576040519150601f19603f3d011682016040523d82523d5f602084013e620018ed565b606091505b50509050806200195c57600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167faae6f49a69d34825354babc54f6bc380b03be17523d79c360166d42e83098a5460405160405180910390a25b505b5b50505f600a601a6101000a81548160ff021916908315150217905550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620019d1578060025f828254620019c4919062002c5c565b9250508190555062001aa2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562001a5d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162001a549392919062002c96565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001aeb578060025f828254039250508190555062001b35565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001b94919062002bfa565b60405180910390a3505050565b5f600267ffffffffffffffff81111562001bc05762001bbf620020ef565b5b60405190808252806020026020018201604052801562001bef5781602001602082028036833780820191505090505b50905030815f8151811062001c095762001c0862002cd1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811062001c6f5762001c6e62002cd1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff166318cbafe5835f8430426040518663ffffffff1660e01b815260040162001d0095949392919062002e06565b5f604051808303815f875af192505050801562001d4157506040513d5f823e3d601f19601f8201168201806040525081019062001d3e919062002fd6565b60015b62001d9d573073ffffffffffffffffffffffffffffffffffffffff167f0bcd847fc84cd9af704fdf07905bd612b70921cd04019b6e72b145bb7c48f26f8360405162001d8e919062002bfa565b60405180910390a25062001da0565b50505b50565b5f600267ffffffffffffffff81111562001dc25762001dc1620020ef565b5b60405190808252806020026020018201604052801562001df15781602001602082028036833780820191505090505b50905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2815f8151811062001e1f5762001e1e62002cd1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737d0c49057c09501595a8ce23b773bb36a40b521f8160018151811062001e855762001e8462002cd1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663b6f9de95835f8473dead000000000000000042069420694206942069426040518663ffffffff1660e01b815260040162001f29949392919062003025565b5f604051808303818588803b15801562001f41575f80fd5b505af19350505050801562001f54575060015b62001fc457737d0c49057c09501595a8ce23b773bb36a40b521f73ffffffffffffffffffffffffffffffffffffffff167f0bcd847fc84cd9af704fdf07905bd612b70921cd04019b6e72b145bb7c48f26f8360405162001fb5919062002bfa565b60405180910390a25062001fc6565b505b50565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620020058262001fda565b9050919050565b620020178162001ff9565b811462002022575f80fd5b50565b5f8151905062002035816200200c565b92915050565b5f60ff82169050919050565b62002052816200203b565b81146200205d575f80fd5b50565b5f81519050620020708162002047565b92915050565b5f805f806080858703121562002091576200209062001fd2565b5b5f620020a08782880162002025565b9450506020620020b38782880162002025565b9350506040620020c68782880162002025565b9250506060620020d98782880162002060565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200216157607f821691505b6020821081036200217757620021766200211c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620021db7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200219e565b620021e786836200219e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620022316200222b6200222584620021ff565b62002208565b620021ff565b9050919050565b5f819050919050565b6200224c8362002211565b620022646200225b8262002238565b848454620021aa565b825550505050565b5f90565b6200227a6200226c565b6200228781848462002241565b505050565b5b81811015620022ae57620022a25f8262002270565b6001810190506200228d565b5050565b601f821115620022fd57620022c7816200217d565b620022d2846200218f565b81016020851015620022e2578190505b620022fa620022f1856200218f565b8301826200228c565b50505b505050565b5f82821c905092915050565b5f6200231f5f198460080262002302565b1980831691505092915050565b5f6200233983836200230e565b9150826002028217905092915050565b6200235482620020e5565b67ffffffffffffffff81111562002370576200236f620020ef565b5b6200237c825462002149565b62002389828285620022b2565b5f60209050601f831160018114620023bf575f8415620023aa578287015190505b620023b685826200232c565b86555062002425565b601f198416620023cf866200217d565b5f5b82811015620023f857848901518255600182019150602085019450602081019050620023d1565b8683101562002418578489015162002414601f8916826200230e565b8355505b6001600288020188555050505b505050505050565b620024388162001ff9565b82525050565b5f602082019050620024535f8301846200242d565b92915050565b5f6020828403121562002471576200247062001fd2565b5b5f620024808482850162002025565b91505092915050565b5f6040820190506200249e5f8301856200242d565b620024ad60208301846200242d565b9392505050565b5f82825260208201905092915050565b7f5061697220697320616c72656164792073657420746f20746869732076616c755f8201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b5f62002520602183620024b4565b91506200252d82620024c4565b604082019050919050565b5f6020820190508181035f830152620025518162002512565b9050919050565b7f53776170417450657263656e7461676520697320616c726561647920736574205f8201527f746f20746869732076616c756500000000000000000000000000000000000000602082015250565b5f620025b4602d83620024b4565b9150620025c18262002558565b604082019050919050565b5f6020820190508181035f830152620025e581620025a6565b9050919050565b7f53776170417450657263656e746167652063616e2774206578636565642035305f8201527f2028302e35252900000000000000000000000000000000000000000000000000602082015250565b5f62002648602783620024b4565b91506200265582620025ec565b604082019050919050565b5f6020820190508181035f83015262002679816200263a565b9050919050565b7f5468726573686f6c6420697320616c72656164792073657420746f20746869735f8201527f2076616c75650000000000000000000000000000000000000000000000000000602082015250565b5f620026dc602683620024b4565b9150620026e98262002680565b604082019050919050565b5f6020820190508181035f8301526200270d81620026ce565b9050919050565b7f5468726573686f6c642063616e277420657863656564203120455448206966205f8201527f5052454d45206275726e2069736e27742066696e697368656400000000000000602082015250565b5f62002770603983620024b4565b91506200277d8262002714565b604082019050919050565b5f6020820190508181035f830152620027a18162002762565b9050919050565b7f4d61726b6574696e672063616e2774206265206368616e6765642069662050525f8201527f454d45206275726e2069736e27742066696e6973686564000000000000000000602082015250565b5f62002804603783620024b4565b91506200281182620027a8565b604082019050919050565b5f6020820190508181035f8301526200283581620027f6565b9050919050565b7f546f74616c2063616e27742065786365656420283225290000000000000000005f82015250565b5f62002872601783620024b4565b91506200287f826200283c565b602082019050919050565b5f6020820190508181035f830152620028a38162002864565b9050919050565b7f4163636f756e7420697320616c72656164792073657420746f207468697320765f8201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b5f62002906602483620024b4565b91506200291382620028aa565b604082019050919050565b5f6020820190508181035f8301526200293781620028f8565b9050919050565b7f436f6e7472616374206e6565647320746f2073746179206578636c75646564005f82015250565b5f62002974601f83620024b4565b915062002981826200293e565b602082019050919050565b5f6020820190508181035f830152620029a58162002966565b9050919050565b7f5465616d2077616c6c657420697320616c72656164792073657420746f2074685f8201527f69732076616c7565000000000000000000000000000000000000000000000000602082015250565b5f62002a08602883620024b4565b915062002a1582620029ac565b604082019050919050565b5f6020820190508181035f83015262002a3981620029fa565b9050919050565b7f4d61726b6574696e672077616c6c657420697320616c726561647920736574205f8201527f746f20746869732076616c756500000000000000000000000000000000000000602082015250565b5f62002a9c602d83620024b4565b915062002aa98262002a40565b604082019050919050565b5f6020820190508181035f83015262002acd8162002a8e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62002b0d82620021ff565b915062002b1a83620021ff565b925082820262002b2a81620021ff565b9150828204841483151762002b445762002b4362002ad4565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62002b8482620021ff565b915062002b9183620021ff565b92508262002ba45762002ba362002b4b565b5b828204905092915050565b5f62002bbb82620021ff565b915062002bc883620021ff565b925082820390508181111562002be35762002be262002ad4565b5b92915050565b62002bf481620021ff565b82525050565b5f60208201905062002c0f5f83018462002be9565b92915050565b5f81905092915050565b50565b5f62002c2f5f8362002c15565b915062002c3c8262002c1f565b5f82019050919050565b5f62002c528262002c22565b9150819050919050565b5f62002c6882620021ff565b915062002c7583620021ff565b925082820190508082111562002c905762002c8f62002ad4565b5b92915050565b5f60608201905062002cab5f8301866200242d565b62002cba602083018562002be9565b62002cc9604083018462002be9565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f62002d2762002d2162002d1b8462002cfe565b62002208565b620021ff565b9050919050565b62002d398162002d07565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b62002d738162001ff9565b82525050565b5f62002d86838362002d68565b60208301905092915050565b5f602082019050919050565b5f62002daa8262002d3f565b62002db6818562002d49565b935062002dc38362002d59565b805f5b8381101562002df957815162002ddd888262002d79565b975062002dea8362002d92565b92505060018101905062002dc6565b5085935050505092915050565b5f60a08201905062002e1b5f83018862002be9565b62002e2a602083018762002d2e565b818103604083015262002e3e818662002d9e565b905062002e4f60608301856200242d565b62002e5e608083018462002be9565b9695505050505050565b5f80fd5b5f601f19601f8301169050919050565b62002e878262002e6c565b810181811067ffffffffffffffff8211171562002ea95762002ea8620020ef565b5b80604052505050565b5f62002ebd62001fc9565b905062002ecb828262002e7c565b919050565b5f67ffffffffffffffff82111562002eed5762002eec620020ef565b5b602082029050602081019050919050565b5f80fd5b62002f0d81620021ff565b811462002f18575f80fd5b50565b5f8151905062002f2b8162002f02565b92915050565b5f62002f4762002f418462002ed0565b62002eb2565b9050808382526020820190506020840283018581111562002f6d5762002f6c62002efe565b5b835b8181101562002f9a578062002f85888262002f1b565b84526020840193505060208101905062002f6f565b5050509392505050565b5f82601f83011262002fbb5762002fba62002e68565b5b815162002fcd84826020860162002f31565b91505092915050565b5f6020828403121562002fee5762002fed62001fd2565b5b5f82015167ffffffffffffffff8111156200300e576200300d62001fd6565b5b6200301c8482850162002fa4565b91505092915050565b5f6080820190506200303a5f83018762002d2e565b81810360208301526200304e818662002d9e565b90506200305f60408301856200242d565b6200306e606083018462002be9565b95945050505050565b6080516139766200309e5f395f818161123001528181611933015261211c01526139765ff3fe6080604052600436106101fc575f3560e01c806379cc67901161010c578063cb4ca6311161009f578063e5e31b131161006e578063e5e31b1314610715578063e796712e14610751578063f285578514610779578063f2fde38b146107a3578063fe85b42b146107cb5761021b565b8063cb4ca6311461064b578063cd5d89ca14610687578063dd62ed3e146106af578063e4960d89146106eb5761021b565b806395d89b41116100db57806395d89b4114610593578063960bfe04146105bd578063a9059cbb146105e5578063aed8d6ba146106215761021b565b806379cc6790146104ef57806386a22eff146105175780638da5cb5b1461053f578063932733c7146105695761021b565b806342966c681161018f578063599270441161015e57806359927044146104215780635d098b381461044b57806370a0823114610473578063715018a6146104af57806375f0a874146104c55761021b565b806342966c681461039157806342cde4e8146103b957806351bc3c85146103e357806357654e7e146103f95761021b565b80631d2cb02d116101cb5780631d2cb02d146102d757806323b872dd14610301578063313ce5671461033d57806332fe7b26146103675761021b565b806306fdde031461021f578063095ea7b3146102495780631525ff7d1461028557806318160ddd146102ad5761021b565b3661021b57600a601a9054906101000a900460ff16610219575f80fd5b005b5f80fd5b34801561022a575f80fd5b506102336107f5565b60405161024091906128d9565b60405180910390f35b348015610254575f80fd5b5061026f600480360381019061026a9190612997565b610885565b60405161027c91906129ef565b60405180910390f35b348015610290575f80fd5b506102ab60048036038101906102a69190612a08565b6108a7565b005b3480156102b8575f80fd5b506102c1610a6b565b6040516102ce9190612a42565b60405180910390f35b3480156102e2575f80fd5b506102eb610a74565b6040516102f89190612a77565b60405180910390f35b34801561030c575f80fd5b5061032760048036038101906103229190612a90565b610a88565b60405161033491906129ef565b60405180910390f35b348015610348575f80fd5b50610351610ab6565b60405161035e9190612afb565b60405180910390f35b348015610372575f80fd5b5061037b610abe565b6040516103889190612b6f565b60405180910390f35b34801561039c575f80fd5b506103b760048036038101906103b29190612b88565b610ad6565b005b3480156103c4575f80fd5b506103cd610aea565b6040516103da9190612a42565b60405180910390f35b3480156103ee575f80fd5b506103f7610af0565b005b348015610404575f80fd5b5061041f600480360381019061041a9190612bdd565b610b4c565b005b34801561042c575f80fd5b50610435610c82565b6040516104429190612c3b565b60405180910390f35b348015610456575f80fd5b50610471600480360381019061046c9190612a08565b610ca7565b005b34801561047e575f80fd5b5061049960048036038101906104949190612a08565b610e6b565b6040516104a69190612a42565b60405180910390f35b3480156104ba575f80fd5b506104c3610eb0565b005b3480156104d0575f80fd5b506104d9610ec3565b6040516104e69190612c3b565b60405180910390f35b3480156104fa575f80fd5b5061051560048036038101906105109190612997565b610ee8565b005b348015610522575f80fd5b5061053d60048036038101906105389190612c7e565b610f08565b005b34801561054a575f80fd5b5061055361103d565b6040516105609190612ccb565b60405180910390f35b348015610574575f80fd5b5061057d611065565b60405161058a9190612a77565b60405180910390f35b34801561059e575f80fd5b506105a7611097565b6040516105b491906128d9565b60405180910390f35b3480156105c8575f80fd5b506105e360048036038101906105de9190612b88565b611127565b005b3480156105f0575f80fd5b5061060b60048036038101906106069190612997565b61120c565b60405161061891906129ef565b60405180910390f35b34801561062c575f80fd5b5061063561122e565b6040516106429190612ccb565b60405180910390f35b348015610656575f80fd5b50610671600480360381019061066c9190612a08565b611252565b60405161067e91906129ef565b60405180910390f35b348015610692575f80fd5b506106ad60048036038101906106a89190612c7e565b61126f565b005b3480156106ba575f80fd5b506106d560048036038101906106d09190612ce4565b61141b565b6040516106e29190612a42565b60405180910390f35b3480156106f6575f80fd5b506106ff61149d565b60405161070c91906129ef565b60405180910390f35b348015610720575f80fd5b5061073b60048036038101906107369190612a08565b6114b0565b60405161074891906129ef565b60405180910390f35b34801561075c575f80fd5b5061077760048036038101906107729190612d4c565b6114cd565b005b348015610784575f80fd5b5061078d6115c1565b60405161079a9190612afb565b60405180910390f35b3480156107ae575f80fd5b506107c960048036038101906107c49190612a08565b6115d4565b005b3480156107d6575f80fd5b506107df61165b565b6040516107ec9190612a77565b60405180910390f35b60606003805461080490612da4565b80601f016020809104026020016040519081016040528092919081815260200182805461083090612da4565b801561087b5780601f106108525761010080835404028352916020019161087b565b820191905f5260205f20905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b5f8061088f61166f565b905061089c818585611676565b600191505092915050565b6108af611688565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361093e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093590612e44565b60405180910390fd5b60075f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156109e5576109d9600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f61126f565b6109e481600161126f565b5b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fc6a5dd316fe9d0339f2769deab7e31f64c8f5b101ffd85dfc9a83dbeaf2e69da60405160405180910390a250565b5f600254905090565b600a60169054906101000a900461ffff1681565b5f80610a9261166f565b9050610a9f85828561170f565b610aaa8585856117a1565b60019150509392505050565b5f6012905090565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b610ae7610ae161166f565b82611891565b50565b60085481565b610af8611688565b5f610b0230610e6b565b03610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990612eac565b60405180910390fd5b610b4a611910565b565b610b54611688565b600a60199054906101000a900460ff1680610b73575060648161ffff16145b610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba990612f3a565b60405180910390fd5b8161ffff168161ffff1611158015610bcf575060c88261ffff1611155b610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0590612fa2565b60405180910390fd5b81600a60146101000a81548161ffff021916908361ffff16021790555080600a60166101000a81548161ffff021916908361ffff1602179055508061ffff168261ffff167fe7c1815e2fde01dbf39b1398f4178377b7c6709a2ff5354234a80c04be8be96960405160405180910390a35050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610caf611688565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3590613030565b60405180910390fd5b60075f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610de557610dd960095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f61126f565b610de481600161126f565b5b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f1d5165cf8e89286f2d38f9d17d4f9b30a4197d38fd9dafde1d3bf78dbc7e49f060405160405180910390a250565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610eb8611688565b610ec15f611c8a565b565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610efa82610ef461166f565b8361170f565b610f048282611891565b5050565b610f10611688565b80151560065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f96906130be565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167ff40a563af144a84735f7f6c7c3029794b0ac17713e5f048d3fd00ed85aa4ca7a60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f600a60169054906101000a900461ffff16600a60149054906101000a900461ffff166110929190613109565b905090565b6060600480546110a690612da4565b80601f01602080910402602001604051908101604052809291908181526020018280546110d290612da4565b801561111d5780601f106110f45761010080835404028352916020019161111d565b820191905f5260205f20905b81548152906001019060200180831161110057829003601f168201915b5050505050905090565b61112f611688565b6008548103611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906131ae565b60405180910390fd5b600a60199054906101000a900460ff16806111965750670de0b6b3a76400008111155b6111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061323c565b60405180910390fd5b80600881905550807f46e8115bf463f9c29a9424fe152addef1bfaf2b43180d19bb7c2c78cc0ff1ebf60405160405180910390a250565b5f8061121661166f565b90506112238185856117a1565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6007602052805f5260405f205f915054906101000a900460ff1681565b611277611688565b80151560075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd906132ca565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158061133e5750805b61137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613332565b60405180910390fd5b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f6b8f4f35f1d56250908e430133b4145bf1bee87efd3d5ce502acfca0b8d356c960405160405180910390a35050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600a60199054906101000a900460ff1681565b6006602052805f5260405f205f915054906101000a900460ff1681565b6114d5611688565b600a60189054906101000a900460ff1660ff168160ff160361152c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611523906133c0565b60405180910390fd5b60328160ff161115611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a9061344e565b60405180910390fd5b80600a60186101000a81548160ff021916908360ff1602179055508060ff167fd993e88411e8d896bbbe51121e41b519b2d88b3d9af231f0ea13a5dfe0e54eac60405160405180910390a250565b600a60189054906101000a900460ff1681565b6115dc611688565b60075f6115e761103d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561164f5761164361163d61103d565b5f61126f565b61164e81600161126f565b5b61165881611d4d565b50565b600a60149054906101000a900461ffff1681565b5f33905090565b6116838383836001611dd1565b505050565b61169061166f565b73ffffffffffffffffffffffffffffffffffffffff166116ae61103d565b73ffffffffffffffffffffffffffffffffffffffff161461170d576116d161166f565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016117049190612ccb565b60405180910390fd5b565b5f61171a848461141b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461179b578181101561178c578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016117839392919061346c565b60405180910390fd5b61179a84848484035f611dd1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611811575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016118089190612ccb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611881575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016118789190612ccb565b60405180910390fd5b61188c838383611fa0565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611901575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016118f89190612ccb565b60405180910390fd5b61190c825f83611fa0565b5050565b6001600a601a6101000a81548160ff0219169083151502179055505f60646119577f0000000000000000000000000000000000000000000000000000000000000000610e6b565b61196191906134ce565b90505f8161196e30610e6b565b116119815761197c30610e6b565b611983565b815b905061198e81612233565b600854471115611c6c575f600a60169054906101000a900461ffff1661ffff1614611b6f57600a60199054906101000a900460ff16611a3b57611a0e600a60149054906101000a900461ffff1661ffff16600a60169054906101000a900461ffff1661ffff16476119ff91906134fe565b611a0991906134ce565b612422565b636729a64f421115611a36576001600a60196101000a81548160ff0219169083151502179055505b611b6e565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600a60149054906101000a900461ffff1661ffff16600a60169054906101000a900461ffff1661ffff1647611aa991906134fe565b611ab391906134ce565b604051611abf9061356c565b5f6040518083038185875af1925050503d805f8114611af9576040519150601f19603f3d011682016040523d82523d5f602084013e611afe565b606091505b5050905080611b6c5760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167faae6f49a69d34825354babc54f6bc380b03be17523d79c360166d42e83098a5460405160405180910390a25b505b5b5f4714611c6b575f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611bbc9061356c565b5f6040518083038185875af1925050503d805f8114611bf6576040519150601f19603f3d011682016040523d82523d5f602084013e611bfb565b606091505b5050905080611c6957600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167faae6f49a69d34825354babc54f6bc380b03be17523d79c360166d42e83098a5460405160405180910390a25b505b5b50505f600a601a6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d55611688565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dc5575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611dbc9190612ccb565b60405180910390fd5b611dce81611c8a565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e41575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611e389190612ccb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611eb1575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611ea89190612ccb565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611f9a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611f919190612a42565b60405180910390a35b50505050565b5f600a60149054906101000a900461ffff1661ffff161415801561205c575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061205a575060075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b155b156122235760065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120fc575060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561222257612710600a60189054906101000a900460ff1660ff166121407f0000000000000000000000000000000000000000000000000000000000000000610e6b565b61214a91906134fe565b61215491906134ce565b61215d30610e6b565b1180156121b0575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80156121c95750600a601a9054906101000a900460ff16155b156121d7576121d6611910565b5b5f612710600a60149054906101000a900461ffff1661ffff16836121fb91906134fe565b61220591906134ce565b9050612212843083612636565b808261221e9190613580565b9150505b5b61222e838383612636565b505050565b5f600267ffffffffffffffff81111561224f5761224e6135b3565b5b60405190808252806020026020018201604052801561227d5781602001602082028036833780820191505090505b50905030815f81518110612294576122936135e0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106122f7576122f66135e0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff166318cbafe5835f8430426040518663ffffffff1660e01b81526004016123869594939291906136fd565b5f604051808303815f875af19250505080156123c457506040513d5f823e3d601f19601f820116820180604052508101906123c1919061387c565b60015b61241c573073ffffffffffffffffffffffffffffffffffffffff167f0bcd847fc84cd9af704fdf07905bd612b70921cd04019b6e72b145bb7c48f26f8360405161240e9190612a42565b60405180910390a25061241f565b50505b50565b5f600267ffffffffffffffff81111561243e5761243d6135b3565b5b60405190808252806020026020018201604052801561246c5781602001602082028036833780820191505090505b50905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2815f81518110612497576124966135e0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737d0c49057c09501595a8ce23b773bb36a40b521f816001815181106124fa576124f96135e0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663b6f9de95835f8473dead000000000000000042069420694206942069426040518663ffffffff1660e01b815260040161259c94939291906138c3565b5f604051808303818588803b1580156125b3575f80fd5b505af1935050505080156125c5575060015b61263157737d0c49057c09501595a8ce23b773bb36a40b521f73ffffffffffffffffffffffffffffffffffffffff167f0bcd847fc84cd9af704fdf07905bd612b70921cd04019b6e72b145bb7c48f26f836040516126239190612a42565b60405180910390a250612633565b505b50565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612686578060025f82825461267a919061390d565b92505081905550612754565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561270f578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016127069392919061346c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361279b578060025f82825403925050819055506127e5565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516128429190612a42565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561288657808201518184015260208101905061286b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6128ab8261284f565b6128b58185612859565b93506128c5818560208601612869565b6128ce81612891565b840191505092915050565b5f6020820190508181035f8301526128f181846128a1565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6129338261290a565b9050919050565b61294381612929565b811461294d575f80fd5b50565b5f8135905061295e8161293a565b92915050565b5f819050919050565b61297681612964565b8114612980575f80fd5b50565b5f813590506129918161296d565b92915050565b5f80604083850312156129ad576129ac612902565b5b5f6129ba85828601612950565b92505060206129cb85828601612983565b9150509250929050565b5f8115159050919050565b6129e9816129d5565b82525050565b5f602082019050612a025f8301846129e0565b92915050565b5f60208284031215612a1d57612a1c612902565b5b5f612a2a84828501612950565b91505092915050565b612a3c81612964565b82525050565b5f602082019050612a555f830184612a33565b92915050565b5f61ffff82169050919050565b612a7181612a5b565b82525050565b5f602082019050612a8a5f830184612a68565b92915050565b5f805f60608486031215612aa757612aa6612902565b5b5f612ab486828701612950565b9350506020612ac586828701612950565b9250506040612ad686828701612983565b9150509250925092565b5f60ff82169050919050565b612af581612ae0565b82525050565b5f602082019050612b0e5f830184612aec565b92915050565b5f819050919050565b5f612b37612b32612b2d8461290a565b612b14565b61290a565b9050919050565b5f612b4882612b1d565b9050919050565b5f612b5982612b3e565b9050919050565b612b6981612b4f565b82525050565b5f602082019050612b825f830184612b60565b92915050565b5f60208284031215612b9d57612b9c612902565b5b5f612baa84828501612983565b91505092915050565b612bbc81612a5b565b8114612bc6575f80fd5b50565b5f81359050612bd781612bb3565b92915050565b5f8060408385031215612bf357612bf2612902565b5b5f612c0085828601612bc9565b9250506020612c1185828601612bc9565b9150509250929050565b5f612c258261290a565b9050919050565b612c3581612c1b565b82525050565b5f602082019050612c4e5f830184612c2c565b92915050565b612c5d816129d5565b8114612c67575f80fd5b50565b5f81359050612c7881612c54565b92915050565b5f8060408385031215612c9457612c93612902565b5b5f612ca185828601612950565b9250506020612cb285828601612c6a565b9150509250929050565b612cc581612929565b82525050565b5f602082019050612cde5f830184612cbc565b92915050565b5f8060408385031215612cfa57612cf9612902565b5b5f612d0785828601612950565b9250506020612d1885828601612950565b9150509250929050565b612d2b81612ae0565b8114612d35575f80fd5b50565b5f81359050612d4681612d22565b92915050565b5f60208284031215612d6157612d60612902565b5b5f612d6e84828501612d38565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612dbb57607f821691505b602082108103612dce57612dcd612d77565b5b50919050565b7f5465616d2077616c6c657420697320616c72656164792073657420746f2074685f8201527f69732076616c7565000000000000000000000000000000000000000000000000602082015250565b5f612e2e602883612859565b9150612e3982612dd4565b604082019050919050565b5f6020820190508181035f830152612e5b81612e22565b9050919050565b7f4e6f20746f6b656e7320617661696c61626c6520746f207377617000000000005f82015250565b5f612e96601b83612859565b9150612ea182612e62565b602082019050919050565b5f6020820190508181035f830152612ec381612e8a565b9050919050565b7f4d61726b6574696e672063616e2774206265206368616e6765642069662050525f8201527f454d45206275726e2069736e27742066696e6973686564000000000000000000602082015250565b5f612f24603783612859565b9150612f2f82612eca565b604082019050919050565b5f6020820190508181035f830152612f5181612f18565b9050919050565b7f546f74616c2063616e27742065786365656420283225290000000000000000005f82015250565b5f612f8c601783612859565b9150612f9782612f58565b602082019050919050565b5f6020820190508181035f830152612fb981612f80565b9050919050565b7f4d61726b6574696e672077616c6c657420697320616c726561647920736574205f8201527f746f20746869732076616c756500000000000000000000000000000000000000602082015250565b5f61301a602d83612859565b915061302582612fc0565b604082019050919050565b5f6020820190508181035f8301526130478161300e565b9050919050565b7f5061697220697320616c72656164792073657420746f20746869732076616c755f8201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b5f6130a8602183612859565b91506130b38261304e565b604082019050919050565b5f6020820190508181035f8301526130d58161309c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61311382612a5b565b915061311e83612a5b565b9250828203905061ffff811115613138576131376130dc565b5b92915050565b7f5468726573686f6c6420697320616c72656164792073657420746f20746869735f8201527f2076616c75650000000000000000000000000000000000000000000000000000602082015250565b5f613198602683612859565b91506131a38261313e565b604082019050919050565b5f6020820190508181035f8301526131c58161318c565b9050919050565b7f5468726573686f6c642063616e277420657863656564203120455448206966205f8201527f5052454d45206275726e2069736e27742066696e697368656400000000000000602082015250565b5f613226603983612859565b9150613231826131cc565b604082019050919050565b5f6020820190508181035f8301526132538161321a565b9050919050565b7f4163636f756e7420697320616c72656164792073657420746f207468697320765f8201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b5f6132b4602483612859565b91506132bf8261325a565b604082019050919050565b5f6020820190508181035f8301526132e1816132a8565b9050919050565b7f436f6e7472616374206e6565647320746f2073746179206578636c75646564005f82015250565b5f61331c601f83612859565b9150613327826132e8565b602082019050919050565b5f6020820190508181035f83015261334981613310565b9050919050565b7f53776170417450657263656e7461676520697320616c726561647920736574205f8201527f746f20746869732076616c756500000000000000000000000000000000000000602082015250565b5f6133aa602d83612859565b91506133b582613350565b604082019050919050565b5f6020820190508181035f8301526133d78161339e565b9050919050565b7f53776170417450657263656e746167652063616e2774206578636565642035305f8201527f2028302e35252900000000000000000000000000000000000000000000000000602082015250565b5f613438602783612859565b9150613443826133de565b604082019050919050565b5f6020820190508181035f8301526134658161342c565b9050919050565b5f60608201905061347f5f830186612cbc565b61348c6020830185612a33565b6134996040830184612a33565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6134d882612964565b91506134e383612964565b9250826134f3576134f26134a1565b5b828204905092915050565b5f61350882612964565b915061351383612964565b925082820261352181612964565b91508282048414831517613538576135376130dc565b5b5092915050565b5f81905092915050565b50565b5f6135575f8361353f565b915061356282613549565b5f82019050919050565b5f6135768261354c565b9150819050919050565b5f61358a82612964565b915061359583612964565b92508282039050818111156135ad576135ac6130dc565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f61363061362b6136268461360d565b612b14565b612964565b9050919050565b61364081613616565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61367881612929565b82525050565b5f613689838361366f565b60208301905092915050565b5f602082019050919050565b5f6136ab82613646565b6136b58185613650565b93506136c083613660565b805f5b838110156136f05781516136d7888261367e565b97506136e283613695565b9250506001810190506136c3565b5085935050505092915050565b5f60a0820190506137105f830188612a33565b61371d6020830187613637565b818103604083015261372f81866136a1565b905061373e6060830185612cbc565b61374b6080830184612a33565b9695505050505050565b5f80fd5b61376282612891565b810181811067ffffffffffffffff82111715613781576137806135b3565b5b80604052505050565b5f6137936128f9565b905061379f8282613759565b919050565b5f67ffffffffffffffff8211156137be576137bd6135b3565b5b602082029050602081019050919050565b5f80fd5b5f815190506137e18161296d565b92915050565b5f6137f96137f4846137a4565b61378a565b9050808382526020820190506020840283018581111561381c5761381b6137cf565b5b835b81811015613845578061383188826137d3565b84526020840193505060208101905061381e565b5050509392505050565b5f82601f83011261386357613862613755565b5b81516138738482602086016137e7565b91505092915050565b5f6020828403121561389157613890612902565b5b5f82015167ffffffffffffffff8111156138ae576138ad612906565b5b6138ba8482850161384f565b91505092915050565b5f6080820190506138d65f830187613637565b81810360208301526138e881866136a1565b90506138f76040830185612cbc565b6139046060830184612a33565b95945050505050565b5f61391782612964565b915061392283612964565b925082820190508082111561393a576139396130dc565b5b9291505056fea26469706673582212208b71adacc9460c6accff76b23aa193e1b7d069699188d6f50bc412d5e1d54bc364736f6c634300081400330000000000000000000000008d731276bfbfef10877b2923197ae9354c141372000000000000000000000000f4d79106b5e8b2f7918d9d0303a841268dfc0e01000000000000000000000000a2582959576ace266411472e6119705422310c02000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x6080604052600436106101fc575f3560e01c806379cc67901161010c578063cb4ca6311161009f578063e5e31b131161006e578063e5e31b1314610715578063e796712e14610751578063f285578514610779578063f2fde38b146107a3578063fe85b42b146107cb5761021b565b8063cb4ca6311461064b578063cd5d89ca14610687578063dd62ed3e146106af578063e4960d89146106eb5761021b565b806395d89b41116100db57806395d89b4114610593578063960bfe04146105bd578063a9059cbb146105e5578063aed8d6ba146106215761021b565b806379cc6790146104ef57806386a22eff146105175780638da5cb5b1461053f578063932733c7146105695761021b565b806342966c681161018f578063599270441161015e57806359927044146104215780635d098b381461044b57806370a0823114610473578063715018a6146104af57806375f0a874146104c55761021b565b806342966c681461039157806342cde4e8146103b957806351bc3c85146103e357806357654e7e146103f95761021b565b80631d2cb02d116101cb5780631d2cb02d146102d757806323b872dd14610301578063313ce5671461033d57806332fe7b26146103675761021b565b806306fdde031461021f578063095ea7b3146102495780631525ff7d1461028557806318160ddd146102ad5761021b565b3661021b57600a601a9054906101000a900460ff16610219575f80fd5b005b5f80fd5b34801561022a575f80fd5b506102336107f5565b60405161024091906128d9565b60405180910390f35b348015610254575f80fd5b5061026f600480360381019061026a9190612997565b610885565b60405161027c91906129ef565b60405180910390f35b348015610290575f80fd5b506102ab60048036038101906102a69190612a08565b6108a7565b005b3480156102b8575f80fd5b506102c1610a6b565b6040516102ce9190612a42565b60405180910390f35b3480156102e2575f80fd5b506102eb610a74565b6040516102f89190612a77565b60405180910390f35b34801561030c575f80fd5b5061032760048036038101906103229190612a90565b610a88565b60405161033491906129ef565b60405180910390f35b348015610348575f80fd5b50610351610ab6565b60405161035e9190612afb565b60405180910390f35b348015610372575f80fd5b5061037b610abe565b6040516103889190612b6f565b60405180910390f35b34801561039c575f80fd5b506103b760048036038101906103b29190612b88565b610ad6565b005b3480156103c4575f80fd5b506103cd610aea565b6040516103da9190612a42565b60405180910390f35b3480156103ee575f80fd5b506103f7610af0565b005b348015610404575f80fd5b5061041f600480360381019061041a9190612bdd565b610b4c565b005b34801561042c575f80fd5b50610435610c82565b6040516104429190612c3b565b60405180910390f35b348015610456575f80fd5b50610471600480360381019061046c9190612a08565b610ca7565b005b34801561047e575f80fd5b5061049960048036038101906104949190612a08565b610e6b565b6040516104a69190612a42565b60405180910390f35b3480156104ba575f80fd5b506104c3610eb0565b005b3480156104d0575f80fd5b506104d9610ec3565b6040516104e69190612c3b565b60405180910390f35b3480156104fa575f80fd5b5061051560048036038101906105109190612997565b610ee8565b005b348015610522575f80fd5b5061053d60048036038101906105389190612c7e565b610f08565b005b34801561054a575f80fd5b5061055361103d565b6040516105609190612ccb565b60405180910390f35b348015610574575f80fd5b5061057d611065565b60405161058a9190612a77565b60405180910390f35b34801561059e575f80fd5b506105a7611097565b6040516105b491906128d9565b60405180910390f35b3480156105c8575f80fd5b506105e360048036038101906105de9190612b88565b611127565b005b3480156105f0575f80fd5b5061060b60048036038101906106069190612997565b61120c565b60405161061891906129ef565b60405180910390f35b34801561062c575f80fd5b5061063561122e565b6040516106429190612ccb565b60405180910390f35b348015610656575f80fd5b50610671600480360381019061066c9190612a08565b611252565b60405161067e91906129ef565b60405180910390f35b348015610692575f80fd5b506106ad60048036038101906106a89190612c7e565b61126f565b005b3480156106ba575f80fd5b506106d560048036038101906106d09190612ce4565b61141b565b6040516106e29190612a42565b60405180910390f35b3480156106f6575f80fd5b506106ff61149d565b60405161070c91906129ef565b60405180910390f35b348015610720575f80fd5b5061073b60048036038101906107369190612a08565b6114b0565b60405161074891906129ef565b60405180910390f35b34801561075c575f80fd5b5061077760048036038101906107729190612d4c565b6114cd565b005b348015610784575f80fd5b5061078d6115c1565b60405161079a9190612afb565b60405180910390f35b3480156107ae575f80fd5b506107c960048036038101906107c49190612a08565b6115d4565b005b3480156107d6575f80fd5b506107df61165b565b6040516107ec9190612a77565b60405180910390f35b60606003805461080490612da4565b80601f016020809104026020016040519081016040528092919081815260200182805461083090612da4565b801561087b5780601f106108525761010080835404028352916020019161087b565b820191905f5260205f20905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b5f8061088f61166f565b905061089c818585611676565b600191505092915050565b6108af611688565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361093e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093590612e44565b60405180910390fd5b60075f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156109e5576109d9600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f61126f565b6109e481600161126f565b5b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fc6a5dd316fe9d0339f2769deab7e31f64c8f5b101ffd85dfc9a83dbeaf2e69da60405160405180910390a250565b5f600254905090565b600a60169054906101000a900461ffff1681565b5f80610a9261166f565b9050610a9f85828561170f565b610aaa8585856117a1565b60019150509392505050565b5f6012905090565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b610ae7610ae161166f565b82611891565b50565b60085481565b610af8611688565b5f610b0230610e6b565b03610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990612eac565b60405180910390fd5b610b4a611910565b565b610b54611688565b600a60199054906101000a900460ff1680610b73575060648161ffff16145b610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba990612f3a565b60405180910390fd5b8161ffff168161ffff1611158015610bcf575060c88261ffff1611155b610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0590612fa2565b60405180910390fd5b81600a60146101000a81548161ffff021916908361ffff16021790555080600a60166101000a81548161ffff021916908361ffff1602179055508061ffff168261ffff167fe7c1815e2fde01dbf39b1398f4178377b7c6709a2ff5354234a80c04be8be96960405160405180910390a35050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610caf611688565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3590613030565b60405180910390fd5b60075f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610de557610dd960095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f61126f565b610de481600161126f565b5b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f1d5165cf8e89286f2d38f9d17d4f9b30a4197d38fd9dafde1d3bf78dbc7e49f060405160405180910390a250565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610eb8611688565b610ec15f611c8a565b565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610efa82610ef461166f565b8361170f565b610f048282611891565b5050565b610f10611688565b80151560065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f96906130be565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167ff40a563af144a84735f7f6c7c3029794b0ac17713e5f048d3fd00ed85aa4ca7a60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f600a60169054906101000a900461ffff16600a60149054906101000a900461ffff166110929190613109565b905090565b6060600480546110a690612da4565b80601f01602080910402602001604051908101604052809291908181526020018280546110d290612da4565b801561111d5780601f106110f45761010080835404028352916020019161111d565b820191905f5260205f20905b81548152906001019060200180831161110057829003601f168201915b5050505050905090565b61112f611688565b6008548103611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906131ae565b60405180910390fd5b600a60199054906101000a900460ff16806111965750670de0b6b3a76400008111155b6111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061323c565b60405180910390fd5b80600881905550807f46e8115bf463f9c29a9424fe152addef1bfaf2b43180d19bb7c2c78cc0ff1ebf60405160405180910390a250565b5f8061121661166f565b90506112238185856117a1565b600191505092915050565b7f0000000000000000000000009c3ec7682152a94d49bb6fdd07782f50577d675181565b6007602052805f5260405f205f915054906101000a900460ff1681565b611277611688565b80151560075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd906132ca565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158061133e5750805b61137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613332565b60405180910390fd5b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f6b8f4f35f1d56250908e430133b4145bf1bee87efd3d5ce502acfca0b8d356c960405160405180910390a35050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600a60199054906101000a900460ff1681565b6006602052805f5260405f205f915054906101000a900460ff1681565b6114d5611688565b600a60189054906101000a900460ff1660ff168160ff160361152c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611523906133c0565b60405180910390fd5b60328160ff161115611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a9061344e565b60405180910390fd5b80600a60186101000a81548160ff021916908360ff1602179055508060ff167fd993e88411e8d896bbbe51121e41b519b2d88b3d9af231f0ea13a5dfe0e54eac60405160405180910390a250565b600a60189054906101000a900460ff1681565b6115dc611688565b60075f6115e761103d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561164f5761164361163d61103d565b5f61126f565b61164e81600161126f565b5b61165881611d4d565b50565b600a60149054906101000a900461ffff1681565b5f33905090565b6116838383836001611dd1565b505050565b61169061166f565b73ffffffffffffffffffffffffffffffffffffffff166116ae61103d565b73ffffffffffffffffffffffffffffffffffffffff161461170d576116d161166f565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016117049190612ccb565b60405180910390fd5b565b5f61171a848461141b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461179b578181101561178c578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016117839392919061346c565b60405180910390fd5b61179a84848484035f611dd1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611811575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016118089190612ccb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611881575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016118789190612ccb565b60405180910390fd5b61188c838383611fa0565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611901575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016118f89190612ccb565b60405180910390fd5b61190c825f83611fa0565b5050565b6001600a601a6101000a81548160ff0219169083151502179055505f60646119577f0000000000000000000000009c3ec7682152a94d49bb6fdd07782f50577d6751610e6b565b61196191906134ce565b90505f8161196e30610e6b565b116119815761197c30610e6b565b611983565b815b905061198e81612233565b600854471115611c6c575f600a60169054906101000a900461ffff1661ffff1614611b6f57600a60199054906101000a900460ff16611a3b57611a0e600a60149054906101000a900461ffff1661ffff16600a60169054906101000a900461ffff1661ffff16476119ff91906134fe565b611a0991906134ce565b612422565b636729a64f421115611a36576001600a60196101000a81548160ff0219169083151502179055505b611b6e565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600a60149054906101000a900461ffff1661ffff16600a60169054906101000a900461ffff1661ffff1647611aa991906134fe565b611ab391906134ce565b604051611abf9061356c565b5f6040518083038185875af1925050503d805f8114611af9576040519150601f19603f3d011682016040523d82523d5f602084013e611afe565b606091505b5050905080611b6c5760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167faae6f49a69d34825354babc54f6bc380b03be17523d79c360166d42e83098a5460405160405180910390a25b505b5b5f4714611c6b575f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611bbc9061356c565b5f6040518083038185875af1925050503d805f8114611bf6576040519150601f19603f3d011682016040523d82523d5f602084013e611bfb565b606091505b5050905080611c6957600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167faae6f49a69d34825354babc54f6bc380b03be17523d79c360166d42e83098a5460405160405180910390a25b505b5b50505f600a601a6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d55611688565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dc5575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611dbc9190612ccb565b60405180910390fd5b611dce81611c8a565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e41575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611e389190612ccb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611eb1575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611ea89190612ccb565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611f9a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611f919190612a42565b60405180910390a35b50505050565b5f600a60149054906101000a900461ffff1661ffff161415801561205c575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061205a575060075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b155b156122235760065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120fc575060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561222257612710600a60189054906101000a900460ff1660ff166121407f0000000000000000000000009c3ec7682152a94d49bb6fdd07782f50577d6751610e6b565b61214a91906134fe565b61215491906134ce565b61215d30610e6b565b1180156121b0575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80156121c95750600a601a9054906101000a900460ff16155b156121d7576121d6611910565b5b5f612710600a60149054906101000a900461ffff1661ffff16836121fb91906134fe565b61220591906134ce565b9050612212843083612636565b808261221e9190613580565b9150505b5b61222e838383612636565b505050565b5f600267ffffffffffffffff81111561224f5761224e6135b3565b5b60405190808252806020026020018201604052801561227d5781602001602082028036833780820191505090505b50905030815f81518110612294576122936135e0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106122f7576122f66135e0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff166318cbafe5835f8430426040518663ffffffff1660e01b81526004016123869594939291906136fd565b5f604051808303815f875af19250505080156123c457506040513d5f823e3d601f19601f820116820180604052508101906123c1919061387c565b60015b61241c573073ffffffffffffffffffffffffffffffffffffffff167f0bcd847fc84cd9af704fdf07905bd612b70921cd04019b6e72b145bb7c48f26f8360405161240e9190612a42565b60405180910390a25061241f565b50505b50565b5f600267ffffffffffffffff81111561243e5761243d6135b3565b5b60405190808252806020026020018201604052801561246c5781602001602082028036833780820191505090505b50905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2815f81518110612497576124966135e0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737d0c49057c09501595a8ce23b773bb36a40b521f816001815181106124fa576124f96135e0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663b6f9de95835f8473dead000000000000000042069420694206942069426040518663ffffffff1660e01b815260040161259c94939291906138c3565b5f604051808303818588803b1580156125b3575f80fd5b505af1935050505080156125c5575060015b61263157737d0c49057c09501595a8ce23b773bb36a40b521f73ffffffffffffffffffffffffffffffffffffffff167f0bcd847fc84cd9af704fdf07905bd612b70921cd04019b6e72b145bb7c48f26f836040516126239190612a42565b60405180910390a250612633565b505b50565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612686578060025f82825461267a919061390d565b92505081905550612754565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561270f578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016127069392919061346c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361279b578060025f82825403925050819055506127e5565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516128429190612a42565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561288657808201518184015260208101905061286b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6128ab8261284f565b6128b58185612859565b93506128c5818560208601612869565b6128ce81612891565b840191505092915050565b5f6020820190508181035f8301526128f181846128a1565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6129338261290a565b9050919050565b61294381612929565b811461294d575f80fd5b50565b5f8135905061295e8161293a565b92915050565b5f819050919050565b61297681612964565b8114612980575f80fd5b50565b5f813590506129918161296d565b92915050565b5f80604083850312156129ad576129ac612902565b5b5f6129ba85828601612950565b92505060206129cb85828601612983565b9150509250929050565b5f8115159050919050565b6129e9816129d5565b82525050565b5f602082019050612a025f8301846129e0565b92915050565b5f60208284031215612a1d57612a1c612902565b5b5f612a2a84828501612950565b91505092915050565b612a3c81612964565b82525050565b5f602082019050612a555f830184612a33565b92915050565b5f61ffff82169050919050565b612a7181612a5b565b82525050565b5f602082019050612a8a5f830184612a68565b92915050565b5f805f60608486031215612aa757612aa6612902565b5b5f612ab486828701612950565b9350506020612ac586828701612950565b9250506040612ad686828701612983565b9150509250925092565b5f60ff82169050919050565b612af581612ae0565b82525050565b5f602082019050612b0e5f830184612aec565b92915050565b5f819050919050565b5f612b37612b32612b2d8461290a565b612b14565b61290a565b9050919050565b5f612b4882612b1d565b9050919050565b5f612b5982612b3e565b9050919050565b612b6981612b4f565b82525050565b5f602082019050612b825f830184612b60565b92915050565b5f60208284031215612b9d57612b9c612902565b5b5f612baa84828501612983565b91505092915050565b612bbc81612a5b565b8114612bc6575f80fd5b50565b5f81359050612bd781612bb3565b92915050565b5f8060408385031215612bf357612bf2612902565b5b5f612c0085828601612bc9565b9250506020612c1185828601612bc9565b9150509250929050565b5f612c258261290a565b9050919050565b612c3581612c1b565b82525050565b5f602082019050612c4e5f830184612c2c565b92915050565b612c5d816129d5565b8114612c67575f80fd5b50565b5f81359050612c7881612c54565b92915050565b5f8060408385031215612c9457612c93612902565b5b5f612ca185828601612950565b9250506020612cb285828601612c6a565b9150509250929050565b612cc581612929565b82525050565b5f602082019050612cde5f830184612cbc565b92915050565b5f8060408385031215612cfa57612cf9612902565b5b5f612d0785828601612950565b9250506020612d1885828601612950565b9150509250929050565b612d2b81612ae0565b8114612d35575f80fd5b50565b5f81359050612d4681612d22565b92915050565b5f60208284031215612d6157612d60612902565b5b5f612d6e84828501612d38565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612dbb57607f821691505b602082108103612dce57612dcd612d77565b5b50919050565b7f5465616d2077616c6c657420697320616c72656164792073657420746f2074685f8201527f69732076616c7565000000000000000000000000000000000000000000000000602082015250565b5f612e2e602883612859565b9150612e3982612dd4565b604082019050919050565b5f6020820190508181035f830152612e5b81612e22565b9050919050565b7f4e6f20746f6b656e7320617661696c61626c6520746f207377617000000000005f82015250565b5f612e96601b83612859565b9150612ea182612e62565b602082019050919050565b5f6020820190508181035f830152612ec381612e8a565b9050919050565b7f4d61726b6574696e672063616e2774206265206368616e6765642069662050525f8201527f454d45206275726e2069736e27742066696e6973686564000000000000000000602082015250565b5f612f24603783612859565b9150612f2f82612eca565b604082019050919050565b5f6020820190508181035f830152612f5181612f18565b9050919050565b7f546f74616c2063616e27742065786365656420283225290000000000000000005f82015250565b5f612f8c601783612859565b9150612f9782612f58565b602082019050919050565b5f6020820190508181035f830152612fb981612f80565b9050919050565b7f4d61726b6574696e672077616c6c657420697320616c726561647920736574205f8201527f746f20746869732076616c756500000000000000000000000000000000000000602082015250565b5f61301a602d83612859565b915061302582612fc0565b604082019050919050565b5f6020820190508181035f8301526130478161300e565b9050919050565b7f5061697220697320616c72656164792073657420746f20746869732076616c755f8201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b5f6130a8602183612859565b91506130b38261304e565b604082019050919050565b5f6020820190508181035f8301526130d58161309c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61311382612a5b565b915061311e83612a5b565b9250828203905061ffff811115613138576131376130dc565b5b92915050565b7f5468726573686f6c6420697320616c72656164792073657420746f20746869735f8201527f2076616c75650000000000000000000000000000000000000000000000000000602082015250565b5f613198602683612859565b91506131a38261313e565b604082019050919050565b5f6020820190508181035f8301526131c58161318c565b9050919050565b7f5468726573686f6c642063616e277420657863656564203120455448206966205f8201527f5052454d45206275726e2069736e27742066696e697368656400000000000000602082015250565b5f613226603983612859565b9150613231826131cc565b604082019050919050565b5f6020820190508181035f8301526132538161321a565b9050919050565b7f4163636f756e7420697320616c72656164792073657420746f207468697320765f8201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b5f6132b4602483612859565b91506132bf8261325a565b604082019050919050565b5f6020820190508181035f8301526132e1816132a8565b9050919050565b7f436f6e7472616374206e6565647320746f2073746179206578636c75646564005f82015250565b5f61331c601f83612859565b9150613327826132e8565b602082019050919050565b5f6020820190508181035f83015261334981613310565b9050919050565b7f53776170417450657263656e7461676520697320616c726561647920736574205f8201527f746f20746869732076616c756500000000000000000000000000000000000000602082015250565b5f6133aa602d83612859565b91506133b582613350565b604082019050919050565b5f6020820190508181035f8301526133d78161339e565b9050919050565b7f53776170417450657263656e746167652063616e2774206578636565642035305f8201527f2028302e35252900000000000000000000000000000000000000000000000000602082015250565b5f613438602783612859565b9150613443826133de565b604082019050919050565b5f6020820190508181035f8301526134658161342c565b9050919050565b5f60608201905061347f5f830186612cbc565b61348c6020830185612a33565b6134996040830184612a33565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6134d882612964565b91506134e383612964565b9250826134f3576134f26134a1565b5b828204905092915050565b5f61350882612964565b915061351383612964565b925082820261352181612964565b91508282048414831517613538576135376130dc565b5b5092915050565b5f81905092915050565b50565b5f6135575f8361353f565b915061356282613549565b5f82019050919050565b5f6135768261354c565b9150819050919050565b5f61358a82612964565b915061359583612964565b92508282039050818111156135ad576135ac6130dc565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f61363061362b6136268461360d565b612b14565b612964565b9050919050565b61364081613616565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61367881612929565b82525050565b5f613689838361366f565b60208301905092915050565b5f602082019050919050565b5f6136ab82613646565b6136b58185613650565b93506136c083613660565b805f5b838110156136f05781516136d7888261367e565b97506136e283613695565b9250506001810190506136c3565b5085935050505092915050565b5f60a0820190506137105f830188612a33565b61371d6020830187613637565b818103604083015261372f81866136a1565b905061373e6060830185612cbc565b61374b6080830184612a33565b9695505050505050565b5f80fd5b61376282612891565b810181811067ffffffffffffffff82111715613781576137806135b3565b5b80604052505050565b5f6137936128f9565b905061379f8282613759565b919050565b5f67ffffffffffffffff8211156137be576137bd6135b3565b5b602082029050602081019050919050565b5f80fd5b5f815190506137e18161296d565b92915050565b5f6137f96137f4846137a4565b61378a565b9050808382526020820190506020840283018581111561381c5761381b6137cf565b5b835b81811015613845578061383188826137d3565b84526020840193505060208101905061381e565b5050509392505050565b5f82601f83011261386357613862613755565b5b81516138738482602086016137e7565b91505092915050565b5f6020828403121561389157613890612902565b5b5f82015167ffffffffffffffff8111156138ae576138ad612906565b5b6138ba8482850161384f565b91505092915050565b5f6080820190506138d65f830187613637565b81810360208301526138e881866136a1565b90506138f76040830185612cbc565b6139046060830184612a33565b95945050505050565b5f61391782612964565b915061392283612964565b925082820190508082111561393a576139396130dc565b5b9291505056fea26469706673582212208b71adacc9460c6accff76b23aa193e1b7d069699188d6f50bc412d5e1d54bc364736f6c63430008140033

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

0000000000000000000000008d731276bfbfef10877b2923197ae9354c141372000000000000000000000000f4d79106b5e8b2f7918d9d0303a841268dfc0e01000000000000000000000000a2582959576ace266411472e6119705422310c02000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x8D731276BFbFef10877B2923197ae9354C141372
Arg [1] : _teamWallet (address): 0xF4d79106B5e8b2f7918d9d0303A841268dFC0E01
Arg [2] : _marketingWallet (address): 0xa2582959576AcE266411472E6119705422310c02
Arg [3] : _swapAtPercentage (uint8): 10

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000008d731276bfbfef10877b2923197ae9354c141372
Arg [1] : 000000000000000000000000f4d79106b5e8b2f7918d9d0303a841268dfc0e01
Arg [2] : 000000000000000000000000a2582959576ace266411472e6119705422310c02
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a


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.