ETH Price: $2,390.35 (-3.53%)

Token

Nova AI (NOVA)
 

Overview

Max Total Supply

100,000,000 NOVA

Holders

295

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
127,890.76 NOVA

Value
$0.00
0xd7d00d3f18ef7547703a43c8350fa44b7a926777
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:
Nova

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-08-15
*/

/*  Nova - Launch your project into orbit with Nova AI
    Website: https://nova.engineer/
    Twitter: https://x.com/NovaOnETH
    Telegram: https://t.me/NovaEngineer
    Docs: https://docs.nova.engineer/
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @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: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// 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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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 virtual {
        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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.9.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;
        }
    }
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

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

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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

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

// File: NovaToken.sol

pragma solidity ^0.8.21;






contract Nova is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address private taxWallet;

    uint256 public convertAtAmount;
    uint256 public maxSwapAmount;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 private launchedAt;
    uint256 private launchedTime;
    uint256 public blocks;

    uint256 public buyTotalFees;
    uint256 public sellTotalFees;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(uint256 => uint256) private blockSwaps;

    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event TaxWalletUpdated(address indexed newWallet, address indexed oldWallet);
    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity);

    constructor() Ownable(msg.sender) ERC20("Nova AI", "NOVA") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 100_000_000 * 1e18;

        maxSwapAmount = 50_000 * 1e18;
        convertAtAmount = 50_000 * 1e18;

        taxWallet = msg.sender;

        _mint(msg.sender, (totalSupply * 80) / 100);
        _mint(address(this), (totalSupply * 20) / 100);


        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
    }

    receive() external payable {}

    function openTrading() external payable onlyOwner {
        _approve(address(this), address(uniswapV2Router), totalSupply());
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);

        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
        launchedTime = block.timestamp;

        // Set initial high fees
        buyTotalFees = 20;
        sellTotalFees = 40;

    }


    function removeLimits() external onlyOwner {
        limitsInEffect = false;
    }

    function updateConvertAtAmount(uint256 newAmount) external {

        require(_msgSender() == taxWallet);
        convertAtAmount = newAmount * (10 ** 18);

    }

    function updateMaxSwap(uint256 newAmount) external {
        require(_msgSender() == taxWallet);
        maxSwapAmount = newAmount * (10 ** 18);

    }


    function whitelistContract(address _whitelist, bool isWL) public onlyOwner {
        _isExcludedMaxTransactionAmount[_whitelist] = isWL;

        _isExcludedFromFees[_whitelist] = isWL;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function maxWallet() public view returns(uint256) {

        uint256 elapsedBlocks = block.number - launchedAt;

        if (elapsedBlocks <= 15) {
            uint256 incrementalMaxWallet = (elapsedBlocks * 250 * totalSupply()) / (15 * 10000);
            return incrementalMaxWallet;
        } else {
            return (250 * totalSupply()) / 10000;
        }
    }

    

    function manualswap(uint256 amount) external {
        require(_msgSender() == taxWallet);
        require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount");
        swapTokensForEth(amount);
    }

    function emptyETH() external {
        address(taxWallet).call{value: address(this).balance}("");
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateFees(uint256 _swapFee) external {

        require(msg.sender == taxWallet, "Only Owner!");

        require(_swapFee < buyTotalFees, "Cannot Raise Buy Taxes");
        require(_swapFee < sellTotalFees, "Cannot Raise Sell Taxes");

        buyTotalFees = _swapFee;
        sellTotalFees = _swapFee;

    }

    function updateBuyFees(uint256 _swapFee) external {

        require(msg.sender == taxWallet, "Only Owner!");

        require(_swapFee < buyTotalFees, "Cannot Raise Buy Taxes");
        buyTotalFees = _swapFee;
    }

    function updateSellFees(uint256 _swapFee) external {

        require(msg.sender == taxWallet, "Only Owner!");

        require(_swapFee < sellTotalFees, "Cannot Raise Sell Tax");
        sellTotalFees = _swapFee;
    }

    function updateTaxWallet(address newtaxWallet) external onlyOwner {
        emit TaxWalletUpdated(newtaxWallet, taxWallet);
        taxWallet = newtaxWallet;
    }

    function _transfer(address from, address to, uint256 amount) internal override {
    require(from != address(0), "ERC20: transfer from the zero address");
    require(to != address(0), "ERC20: transfer to the zero address");

    if (amount == 0) {
        super._transfer(from, to, 0);
        return;
    }

    if (limitsInEffect) {
        if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {
            if (!tradingActive) {
                require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
            }

            // When buying
            if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                require(amount + balanceOf(to) <= maxWallet(), "Max wallet exceeded");
            }

            // When selling or transferring
            if (!_isExcludedMaxTransactionAmount[to]) {
                require(amount + balanceOf(to) <= maxWallet(), "Max wallet exceeded");
            }
        }
    }

    uint256 contractTokenBalance = balanceOf(address(this));

    bool canSwap = contractTokenBalance >= convertAtAmount;

    if (
        canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from]
            && !_isExcludedFromFees[to]
    ) {
        // Limit swaps
        if (blockSwaps[block.number] < 3) {
            swapping = true;

            swapBack();

            swapping = false;

            blockSwaps[block.number] = blockSwaps[block.number] + 1;
        }
    }

    bool takeFee = !swapping;

    // If any account belongs to _isExcludedFromFee account, then remove the fee
    if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
        takeFee = false;
    }

    uint256 fees = 0;

    // Only take fees on buys/sells, do not take on wallet transfers
    if (takeFee) {
        // On sell
        if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
            fees = amount.mul(sellTotalFees).div(100);
        }
        // On buy
        else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
            fees = amount.mul(buyTotalFees).div(100);
        }

        if (fees > 0) {
            super._transfer(from, address(this), fees);
        }

        amount = amount.sub(fees);
    }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if (contractBalance == 0) {
            return;
        }

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

        // Halve the amount of liquidity tokens

        uint256 amountToSwapForETH = contractBalance;

        swapTokensForEth(amountToSwapForETH);

        uint256 totalETH = address(this).balance;

        (success,) = address(taxWallet).call{value: totalETH}("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"TaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"convertAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emptyETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSwapAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateConvertAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newtaxWallet","type":"address"}],"name":"updateTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelist","type":"address"},{"internalType":"bool","name":"isWL","type":"bool"}],"name":"whitelistContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600160095f6101000a81548160ff0219169083151502179055505f600960016101000a81548160ff0219169083151502179055505f600960026101000a81548160ff0219169083151502179055503480156200005e575f80fd5b50336040518060400160405280600781526020017f4e6f7661204149000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e4f5641000000000000000000000000000000000000000000000000000000008152508160039081620000dd919062000d5e565b508060049081620000ef919062000d5e565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000165575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200015c919062000e85565b60405180910390fd5b6200017681620004fa60201b60201c565b505f737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001a2816001620005bd60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000220573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000246919062000ed3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002d2919062000ed3565b6040518363ffffffff1660e01b8152600401620002f192919062000f03565b6020604051808303815f875af11580156200030e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000334919062000ed3565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037c60a0516001620005bd60201b60201c565b6200039160a05160016200062560201b60201c565b5f6a52b7d2dcc80cd2e40000009050690a968163f0a57b400000600881905550690a968163f0a57b4000006007819055503360065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200043033606460508462000418919062000f5b565b62000424919062000fd2565b620006c360201b60201c565b6200045e30606460148462000446919062000f5b565b62000452919062000fd2565b620006c360201b60201c565b62000480620004726200074d60201b60201c565b60016200077560201b60201c565b620004933060016200077560201b60201c565b620004a861dead60016200077560201b60201c565b620004ca620004bc6200074d60201b60201c565b6001620005bd60201b60201c565b620004dd306001620005bd60201b60201c565b620004f261dead6001620005bd60201b60201c565b5050620010e1565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005cd6200082d60201b60201c565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000736575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200072d919062000e85565b60405180910390fd5b620007495f8383620008cf60201b60201c565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007856200082d60201b60201c565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000821919062001025565b60405180910390a25050565b6200083d62000af360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008636200074d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008cd576200088f62000af360201b60201c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401620008c4919062000e85565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000923578060025f82825462000916919062001040565b92505081905550620009f4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620009af578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620009a6939291906200108b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a3d578060025f828254039250508190555062000a87565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ae69190620010c6565b60405180910390a3505050565b5f33905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b7657607f821691505b60208210810362000b8c5762000b8b62000b31565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000bf07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bb3565b62000bfc868362000bb3565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c4662000c4062000c3a8462000c14565b62000c1d565b62000c14565b9050919050565b5f819050919050565b62000c618362000c26565b62000c7962000c708262000c4d565b84845462000bbf565b825550505050565b5f90565b62000c8f62000c81565b62000c9c81848462000c56565b505050565b5b8181101562000cc35762000cb75f8262000c85565b60018101905062000ca2565b5050565b601f82111562000d125762000cdc8162000b92565b62000ce78462000ba4565b8101602085101562000cf7578190505b62000d0f62000d068562000ba4565b83018262000ca1565b50505b505050565b5f82821c905092915050565b5f62000d345f198460080262000d17565b1980831691505092915050565b5f62000d4e838362000d23565b9150826002028217905092915050565b62000d698262000afa565b67ffffffffffffffff81111562000d855762000d8462000b04565b5b62000d91825462000b5e565b62000d9e82828562000cc7565b5f60209050601f83116001811462000dd4575f841562000dbf578287015190505b62000dcb858262000d41565b86555062000e3a565b601f19841662000de48662000b92565b5f5b8281101562000e0d5784890151825560018201915060208501945060208101905062000de6565b8683101562000e2d578489015162000e29601f89168262000d23565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e6d8262000e42565b9050919050565b62000e7f8162000e61565b82525050565b5f60208201905062000e9a5f83018462000e74565b92915050565b5f80fd5b62000eaf8162000e61565b811462000eba575f80fd5b50565b5f8151905062000ecd8162000ea4565b92915050565b5f6020828403121562000eeb5762000eea62000ea0565b5b5f62000efa8482850162000ebd565b91505092915050565b5f60408201905062000f185f83018562000e74565b62000f27602083018462000e74565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f678262000c14565b915062000f748362000c14565b925082820262000f848162000c14565b9150828204841483151762000f9e5762000f9d62000f2e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000fde8262000c14565b915062000feb8362000c14565b92508262000ffe5762000ffd62000fa5565b5b828204905092915050565b5f8115159050919050565b6200101f8162001009565b82525050565b5f6020820190506200103a5f83018462001014565b92915050565b5f6200104c8262000c14565b9150620010598362000c14565b925082820190508082111562001074576200107362000f2e565b5b92915050565b620010858162000c14565b82525050565b5f606082019050620010a05f83018662000e74565b620010af60208301856200107a565b620010be60408301846200107a565b949350505050565b5f602082019050620010db5f8301846200107a565b92915050565b60805160a0516138e86200113b5f395f8181610a99015281816110a401526113e501525f8181610a30015281816113000152818161132e015281816114210152818161231a015281816123f9015261242001526138e85ff3fe60806040526004361061023e575f3560e01c80637571336a1161012d578063bbc0c742116100aa578063dd62ed3e1161006e578063dd62ed3e14610805578063e93f638414610841578063eba4c33314610869578063f2fde38b14610891578063f8b45b05146108b957610245565b8063bbc0c74214610755578063c02466681461077f578063c9567bf9146107a7578063cce987d4146107b1578063d85ba063146107db57610245565b8063967ff23e116100f1578063967ff23e146106635780639a7a23d61461068d578063a672990c146106b5578063a9059cbb146106dd578063b62496f51461071957610245565b80637571336a1461059757806378dacee1146105bf578063881dce60146105e75780638da5cb5b1461060f57806395d89b411461063957610245565b80634a62bb65116101bb57806370a082311161017f57806370a08231146104df578063715018a61461051b57806371fc46881461053157806374c9f60314610559578063751039fc1461058157610245565b80634a62bb6514610421578063640c913a1461044b57806368218bac146104615780636a486a8e1461048b5780636ddd1713146104b557610245565b806318160ddd1161020257806318160ddd1461033d57806323b872dd1461036757806327c8f835146103a3578063313ce567146103cd57806349bd5a5e146103f757610245565b806306fdde0314610249578063095ea7b31461027357806310d5de53146102af578063150074a3146102eb5780631694505e1461031357610245565b3661024557005b5f80fd5b348015610254575f80fd5b5061025d6108e3565b60405161026a9190612bbc565b60405180910390f35b34801561027e575f80fd5b5061029960048036038101906102949190612c6d565b610973565b6040516102a69190612cc5565b60405180910390f35b3480156102ba575f80fd5b506102d560048036038101906102d09190612cde565b610995565b6040516102e29190612cc5565b60405180910390f35b3480156102f6575f80fd5b50610311600480360381019061030c9190612d09565b6109b2565b005b34801561031e575f80fd5b50610327610a2e565b6040516103349190612d8f565b60405180910390f35b348015610348575f80fd5b50610351610a52565b60405161035e9190612db7565b60405180910390f35b348015610372575f80fd5b5061038d60048036038101906103889190612dd0565b610a5b565b60405161039a9190612cc5565b60405180910390f35b3480156103ae575f80fd5b506103b7610a89565b6040516103c49190612e2f565b60405180910390f35b3480156103d8575f80fd5b506103e1610a8f565b6040516103ee9190612e63565b60405180910390f35b348015610402575f80fd5b5061040b610a97565b6040516104189190612e2f565b60405180910390f35b34801561042c575f80fd5b50610435610abb565b6040516104429190612cc5565b60405180910390f35b348015610456575f80fd5b5061045f610acd565b005b34801561046c575f80fd5b50610475610b56565b6040516104829190612db7565b60405180910390f35b348015610496575f80fd5b5061049f610b5c565b6040516104ac9190612db7565b60405180910390f35b3480156104c0575f80fd5b506104c9610b62565b6040516104d69190612cc5565b60405180910390f35b3480156104ea575f80fd5b5061050560048036038101906105009190612cde565b610b75565b6040516105129190612db7565b60405180910390f35b348015610526575f80fd5b5061052f610bba565b005b34801561053c575f80fd5b5061055760048036038101906105529190612d09565b610bcd565b005b348015610564575f80fd5b5061057f600480360381019061057a9190612cde565b610caa565b005b34801561058c575f80fd5b50610595610d70565b005b3480156105a2575f80fd5b506105bd60048036038101906105b89190612ea6565b610d93565b005b3480156105ca575f80fd5b506105e560048036038101906105e09190612d09565b610df3565b005b3480156105f2575f80fd5b5061060d60048036038101906106089190612d09565b610f1b565b005b34801561061a575f80fd5b50610623610fdc565b6040516106309190612e2f565b60405180910390f35b348015610644575f80fd5b5061064d611004565b60405161065a9190612bbc565b60405180910390f35b34801561066e575f80fd5b50610677611094565b6040516106849190612db7565b60405180910390f35b348015610698575f80fd5b506106b360048036038101906106ae9190612ea6565b61109a565b005b3480156106c0575f80fd5b506106db60048036038101906106d69190612ea6565b61113e565b005b3480156106e8575f80fd5b5061070360048036038101906106fe9190612c6d565b6111f2565b6040516107109190612cc5565b60405180910390f35b348015610724575f80fd5b5061073f600480360381019061073a9190612cde565b611214565b60405161074c9190612cc5565b60405180910390f35b348015610760575f80fd5b50610769611231565b6040516107769190612cc5565b60405180910390f35b34801561078a575f80fd5b506107a560048036038101906107a09190612ea6565b611244565b005b6107af6112f2565b005b3480156107bc575f80fd5b506107c5611515565b6040516107d29190612db7565b60405180910390f35b3480156107e6575f80fd5b506107ef61151b565b6040516107fc9190612db7565b60405180910390f35b348015610810575f80fd5b5061082b60048036038101906108269190612ee4565b611521565b6040516108389190612db7565b60405180910390f35b34801561084c575f80fd5b5061086760048036038101906108629190612d09565b6115a3565b005b348015610874575f80fd5b5061088f600480360381019061088a9190612d09565b61161f565b005b34801561089c575f80fd5b506108b760048036038101906108b29190612cde565b6116fc565b005b3480156108c4575f80fd5b506108cd611780565b6040516108da9190612db7565b60405180910390f35b6060600380546108f290612f4f565b80601f016020809104026020016040519081016040528092919081815260200182805461091e90612f4f565b80156109695780601f1061094057610100808354040283529160200191610969565b820191905f5260205f20905b81548152906001019060200180831161094c57829003601f168201915b5050505050905090565b5f8061097d6117fc565b905061098a818585611803565b600191505092915050565b6010602052805f5260405f205f915054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109f26117fc565b73ffffffffffffffffffffffffffffffffffffffff1614610a11575f80fd5b670de0b6b3a764000081610a259190612fac565b60088190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f80610a656117fc565b9050610a72858285611815565b610a7d8585856118a7565b60019150509392505050565b61dead81565b5f6012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095f9054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610b129061301a565b5f6040518083038185875af1925050503d805f8114610b4c576040519150601f19603f3d011682016040523d82523d5f602084013e610b51565b606091505b505050565b60075481565b600e5481565b600960029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610bc2612133565b610bcb5f6121ba565b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390613078565b60405180910390fd5b600d548110610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906130e0565b60405180910390fd5b80600d8190555050565b610cb2612133565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f849a2ad8ad386f1e9897e9e0a62d16771c675e4740986a16fb31bd8e1dde9c9760405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d78612133565b5f60095f6101000a81548160ff021916908315150217905550565b610d9b612133565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990613078565b60405180910390fd5b600d548110610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd906130e0565b60405180910390fd5b600e548110610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190613148565b60405180910390fd5b80600d8190555080600e8190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f5b6117fc565b73ffffffffffffffffffffffffffffffffffffffff1614610f7a575f80fd5b610f8330610b75565b8111158015610f9157505f81115b610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc7906131b0565b60405180910390fd5b610fd98161227d565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461101390612f4f565b80601f016020809104026020016040519081016040528092919081815260200182805461103f90612f4f565b801561108a5780601f106110615761010080835404028352916020019161108a565b820191905f5260205f20905b81548152906001019060200180831161106d57829003601f168201915b5050505050905090565b600c5481565b6110a2612133565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111279061323e565b60405180910390fd5b61113a82826124b0565b5050565b611146612133565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f806111fc6117fc565b90506112098185856118a7565b600191505092915050565b6011602052805f5260405f205f915054906101000a900460ff1681565b600960019054906101000a900460ff1681565b61124c612133565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516112e69190612cc5565b60405180910390a25050565b6112fa612133565b61132c307f0000000000000000000000000000000000000000000000000000000000000000611327610a52565b611803565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719473061137330610b75565b5f8061137d610fdc565b426040518863ffffffff1660e01b815260040161139f96959493929190613295565b60606040518083038185885af11580156113bb573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906113e09190613308565b5050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040161147e929190613358565b6020604051808303815f875af115801561149a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114be9190613393565b506001600960016101000a81548160ff0219169083151502179055506001600960026101000a81548160ff02191690831515021790555043600a8190555042600b819055506014600d819055506028600e81905550565b60085481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115e36117fc565b73ffffffffffffffffffffffffffffffffffffffff1614611602575f80fd5b670de0b6b3a7640000816116169190612fac565b60078190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590613078565b60405180910390fd5b600e5481106116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990613408565b60405180910390fd5b80600e8190555050565b611704612133565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611774575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161176b9190612e2f565b60405180910390fd5b61177d816121ba565b50565b5f80600a54436117909190613426565b9050600f81116117d4575f620249f06117a7610a52565b60fa846117b49190612fac565b6117be9190612fac565b6117c89190613486565b905080925050506117f9565b6127106117df610a52565b60fa6117eb9190612fac565b6117f59190613486565b9150505b90565b5f33905090565b611810838383600161254e565b505050565b5f6118208484611521565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118a15781811015611892578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611889939291906134b6565b60405180910390fd5b6118a084848484035f61254e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c9061355b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a906135e9565b60405180910390fd5b5f810361199a5761199583835f61271d565b61212e565b60095f9054906101000a900460ff1615611d51576119b6610fdc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a2457506119f4610fdc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a5c57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a96575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611aaf5750600560149054906101000a900460ff16155b15611d5057600960019054906101000a900460ff16611ba357600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611b635750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990613651565b60405180910390fd5b5b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611c40575060105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611ca357611c4d611780565b611c5683610b75565b82611c61919061366f565b1115611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c99906136ec565b60405180910390fd5b5b60105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611d4f57611cf9611780565b611d0283610b75565b82611d0d919061366f565b1115611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d45906136ec565b60405180910390fd5b5b5b5b5f611d5b30610b75565b90505f6007548210159050808015611d7f5750600960029054906101000a900460ff165b8015611d985750600560149054906101000a900460ff16155b8015611deb575060115f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e3e5750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e915750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f2257600360125f4381526020019081526020015f20541015611f21576001600560146101000a81548160ff021916908315150217905550611ed361280d565b5f600560146101000a81548160ff021916908315150217905550600160125f4381526020019081526020015f2054611f0b919061366f565b60125f4381526020019081526020015f20819055505b5b5f600560149054906101000a900460ff16159050600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611fd15750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611fda575f90505b5f811561211e5760115f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561203857505f600e54115b1561206c576120656064612057600e54886128da90919063ffffffff16565b6128ef90919063ffffffff16565b90506120f4565b60115f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156120c357505f600d54115b156120f3576120f060646120e2600d54886128da90919063ffffffff16565b6128ef90919063ffffffff16565b90505b5b5f8111156121085761210787308361271d565b5b61211b818661290490919063ffffffff16565b94505b61212987878761271d565b505050505b505050565b61213b6117fc565b73ffffffffffffffffffffffffffffffffffffffff16612159610fdc565b73ffffffffffffffffffffffffffffffffffffffff16146121b85761217c6117fc565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016121af9190612e2f565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff8111156122995761229861370a565b5b6040519080825280602002602001820160405280156122c75781602001602082028036833780820191505090505b50905030815f815181106122de576122dd613737565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612381573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123a59190613778565b816001815181106123b9576123b8613737565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061241e307f000000000000000000000000000000000000000000000000000000000000000084611803565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161247f95949392919061385a565b5f604051808303815f87803b158015612496575f80fd5b505af11580156124a8573d5f803e3d5ffd5b505050505050565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036125be575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016125b59190612e2f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361262e575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016126259190612e2f565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015612717578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161270e9190612db7565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361278d575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016127849190612e2f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127fd575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016127f49190612e2f565b60405180910390fd5b612808838383612919565b505050565b5f61281730610b75565b90505f8082036128285750506128d8565b6008548211156128385760085491505b5f8290506128458161227d565b5f47905060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161288e9061301a565b5f6040518083038185875af1925050503d805f81146128c8576040519150601f19603f3d011682016040523d82523d5f602084013e6128cd565b606091505b505080935050505050505b565b5f81836128e79190612fac565b905092915050565b5f81836128fc9190613486565b905092915050565b5f81836129119190613426565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612969578060025f82825461295d919061366f565b92505081905550612a37565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156129f2578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016129e9939291906134b6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a7e578060025f8282540392505081905550612ac8565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612b259190612db7565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612b69578082015181840152602081019050612b4e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612b8e82612b32565b612b988185612b3c565b9350612ba8818560208601612b4c565b612bb181612b74565b840191505092915050565b5f6020820190508181035f830152612bd48184612b84565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612c0982612be0565b9050919050565b612c1981612bff565b8114612c23575f80fd5b50565b5f81359050612c3481612c10565b92915050565b5f819050919050565b612c4c81612c3a565b8114612c56575f80fd5b50565b5f81359050612c6781612c43565b92915050565b5f8060408385031215612c8357612c82612bdc565b5b5f612c9085828601612c26565b9250506020612ca185828601612c59565b9150509250929050565b5f8115159050919050565b612cbf81612cab565b82525050565b5f602082019050612cd85f830184612cb6565b92915050565b5f60208284031215612cf357612cf2612bdc565b5b5f612d0084828501612c26565b91505092915050565b5f60208284031215612d1e57612d1d612bdc565b5b5f612d2b84828501612c59565b91505092915050565b5f819050919050565b5f612d57612d52612d4d84612be0565b612d34565b612be0565b9050919050565b5f612d6882612d3d565b9050919050565b5f612d7982612d5e565b9050919050565b612d8981612d6f565b82525050565b5f602082019050612da25f830184612d80565b92915050565b612db181612c3a565b82525050565b5f602082019050612dca5f830184612da8565b92915050565b5f805f60608486031215612de757612de6612bdc565b5b5f612df486828701612c26565b9350506020612e0586828701612c26565b9250506040612e1686828701612c59565b9150509250925092565b612e2981612bff565b82525050565b5f602082019050612e425f830184612e20565b92915050565b5f60ff82169050919050565b612e5d81612e48565b82525050565b5f602082019050612e765f830184612e54565b92915050565b612e8581612cab565b8114612e8f575f80fd5b50565b5f81359050612ea081612e7c565b92915050565b5f8060408385031215612ebc57612ebb612bdc565b5b5f612ec985828601612c26565b9250506020612eda85828601612e92565b9150509250929050565b5f8060408385031215612efa57612ef9612bdc565b5b5f612f0785828601612c26565b9250506020612f1885828601612c26565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612f6657607f821691505b602082108103612f7957612f78612f22565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612fb682612c3a565b9150612fc183612c3a565b9250828202612fcf81612c3a565b91508282048414831517612fe657612fe5612f7f565b5b5092915050565b5f81905092915050565b50565b5f6130055f83612fed565b915061301082612ff7565b5f82019050919050565b5f61302482612ffa565b9150819050919050565b7f4f6e6c79204f776e6572210000000000000000000000000000000000000000005f82015250565b5f613062600b83612b3c565b915061306d8261302e565b602082019050919050565b5f6020820190508181035f83015261308f81613056565b9050919050565b7f43616e6e6f7420526169736520427579205461786573000000000000000000005f82015250565b5f6130ca601683612b3c565b91506130d582613096565b602082019050919050565b5f6020820190508181035f8301526130f7816130be565b9050919050565b7f43616e6e6f742052616973652053656c6c2054617865730000000000000000005f82015250565b5f613132601783612b3c565b915061313d826130fe565b602082019050919050565b5f6020820190508181035f83015261315f81613126565b9050919050565b7f57726f6e6720616d6f756e7400000000000000000000000000000000000000005f82015250565b5f61319a600c83612b3c565b91506131a582613166565b602082019050919050565b5f6020820190508181035f8301526131c78161318e565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613228603983612b3c565b9150613233826131ce565b604082019050919050565b5f6020820190508181035f8301526132558161321c565b9050919050565b5f819050919050565b5f61327f61327a6132758461325c565b612d34565b612c3a565b9050919050565b61328f81613265565b82525050565b5f60c0820190506132a85f830189612e20565b6132b56020830188612da8565b6132c26040830187613286565b6132cf6060830186613286565b6132dc6080830185612e20565b6132e960a0830184612da8565b979650505050505050565b5f8151905061330281612c43565b92915050565b5f805f6060848603121561331f5761331e612bdc565b5b5f61332c868287016132f4565b935050602061333d868287016132f4565b925050604061334e868287016132f4565b9150509250925092565b5f60408201905061336b5f830185612e20565b6133786020830184612da8565b9392505050565b5f8151905061338d81612e7c565b92915050565b5f602082840312156133a8576133a7612bdc565b5b5f6133b58482850161337f565b91505092915050565b7f43616e6e6f742052616973652053656c6c2054617800000000000000000000005f82015250565b5f6133f2601583612b3c565b91506133fd826133be565b602082019050919050565b5f6020820190508181035f83015261341f816133e6565b9050919050565b5f61343082612c3a565b915061343b83612c3a565b925082820390508181111561345357613452612f7f565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61349082612c3a565b915061349b83612c3a565b9250826134ab576134aa613459565b5b828204905092915050565b5f6060820190506134c95f830186612e20565b6134d66020830185612da8565b6134e36040830184612da8565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613545602583612b3c565b9150613550826134eb565b604082019050919050565b5f6020820190508181035f83015261357281613539565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6135d3602383612b3c565b91506135de82613579565b604082019050919050565b5f6020820190508181035f830152613600816135c7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f61363b601683612b3c565b915061364682613607565b602082019050919050565b5f6020820190508181035f8301526136688161362f565b9050919050565b5f61367982612c3a565b915061368483612c3a565b925082820190508082111561369c5761369b612f7f565b5b92915050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6136d6601383612b3c565b91506136e1826136a2565b602082019050919050565b5f6020820190508181035f830152613703816136ca565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061377281612c10565b92915050565b5f6020828403121561378d5761378c612bdc565b5b5f61379a84828501613764565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6137d581612bff565b82525050565b5f6137e683836137cc565b60208301905092915050565b5f602082019050919050565b5f613808826137a3565b61381281856137ad565b935061381d836137bd565b805f5b8381101561384d57815161383488826137db565b975061383f836137f2565b925050600181019050613820565b5085935050505092915050565b5f60a08201905061386d5f830188612da8565b61387a6020830187613286565b818103604083015261388c81866137fe565b905061389b6060830185612e20565b6138a86080830184612da8565b969550505050505056fea26469706673582212209f12289f5a26c4f3525f52be08045bde718a0a81665945a91ba9a4f02c1aaf4964736f6c63430008150033

Deployed Bytecode

0x60806040526004361061023e575f3560e01c80637571336a1161012d578063bbc0c742116100aa578063dd62ed3e1161006e578063dd62ed3e14610805578063e93f638414610841578063eba4c33314610869578063f2fde38b14610891578063f8b45b05146108b957610245565b8063bbc0c74214610755578063c02466681461077f578063c9567bf9146107a7578063cce987d4146107b1578063d85ba063146107db57610245565b8063967ff23e116100f1578063967ff23e146106635780639a7a23d61461068d578063a672990c146106b5578063a9059cbb146106dd578063b62496f51461071957610245565b80637571336a1461059757806378dacee1146105bf578063881dce60146105e75780638da5cb5b1461060f57806395d89b411461063957610245565b80634a62bb65116101bb57806370a082311161017f57806370a08231146104df578063715018a61461051b57806371fc46881461053157806374c9f60314610559578063751039fc1461058157610245565b80634a62bb6514610421578063640c913a1461044b57806368218bac146104615780636a486a8e1461048b5780636ddd1713146104b557610245565b806318160ddd1161020257806318160ddd1461033d57806323b872dd1461036757806327c8f835146103a3578063313ce567146103cd57806349bd5a5e146103f757610245565b806306fdde0314610249578063095ea7b31461027357806310d5de53146102af578063150074a3146102eb5780631694505e1461031357610245565b3661024557005b5f80fd5b348015610254575f80fd5b5061025d6108e3565b60405161026a9190612bbc565b60405180910390f35b34801561027e575f80fd5b5061029960048036038101906102949190612c6d565b610973565b6040516102a69190612cc5565b60405180910390f35b3480156102ba575f80fd5b506102d560048036038101906102d09190612cde565b610995565b6040516102e29190612cc5565b60405180910390f35b3480156102f6575f80fd5b50610311600480360381019061030c9190612d09565b6109b2565b005b34801561031e575f80fd5b50610327610a2e565b6040516103349190612d8f565b60405180910390f35b348015610348575f80fd5b50610351610a52565b60405161035e9190612db7565b60405180910390f35b348015610372575f80fd5b5061038d60048036038101906103889190612dd0565b610a5b565b60405161039a9190612cc5565b60405180910390f35b3480156103ae575f80fd5b506103b7610a89565b6040516103c49190612e2f565b60405180910390f35b3480156103d8575f80fd5b506103e1610a8f565b6040516103ee9190612e63565b60405180910390f35b348015610402575f80fd5b5061040b610a97565b6040516104189190612e2f565b60405180910390f35b34801561042c575f80fd5b50610435610abb565b6040516104429190612cc5565b60405180910390f35b348015610456575f80fd5b5061045f610acd565b005b34801561046c575f80fd5b50610475610b56565b6040516104829190612db7565b60405180910390f35b348015610496575f80fd5b5061049f610b5c565b6040516104ac9190612db7565b60405180910390f35b3480156104c0575f80fd5b506104c9610b62565b6040516104d69190612cc5565b60405180910390f35b3480156104ea575f80fd5b5061050560048036038101906105009190612cde565b610b75565b6040516105129190612db7565b60405180910390f35b348015610526575f80fd5b5061052f610bba565b005b34801561053c575f80fd5b5061055760048036038101906105529190612d09565b610bcd565b005b348015610564575f80fd5b5061057f600480360381019061057a9190612cde565b610caa565b005b34801561058c575f80fd5b50610595610d70565b005b3480156105a2575f80fd5b506105bd60048036038101906105b89190612ea6565b610d93565b005b3480156105ca575f80fd5b506105e560048036038101906105e09190612d09565b610df3565b005b3480156105f2575f80fd5b5061060d60048036038101906106089190612d09565b610f1b565b005b34801561061a575f80fd5b50610623610fdc565b6040516106309190612e2f565b60405180910390f35b348015610644575f80fd5b5061064d611004565b60405161065a9190612bbc565b60405180910390f35b34801561066e575f80fd5b50610677611094565b6040516106849190612db7565b60405180910390f35b348015610698575f80fd5b506106b360048036038101906106ae9190612ea6565b61109a565b005b3480156106c0575f80fd5b506106db60048036038101906106d69190612ea6565b61113e565b005b3480156106e8575f80fd5b5061070360048036038101906106fe9190612c6d565b6111f2565b6040516107109190612cc5565b60405180910390f35b348015610724575f80fd5b5061073f600480360381019061073a9190612cde565b611214565b60405161074c9190612cc5565b60405180910390f35b348015610760575f80fd5b50610769611231565b6040516107769190612cc5565b60405180910390f35b34801561078a575f80fd5b506107a560048036038101906107a09190612ea6565b611244565b005b6107af6112f2565b005b3480156107bc575f80fd5b506107c5611515565b6040516107d29190612db7565b60405180910390f35b3480156107e6575f80fd5b506107ef61151b565b6040516107fc9190612db7565b60405180910390f35b348015610810575f80fd5b5061082b60048036038101906108269190612ee4565b611521565b6040516108389190612db7565b60405180910390f35b34801561084c575f80fd5b5061086760048036038101906108629190612d09565b6115a3565b005b348015610874575f80fd5b5061088f600480360381019061088a9190612d09565b61161f565b005b34801561089c575f80fd5b506108b760048036038101906108b29190612cde565b6116fc565b005b3480156108c4575f80fd5b506108cd611780565b6040516108da9190612db7565b60405180910390f35b6060600380546108f290612f4f565b80601f016020809104026020016040519081016040528092919081815260200182805461091e90612f4f565b80156109695780601f1061094057610100808354040283529160200191610969565b820191905f5260205f20905b81548152906001019060200180831161094c57829003601f168201915b5050505050905090565b5f8061097d6117fc565b905061098a818585611803565b600191505092915050565b6010602052805f5260405f205f915054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109f26117fc565b73ffffffffffffffffffffffffffffffffffffffff1614610a11575f80fd5b670de0b6b3a764000081610a259190612fac565b60088190555050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f80610a656117fc565b9050610a72858285611815565b610a7d8585856118a7565b60019150509392505050565b61dead81565b5f6012905090565b7f00000000000000000000000016a23930a5b6dd834ad08f4c9b6b92d0789f0dc781565b60095f9054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610b129061301a565b5f6040518083038185875af1925050503d805f8114610b4c576040519150601f19603f3d011682016040523d82523d5f602084013e610b51565b606091505b505050565b60075481565b600e5481565b600960029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610bc2612133565b610bcb5f6121ba565b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390613078565b60405180910390fd5b600d548110610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906130e0565b60405180910390fd5b80600d8190555050565b610cb2612133565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f849a2ad8ad386f1e9897e9e0a62d16771c675e4740986a16fb31bd8e1dde9c9760405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d78612133565b5f60095f6101000a81548160ff021916908315150217905550565b610d9b612133565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990613078565b60405180910390fd5b600d548110610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd906130e0565b60405180910390fd5b600e548110610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190613148565b60405180910390fd5b80600d8190555080600e8190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f5b6117fc565b73ffffffffffffffffffffffffffffffffffffffff1614610f7a575f80fd5b610f8330610b75565b8111158015610f9157505f81115b610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc7906131b0565b60405180910390fd5b610fd98161227d565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461101390612f4f565b80601f016020809104026020016040519081016040528092919081815260200182805461103f90612f4f565b801561108a5780601f106110615761010080835404028352916020019161108a565b820191905f5260205f20905b81548152906001019060200180831161106d57829003601f168201915b5050505050905090565b600c5481565b6110a2612133565b7f00000000000000000000000016a23930a5b6dd834ad08f4c9b6b92d0789f0dc773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111279061323e565b60405180910390fd5b61113a82826124b0565b5050565b611146612133565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f806111fc6117fc565b90506112098185856118a7565b600191505092915050565b6011602052805f5260405f205f915054906101000a900460ff1681565b600960019054906101000a900460ff1681565b61124c612133565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516112e69190612cc5565b60405180910390a25050565b6112fa612133565b61132c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d611327610a52565b611803565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719473061137330610b75565b5f8061137d610fdc565b426040518863ffffffff1660e01b815260040161139f96959493929190613295565b60606040518083038185885af11580156113bb573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906113e09190613308565b5050507f00000000000000000000000016a23930a5b6dd834ad08f4c9b6b92d0789f0dc773ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040161147e929190613358565b6020604051808303815f875af115801561149a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114be9190613393565b506001600960016101000a81548160ff0219169083151502179055506001600960026101000a81548160ff02191690831515021790555043600a8190555042600b819055506014600d819055506028600e81905550565b60085481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115e36117fc565b73ffffffffffffffffffffffffffffffffffffffff1614611602575f80fd5b670de0b6b3a7640000816116169190612fac565b60078190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590613078565b60405180910390fd5b600e5481106116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990613408565b60405180910390fd5b80600e8190555050565b611704612133565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611774575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161176b9190612e2f565b60405180910390fd5b61177d816121ba565b50565b5f80600a54436117909190613426565b9050600f81116117d4575f620249f06117a7610a52565b60fa846117b49190612fac565b6117be9190612fac565b6117c89190613486565b905080925050506117f9565b6127106117df610a52565b60fa6117eb9190612fac565b6117f59190613486565b9150505b90565b5f33905090565b611810838383600161254e565b505050565b5f6118208484611521565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118a15781811015611892578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611889939291906134b6565b60405180910390fd5b6118a084848484035f61254e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c9061355b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a906135e9565b60405180910390fd5b5f810361199a5761199583835f61271d565b61212e565b60095f9054906101000a900460ff1615611d51576119b6610fdc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a2457506119f4610fdc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a5c57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a96575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611aaf5750600560149054906101000a900460ff16155b15611d5057600960019054906101000a900460ff16611ba357600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611b635750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990613651565b60405180910390fd5b5b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611c40575060105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611ca357611c4d611780565b611c5683610b75565b82611c61919061366f565b1115611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c99906136ec565b60405180910390fd5b5b60105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611d4f57611cf9611780565b611d0283610b75565b82611d0d919061366f565b1115611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d45906136ec565b60405180910390fd5b5b5b5b5f611d5b30610b75565b90505f6007548210159050808015611d7f5750600960029054906101000a900460ff165b8015611d985750600560149054906101000a900460ff16155b8015611deb575060115f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e3e5750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e915750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f2257600360125f4381526020019081526020015f20541015611f21576001600560146101000a81548160ff021916908315150217905550611ed361280d565b5f600560146101000a81548160ff021916908315150217905550600160125f4381526020019081526020015f2054611f0b919061366f565b60125f4381526020019081526020015f20819055505b5b5f600560149054906101000a900460ff16159050600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611fd15750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611fda575f90505b5f811561211e5760115f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561203857505f600e54115b1561206c576120656064612057600e54886128da90919063ffffffff16565b6128ef90919063ffffffff16565b90506120f4565b60115f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156120c357505f600d54115b156120f3576120f060646120e2600d54886128da90919063ffffffff16565b6128ef90919063ffffffff16565b90505b5b5f8111156121085761210787308361271d565b5b61211b818661290490919063ffffffff16565b94505b61212987878761271d565b505050505b505050565b61213b6117fc565b73ffffffffffffffffffffffffffffffffffffffff16612159610fdc565b73ffffffffffffffffffffffffffffffffffffffff16146121b85761217c6117fc565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016121af9190612e2f565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff8111156122995761229861370a565b5b6040519080825280602002602001820160405280156122c75781602001602082028036833780820191505090505b50905030815f815181106122de576122dd613737565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612381573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123a59190613778565b816001815181106123b9576123b8613737565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061241e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611803565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161247f95949392919061385a565b5f604051808303815f87803b158015612496575f80fd5b505af11580156124a8573d5f803e3d5ffd5b505050505050565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036125be575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016125b59190612e2f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361262e575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016126259190612e2f565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015612717578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161270e9190612db7565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361278d575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016127849190612e2f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127fd575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016127f49190612e2f565b60405180910390fd5b612808838383612919565b505050565b5f61281730610b75565b90505f8082036128285750506128d8565b6008548211156128385760085491505b5f8290506128458161227d565b5f47905060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161288e9061301a565b5f6040518083038185875af1925050503d805f81146128c8576040519150601f19603f3d011682016040523d82523d5f602084013e6128cd565b606091505b505080935050505050505b565b5f81836128e79190612fac565b905092915050565b5f81836128fc9190613486565b905092915050565b5f81836129119190613426565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612969578060025f82825461295d919061366f565b92505081905550612a37565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156129f2578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016129e9939291906134b6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a7e578060025f8282540392505081905550612ac8565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612b259190612db7565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612b69578082015181840152602081019050612b4e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612b8e82612b32565b612b988185612b3c565b9350612ba8818560208601612b4c565b612bb181612b74565b840191505092915050565b5f6020820190508181035f830152612bd48184612b84565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612c0982612be0565b9050919050565b612c1981612bff565b8114612c23575f80fd5b50565b5f81359050612c3481612c10565b92915050565b5f819050919050565b612c4c81612c3a565b8114612c56575f80fd5b50565b5f81359050612c6781612c43565b92915050565b5f8060408385031215612c8357612c82612bdc565b5b5f612c9085828601612c26565b9250506020612ca185828601612c59565b9150509250929050565b5f8115159050919050565b612cbf81612cab565b82525050565b5f602082019050612cd85f830184612cb6565b92915050565b5f60208284031215612cf357612cf2612bdc565b5b5f612d0084828501612c26565b91505092915050565b5f60208284031215612d1e57612d1d612bdc565b5b5f612d2b84828501612c59565b91505092915050565b5f819050919050565b5f612d57612d52612d4d84612be0565b612d34565b612be0565b9050919050565b5f612d6882612d3d565b9050919050565b5f612d7982612d5e565b9050919050565b612d8981612d6f565b82525050565b5f602082019050612da25f830184612d80565b92915050565b612db181612c3a565b82525050565b5f602082019050612dca5f830184612da8565b92915050565b5f805f60608486031215612de757612de6612bdc565b5b5f612df486828701612c26565b9350506020612e0586828701612c26565b9250506040612e1686828701612c59565b9150509250925092565b612e2981612bff565b82525050565b5f602082019050612e425f830184612e20565b92915050565b5f60ff82169050919050565b612e5d81612e48565b82525050565b5f602082019050612e765f830184612e54565b92915050565b612e8581612cab565b8114612e8f575f80fd5b50565b5f81359050612ea081612e7c565b92915050565b5f8060408385031215612ebc57612ebb612bdc565b5b5f612ec985828601612c26565b9250506020612eda85828601612e92565b9150509250929050565b5f8060408385031215612efa57612ef9612bdc565b5b5f612f0785828601612c26565b9250506020612f1885828601612c26565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612f6657607f821691505b602082108103612f7957612f78612f22565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612fb682612c3a565b9150612fc183612c3a565b9250828202612fcf81612c3a565b91508282048414831517612fe657612fe5612f7f565b5b5092915050565b5f81905092915050565b50565b5f6130055f83612fed565b915061301082612ff7565b5f82019050919050565b5f61302482612ffa565b9150819050919050565b7f4f6e6c79204f776e6572210000000000000000000000000000000000000000005f82015250565b5f613062600b83612b3c565b915061306d8261302e565b602082019050919050565b5f6020820190508181035f83015261308f81613056565b9050919050565b7f43616e6e6f7420526169736520427579205461786573000000000000000000005f82015250565b5f6130ca601683612b3c565b91506130d582613096565b602082019050919050565b5f6020820190508181035f8301526130f7816130be565b9050919050565b7f43616e6e6f742052616973652053656c6c2054617865730000000000000000005f82015250565b5f613132601783612b3c565b915061313d826130fe565b602082019050919050565b5f6020820190508181035f83015261315f81613126565b9050919050565b7f57726f6e6720616d6f756e7400000000000000000000000000000000000000005f82015250565b5f61319a600c83612b3c565b91506131a582613166565b602082019050919050565b5f6020820190508181035f8301526131c78161318e565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613228603983612b3c565b9150613233826131ce565b604082019050919050565b5f6020820190508181035f8301526132558161321c565b9050919050565b5f819050919050565b5f61327f61327a6132758461325c565b612d34565b612c3a565b9050919050565b61328f81613265565b82525050565b5f60c0820190506132a85f830189612e20565b6132b56020830188612da8565b6132c26040830187613286565b6132cf6060830186613286565b6132dc6080830185612e20565b6132e960a0830184612da8565b979650505050505050565b5f8151905061330281612c43565b92915050565b5f805f6060848603121561331f5761331e612bdc565b5b5f61332c868287016132f4565b935050602061333d868287016132f4565b925050604061334e868287016132f4565b9150509250925092565b5f60408201905061336b5f830185612e20565b6133786020830184612da8565b9392505050565b5f8151905061338d81612e7c565b92915050565b5f602082840312156133a8576133a7612bdc565b5b5f6133b58482850161337f565b91505092915050565b7f43616e6e6f742052616973652053656c6c2054617800000000000000000000005f82015250565b5f6133f2601583612b3c565b91506133fd826133be565b602082019050919050565b5f6020820190508181035f83015261341f816133e6565b9050919050565b5f61343082612c3a565b915061343b83612c3a565b925082820390508181111561345357613452612f7f565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61349082612c3a565b915061349b83612c3a565b9250826134ab576134aa613459565b5b828204905092915050565b5f6060820190506134c95f830186612e20565b6134d66020830185612da8565b6134e36040830184612da8565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613545602583612b3c565b9150613550826134eb565b604082019050919050565b5f6020820190508181035f83015261357281613539565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6135d3602383612b3c565b91506135de82613579565b604082019050919050565b5f6020820190508181035f830152613600816135c7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f61363b601683612b3c565b915061364682613607565b602082019050919050565b5f6020820190508181035f8301526136688161362f565b9050919050565b5f61367982612c3a565b915061368483612c3a565b925082820190508082111561369c5761369b612f7f565b5b92915050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6136d6601383612b3c565b91506136e1826136a2565b602082019050919050565b5f6020820190508181035f830152613703816136ca565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061377281612c10565b92915050565b5f6020828403121561378d5761378c612bdc565b5b5f61379a84828501613764565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6137d581612bff565b82525050565b5f6137e683836137cc565b60208301905092915050565b5f602082019050919050565b5f613808826137a3565b61381281856137ad565b935061381d836137bd565b805f5b8381101561384d57815161383488826137db565b975061383f836137f2565b925050600181019050613820565b5085935050505092915050565b5f60a08201905061386d5f830188612da8565b61387a6020830187613286565b818103604083015261388c81866137fe565b905061389b6060830185612e20565b6138a86080830184612da8565b969550505050505056fea26469706673582212209f12289f5a26c4f3525f52be08045bde718a0a81665945a91ba9a4f02c1aaf4964736f6c63430008150033

Deployed Bytecode Sourcemap

38863:9892:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13514:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15807:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39588:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42264:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38937:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14616:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16575:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39040:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14467:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38995:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39240:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43593:105;;;;;;;;;;;;;:::i;:::-;;39166:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39492:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39320:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14778:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25197:103;;;;;;;;;;;;;:::i;:::-;;44492:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44956:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41997:84;;;;;;;;;;;;;:::i;:::-;;42632:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44154:330;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43368:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24522:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13724:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39428:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43706:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42429:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15101:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39658:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39280:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42784:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41398:589;;;:::i;:::-;;39203:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39458:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15346:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42089:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44723:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25455:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42974:378;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13514:91;13559:13;13592:5;13585:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13514:91;:::o;15807:190::-;15880:4;15897:13;15913:12;:10;:12::i;:::-;15897:28;;15936:31;15945:5;15952:7;15961:5;15936:8;:31::i;:::-;15985:4;15978:11;;;15807:190;;;;:::o;39588:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;42264:155::-;42350:9;;;;;;;;;;;42334:25;;:12;:10;:12::i;:::-;:25;;;42326:34;;;;;;42400:8;42387:9;:22;;;;:::i;:::-;42371:13;:38;;;;42264:155;:::o;38937:51::-;;;:::o;14616:99::-;14668:7;14695:12;;14688:19;;14616:99;:::o;16575:249::-;16662:4;16679:15;16697:12;:10;:12::i;:::-;16679:30;;16720:37;16736:4;16742:7;16751:5;16720:15;:37::i;:::-;16768:26;16778:4;16784:2;16788:5;16768:9;:26::i;:::-;16812:4;16805:11;;;16575:249;;;;;:::o;39040:53::-;39086:6;39040:53;:::o;14467:84::-;14516:5;14541:2;14534:9;;14467:84;:::o;38995:38::-;;;:::o;39240:33::-;;;;;;;;;;;;;:::o;43593:105::-;43641:9;;;;;;;;;;;43633:23;;43664:21;43633:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43593:105::o;39166:30::-;;;;:::o;39492:28::-;;;;:::o;39320:31::-;;;;;;;;;;;;;:::o;14778:118::-;14843:7;14870:9;:18;14880:7;14870:18;;;;;;;;;;;;;;;;14863:25;;14778:118;;;:::o;25197:103::-;24408:13;:11;:13::i;:::-;25262:30:::1;25289:1;25262:18;:30::i;:::-;25197:103::o:0;44492:223::-;44577:9;;;;;;;;;;;44563:23;;:10;:23;;;44555:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;44634:12;;44623:8;:23;44615:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44699:8;44684:12;:23;;;;44492:223;:::o;44956:166::-;24408:13;:11;:13::i;:::-;45069:9:::1;;;;;;;;;;;45038:41;;45055:12;45038:41;;;;;;;;;;;;45102:12;45090:9;;:24;;;;;;;;;;;;;;;;;;44956:166:::0;:::o;41997:84::-;24408:13;:11;:13::i;:::-;42068:5:::1;42051:14;;:22;;;;;;;;;;;;;;;;;;41997:84::o:0;42632:144::-;24408:13;:11;:13::i;:::-;42764:4:::1;42722:31;:39;42754:6;42722:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;42632:144:::0;;:::o;44154:330::-;44236:9;;;;;;;;;;;44222:23;;:10;:23;;;44214:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;44293:12;;44282:8;:23;44274:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44362:13;;44351:8;:24;44343:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;44431:8;44416:12;:23;;;;44466:8;44450:13;:24;;;;44154:330;:::o;43368:217::-;43448:9;;;;;;;;;;;43432:25;;:12;:10;:12::i;:::-;:25;;;43424:34;;;;;;43487:24;43505:4;43487:9;:24::i;:::-;43477:6;:34;;:48;;;;;43524:1;43515:6;:10;43477:48;43469:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43553:24;43570:6;43553:16;:24::i;:::-;43368:217;:::o;24522:87::-;24568:7;24595:6;;;;;;;;;;;24588:13;;24522:87;:::o;13724:95::-;13771:13;13804:7;13797:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13724:95;:::o;39428:21::-;;;;:::o;43706:244::-;24408:13;:11;:13::i;:::-;43813::::1;43805:21;;:4;:21;;::::0;43797:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43901:41;43930:4;43936:5;43901:28;:41::i;:::-;43706:244:::0;;:::o;42429:195::-;24408:13;:11;:13::i;:::-;42561:4:::1;42515:31;:43;42547:10;42515:43;;;;;;;;;;;;;;;;:50;;;;;;;;;;;;;;;;;;42612:4;42578:19;:31;42598:10;42578:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;42429:195:::0;;:::o;15101:182::-;15170:4;15187:13;15203:12;:10;:12::i;:::-;15187:28;;15226:27;15236:5;15243:2;15247:5;15226:9;:27::i;:::-;15271:4;15264:11;;;15101:182;;;;:::o;39658:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;39280:33::-;;;;;;;;;;;;;:::o;42784:182::-;24408:13;:11;:13::i;:::-;42900:8:::1;42869:19;:28;42889:7;42869:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42940:7;42924:34;;;42949:8;42924:34;;;;;;:::i;:::-;;;;;;;;42784:182:::0;;:::o;41398:589::-;24408:13;:11;:13::i;:::-;41459:64:::1;41476:4;41491:15;41509:13;:11;:13::i;:::-;41459:8;:64::i;:::-;41534:15;:31;;;41573:21;41604:4;41610:24;41628:4;41610:9;:24::i;:::-;41635:1;41637::::0;41639:7:::1;:5;:7::i;:::-;41647:15;41534:129;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41681:13;41674:29;;;41712:15;41730:14;41674:71;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41774:4;41758:13;;:20;;;;;;;;;;;;;;;;;;41803:4;41789:11;;:18;;;;;;;;;;;;;;;;;;41831:12;41818:10;:25;;;;41869:15;41854:12;:30;;;;41946:2;41931:12;:17;;;;41975:2;41959:13;:18;;;;41398:589::o:0;39203:28::-;;;;:::o;39458:27::-;;;;:::o;15346:142::-;15426:7;15453:11;:18;15465:5;15453:18;;;;;;;;;;;;;;;:27;15472:7;15453:27;;;;;;;;;;;;;;;;15446:34;;15346:142;;;;:::o;42089:167::-;42185:9;;;;;;;;;;;42169:25;;:12;:10;:12::i;:::-;:25;;;42161:34;;;;;;42237:8;42224:9;:22;;;;:::i;:::-;42206:15;:40;;;;42089:167;:::o;44723:225::-;44809:9;;;;;;;;;;;44795:23;;:10;:23;;;44787:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;44866:13;;44855:8;:24;44847:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44932:8;44916:13;:24;;;;44723:225;:::o;25455:220::-;24408:13;:11;:13::i;:::-;25560:1:::1;25540:22;;:8;:22;;::::0;25536:93:::1;;25614:1;25586:31;;;;;;;;;;;:::i;:::-;;;;;;;;25536:93;25639:28;25658:8;25639:18;:28::i;:::-;25455:220:::0;:::o;42974:378::-;43015:7;43037:21;43076:10;;43061:12;:25;;;;:::i;:::-;43037:49;;43120:2;43103:13;:19;43099:246;;43139:28;43211:10;43193:13;:11;:13::i;:::-;43187:3;43171:13;:19;;;;:::i;:::-;:35;;;;:::i;:::-;43170:52;;;;:::i;:::-;43139:83;;43244:20;43237:27;;;;;;43099:246;43328:5;43311:13;:11;:13::i;:::-;43305:3;:19;;;;:::i;:::-;43304:29;;;;:::i;:::-;43297:36;;;42974:378;;:::o;4519:98::-;4572:7;4599:10;4592:17;;4519:98;:::o;20642:130::-;20727:37;20736:5;20743:7;20752:5;20759:4;20727:8;:37::i;:::-;20642:130;;;:::o;22358:487::-;22458:24;22485:25;22495:5;22502:7;22485:9;:25::i;:::-;22458:52;;22545:17;22525:16;:37;22521:317;;22602:5;22583:16;:24;22579:132;;;22662:7;22671:16;22689:5;22635:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22579:132;22754:57;22763:5;22770:7;22798:5;22779:16;:24;22805:5;22754:8;:57::i;:::-;22521:317;22447:398;22358:487;;;:::o;45130:2439::-;45240:1;45224:18;;:4;:18;;;45216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45313:1;45299:16;;:2;:16;;;45291:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45378:1;45368:6;:11;45364:81;;45392:28;45408:4;45414:2;45418:1;45392:15;:28::i;:::-;45431:7;;45364:81;45457:14;;;;;;;;;;;45453:734;;;45496:7;:5;:7::i;:::-;45488:15;;:4;:15;;;;:32;;;;;45513:7;:5;:7::i;:::-;45507:13;;:2;:13;;;;45488:32;:52;;;;;45538:1;45524:16;;:2;:16;;;;45488:52;:77;;;;;45558:6;45544:21;;:2;:21;;;;45488:77;:90;;;;;45570:8;;;;;;;;;;;45569:9;45488:90;45484:696;;;45600:13;;;;;;;;;;;45595:142;;45642:19;:25;45662:4;45642:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45671:19;:23;45691:2;45671:23;;;;;;;;;;;;;;;;;;;;;;;;;45642:52;45634:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;45595:142;45785:25;:31;45811:4;45785:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;45821:31;:35;45853:2;45821:35;;;;;;;;;;;;;;;;;;;;;;;;;45820:36;45785:71;45781:181;;;45911:11;:9;:11::i;:::-;45894:13;45904:2;45894:9;:13::i;:::-;45885:6;:22;;;;:::i;:::-;:37;;45877:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;45781:181;46028:31;:35;46060:2;46028:35;;;;;;;;;;;;;;;;;;;;;;;;;46023:146;;46118:11;:9;:11::i;:::-;46101:13;46111:2;46101:9;:13::i;:::-;46092:6;:22;;;;:::i;:::-;:37;;46084:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;46023:146;45484:696;45453:734;46195:28;46226:24;46244:4;46226:9;:24::i;:::-;46195:55;;46259:12;46298:15;;46274:20;:39;;46259:54;;46336:7;:22;;;;;46347:11;;;;;;;;;;;46336:22;:35;;;;;46363:8;;;;;;;;;;;46362:9;46336:35;:71;;;;;46376:25;:31;46402:4;46376:31;;;;;;;;;;;;;;;;;;;;;;;;;46375:32;46336:71;:101;;;;;46412:19;:25;46432:4;46412:25;;;;;;;;;;;;;;;;;;;;;;;;;46411:26;46336:101;:142;;;;;46455:19;:23;46475:2;46455:23;;;;;;;;;;;;;;;;;;;;;;;;;46454:24;46336:142;46322:414;;;46552:1;46525:10;:24;46536:12;46525:24;;;;;;;;;;;;:28;46521:208;;;46581:4;46570:8;;:15;;;;;;;;;;;;;;;;;;46602:10;:8;:10::i;:::-;46640:5;46629:8;;:16;;;;;;;;;;;;;;;;;;46716:1;46689:10;:24;46700:12;46689:24;;;;;;;;;;;;:28;;;;:::i;:::-;46662:10;:24;46673:12;46662:24;;;;;;;;;;;:55;;;;46521:208;46322:414;46744:12;46760:8;;;;;;;;;;;46759:9;46744:24;;46863:19;:25;46883:4;46863:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;46892:19;:23;46912:2;46892:23;;;;;;;;;;;;;;;;;;;;;;;;;46863:52;46859:92;;;46938:5;46928:15;;46859:92;46959:12;47058:7;47054:466;;;47102:25;:29;47128:2;47102:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;47151:1;47135:13;;:17;47102:50;47098:282;;;47176:34;47206:3;47176:25;47187:13;;47176:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;47169:41;;47098:282;;;47260:25;:31;47286:4;47260:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;47310:1;47295:12;;:16;47260:51;47256:124;;;47335:33;47364:3;47335:24;47346:12;;47335:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;47328:40;;47256:124;47098:282;47403:1;47396:4;:8;47392:83;;;47421:42;47437:4;47451;47458;47421:15;:42::i;:::-;47392:83;47496:16;47507:4;47496:6;:10;;:16;;;;:::i;:::-;47487:25;;47054:466;47528:33;47544:4;47550:2;47554:6;47528:15;:33::i;:::-;45209:2360;;;;45130:2439;;;;:::o;24687:166::-;24758:12;:10;:12::i;:::-;24747:23;;:7;:5;:7::i;:::-;:23;;;24743:103;;24821:12;:10;:12::i;:::-;24794:40;;;;;;;;;;;:::i;:::-;;;;;;;;24743:103;24687:166::o;25835:191::-;25909:16;25928:6;;;;;;;;;;;25909:25;;25954:8;25945:6;;:17;;;;;;;;;;;;;;;;;;26009:8;25978:40;;25999:8;25978:40;;;;;;;;;;;;25898:128;25835:191;:::o;47577:589::-;47703:21;47741:1;47727:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47703:40;;47772:4;47754;47759:1;47754:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47798:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47788:4;47793:1;47788:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47833:62;47850:4;47865:15;47883:11;47833:8;:62::i;:::-;47934:15;:66;;;48015:11;48041:1;48085:4;48112;48132:15;47934:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47632:534;47577:589;:::o;43958:188::-;44075:5;44041:25;:31;44067:4;44041:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;44132:5;44098:40;;44126:4;44098:40;;;;;;;;;;;;43958:188;;:::o;21623:443::-;21753:1;21736:19;;:5;:19;;;21732:91;;21808:1;21779:32;;;;;;;;;;;:::i;:::-;;;;;;;;21732:91;21856:1;21837:21;;:7;:21;;;21833:92;;21910:1;21882:31;;;;;;;;;;;:::i;:::-;;;;;;;;21833:92;21965:5;21935:11;:18;21947:5;21935:18;;;;;;;;;;;;;;;:27;21954:7;21935:27;;;;;;;;;;;;;;;:35;;;;21985:9;21981:78;;;22032:7;22016:31;;22025:5;22016:31;;;22041:5;22016:31;;;;;;:::i;:::-;;;;;;;;21981:78;21623:443;;;;:::o;17209:316::-;17317:1;17301:18;;:4;:18;;;17297:88;;17370:1;17343:30;;;;;;;;;;;:::i;:::-;;;;;;;;17297:88;17413:1;17399:16;;:2;:16;;;17395:88;;17468:1;17439:32;;;;;;;;;;;:::i;:::-;;;;;;;;17395:88;17493:24;17501:4;17507:2;17511:5;17493:7;:24::i;:::-;17209:316;;;:::o;48174:578::-;48213:23;48239:24;48257:4;48239:9;:24::i;:::-;48213:50;;48274:12;48322:1;48303:15;:20;48299:59;;48340:7;;;;48299:59;48392:13;;48374:15;:31;48370:95;;;48440:13;;48422:31;;48370:95;48528:26;48557:15;48528:44;;48585:36;48602:18;48585:16;:36::i;:::-;48634:16;48653:21;48634:40;;48708:9;;;;;;;;;;;48700:23;;48731:8;48700:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48687:57;;;;;48202:550;;;;48174:578;:::o;29647:98::-;29705:7;29736:1;29732;:5;;;;:::i;:::-;29725:12;;29647:98;;;;:::o;30046:::-;30104:7;30135:1;30131;:5;;;;:::i;:::-;30124:12;;30046:98;;;;:::o;29290:::-;29348:7;29379:1;29375;:5;;;;:::i;:::-;29368:12;;29290:98;;;;:::o;17849:1135::-;17955:1;17939:18;;:4;:18;;;17935:552;;18093:5;18077:12;;:21;;;;;;;:::i;:::-;;;;;;;;17935:552;;;18131:19;18153:9;:15;18163:4;18153:15;;;;;;;;;;;;;;;;18131:37;;18201:5;18187:11;:19;18183:117;;;18259:4;18265:11;18278:5;18234:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;18183:117;18455:5;18441:11;:19;18423:9;:15;18433:4;18423:15;;;;;;;;;;;;;;;:37;;;;18116:371;17935:552;18517:1;18503:16;;:2;:16;;;18499:435;;18685:5;18669:12;;:21;;;;;;;;;;;18499:435;;;18902:5;18885:9;:13;18895:2;18885:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18499:435;18966:2;18951:25;;18960:4;18951:25;;;18970:5;18951:25;;;;;;:::i;:::-;;;;;;;;17849:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:::-;3840:6;3889:2;3877:9;3868:7;3864:23;3860:32;3857:119;;;3895:79;;:::i;:::-;3857:119;4015:1;4040:53;4085:7;4076:6;4065:9;4061:22;4040:53;:::i;:::-;4030:63;;3986:117;3781:329;;;;:::o;4116:60::-;4144:3;4165:5;4158:12;;4116:60;;;:::o;4182:142::-;4232:9;4265:53;4283:34;4292:24;4310:5;4292:24;:::i;:::-;4283:34;:::i;:::-;4265:53;:::i;:::-;4252:66;;4182:142;;;:::o;4330:126::-;4380:9;4413:37;4444:5;4413:37;:::i;:::-;4400:50;;4330:126;;;:::o;4462:153::-;4539:9;4572:37;4603:5;4572:37;:::i;:::-;4559:50;;4462:153;;;:::o;4621:185::-;4735:64;4793:5;4735:64;:::i;:::-;4730:3;4723:77;4621:185;;:::o;4812:276::-;4932:4;4970:2;4959:9;4955:18;4947:26;;4983:98;5078:1;5067:9;5063:17;5054:6;4983:98;:::i;:::-;4812:276;;;;:::o;5094:118::-;5181:24;5199:5;5181:24;:::i;:::-;5176:3;5169:37;5094:118;;:::o;5218:222::-;5311:4;5349:2;5338:9;5334:18;5326:26;;5362:71;5430:1;5419:9;5415:17;5406:6;5362:71;:::i;:::-;5218:222;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:474::-;7656:6;7664;7713:2;7701:9;7692:7;7688:23;7684:32;7681:119;;;7719:79;;:::i;:::-;7681:119;7839:1;7864:53;7909:7;7900:6;7889:9;7885:22;7864:53;:::i;:::-;7854:63;;7810:117;7966:2;7992:53;8037:7;8028:6;8017:9;8013:22;7992:53;:::i;:::-;7982:63;;7937:118;7588:474;;;;;:::o;8068:180::-;8116:77;8113:1;8106:88;8213:4;8210:1;8203:15;8237:4;8234:1;8227:15;8254:320;8298:6;8335:1;8329:4;8325:12;8315:22;;8382:1;8376:4;8372:12;8403:18;8393:81;;8459:4;8451:6;8447:17;8437:27;;8393:81;8521:2;8513:6;8510:14;8490:18;8487:38;8484:84;;8540:18;;:::i;:::-;8484:84;8305:269;8254:320;;;:::o;8580:180::-;8628:77;8625:1;8618:88;8725:4;8722:1;8715:15;8749:4;8746:1;8739:15;8766:410;8806:7;8829:20;8847:1;8829:20;:::i;:::-;8824:25;;8863:20;8881:1;8863:20;:::i;:::-;8858:25;;8918:1;8915;8911:9;8940:30;8958:11;8940:30;:::i;:::-;8929:41;;9119:1;9110:7;9106:15;9103:1;9100:22;9080:1;9073:9;9053:83;9030:139;;9149:18;;:::i;:::-;9030:139;8814:362;8766:410;;;;:::o;9182:147::-;9283:11;9320:3;9305:18;;9182:147;;;;:::o;9335:114::-;;:::o;9455:398::-;9614:3;9635:83;9716:1;9711:3;9635:83;:::i;:::-;9628:90;;9727:93;9816:3;9727:93;:::i;:::-;9845:1;9840:3;9836:11;9829:18;;9455:398;;;:::o;9859:379::-;10043:3;10065:147;10208:3;10065:147;:::i;:::-;10058:154;;10229:3;10222:10;;9859:379;;;:::o;10244:161::-;10384:13;10380:1;10372:6;10368:14;10361:37;10244:161;:::o;10411:366::-;10553:3;10574:67;10638:2;10633:3;10574:67;:::i;:::-;10567:74;;10650:93;10739:3;10650:93;:::i;:::-;10768:2;10763:3;10759:12;10752:19;;10411:366;;;:::o;10783:419::-;10949:4;10987:2;10976:9;10972:18;10964:26;;11036:9;11030:4;11026:20;11022:1;11011:9;11007:17;11000:47;11064:131;11190:4;11064:131;:::i;:::-;11056:139;;10783:419;;;:::o;11208:172::-;11348:24;11344:1;11336:6;11332:14;11325:48;11208:172;:::o;11386:366::-;11528:3;11549:67;11613:2;11608:3;11549:67;:::i;:::-;11542:74;;11625:93;11714:3;11625:93;:::i;:::-;11743:2;11738:3;11734:12;11727:19;;11386:366;;;:::o;11758:419::-;11924:4;11962:2;11951:9;11947:18;11939:26;;12011:9;12005:4;12001:20;11997:1;11986:9;11982:17;11975:47;12039:131;12165:4;12039:131;:::i;:::-;12031:139;;11758:419;;;:::o;12183:173::-;12323:25;12319:1;12311:6;12307:14;12300:49;12183:173;:::o;12362:366::-;12504:3;12525:67;12589:2;12584:3;12525:67;:::i;:::-;12518:74;;12601:93;12690:3;12601:93;:::i;:::-;12719:2;12714:3;12710:12;12703:19;;12362:366;;;:::o;12734:419::-;12900:4;12938:2;12927:9;12923:18;12915:26;;12987:9;12981:4;12977:20;12973:1;12962:9;12958:17;12951:47;13015:131;13141:4;13015:131;:::i;:::-;13007:139;;12734:419;;;:::o;13159:162::-;13299:14;13295:1;13287:6;13283:14;13276:38;13159:162;:::o;13327:366::-;13469:3;13490:67;13554:2;13549:3;13490:67;:::i;:::-;13483:74;;13566:93;13655:3;13566:93;:::i;:::-;13684:2;13679:3;13675:12;13668:19;;13327:366;;;:::o;13699:419::-;13865:4;13903:2;13892:9;13888:18;13880:26;;13952:9;13946:4;13942:20;13938:1;13927:9;13923:17;13916:47;13980:131;14106:4;13980:131;:::i;:::-;13972:139;;13699:419;;;:::o;14124:244::-;14264:34;14260:1;14252:6;14248:14;14241:58;14333:27;14328:2;14320:6;14316:15;14309:52;14124:244;:::o;14374:366::-;14516:3;14537:67;14601:2;14596:3;14537:67;:::i;:::-;14530:74;;14613:93;14702:3;14613:93;:::i;:::-;14731:2;14726:3;14722:12;14715:19;;14374:366;;;:::o;14746:419::-;14912:4;14950:2;14939:9;14935:18;14927:26;;14999:9;14993:4;14989:20;14985:1;14974:9;14970:17;14963:47;15027:131;15153:4;15027:131;:::i;:::-;15019:139;;14746:419;;;:::o;15171:85::-;15216:7;15245:5;15234:16;;15171:85;;;:::o;15262:158::-;15320:9;15353:61;15371:42;15380:32;15406:5;15380:32;:::i;:::-;15371:42;:::i;:::-;15353:61;:::i;:::-;15340:74;;15262:158;;;:::o;15426:147::-;15521:45;15560:5;15521:45;:::i;:::-;15516:3;15509:58;15426:147;;:::o;15579:807::-;15828:4;15866:3;15855:9;15851:19;15843:27;;15880:71;15948:1;15937:9;15933:17;15924:6;15880:71;:::i;:::-;15961:72;16029:2;16018:9;16014:18;16005:6;15961:72;:::i;:::-;16043:80;16119:2;16108:9;16104:18;16095:6;16043:80;:::i;:::-;16133;16209:2;16198:9;16194:18;16185:6;16133:80;:::i;:::-;16223:73;16291:3;16280:9;16276:19;16267:6;16223:73;:::i;:::-;16306;16374:3;16363:9;16359:19;16350:6;16306:73;:::i;:::-;15579:807;;;;;;;;;:::o;16392:143::-;16449:5;16480:6;16474:13;16465:22;;16496:33;16523:5;16496:33;:::i;:::-;16392:143;;;;:::o;16541:663::-;16629:6;16637;16645;16694:2;16682:9;16673:7;16669:23;16665:32;16662:119;;;16700:79;;:::i;:::-;16662:119;16820:1;16845:64;16901:7;16892:6;16881:9;16877:22;16845:64;:::i;:::-;16835:74;;16791:128;16958:2;16984:64;17040:7;17031:6;17020:9;17016:22;16984:64;:::i;:::-;16974:74;;16929:129;17097:2;17123:64;17179:7;17170:6;17159:9;17155:22;17123:64;:::i;:::-;17113:74;;17068:129;16541:663;;;;;:::o;17210:332::-;17331:4;17369:2;17358:9;17354:18;17346:26;;17382:71;17450:1;17439:9;17435:17;17426:6;17382:71;:::i;:::-;17463:72;17531:2;17520:9;17516:18;17507:6;17463:72;:::i;:::-;17210:332;;;;;:::o;17548:137::-;17602:5;17633:6;17627:13;17618:22;;17649:30;17673:5;17649:30;:::i;:::-;17548:137;;;;:::o;17691:345::-;17758:6;17807:2;17795:9;17786:7;17782:23;17778:32;17775:119;;;17813:79;;:::i;:::-;17775:119;17933:1;17958:61;18011:7;18002:6;17991:9;17987:22;17958:61;:::i;:::-;17948:71;;17904:125;17691:345;;;;:::o;18042:171::-;18182:23;18178:1;18170:6;18166:14;18159:47;18042:171;:::o;18219:366::-;18361:3;18382:67;18446:2;18441:3;18382:67;:::i;:::-;18375:74;;18458:93;18547:3;18458:93;:::i;:::-;18576:2;18571:3;18567:12;18560:19;;18219:366;;;:::o;18591:419::-;18757:4;18795:2;18784:9;18780:18;18772:26;;18844:9;18838:4;18834:20;18830:1;18819:9;18815:17;18808:47;18872:131;18998:4;18872:131;:::i;:::-;18864:139;;18591:419;;;:::o;19016:194::-;19056:4;19076:20;19094:1;19076:20;:::i;:::-;19071:25;;19110:20;19128:1;19110:20;:::i;:::-;19105:25;;19154:1;19151;19147:9;19139:17;;19178:1;19172:4;19169:11;19166:37;;;19183:18;;:::i;:::-;19166:37;19016:194;;;;:::o;19216:180::-;19264:77;19261:1;19254:88;19361:4;19358:1;19351:15;19385:4;19382:1;19375:15;19402:185;19442:1;19459:20;19477:1;19459:20;:::i;:::-;19454:25;;19493:20;19511:1;19493:20;:::i;:::-;19488:25;;19532:1;19522:35;;19537:18;;:::i;:::-;19522:35;19579:1;19576;19572:9;19567:14;;19402:185;;;;:::o;19593:442::-;19742:4;19780:2;19769:9;19765:18;19757:26;;19793:71;19861:1;19850:9;19846:17;19837:6;19793:71;:::i;:::-;19874:72;19942:2;19931:9;19927:18;19918:6;19874:72;:::i;:::-;19956;20024:2;20013:9;20009:18;20000:6;19956:72;:::i;:::-;19593:442;;;;;;:::o;20041:224::-;20181:34;20177:1;20169:6;20165:14;20158:58;20250:7;20245:2;20237:6;20233:15;20226:32;20041:224;:::o;20271:366::-;20413:3;20434:67;20498:2;20493:3;20434:67;:::i;:::-;20427:74;;20510:93;20599:3;20510:93;:::i;:::-;20628:2;20623:3;20619:12;20612:19;;20271:366;;;:::o;20643:419::-;20809:4;20847:2;20836:9;20832:18;20824:26;;20896:9;20890:4;20886:20;20882:1;20871:9;20867:17;20860:47;20924:131;21050:4;20924:131;:::i;:::-;20916:139;;20643:419;;;:::o;21068:222::-;21208:34;21204:1;21196:6;21192:14;21185:58;21277:5;21272:2;21264:6;21260:15;21253:30;21068:222;:::o;21296:366::-;21438:3;21459:67;21523:2;21518:3;21459:67;:::i;:::-;21452:74;;21535:93;21624:3;21535:93;:::i;:::-;21653:2;21648:3;21644:12;21637:19;;21296:366;;;:::o;21668:419::-;21834:4;21872:2;21861:9;21857:18;21849:26;;21921:9;21915:4;21911:20;21907:1;21896:9;21892:17;21885:47;21949:131;22075:4;21949:131;:::i;:::-;21941:139;;21668:419;;;:::o;22093:172::-;22233:24;22229:1;22221:6;22217:14;22210:48;22093:172;:::o;22271:366::-;22413:3;22434:67;22498:2;22493:3;22434:67;:::i;:::-;22427:74;;22510:93;22599:3;22510:93;:::i;:::-;22628:2;22623:3;22619:12;22612:19;;22271:366;;;:::o;22643:419::-;22809:4;22847:2;22836:9;22832:18;22824:26;;22896:9;22890:4;22886:20;22882:1;22871:9;22867:17;22860:47;22924:131;23050:4;22924:131;:::i;:::-;22916:139;;22643:419;;;:::o;23068:191::-;23108:3;23127:20;23145:1;23127:20;:::i;:::-;23122:25;;23161:20;23179:1;23161:20;:::i;:::-;23156:25;;23204:1;23201;23197:9;23190:16;;23225:3;23222:1;23219:10;23216:36;;;23232:18;;:::i;:::-;23216:36;23068:191;;;;:::o;23265:169::-;23405:21;23401:1;23393:6;23389:14;23382:45;23265:169;:::o;23440:366::-;23582:3;23603:67;23667:2;23662:3;23603:67;:::i;:::-;23596:74;;23679:93;23768:3;23679:93;:::i;:::-;23797:2;23792:3;23788:12;23781:19;;23440:366;;;:::o;23812:419::-;23978:4;24016:2;24005:9;24001:18;23993:26;;24065:9;24059:4;24055:20;24051:1;24040:9;24036:17;24029:47;24093:131;24219:4;24093:131;:::i;:::-;24085:139;;23812:419;;;:::o;24237:180::-;24285:77;24282:1;24275:88;24382:4;24379:1;24372:15;24406:4;24403:1;24396:15;24423:180;24471:77;24468:1;24461:88;24568:4;24565:1;24558:15;24592:4;24589:1;24582:15;24609:143;24666:5;24697:6;24691:13;24682:22;;24713:33;24740:5;24713:33;:::i;:::-;24609:143;;;;:::o;24758:351::-;24828:6;24877:2;24865:9;24856:7;24852:23;24848:32;24845:119;;;24883:79;;:::i;:::-;24845:119;25003:1;25028:64;25084:7;25075:6;25064:9;25060:22;25028:64;:::i;:::-;25018:74;;24974:128;24758:351;;;;:::o;25115:114::-;25182:6;25216:5;25210:12;25200:22;;25115:114;;;:::o;25235:184::-;25334:11;25368:6;25363:3;25356:19;25408:4;25403:3;25399:14;25384:29;;25235:184;;;;:::o;25425:132::-;25492:4;25515:3;25507:11;;25545:4;25540:3;25536:14;25528:22;;25425:132;;;:::o;25563:108::-;25640:24;25658:5;25640:24;:::i;:::-;25635:3;25628:37;25563:108;;:::o;25677:179::-;25746:10;25767:46;25809:3;25801:6;25767:46;:::i;:::-;25845:4;25840:3;25836:14;25822:28;;25677:179;;;;:::o;25862:113::-;25932:4;25964;25959:3;25955:14;25947:22;;25862:113;;;:::o;26011:732::-;26130:3;26159:54;26207:5;26159:54;:::i;:::-;26229:86;26308:6;26303:3;26229:86;:::i;:::-;26222:93;;26339:56;26389:5;26339:56;:::i;:::-;26418:7;26449:1;26434:284;26459:6;26456:1;26453:13;26434:284;;;26535:6;26529:13;26562:63;26621:3;26606:13;26562:63;:::i;:::-;26555:70;;26648:60;26701:6;26648:60;:::i;:::-;26638:70;;26494:224;26481:1;26478;26474:9;26469:14;;26434:284;;;26438:14;26734:3;26727:10;;26135:608;;;26011:732;;;;:::o;26749:831::-;27012:4;27050:3;27039:9;27035:19;27027:27;;27064:71;27132:1;27121:9;27117:17;27108:6;27064:71;:::i;:::-;27145:80;27221:2;27210:9;27206:18;27197:6;27145:80;:::i;:::-;27272:9;27266:4;27262:20;27257:2;27246:9;27242:18;27235:48;27300:108;27403:4;27394:6;27300:108;:::i;:::-;27292:116;;27418:72;27486:2;27475:9;27471:18;27462:6;27418:72;:::i;:::-;27500:73;27568:3;27557:9;27553:19;27544:6;27500:73;:::i;:::-;26749:831;;;;;;;;:::o

Swarm Source

ipfs://9f12289f5a26c4f3525f52be08045bde718a0a81665945a91ba9a4f02c1aaf49
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.