ETH Price: $3,236.30 (-0.56%)
Gas: 1 Gwei

Maus Token (MAUS)
 

Overview

TokenID

244

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
MausToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, value);
    }

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

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

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 9 of 11 : ERC404.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

abstract contract Ownable {
    event OwnershipTransferred(address indexed user, address indexed newOwner);

    error Unauthorized();
    error InvalidOwner();

    address public owner;

    modifier onlyOwner() virtual {
        if (msg.sender != owner) revert Unauthorized();

        _;
    }

    constructor(address _owner) {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    function transferOwnership(address _owner) public virtual onlyOwner {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(msg.sender, _owner);
    }

    function revokeOwnership() public virtual onlyOwner {
        owner = address(0);

        emit OwnershipTransferred(msg.sender, address(0));
    }
}

abstract contract ERC721Receiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721Receiver.onERC721Received.selector;
    }
}

/// @notice ERC404
///         A gas-efficient, mixed ERC20 / ERC721 implementation
///         with native liquidity and fractionalization.
///
///         This is an experimental standard designed to integrate
///         with pre-existing ERC20 / ERC721 support as smoothly as
///         possible.
///
/// @dev    In order to support full functionality of ERC20 and ERC721
///         supply assumptions are made that slightly constraint usage.
///         Ensure decimals are sufficiently large (standard 18 recommended)
///         as ids are effectively encoded in the lowest range of amounts.
///
///         NFTs are spent on ERC20 functions in a FILO queue, this is by
///         design.
///
abstract contract ERC404 is Ownable {
    // Events
    event ERC20Transfer(address indexed from, address indexed to, uint256 amount);
    event Approval(address indexed owner, address indexed spender, uint256 amount);
    event Transfer(address indexed from, address indexed to, uint256 indexed id);
    event ERC721Approval(address indexed owner, address indexed spender, uint256 indexed id);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    // Errors
    error NotFound();
    error AlreadyExists();
    error InvalidRecipient();
    error InvalidSender();
    error UnsafeRecipient();

    // Metadata
    /// @dev Token name
    string public name;

    /// @dev Token symbol
    string public symbol;

    /// @dev Decimals for fractional representation
    uint8 public immutable decimals;

    /// @dev Total supply in fractionalized representation
    uint256 public immutable totalSupply;

    /// @dev Current mint counter, monotonically increasing to ensure accurate ownership
    uint256 public minted;

    // Mappings
    /// @dev Balance of user in fractional representation
    mapping(address => uint256) public balanceOf;

    /// @dev Allowance of user in fractional representation
    mapping(address => mapping(address => uint256)) public allowance;

    /// @dev Approval in native representaion
    mapping(uint256 => address) public getApproved;

    /// @dev Approval for all in native representation
    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /// @dev Owner of id in native representation
    mapping(uint256 => address) internal _ownerOf;

    /// @dev Array of owned ids in native representation
    mapping(address => uint256[]) internal _owned;

    /// @dev Tracks indices for the _owned mapping
    mapping(uint256 => uint256) internal _ownedIndex;

    /// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc)
    mapping(address => bool) public whitelist;

    // Constructor
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _totalNativeSupply,
        address _owner
    ) Ownable(_owner) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        totalSupply = _totalNativeSupply * (10 ** decimals);
    }

    /// @notice Initialization function to set pairs / etc
    ///         saving gas by avoiding mint / burn on unnecessary targets
    function setWhitelist(address target, bool state) public onlyOwner {
        whitelist[target] = state;
    }

    /// @notice Function to find owner of a given native token
    function ownerOf(uint256 id) public view virtual returns (address owner) {
        owner = _ownerOf[id];

        if (owner == address(0)) {
            revert NotFound();
        }
    }

    /// @notice tokenURI must be implemented by child contract
    function tokenURI(uint256 id) public view virtual returns (string memory);

    /// @notice Function for token approvals
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function approve(address spender, uint256 amountOrId) public virtual returns (bool) {
        if (amountOrId <= minted && amountOrId > 0) {
            address owner = _ownerOf[amountOrId];

            if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) {
                revert Unauthorized();
            }

            getApproved[amountOrId] = spender;

            emit Approval(owner, spender, amountOrId);
        } else {
            allowance[msg.sender][spender] = amountOrId;

            emit Approval(msg.sender, spender, amountOrId);
        }

        return true;
    }

    /// @notice Function native approvals
    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    /// @notice Function for mixed transfers
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function transferFrom(address from, address to, uint256 amountOrId) public virtual {
        if (amountOrId <= minted) {
            if (from != _ownerOf[amountOrId]) {
                revert InvalidSender();
            }

            if (to == address(0)) {
                revert InvalidRecipient();
            }

            if (
                msg.sender != from &&
                !isApprovedForAll[from][msg.sender] &&
                msg.sender != getApproved[amountOrId]
            ) {
                revert Unauthorized();
            }

            balanceOf[from] -= _getUnit();

            unchecked {
                balanceOf[to] += _getUnit();
            }

            _ownerOf[amountOrId] = to;
            delete getApproved[amountOrId];

            // update _owned for sender
            uint256 updatedId = _owned[from][_owned[from].length - 1];
            _owned[from][_ownedIndex[amountOrId]] = updatedId;
            // pop
            _owned[from].pop();
            // update index for the moved id
            _ownedIndex[updatedId] = _ownedIndex[amountOrId];
            // push token to to owned
            _owned[to].push(amountOrId);
            // update index for to owned
            _ownedIndex[amountOrId] = _owned[to].length - 1;

            emit Transfer(from, to, amountOrId);
            emit ERC20Transfer(from, to, _getUnit());
        } else {
            uint256 allowed = allowance[from][msg.sender];

            if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amountOrId;

            _transfer(from, to, amountOrId);
        }
    }

    /// @notice Function for fractional transfers
    function transfer(address to, uint256 amount) public virtual returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

    /// @notice Function for native transfers with contract support
    function safeTransferFrom(address from, address to, uint256 id) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Function for native transfers with contract support and callback data
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Internal function for fractional transfers
    function _transfer(address from, address to, uint256 amount) internal returns (bool) {
        uint256 unit = _getUnit();
        uint256 balanceBeforeSender = balanceOf[from];
        uint256 balanceBeforeReceiver = balanceOf[to];

        balanceOf[from] -= amount;

        unchecked {
            balanceOf[to] += amount;
        }

        // Skip burn for certain addresses to save gas
        if (!whitelist[from]) {
            uint256 tokens_to_burn = (balanceBeforeSender / unit) - (balanceOf[from] / unit);
            for (uint256 i = 0; i < tokens_to_burn; i++) {
                _burn(from);
            }
        }

        // Skip minting for certain addresses to save gas
        if (!whitelist[to]) {
            uint256 tokens_to_mint = (balanceOf[to] / unit) - (balanceBeforeReceiver / unit);
            for (uint256 i = 0; i < tokens_to_mint; i++) {
                _mint(to);
            }
        }

        emit ERC20Transfer(from, to, amount);
        emit Transfer(from, to, amount);
        return true;
    }

    // Internal utility logic
    function _getUnit() internal view returns (uint256) {
        return 10 ** decimals;
    }

    function _mint(address to) internal virtual {
        if (to == address(0)) {
            revert InvalidRecipient();
        }

        unchecked {
            minted++;
        }

        uint256 id = minted;

        if (_ownerOf[id] != address(0)) {
            revert AlreadyExists();
        }

        _ownerOf[id] = to;
        _owned[to].push(id);
        _ownedIndex[id] = _owned[to].length - 1;

        emit Transfer(address(0), to, id);
    }

    function _burn(address from) internal virtual {
        if (from == address(0)) {
            revert InvalidSender();
        }

        uint256 id = _owned[from][_owned[from].length - 1];
        _owned[from].pop();
        delete _ownedIndex[id];
        delete _ownerOf[id];
        delete getApproved[id];

        emit Transfer(from, address(0), id);
    }

    function _setNameSymbol(string memory _name, string memory _symbol) internal {
        name = _name;
        symbol = _symbol;
    }
}

File 10 of 11 : MausToken.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.20;

import "./ERC404.sol";
import "./SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

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

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

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

contract MausToken is ERC404 {
    using SafeMath for uint256;
    string public dataURI;
    string public baseTokenURI;

    bool public revealed = false;
    string public nonRevealedURI;

    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) public authorizations; // for whitelisted address prior to openTrading
    address payable private _taxWallet;
    address payable private _teamWallet;
    uint256 private _taxWalletPercentage = 50;
    uint256 private _teamWalletPercentage = 50;

    uint256 private _initialBuyTax = 5;
    uint256 private _initialSellTax = 5;
    uint256 private _finalBuyTax = 1;
    uint256 private _finalSellTax = 1;

    uint256 public _taxReductionTimer;
    uint256 private _taxReductionDuration = 60 minutes;
    bool public _taxReduced = false;

    uint8 private constant _DECIMALS = 18;
    uint256 private constant _TOTAL = 8888;
    uint256 public _taxSwapThreshold = 40 * 10 ** _DECIMALS;

    IUniswapV2Router02 private uniswapV2Router;
    address public uniswapV2Pair;
    bool private inSwap = false;
    bool public swapEnabled = false;
    bool public tradingOpen = false;

    event ClearStuck(uint256 amount);
    event ClearToken(address TokenAddressCleared, uint256 Amount);
    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor(
        address _owner,
        address taxWallet,
        address teamWallet
    ) ERC404("Maus Token", "MAUS", _DECIMALS, _TOTAL, _owner) {
        balanceOf[_owner] = _TOTAL * 10 ** _DECIMALS;

        _taxWallet = payable(taxWallet);
        _teamWallet = payable(teamWallet);

        _isExcludedFromFee[_owner] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_taxWallet] = true;

        address router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        uniswapV2Router = IUniswapV2Router02(router);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        allowance[address(this)][address(uniswapV2Router)] = type(uint256).max;
        allowance[address(this)][address(uniswapV2Pair)] = type(uint256).max;

        whitelist[router] = true;
        whitelist[uniswapV2Pair] = true;
        whitelist[uniswapV2Router.factory()] = true;
        whitelist[_owner] = true;
        whitelist[address(this)] = true;

        authorizations[_owner] = true;
        authorizations[address(this)] = true;
        authorizations[router] = true;
        authorizations[uniswapV2Pair] = true;

        emit Transfer(address(0), _owner, _TOTAL);
    }

    receive() external payable {}

    function setDataURI(string memory _dataURI) public onlyOwner {
        dataURI = _dataURI;
    }

    function setTokenURI(string memory _tokenURI) public onlyOwner {
        baseTokenURI = _tokenURI;
    }

    function setNonRevealedURI(string memory _newURI) public onlyOwner {
        nonRevealedURI = _newURI;
    }

    function reveal(bool _reveal) public onlyOwner {
        revealed = _reveal;
    }

    function setNameSymbol(string memory _name, string memory _symbol) public onlyOwner {
        _setNameSymbol(_name, _symbol);
    }

    //WL function to whitelist or exclude/include wallets for tax fee
    function setIsFeeExempt(address holder, bool exempt) external onlyOwner {
        _isExcludedFromFee[holder] = exempt;
    }

    //2nd WL function to whitelist or exclude/include wallets to be able to buy/sell prior to openTrading
    function setAuthorization(address _address, bool isAuthorized) public onlyOwner {
        authorizations[_address] = isAuthorized;
    }

    function openTrading() external onlyOwner {
        require(!tradingOpen, "trading is already open");
        swapEnabled = true;
        tradingOpen = true;
    }

    function clearStuckToken(address tokenAddress, uint256 tokens) external returns (bool success) {
        if (tokens == 0) {
            tokens = IERC20(tokenAddress).balanceOf(address(this));
        }
        emit ClearToken(tokenAddress, tokens);
        return IERC20(tokenAddress).transfer(_taxWallet, tokens);
    }

    function manualSend() external {
        require(address(this).balance > 0, "Contract balance must be greater than zero");
        uint256 balance = address(this).balance;
        payable(_taxWallet).transfer(balance);
    }

    function manualSwap() external {
        uint256 tokenBalance = balanceOf[address(this)];
        if (tokenBalance > 0) {
            swapTokensForEth(tokenBalance);
        }
        uint256 ethBalance = address(this).balance;
        if (ethBalance > 0) {
            sendETHToFee(ethBalance);
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

    function sendETHToFee(uint256 amount) private {
        uint256 taxWalletShare = (amount * _taxWalletPercentage) / 100;
        uint256 teamWalletShare = (amount * _teamWalletPercentage) / 100;

        _taxWallet.transfer(taxWalletShare);
        _teamWallet.transfer(teamWalletShare);
    }

    function transfer(address to, uint256 amount) public override returns (bool) {
        uint256 finalAmount = _transferFrom(msg.sender, to, amount);
        return ERC404._transfer(msg.sender, to, finalAmount);
    }

    function transferFrom(address from, address to, uint256 amount) public override {
        uint256 finalAmount = _transferFrom(from, to, amount);

        ERC404.transferFrom(from, to, finalAmount);
        emit Transfer(from, to, finalAmount);
    }

    function _transferFrom(address from, address to, uint256 amount) internal returns (uint256) {
        if (
            !(authorizations[from] && from != uniswapV2Pair) &&
            !(authorizations[to] && to != uniswapV2Pair)
        ) {
            require(tradingOpen, "Trading not open yet");
        }

        // Transfer tax fee to wallets, once token swap threshold is reached
        uint256 contractTokenBalance = balanceOf[address(this)];
        if (
            !inSwap &&
            to == uniswapV2Pair &&
            swapEnabled &&
            contractTokenBalance >= _taxSwapThreshold
        ) {
            swapTokensForEth(contractTokenBalance);
            uint256 contractETHBalance = address(this).balance;
            if (contractETHBalance > 0) {
                sendETHToFee(contractETHBalance);
            }
        }

        // Cut and Add tax amount to this contract
        // Only extract fee from non-whitelisted wallets
        return extractFee(from, to, amount);
    }

    function extractFee(
        address sender,
        address recipient,
        uint256 amount
    ) internal returns (uint256) {
        uint256 taxAmount = 0;

        // Calculate tax amount on buying,
        if (
            sender == uniswapV2Pair &&
            recipient != address(uniswapV2Router) &&
            !_isExcludedFromFee[recipient]
        ) {
            // Calculate tax amount based on the current tax percentage
            uint256 buyTax = _taxReduced ? _finalBuyTax : _initialBuyTax;
            // Fee on buying
            taxAmount = amount.mul(buyTax).div(100);
        }

        // Calculate tax amount on selling,
        if (recipient == uniswapV2Pair && !_isExcludedFromFee[sender]) {
            // Calculate tax amount based on the current tax percentage
            uint256 sellTax = _taxReduced ? _finalSellTax : _initialSellTax;
            // Fee on buying
            taxAmount = amount.mul(sellTax).div(100);
        }

        // Update tax reduction timer if not already reduced
        if (!_taxReduced && block.timestamp >= _taxReductionTimer && tradingOpen) {
            if (_taxReductionTimer != 0) {
                _taxReduced = true;
            }
            // Set the timer for the next reduction after 60 minutes
            _taxReductionTimer = block.timestamp.add(_taxReductionDuration);
        }

        if (taxAmount > 0) {
            balanceOf[address(this)] = balanceOf[address(this)].add(taxAmount);
            // also cut taxAmount from original seller/from cause only final amount-taxAmount is sent to parent transfer()
            balanceOf[sender] = balanceOf[sender].sub(taxAmount);

            emit Transfer(sender, address(this), taxAmount);
            return amount.sub(taxAmount);
        }
        return amount;
    }

    function tokenURI(uint256 id) public view override returns (string memory) {
        if (revealed == false) {
            return nonRevealedURI;
        }

        if (bytes(baseTokenURI).length > 0) {
            return string.concat(baseTokenURI, Strings.toString(id));
        } else {
            uint8 seed = uint8(bytes1(keccak256(abi.encodePacked(id))));
            string memory image;
            string memory premium;

            if (seed <= 100) {
                image = "1.gif";
                premium = "Titanium";
            } else if (seed <= 160) {
                image = "2.gif";
                premium = "Platinum";
            } else if (seed <= 210) {
                image = "3.gif";
                premium = "Gold";
            } else if (seed <= 240) {
                image = "4.gif";
                premium = "Silver";
            } else if (seed <= 255) {
                image = "5.gif";
                premium = "Bronze";
            }

            string memory jsonPreImage = string.concat(
                string.concat(
                    string.concat('{"name": "Maus Token #', Strings.toString(id)),
                    '","description":"A collection of 8,888 Maus enabled by ERC404, an experimental token standard.","external_url":"","image":"'
                ),
                string.concat(dataURI, image)
            );
            string memory jsonPostImage = string.concat(
                '","attributes":[{"trait_type":"Premium","value":"',
                premium
            );
            string memory jsonPostTraits = '"}]}';

            return
                string.concat(
                    "data:application/json;utf8,",
                    string.concat(string.concat(jsonPreImage, jsonPostImage), jsonPostTraits)
                );
        }
    }
}

File 11 of 11 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"taxWallet","type":"address"},{"internalType":"address","name":"teamWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ClearStuck","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"TokenAddressCleared","type":"address"},{"indexed":false,"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"ClearToken","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":"amount","type":"uint256"}],"name":"ERC20Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ERC721Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_taxReduced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxReductionTimer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorizations","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"clearStuckToken","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revokeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_dataURI","type":"string"}],"name":"setDataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setIsFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"setNameSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setNonRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600e60006101000a81548160ff021916908315150217905550603260145560326015556005601655600560175560016018556001601955610e10601b556000601c60006101000a81548160ff0219169083151502179055506012600a6200006e919062000e9d565b60286200007c919062000eee565b601d556000601f60146101000a81548160ff0219169083151502179055506000601f60156101000a81548160ff0219169083151502179055506000601f60166101000a81548160ff021916908315150217905550348015620000dd57600080fd5b5060405162006fdc38038062006fdc833981810160405281019062000103919062000fa3565b6040518060400160405280600a81526020017f4d61757320546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4155530000000000000000000000000000000000000000000000000000000081525060126122b88680600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001dd576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35084600190816200028a91906200126f565b5083600290816200029c91906200126f565b508260ff1660808160ff1681525050608051600a620002bc919062000e9d565b82620002c9919062000eee565b60a0818152505050505050506012600a620002e5919062000e9d565b6122b8620002f4919062000eee565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905080601e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620005ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005d1919062001356565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200065b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000681919062001356565b6040518363ffffffff1660e01b8152600401620006a092919062001399565b6020604051808303816000875af1158015620006c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006e6919062001356565b601f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620009f2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a18919062001356565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122b88473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050620013c6565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d915780860481111562000d695762000d6862000d03565b5b600185161562000d795780820291505b808102905062000d898562000d32565b945062000d49565b94509492505050565b60008262000dac576001905062000e7f565b8162000dbc576000905062000e7f565b816001811462000dd5576002811462000de05762000e16565b600191505062000e7f565b60ff84111562000df55762000df462000d03565b5b8360020a91508482111562000e0f5762000e0e62000d03565b5b5062000e7f565b5060208310610133831016604e8410600b841016171562000e505782820a90508381111562000e4a5762000e4962000d03565b5b62000e7f565b62000e5f848484600162000d3f565b9250905081840481111562000e795762000e7862000d03565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000eaa8262000e86565b915062000eb78362000e90565b925062000ee67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d9a565b905092915050565b600062000efb8262000e86565b915062000f088362000e86565b925082820262000f188162000e86565b9150828204841483151762000f325762000f3162000d03565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f6b8262000f3e565b9050919050565b62000f7d8162000f5e565b811462000f8957600080fd5b50565b60008151905062000f9d8162000f72565b92915050565b60008060006060848603121562000fbf5762000fbe62000f39565b5b600062000fcf8682870162000f8c565b935050602062000fe28682870162000f8c565b925050604062000ff58682870162000f8c565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200108157607f821691505b60208210810362001097576200109662001039565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620011017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620010c2565b6200110d8683620010c2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620011506200114a620011448462000e86565b62001125565b62000e86565b9050919050565b6000819050919050565b6200116c836200112f565b620011846200117b8262001157565b848454620010cf565b825550505050565b600090565b6200119b6200118c565b620011a881848462001161565b505050565b5b81811015620011d057620011c460008262001191565b600181019050620011ae565b5050565b601f8211156200121f57620011e9816200109d565b620011f484620010b2565b8101602085101562001204578190505b6200121c6200121385620010b2565b830182620011ad565b50505b505050565b600082821c905092915050565b6000620012446000198460080262001224565b1980831691505092915050565b60006200125f838362001231565b9150826002028217905092915050565b6200127a8262000fff565b67ffffffffffffffff8111156200129657620012956200100a565b5b620012a2825462001068565b620012af828285620011d4565b600060209050601f831160018114620012e75760008415620012d2578287015190505b620012de858262001251565b8655506200134e565b601f198416620012f7866200109d565b60005b828110156200132157848901518255600182019150602085019450602081019050620012fa565b868310156200134157848901516200133d601f89168262001231565b8355505b6001600288020188555050505b505050505050565b6000602082840312156200136f576200136e62000f39565b5b60006200137f8482850162000f8c565b91505092915050565b620013938162000f5e565b82525050565b6000604082019050620013b0600083018562001388565b620013bf602083018462001388565b9392505050565b60805160a051615be9620013f36000396000610f190152600081816111730152613ef20152615be96000f3fe60806040526004361061026b5760003560e01c806370a0823111610144578063c87b56dd116100b6578063e985e9c51161007a578063e985e9c51461093b578063eecea00014610978578063f28ca1dd146109a1578063f2fde38b146109cc578063f4293890146109f5578063ffb54a9914610a0c57610272565b8063c87b56dd14610856578063c9567bf914610893578063d547cfb7146108aa578063dd62ed3e146108d5578063e0df5b6f1461091257610272565b806395d89b411161010857806395d89b41146107345780639b19251a1461075f578063a22cb4651461079c578063a9059cbb146107c5578063b88d4fde14610802578063bf474bed1461082b57610272565b806370a082311461063b57806377b54bad1461067857806389556c6c146106b55780638da5cb5b146106e0578063940cd05b1461070b57610272565b806342842e0e116101dd57806351bc3c85116101a157806351bc3c851461053f57806353d6fd59146105565780636352211e1461057f578063658d4b7f146105bc578063672c97fa146105e55780636ddd17131461061057610272565b806342842e0e1461046c57806349bd5a5e146104955780634f02c420146104c0578063504334c2146104eb578063518302271461051457610272565b806318160ddd1161022f57806318160ddd1461037057806318d217c31461039b57806323b872dd146103c45780632b968958146103ed578063313ce567146104045780633a13e1af1461042f57610272565b8063055ea14114610277578063068835f3146102a257806306fdde03146102cb578063081812fc146102f6578063095ea7b31461033357610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a37565b604051610299919061464f565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c491906147ba565b610ac5565b005b3480156102d757600080fd5b506102e0610b5d565b6040516102ed919061464f565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190614839565b610beb565b60405161032a91906148a7565b60405180910390f35b34801561033f57600080fd5b5061035a600480360381019061035591906148ee565b610c1e565b6040516103679190614949565b60405180910390f35b34801561037c57600080fd5b50610385610f17565b6040516103929190614973565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd91906147ba565b610f3b565b005b3480156103d057600080fd5b506103eb60048036038101906103e6919061498e565b610fd3565b005b3480156103f957600080fd5b5061040261104e565b005b34801561041057600080fd5b50610419611171565b60405161042691906149fd565b60405180910390f35b34801561043b57600080fd5b5061045660048036038101906104519190614a18565b611195565b6040516104639190614949565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e919061498e565b6111b5565b005b3480156104a157600080fd5b506104aa6112e8565b6040516104b791906148a7565b60405180910390f35b3480156104cc57600080fd5b506104d561130e565b6040516104e29190614973565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190614a45565b611314565b005b34801561052057600080fd5b506105296113a7565b6040516105369190614949565b60405180910390f35b34801561054b57600080fd5b506105546113ba565b005b34801561056257600080fd5b5061057d60048036038101906105789190614ae9565b61142d565b005b34801561058b57600080fd5b506105a660048036038101906105a19190614839565b61150d565b6040516105b391906148a7565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190614ae9565b6115b0565b005b3480156105f157600080fd5b506105fa611690565b6040516106079190614973565b60405180910390f35b34801561061c57600080fd5b50610625611696565b6040516106329190614949565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190614a18565b6116a9565b60405161066f9190614973565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a91906148ee565b6116c1565b6040516106ac9190614949565b60405180910390f35b3480156106c157600080fd5b506106ca611828565b6040516106d79190614949565b60405180910390f35b3480156106ec57600080fd5b506106f561183b565b60405161070291906148a7565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d9190614b29565b61185f565b005b34801561074057600080fd5b50610749611901565b604051610756919061464f565b60405180910390f35b34801561076b57600080fd5b5061078660048036038101906107819190614a18565b61198f565b6040516107939190614949565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190614ae9565b6119af565b005b3480156107d157600080fd5b506107ec60048036038101906107e791906148ee565b611aac565b6040516107f99190614949565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190614bb6565b611ad0565b005b34801561083757600080fd5b50610840611c09565b60405161084d9190614973565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190614839565b611c0f565b60405161088a919061464f565b60405180910390f35b34801561089f57600080fd5b506108a8612114565b005b3480156108b657600080fd5b506108bf612221565b6040516108cc919061464f565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190614c3e565b6122af565b6040516109099190614973565b60405180910390f35b34801561091e57600080fd5b50610939600480360381019061093491906147ba565b6122d4565b005b34801561094757600080fd5b50610962600480360381019061095d9190614c3e565b61236c565b60405161096f9190614949565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190614ae9565b61239b565b005b3480156109ad57600080fd5b506109b661247b565b6040516109c3919061464f565b60405180910390f35b3480156109d857600080fd5b506109f360048036038101906109ee9190614a18565b612509565b005b348015610a0157600080fd5b50610a0a612691565b005b348015610a1857600080fd5b50610a21612745565b604051610a2e9190614949565b60405180910390f35b600f8054610a4490614cad565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7090614cad565b8015610abd5780601f10610a9257610100808354040283529160200191610abd565b820191906000526020600020905b815481529060010190602001808311610aa057829003601f168201915b505050505081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b4a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f9081610b599190614e8a565b5050565b60018054610b6a90614cad565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9690614cad565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b505050505081565b60066020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006003548211158015610c325750600082115b15610e265760006008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610d325750600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610d69576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836006600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051610e189190614973565b60405180910390a350610f0d565b81600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f049190614973565b60405180910390a35b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fc0576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c9081610fcf9190614e8a565b5050565b6000610fe0848484612758565b9050610fed848483612a18565b808373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000000081565b60116020528060005260406000206000915054906101000a900460ff1681565b6111c0838383610fd3565b60008273ffffffffffffffffffffffffffffffffffffffff163b141580156112ac575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161124793929190614f93565b6020604051808303816000875af1158015611266573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128a9190615035565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b156112e3576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611399576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113a3828261324f565b5050565b600e60009054906101000a900460ff1681565b6000600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156114115761141081613273565b5b6000479050600081111561142957611428816134bf565b5b5050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114b2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115ab576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611635576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b601a5481565b601f60159054906101000a900460ff1681565b60046020528060005260406000206000915090505481565b6000808203611747578273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161170391906148a7565b602060405180830381865afa158015611720573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117449190615077565b91505b7fda2bc2bedd1f85b5a59d5dbbd6684ff877ef916994a16ec08813101e99ace65f83836040516117789291906150a4565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b81526004016117dd929190615122565b6020604051808303816000875af11580156117fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118209190615160565b905092915050565b601c60009054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118e4576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6002805461190e90614cad565b80601f016020809104026020016040519081016040528092919081815260200182805461193a90614cad565b80156119875780601f1061195c57610100808354040283529160200191611987565b820191906000526020600020905b81548152906001019060200180831161196a57829003601f168201915b505050505081565b600b6020528060005260406000206000915054906101000a900460ff1681565b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa09190614949565b60405180910390a35050565b600080611aba338585612758565b9050611ac73385836135d2565b91505092915050565b611adb858585610fd3565b60008473ffffffffffffffffffffffffffffffffffffffff163b14158015611bcb575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b8152600401611b669594939291906151ba565b6020604051808303816000875af1158015611b85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba99190615035565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611c02576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b601d5481565b606060001515600e60009054906101000a900460ff16151503611cbe57600f8054611c3990614cad565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6590614cad565b8015611cb25780601f10611c8757610100808354040283529160200191611cb2565b820191906000526020600020905b815481529060010190602001808311611c9557829003601f168201915b5050505050905061210f565b6000600d8054611ccd90614cad565b90501115611d0757600d611ce083613998565b604051602001611cf19291906152c7565b604051602081830303815290604052905061210f565b600082604051602001611d1a919061530c565b6040516020818303038152906040528051906020012060f81c905060608060648360ff1611611db8576040518060400160405280600581526020017f312e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600881526020017f546974616e69756d0000000000000000000000000000000000000000000000008152509050611fb8565b60a08360ff1611611e38576040518060400160405280600581526020017f322e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600881526020017f506c6174696e756d0000000000000000000000000000000000000000000000008152509050611fb7565b60d28360ff1611611eb8576040518060400160405280600581526020017f332e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600481526020017f476f6c64000000000000000000000000000000000000000000000000000000008152509050611fb6565b60f08360ff1611611f38576040518060400160405280600581526020017f342e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f53696c76657200000000000000000000000000000000000000000000000000008152509050611fb5565b60ff8360ff1611611fb4576040518060400160405280600581526020017f352e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f42726f6e7a65000000000000000000000000000000000000000000000000000081525090505b5b5b5b5b6000611fc386613998565b604051602001611fd3919061534d565b604051602081830303815290604052604051602001611ff29190615431565b604051602081830303815290604052600c846040516020016120159291906152c7565b604051602081830303815290604052604051602001612035929190615453565b604051602081830303815290604052905060008260405160200161205991906154e9565b604051602081830303815290604052905060006040518060400160405280600481526020017f227d5d7d00000000000000000000000000000000000000000000000000000000815250905082826040516020016120b7929190615453565b604051602081830303815290604052816040516020016120d8929190615453565b6040516020818303038152906040526040516020016120f79190615531565b60405160208183030381529060405296505050505050505b919050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612199576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601f60169054906101000a900460ff16156121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e0906155a3565b60405180910390fd5b6001601f60156101000a81548160ff0219169083151502179055506001601f60166101000a81548160ff021916908315150217905550565b600d805461222e90614cad565b80601f016020809104026020016040519081016040528092919081815260200182805461225a90614cad565b80156122a75780601f1061227c576101008083540402835291602001916122a7565b820191906000526020600020905b81548152906001019060200180831161228a57829003601f168201915b505050505081565b6005602052816000526040600020602052806000526040600020600091509150505481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612359576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d90816123689190614e8a565b5050565b60076020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612420576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600c805461248890614cad565b80601f01602080910402602001604051908101604052809291908181526020018280546124b490614cad565b80156125015780601f106124d657610100808354040283529160200191612501565b820191906000526020600020905b8154815290600101906020018083116124e457829003601f168201915b505050505081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461258e576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125f4576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b600047116126d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cb90615635565b60405180910390fd5b6000479050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612741573d6000803e3d6000fd5b5050565b601f60169054906101000a900460ff1681565b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128015750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1580156128b25750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b05750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b155b1561290757601f60169054906101000a900460ff16612906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fd906156a1565b60405180910390fd5b5b6000600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601f60149054906101000a900460ff161580156129b55750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156129cd5750601f60159054906101000a900460ff165b80156129db5750601d548110155b15612a03576129e981613273565b60004790506000811115612a0157612a00816134bf565b5b505b612a0e858585613a66565b9150509392505050565b6003548111613107576008600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ab9576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b1f576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015612be25750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c4d57506006600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15612c84576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c8c613eee565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cda91906156f0565b92505081905550612ce9613eee565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050612e4d91906156f0565b81548110612e5e57612e5d615724565b5b9060005260206000200154905080600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600a60008581526020019081526020016000205481548110612ed057612ecf615724565b5b9060005260206000200181905550600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480612f2d57612f2c615753565b5b60019003818190600052602060002001600090559055600a600083815260200190815260200160002054600a600083815260200190815260200160002081905550600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208290806001815401808255809150506001900390600052602060002001600090919091909150556001600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061302391906156f0565b600a600084815260200190815260200160002081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314876130ec613eee565b6040516130f99190614973565b60405180910390a35061324a565b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461323c5781816131bb91906156f0565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6132478484846135d2565b50505b505050565b816001908161325e9190614e8a565b50806002908161326e9190614e8a565b505050565b6001601f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156132ab576132aa61468f565b5b6040519080825280602002602001820160405280156132d95781602001602082028036833780820191505090505b50905030816000815181106132f1576132f0615724565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613398573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133bc9190615797565b816001815181106133d0576133cf615724565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161346e9594939291906158bd565b600060405180830381600087803b15801561348857600080fd5b505af115801561349c573d6000803e3d6000fd5b50505050506000601f60146101000a81548160ff02191690831515021790555050565b60006064601454836134d19190615917565b6134db9190615988565b905060006064601554846134ef9190615917565b6134f99190615988565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015613563573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156135cc573d6000803e3d6000fd5b50505050565b6000806135dd613eee565b90506000600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136b691906156f0565b9250508190555084600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166137ea57600083600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137a89190615988565b84846137b49190615988565b6137be91906156f0565b905060005b818110156137e7576137d489613f22565b80806137df906159b9565b9150506137c3565b50505b600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166138ca57600083826138499190615988565b84600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138949190615988565b61389e91906156f0565b905060005b818110156138c7576138b48861417e565b80806138bf906159b9565b9150506138a3565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516139279190614973565b60405180910390a3848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4600193505050509392505050565b6060600060016139a784614414565b01905060008167ffffffffffffffff8111156139c6576139c561468f565b5b6040519080825280601f01601f1916602001820160405280156139f85781602001600182028036833780820191505090505b509050600082602001820190505b600115613a5b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581613a4f57613a4e615959565b5b04945060008503613a06575b819350505050919050565b60008060009050601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015613b185750601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015613b6e5750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613bc1576000601c60009054906101000a900460ff16613b9157601654613b95565b6018545b9050613bbd6064613baf838761456790919063ffffffff16565b61457d90919063ffffffff16565b9150505b601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015613c685750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613cbb576000601c60009054906101000a900460ff16613c8b57601754613c8f565b6019545b9050613cb76064613ca9838761456790919063ffffffff16565b61457d90919063ffffffff16565b9150505b601c60009054906101000a900460ff16158015613cda5750601a544210155b8015613cf25750601f60169054906101000a900460ff165b15613d39576000601a5414613d1d576001601c60006101000a81548160ff0219169083151502179055505b613d32601b544261459390919063ffffffff16565b601a819055505b6000811115613ee257613d9481600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461459390919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e2981600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546145a990919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550803073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613eda81846145a990919063ffffffff16565b915050613ee7565b829150505b9392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000600a613f1d9190615b34565b905090565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603613f88576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061401891906156f0565b8154811061402957614028615724565b5b90600052602060002001549050600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061408557614084615753565b5b60019003818190600052602060002001600090559055600a6000828152602001908152602001600020600090556008600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556006600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905580600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036141e4576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60036000815480929190600101919050555060006003549050600073ffffffffffffffffffffffffffffffffffffffff166008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614614296576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150556001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061439d91906156f0565b600a600083815260200190815260200160002081905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310614472577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161446857614467615959565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106144af576d04ee2d6d415b85acef810000000083816144a5576144a4615959565b5b0492506020810190505b662386f26fc1000083106144de57662386f26fc1000083816144d4576144d3615959565b5b0492506010810190505b6305f5e1008310614507576305f5e10083816144fd576144fc615959565b5b0492506008810190505b612710831061452c57612710838161452257614521615959565b5b0492506004810190505b6064831061454f576064838161454557614544615959565b5b0492506002810190505b600a831061455e576001810190505b80915050919050565b600081836145759190615917565b905092915050565b6000818361458b9190615988565b905092915050565b600081836145a19190615b7f565b905092915050565b600081836145b791906156f0565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156145f95780820151818401526020810190506145de565b60008484015250505050565b6000601f19601f8301169050919050565b6000614621826145bf565b61462b81856145ca565b935061463b8185602086016145db565b61464481614605565b840191505092915050565b600060208201905081810360008301526146698184614616565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6146c782614605565b810181811067ffffffffffffffff821117156146e6576146e561468f565b5b80604052505050565b60006146f9614671565b905061470582826146be565b919050565b600067ffffffffffffffff8211156147255761472461468f565b5b61472e82614605565b9050602081019050919050565b82818337600083830152505050565b600061475d6147588461470a565b6146ef565b9050828152602081018484840111156147795761477861468a565b5b61478484828561473b565b509392505050565b600082601f8301126147a1576147a0614685565b5b81356147b184826020860161474a565b91505092915050565b6000602082840312156147d0576147cf61467b565b5b600082013567ffffffffffffffff8111156147ee576147ed614680565b5b6147fa8482850161478c565b91505092915050565b6000819050919050565b61481681614803565b811461482157600080fd5b50565b6000813590506148338161480d565b92915050565b60006020828403121561484f5761484e61467b565b5b600061485d84828501614824565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061489182614866565b9050919050565b6148a181614886565b82525050565b60006020820190506148bc6000830184614898565b92915050565b6148cb81614886565b81146148d657600080fd5b50565b6000813590506148e8816148c2565b92915050565b600080604083850312156149055761490461467b565b5b6000614913858286016148d9565b925050602061492485828601614824565b9150509250929050565b60008115159050919050565b6149438161492e565b82525050565b600060208201905061495e600083018461493a565b92915050565b61496d81614803565b82525050565b60006020820190506149886000830184614964565b92915050565b6000806000606084860312156149a7576149a661467b565b5b60006149b5868287016148d9565b93505060206149c6868287016148d9565b92505060406149d786828701614824565b9150509250925092565b600060ff82169050919050565b6149f7816149e1565b82525050565b6000602082019050614a1260008301846149ee565b92915050565b600060208284031215614a2e57614a2d61467b565b5b6000614a3c848285016148d9565b91505092915050565b60008060408385031215614a5c57614a5b61467b565b5b600083013567ffffffffffffffff811115614a7a57614a79614680565b5b614a868582860161478c565b925050602083013567ffffffffffffffff811115614aa757614aa6614680565b5b614ab38582860161478c565b9150509250929050565b614ac68161492e565b8114614ad157600080fd5b50565b600081359050614ae381614abd565b92915050565b60008060408385031215614b0057614aff61467b565b5b6000614b0e858286016148d9565b9250506020614b1f85828601614ad4565b9150509250929050565b600060208284031215614b3f57614b3e61467b565b5b6000614b4d84828501614ad4565b91505092915050565b600080fd5b600080fd5b60008083601f840112614b7657614b75614685565b5b8235905067ffffffffffffffff811115614b9357614b92614b56565b5b602083019150836001820283011115614baf57614bae614b5b565b5b9250929050565b600080600080600060808688031215614bd257614bd161467b565b5b6000614be0888289016148d9565b9550506020614bf1888289016148d9565b9450506040614c0288828901614824565b935050606086013567ffffffffffffffff811115614c2357614c22614680565b5b614c2f88828901614b60565b92509250509295509295909350565b60008060408385031215614c5557614c5461467b565b5b6000614c63858286016148d9565b9250506020614c74858286016148d9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614cc557607f821691505b602082108103614cd857614cd7614c7e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614d407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614d03565b614d4a8683614d03565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614d87614d82614d7d84614803565b614d62565b614803565b9050919050565b6000819050919050565b614da183614d6c565b614db5614dad82614d8e565b848454614d10565b825550505050565b600090565b614dca614dbd565b614dd5818484614d98565b505050565b5b81811015614df957614dee600082614dc2565b600181019050614ddb565b5050565b601f821115614e3e57614e0f81614cde565b614e1884614cf3565b81016020851015614e27578190505b614e3b614e3385614cf3565b830182614dda565b50505b505050565b600082821c905092915050565b6000614e6160001984600802614e43565b1980831691505092915050565b6000614e7a8383614e50565b9150826002028217905092915050565b614e93826145bf565b67ffffffffffffffff811115614eac57614eab61468f565b5b614eb68254614cad565b614ec1828285614dfd565b600060209050601f831160018114614ef45760008415614ee2578287015190505b614eec8582614e6e565b865550614f54565b601f198416614f0286614cde565b60005b82811015614f2a57848901518255600182019150602085019450602081019050614f05565b86831015614f475784890151614f43601f891682614e50565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b50565b6000614f7d600083614f5c565b9150614f8882614f6d565b600082019050919050565b6000608082019050614fa86000830186614898565b614fb56020830185614898565b614fc26040830184614964565b8181036060830152614fd381614f70565b9050949350505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61501281614fdd565b811461501d57600080fd5b50565b60008151905061502f81615009565b92915050565b60006020828403121561504b5761504a61467b565b5b600061505984828501615020565b91505092915050565b6000815190506150718161480d565b92915050565b60006020828403121561508d5761508c61467b565b5b600061509b84828501615062565b91505092915050565b60006040820190506150b96000830185614898565b6150c66020830184614964565b9392505050565b60006150e86150e36150de84614866565b614d62565b614866565b9050919050565b60006150fa826150cd565b9050919050565b600061510c826150ef565b9050919050565b61511c81615101565b82525050565b60006040820190506151376000830185615113565b6151446020830184614964565b9392505050565b60008151905061515a81614abd565b92915050565b6000602082840312156151765761517561467b565b5b60006151848482850161514b565b91505092915050565b60006151998385614f5c565b93506151a683858461473b565b6151af83614605565b840190509392505050565b60006080820190506151cf6000830188614898565b6151dc6020830187614898565b6151e96040830186614964565b81810360608301526151fc81848661518d565b90509695505050505050565b600081905092915050565b6000815461522081614cad565b61522a8186615208565b94506001821660008114615245576001811461525a5761528d565b60ff198316865281151582028601935061528d565b61526385614cde565b60005b8381101561528557815481890152600182019150602081019050615266565b838801955050505b50505092915050565b60006152a1826145bf565b6152ab8185615208565b93506152bb8185602086016145db565b80840191505092915050565b60006152d38285615213565b91506152df8284615296565b91508190509392505050565b6000819050919050565b61530661530182614803565b6152eb565b82525050565b600061531882846152f5565b60208201915081905092915050565b7f7b226e616d65223a20224d61757320546f6b656e202300000000000000000000815250565b600061535882615327565b6016820191506153688284615296565b915081905092915050565b7f222c226465736372697074696f6e223a224120636f6c6c656374696f6e206f6660008201527f20382c383838204d61757320656e61626c6564206279204552433430342c206160208201527f6e206578706572696d656e74616c20746f6b656e207374616e646172642e222c60408201527f2265787465726e616c5f75726c223a22222c22696d616765223a220000000000606082015250565b600061541b607b83615208565b915061542682615373565b607b82019050919050565b600061543d8284615296565b91506154488261540e565b915081905092915050565b600061545f8285615296565b915061546b8284615296565b91508190509392505050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a225060008201527f72656d69756d222c2276616c7565223a22000000000000000000000000000000602082015250565b60006154d3603183615208565b91506154de82615477565b603182019050919050565b60006154f4826154c6565b91506155008284615296565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b600061553c8261550b565b601b8201915061554c8284615296565b915081905092915050565b7f74726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b600061558d6017836145ca565b915061559882615557565b602082019050919050565b600060208201905081810360008301526155bc81615580565b9050919050565b7f436f6e74726163742062616c616e6365206d757374206265206772656174657260008201527f207468616e207a65726f00000000000000000000000000000000000000000000602082015250565b600061561f602a836145ca565b915061562a826155c3565b604082019050919050565b6000602082019050818103600083015261564e81615612565b9050919050565b7f54726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b600061568b6014836145ca565b915061569682615655565b602082019050919050565b600060208201905081810360008301526156ba8161567e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006156fb82614803565b915061570683614803565b925082820390508181111561571e5761571d6156c1565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050615791816148c2565b92915050565b6000602082840312156157ad576157ac61467b565b5b60006157bb84828501615782565b91505092915050565b6000819050919050565b60006157e96157e46157df846157c4565b614d62565b614803565b9050919050565b6157f9816157ce565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61583481614886565b82525050565b6000615846838361582b565b60208301905092915050565b6000602082019050919050565b600061586a826157ff565b615874818561580a565b935061587f8361581b565b8060005b838110156158b0578151615897888261583a565b97506158a283615852565b925050600181019050615883565b5085935050505092915050565b600060a0820190506158d26000830188614964565b6158df60208301876157f0565b81810360408301526158f1818661585f565b90506159006060830185614898565b61590d6080830184614964565b9695505050505050565b600061592282614803565b915061592d83614803565b925082820261593b81614803565b91508282048414831517615952576159516156c1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061599382614803565b915061599e83614803565b9250826159ae576159ad615959565b5b828204905092915050565b60006159c482614803565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036159f6576159f56156c1565b5b600182019050919050565b60008160011c9050919050565b6000808291508390505b6001851115615a5857808604811115615a3457615a336156c1565b5b6001851615615a435780820291505b8081029050615a5185615a01565b9450615a18565b94509492505050565b600082615a715760019050615b2d565b81615a7f5760009050615b2d565b8160018114615a955760028114615a9f57615ace565b6001915050615b2d565b60ff841115615ab157615ab06156c1565b5b8360020a915084821115615ac857615ac76156c1565b5b50615b2d565b5060208310610133831016604e8410600b8410161715615b035782820a905083811115615afe57615afd6156c1565b5b615b2d565b615b108484846001615a0e565b92509050818404811115615b2757615b266156c1565b5b81810290505b9392505050565b6000615b3f82614803565b9150615b4a836149e1565b9250615b777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484615a61565b905092915050565b6000615b8a82614803565b9150615b9583614803565b9250828201905080821115615bad57615bac6156c1565b5b9291505056fea2646970667358221220d7bcaeab80b8e3554b9543770a9e0713defa536a5a06ce42d590667274dd66e764736f6c63430008140033000000000000000000000000e2f4f4addf9709ae699c67010fec07df01de63900000000000000000000000003128c4869d6c7fa295d49535156093a355b3f13d00000000000000000000000005e03996255b5dc839ecd3660ebde39a79c1a47e

Deployed Bytecode

0x60806040526004361061026b5760003560e01c806370a0823111610144578063c87b56dd116100b6578063e985e9c51161007a578063e985e9c51461093b578063eecea00014610978578063f28ca1dd146109a1578063f2fde38b146109cc578063f4293890146109f5578063ffb54a9914610a0c57610272565b8063c87b56dd14610856578063c9567bf914610893578063d547cfb7146108aa578063dd62ed3e146108d5578063e0df5b6f1461091257610272565b806395d89b411161010857806395d89b41146107345780639b19251a1461075f578063a22cb4651461079c578063a9059cbb146107c5578063b88d4fde14610802578063bf474bed1461082b57610272565b806370a082311461063b57806377b54bad1461067857806389556c6c146106b55780638da5cb5b146106e0578063940cd05b1461070b57610272565b806342842e0e116101dd57806351bc3c85116101a157806351bc3c851461053f57806353d6fd59146105565780636352211e1461057f578063658d4b7f146105bc578063672c97fa146105e55780636ddd17131461061057610272565b806342842e0e1461046c57806349bd5a5e146104955780634f02c420146104c0578063504334c2146104eb578063518302271461051457610272565b806318160ddd1161022f57806318160ddd1461037057806318d217c31461039b57806323b872dd146103c45780632b968958146103ed578063313ce567146104045780633a13e1af1461042f57610272565b8063055ea14114610277578063068835f3146102a257806306fdde03146102cb578063081812fc146102f6578063095ea7b31461033357610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a37565b604051610299919061464f565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c491906147ba565b610ac5565b005b3480156102d757600080fd5b506102e0610b5d565b6040516102ed919061464f565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190614839565b610beb565b60405161032a91906148a7565b60405180910390f35b34801561033f57600080fd5b5061035a600480360381019061035591906148ee565b610c1e565b6040516103679190614949565b60405180910390f35b34801561037c57600080fd5b50610385610f17565b6040516103929190614973565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd91906147ba565b610f3b565b005b3480156103d057600080fd5b506103eb60048036038101906103e6919061498e565b610fd3565b005b3480156103f957600080fd5b5061040261104e565b005b34801561041057600080fd5b50610419611171565b60405161042691906149fd565b60405180910390f35b34801561043b57600080fd5b5061045660048036038101906104519190614a18565b611195565b6040516104639190614949565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e919061498e565b6111b5565b005b3480156104a157600080fd5b506104aa6112e8565b6040516104b791906148a7565b60405180910390f35b3480156104cc57600080fd5b506104d561130e565b6040516104e29190614973565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190614a45565b611314565b005b34801561052057600080fd5b506105296113a7565b6040516105369190614949565b60405180910390f35b34801561054b57600080fd5b506105546113ba565b005b34801561056257600080fd5b5061057d60048036038101906105789190614ae9565b61142d565b005b34801561058b57600080fd5b506105a660048036038101906105a19190614839565b61150d565b6040516105b391906148a7565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190614ae9565b6115b0565b005b3480156105f157600080fd5b506105fa611690565b6040516106079190614973565b60405180910390f35b34801561061c57600080fd5b50610625611696565b6040516106329190614949565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190614a18565b6116a9565b60405161066f9190614973565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a91906148ee565b6116c1565b6040516106ac9190614949565b60405180910390f35b3480156106c157600080fd5b506106ca611828565b6040516106d79190614949565b60405180910390f35b3480156106ec57600080fd5b506106f561183b565b60405161070291906148a7565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d9190614b29565b61185f565b005b34801561074057600080fd5b50610749611901565b604051610756919061464f565b60405180910390f35b34801561076b57600080fd5b5061078660048036038101906107819190614a18565b61198f565b6040516107939190614949565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190614ae9565b6119af565b005b3480156107d157600080fd5b506107ec60048036038101906107e791906148ee565b611aac565b6040516107f99190614949565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190614bb6565b611ad0565b005b34801561083757600080fd5b50610840611c09565b60405161084d9190614973565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190614839565b611c0f565b60405161088a919061464f565b60405180910390f35b34801561089f57600080fd5b506108a8612114565b005b3480156108b657600080fd5b506108bf612221565b6040516108cc919061464f565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190614c3e565b6122af565b6040516109099190614973565b60405180910390f35b34801561091e57600080fd5b50610939600480360381019061093491906147ba565b6122d4565b005b34801561094757600080fd5b50610962600480360381019061095d9190614c3e565b61236c565b60405161096f9190614949565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190614ae9565b61239b565b005b3480156109ad57600080fd5b506109b661247b565b6040516109c3919061464f565b60405180910390f35b3480156109d857600080fd5b506109f360048036038101906109ee9190614a18565b612509565b005b348015610a0157600080fd5b50610a0a612691565b005b348015610a1857600080fd5b50610a21612745565b604051610a2e9190614949565b60405180910390f35b600f8054610a4490614cad565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7090614cad565b8015610abd5780601f10610a9257610100808354040283529160200191610abd565b820191906000526020600020905b815481529060010190602001808311610aa057829003601f168201915b505050505081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b4a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f9081610b599190614e8a565b5050565b60018054610b6a90614cad565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9690614cad565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b505050505081565b60066020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006003548211158015610c325750600082115b15610e265760006008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610d325750600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610d69576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836006600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051610e189190614973565b60405180910390a350610f0d565b81600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f049190614973565b60405180910390a35b6001905092915050565b7f0000000000000000000000000000000000000000000001e1d1c72d5b97e0000081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fc0576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c9081610fcf9190614e8a565b5050565b6000610fe0848484612758565b9050610fed848483612a18565b808373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000001281565b60116020528060005260406000206000915054906101000a900460ff1681565b6111c0838383610fd3565b60008273ffffffffffffffffffffffffffffffffffffffff163b141580156112ac575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161124793929190614f93565b6020604051808303816000875af1158015611266573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128a9190615035565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b156112e3576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611399576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113a3828261324f565b5050565b600e60009054906101000a900460ff1681565b6000600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156114115761141081613273565b5b6000479050600081111561142957611428816134bf565b5b5050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114b2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115ab576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611635576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b601a5481565b601f60159054906101000a900460ff1681565b60046020528060005260406000206000915090505481565b6000808203611747578273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161170391906148a7565b602060405180830381865afa158015611720573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117449190615077565b91505b7fda2bc2bedd1f85b5a59d5dbbd6684ff877ef916994a16ec08813101e99ace65f83836040516117789291906150a4565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b81526004016117dd929190615122565b6020604051808303816000875af11580156117fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118209190615160565b905092915050565b601c60009054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118e4576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6002805461190e90614cad565b80601f016020809104026020016040519081016040528092919081815260200182805461193a90614cad565b80156119875780601f1061195c57610100808354040283529160200191611987565b820191906000526020600020905b81548152906001019060200180831161196a57829003601f168201915b505050505081565b600b6020528060005260406000206000915054906101000a900460ff1681565b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa09190614949565b60405180910390a35050565b600080611aba338585612758565b9050611ac73385836135d2565b91505092915050565b611adb858585610fd3565b60008473ffffffffffffffffffffffffffffffffffffffff163b14158015611bcb575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b8152600401611b669594939291906151ba565b6020604051808303816000875af1158015611b85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba99190615035565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611c02576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b601d5481565b606060001515600e60009054906101000a900460ff16151503611cbe57600f8054611c3990614cad565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6590614cad565b8015611cb25780601f10611c8757610100808354040283529160200191611cb2565b820191906000526020600020905b815481529060010190602001808311611c9557829003601f168201915b5050505050905061210f565b6000600d8054611ccd90614cad565b90501115611d0757600d611ce083613998565b604051602001611cf19291906152c7565b604051602081830303815290604052905061210f565b600082604051602001611d1a919061530c565b6040516020818303038152906040528051906020012060f81c905060608060648360ff1611611db8576040518060400160405280600581526020017f312e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600881526020017f546974616e69756d0000000000000000000000000000000000000000000000008152509050611fb8565b60a08360ff1611611e38576040518060400160405280600581526020017f322e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600881526020017f506c6174696e756d0000000000000000000000000000000000000000000000008152509050611fb7565b60d28360ff1611611eb8576040518060400160405280600581526020017f332e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600481526020017f476f6c64000000000000000000000000000000000000000000000000000000008152509050611fb6565b60f08360ff1611611f38576040518060400160405280600581526020017f342e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f53696c76657200000000000000000000000000000000000000000000000000008152509050611fb5565b60ff8360ff1611611fb4576040518060400160405280600581526020017f352e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f42726f6e7a65000000000000000000000000000000000000000000000000000081525090505b5b5b5b5b6000611fc386613998565b604051602001611fd3919061534d565b604051602081830303815290604052604051602001611ff29190615431565b604051602081830303815290604052600c846040516020016120159291906152c7565b604051602081830303815290604052604051602001612035929190615453565b604051602081830303815290604052905060008260405160200161205991906154e9565b604051602081830303815290604052905060006040518060400160405280600481526020017f227d5d7d00000000000000000000000000000000000000000000000000000000815250905082826040516020016120b7929190615453565b604051602081830303815290604052816040516020016120d8929190615453565b6040516020818303038152906040526040516020016120f79190615531565b60405160208183030381529060405296505050505050505b919050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612199576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601f60169054906101000a900460ff16156121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e0906155a3565b60405180910390fd5b6001601f60156101000a81548160ff0219169083151502179055506001601f60166101000a81548160ff021916908315150217905550565b600d805461222e90614cad565b80601f016020809104026020016040519081016040528092919081815260200182805461225a90614cad565b80156122a75780601f1061227c576101008083540402835291602001916122a7565b820191906000526020600020905b81548152906001019060200180831161228a57829003601f168201915b505050505081565b6005602052816000526040600020602052806000526040600020600091509150505481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612359576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d90816123689190614e8a565b5050565b60076020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612420576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600c805461248890614cad565b80601f01602080910402602001604051908101604052809291908181526020018280546124b490614cad565b80156125015780601f106124d657610100808354040283529160200191612501565b820191906000526020600020905b8154815290600101906020018083116124e457829003601f168201915b505050505081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461258e576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125f4576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b600047116126d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cb90615635565b60405180910390fd5b6000479050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612741573d6000803e3d6000fd5b5050565b601f60169054906101000a900460ff1681565b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128015750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1580156128b25750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b05750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b155b1561290757601f60169054906101000a900460ff16612906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fd906156a1565b60405180910390fd5b5b6000600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601f60149054906101000a900460ff161580156129b55750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156129cd5750601f60159054906101000a900460ff165b80156129db5750601d548110155b15612a03576129e981613273565b60004790506000811115612a0157612a00816134bf565b5b505b612a0e858585613a66565b9150509392505050565b6003548111613107576008600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ab9576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b1f576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015612be25750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c4d57506006600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15612c84576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c8c613eee565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cda91906156f0565b92505081905550612ce9613eee565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050612e4d91906156f0565b81548110612e5e57612e5d615724565b5b9060005260206000200154905080600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600a60008581526020019081526020016000205481548110612ed057612ecf615724565b5b9060005260206000200181905550600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480612f2d57612f2c615753565b5b60019003818190600052602060002001600090559055600a600083815260200190815260200160002054600a600083815260200190815260200160002081905550600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208290806001815401808255809150506001900390600052602060002001600090919091909150556001600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061302391906156f0565b600a600084815260200190815260200160002081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314876130ec613eee565b6040516130f99190614973565b60405180910390a35061324a565b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461323c5781816131bb91906156f0565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6132478484846135d2565b50505b505050565b816001908161325e9190614e8a565b50806002908161326e9190614e8a565b505050565b6001601f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156132ab576132aa61468f565b5b6040519080825280602002602001820160405280156132d95781602001602082028036833780820191505090505b50905030816000815181106132f1576132f0615724565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613398573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133bc9190615797565b816001815181106133d0576133cf615724565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161346e9594939291906158bd565b600060405180830381600087803b15801561348857600080fd5b505af115801561349c573d6000803e3d6000fd5b50505050506000601f60146101000a81548160ff02191690831515021790555050565b60006064601454836134d19190615917565b6134db9190615988565b905060006064601554846134ef9190615917565b6134f99190615988565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015613563573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156135cc573d6000803e3d6000fd5b50505050565b6000806135dd613eee565b90506000600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136b691906156f0565b9250508190555084600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166137ea57600083600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137a89190615988565b84846137b49190615988565b6137be91906156f0565b905060005b818110156137e7576137d489613f22565b80806137df906159b9565b9150506137c3565b50505b600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166138ca57600083826138499190615988565b84600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138949190615988565b61389e91906156f0565b905060005b818110156138c7576138b48861417e565b80806138bf906159b9565b9150506138a3565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516139279190614973565b60405180910390a3848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4600193505050509392505050565b6060600060016139a784614414565b01905060008167ffffffffffffffff8111156139c6576139c561468f565b5b6040519080825280601f01601f1916602001820160405280156139f85781602001600182028036833780820191505090505b509050600082602001820190505b600115613a5b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581613a4f57613a4e615959565b5b04945060008503613a06575b819350505050919050565b60008060009050601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015613b185750601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015613b6e5750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613bc1576000601c60009054906101000a900460ff16613b9157601654613b95565b6018545b9050613bbd6064613baf838761456790919063ffffffff16565b61457d90919063ffffffff16565b9150505b601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015613c685750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613cbb576000601c60009054906101000a900460ff16613c8b57601754613c8f565b6019545b9050613cb76064613ca9838761456790919063ffffffff16565b61457d90919063ffffffff16565b9150505b601c60009054906101000a900460ff16158015613cda5750601a544210155b8015613cf25750601f60169054906101000a900460ff165b15613d39576000601a5414613d1d576001601c60006101000a81548160ff0219169083151502179055505b613d32601b544261459390919063ffffffff16565b601a819055505b6000811115613ee257613d9481600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461459390919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e2981600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546145a990919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550803073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613eda81846145a990919063ffffffff16565b915050613ee7565b829150505b9392505050565b60007f0000000000000000000000000000000000000000000000000000000000000012600a613f1d9190615b34565b905090565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603613f88576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061401891906156f0565b8154811061402957614028615724565b5b90600052602060002001549050600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061408557614084615753565b5b60019003818190600052602060002001600090559055600a6000828152602001908152602001600020600090556008600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556006600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905580600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036141e4576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60036000815480929190600101919050555060006003549050600073ffffffffffffffffffffffffffffffffffffffff166008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614614296576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150556001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061439d91906156f0565b600a600083815260200190815260200160002081905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310614472577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161446857614467615959565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106144af576d04ee2d6d415b85acef810000000083816144a5576144a4615959565b5b0492506020810190505b662386f26fc1000083106144de57662386f26fc1000083816144d4576144d3615959565b5b0492506010810190505b6305f5e1008310614507576305f5e10083816144fd576144fc615959565b5b0492506008810190505b612710831061452c57612710838161452257614521615959565b5b0492506004810190505b6064831061454f576064838161454557614544615959565b5b0492506002810190505b600a831061455e576001810190505b80915050919050565b600081836145759190615917565b905092915050565b6000818361458b9190615988565b905092915050565b600081836145a19190615b7f565b905092915050565b600081836145b791906156f0565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156145f95780820151818401526020810190506145de565b60008484015250505050565b6000601f19601f8301169050919050565b6000614621826145bf565b61462b81856145ca565b935061463b8185602086016145db565b61464481614605565b840191505092915050565b600060208201905081810360008301526146698184614616565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6146c782614605565b810181811067ffffffffffffffff821117156146e6576146e561468f565b5b80604052505050565b60006146f9614671565b905061470582826146be565b919050565b600067ffffffffffffffff8211156147255761472461468f565b5b61472e82614605565b9050602081019050919050565b82818337600083830152505050565b600061475d6147588461470a565b6146ef565b9050828152602081018484840111156147795761477861468a565b5b61478484828561473b565b509392505050565b600082601f8301126147a1576147a0614685565b5b81356147b184826020860161474a565b91505092915050565b6000602082840312156147d0576147cf61467b565b5b600082013567ffffffffffffffff8111156147ee576147ed614680565b5b6147fa8482850161478c565b91505092915050565b6000819050919050565b61481681614803565b811461482157600080fd5b50565b6000813590506148338161480d565b92915050565b60006020828403121561484f5761484e61467b565b5b600061485d84828501614824565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061489182614866565b9050919050565b6148a181614886565b82525050565b60006020820190506148bc6000830184614898565b92915050565b6148cb81614886565b81146148d657600080fd5b50565b6000813590506148e8816148c2565b92915050565b600080604083850312156149055761490461467b565b5b6000614913858286016148d9565b925050602061492485828601614824565b9150509250929050565b60008115159050919050565b6149438161492e565b82525050565b600060208201905061495e600083018461493a565b92915050565b61496d81614803565b82525050565b60006020820190506149886000830184614964565b92915050565b6000806000606084860312156149a7576149a661467b565b5b60006149b5868287016148d9565b93505060206149c6868287016148d9565b92505060406149d786828701614824565b9150509250925092565b600060ff82169050919050565b6149f7816149e1565b82525050565b6000602082019050614a1260008301846149ee565b92915050565b600060208284031215614a2e57614a2d61467b565b5b6000614a3c848285016148d9565b91505092915050565b60008060408385031215614a5c57614a5b61467b565b5b600083013567ffffffffffffffff811115614a7a57614a79614680565b5b614a868582860161478c565b925050602083013567ffffffffffffffff811115614aa757614aa6614680565b5b614ab38582860161478c565b9150509250929050565b614ac68161492e565b8114614ad157600080fd5b50565b600081359050614ae381614abd565b92915050565b60008060408385031215614b0057614aff61467b565b5b6000614b0e858286016148d9565b9250506020614b1f85828601614ad4565b9150509250929050565b600060208284031215614b3f57614b3e61467b565b5b6000614b4d84828501614ad4565b91505092915050565b600080fd5b600080fd5b60008083601f840112614b7657614b75614685565b5b8235905067ffffffffffffffff811115614b9357614b92614b56565b5b602083019150836001820283011115614baf57614bae614b5b565b5b9250929050565b600080600080600060808688031215614bd257614bd161467b565b5b6000614be0888289016148d9565b9550506020614bf1888289016148d9565b9450506040614c0288828901614824565b935050606086013567ffffffffffffffff811115614c2357614c22614680565b5b614c2f88828901614b60565b92509250509295509295909350565b60008060408385031215614c5557614c5461467b565b5b6000614c63858286016148d9565b9250506020614c74858286016148d9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614cc557607f821691505b602082108103614cd857614cd7614c7e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614d407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614d03565b614d4a8683614d03565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614d87614d82614d7d84614803565b614d62565b614803565b9050919050565b6000819050919050565b614da183614d6c565b614db5614dad82614d8e565b848454614d10565b825550505050565b600090565b614dca614dbd565b614dd5818484614d98565b505050565b5b81811015614df957614dee600082614dc2565b600181019050614ddb565b5050565b601f821115614e3e57614e0f81614cde565b614e1884614cf3565b81016020851015614e27578190505b614e3b614e3385614cf3565b830182614dda565b50505b505050565b600082821c905092915050565b6000614e6160001984600802614e43565b1980831691505092915050565b6000614e7a8383614e50565b9150826002028217905092915050565b614e93826145bf565b67ffffffffffffffff811115614eac57614eab61468f565b5b614eb68254614cad565b614ec1828285614dfd565b600060209050601f831160018114614ef45760008415614ee2578287015190505b614eec8582614e6e565b865550614f54565b601f198416614f0286614cde565b60005b82811015614f2a57848901518255600182019150602085019450602081019050614f05565b86831015614f475784890151614f43601f891682614e50565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b50565b6000614f7d600083614f5c565b9150614f8882614f6d565b600082019050919050565b6000608082019050614fa86000830186614898565b614fb56020830185614898565b614fc26040830184614964565b8181036060830152614fd381614f70565b9050949350505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61501281614fdd565b811461501d57600080fd5b50565b60008151905061502f81615009565b92915050565b60006020828403121561504b5761504a61467b565b5b600061505984828501615020565b91505092915050565b6000815190506150718161480d565b92915050565b60006020828403121561508d5761508c61467b565b5b600061509b84828501615062565b91505092915050565b60006040820190506150b96000830185614898565b6150c66020830184614964565b9392505050565b60006150e86150e36150de84614866565b614d62565b614866565b9050919050565b60006150fa826150cd565b9050919050565b600061510c826150ef565b9050919050565b61511c81615101565b82525050565b60006040820190506151376000830185615113565b6151446020830184614964565b9392505050565b60008151905061515a81614abd565b92915050565b6000602082840312156151765761517561467b565b5b60006151848482850161514b565b91505092915050565b60006151998385614f5c565b93506151a683858461473b565b6151af83614605565b840190509392505050565b60006080820190506151cf6000830188614898565b6151dc6020830187614898565b6151e96040830186614964565b81810360608301526151fc81848661518d565b90509695505050505050565b600081905092915050565b6000815461522081614cad565b61522a8186615208565b94506001821660008114615245576001811461525a5761528d565b60ff198316865281151582028601935061528d565b61526385614cde565b60005b8381101561528557815481890152600182019150602081019050615266565b838801955050505b50505092915050565b60006152a1826145bf565b6152ab8185615208565b93506152bb8185602086016145db565b80840191505092915050565b60006152d38285615213565b91506152df8284615296565b91508190509392505050565b6000819050919050565b61530661530182614803565b6152eb565b82525050565b600061531882846152f5565b60208201915081905092915050565b7f7b226e616d65223a20224d61757320546f6b656e202300000000000000000000815250565b600061535882615327565b6016820191506153688284615296565b915081905092915050565b7f222c226465736372697074696f6e223a224120636f6c6c656374696f6e206f6660008201527f20382c383838204d61757320656e61626c6564206279204552433430342c206160208201527f6e206578706572696d656e74616c20746f6b656e207374616e646172642e222c60408201527f2265787465726e616c5f75726c223a22222c22696d616765223a220000000000606082015250565b600061541b607b83615208565b915061542682615373565b607b82019050919050565b600061543d8284615296565b91506154488261540e565b915081905092915050565b600061545f8285615296565b915061546b8284615296565b91508190509392505050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a225060008201527f72656d69756d222c2276616c7565223a22000000000000000000000000000000602082015250565b60006154d3603183615208565b91506154de82615477565b603182019050919050565b60006154f4826154c6565b91506155008284615296565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b600061553c8261550b565b601b8201915061554c8284615296565b915081905092915050565b7f74726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b600061558d6017836145ca565b915061559882615557565b602082019050919050565b600060208201905081810360008301526155bc81615580565b9050919050565b7f436f6e74726163742062616c616e6365206d757374206265206772656174657260008201527f207468616e207a65726f00000000000000000000000000000000000000000000602082015250565b600061561f602a836145ca565b915061562a826155c3565b604082019050919050565b6000602082019050818103600083015261564e81615612565b9050919050565b7f54726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b600061568b6014836145ca565b915061569682615655565b602082019050919050565b600060208201905081810360008301526156ba8161567e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006156fb82614803565b915061570683614803565b925082820390508181111561571e5761571d6156c1565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050615791816148c2565b92915050565b6000602082840312156157ad576157ac61467b565b5b60006157bb84828501615782565b91505092915050565b6000819050919050565b60006157e96157e46157df846157c4565b614d62565b614803565b9050919050565b6157f9816157ce565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61583481614886565b82525050565b6000615846838361582b565b60208301905092915050565b6000602082019050919050565b600061586a826157ff565b615874818561580a565b935061587f8361581b565b8060005b838110156158b0578151615897888261583a565b97506158a283615852565b925050600181019050615883565b5085935050505092915050565b600060a0820190506158d26000830188614964565b6158df60208301876157f0565b81810360408301526158f1818661585f565b90506159006060830185614898565b61590d6080830184614964565b9695505050505050565b600061592282614803565b915061592d83614803565b925082820261593b81614803565b91508282048414831517615952576159516156c1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061599382614803565b915061599e83614803565b9250826159ae576159ad615959565b5b828204905092915050565b60006159c482614803565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036159f6576159f56156c1565b5b600182019050919050565b60008160011c9050919050565b6000808291508390505b6001851115615a5857808604811115615a3457615a336156c1565b5b6001851615615a435780820291505b8081029050615a5185615a01565b9450615a18565b94509492505050565b600082615a715760019050615b2d565b81615a7f5760009050615b2d565b8160018114615a955760028114615a9f57615ace565b6001915050615b2d565b60ff841115615ab157615ab06156c1565b5b8360020a915084821115615ac857615ac76156c1565b5b50615b2d565b5060208310610133831016604e8410600b8410161715615b035782820a905083811115615afe57615afd6156c1565b5b615b2d565b615b108484846001615a0e565b92509050818404811115615b2757615b266156c1565b5b81810290505b9392505050565b6000615b3f82614803565b9150615b4a836149e1565b9250615b777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484615a61565b905092915050565b6000615b8a82614803565b9150615b9583614803565b9250828201905080821115615bad57615bac6156c1565b5b9291505056fea2646970667358221220d7bcaeab80b8e3554b9543770a9e0713defa536a5a06ce42d590667274dd66e764736f6c63430008140033

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

000000000000000000000000e2f4f4addf9709ae699c67010fec07df01de63900000000000000000000000003128c4869d6c7fa295d49535156093a355b3f13d00000000000000000000000005e03996255b5dc839ecd3660ebde39a79c1a47e

-----Decoded View---------------
Arg [0] : _owner (address): 0xe2f4F4ADdf9709AE699C67010Fec07DF01de6390
Arg [1] : taxWallet (address): 0x3128C4869D6c7fA295D49535156093a355b3f13D
Arg [2] : teamWallet (address): 0x05e03996255b5Dc839ecD3660eBde39a79C1A47e

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000e2f4f4addf9709ae699c67010fec07df01de6390
Arg [1] : 0000000000000000000000003128c4869d6c7fa295d49535156093a355b3f13d
Arg [2] : 00000000000000000000000005e03996255b5dc839ecd3660ebde39a79c1a47e


Loading...
Loading
Loading...
Loading
[ 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.