ETH Price: $3,487.20 (+6.34%)
Gas: 9 Gwei

Token

BAYCchecks (BAYC)
 

Overview

Max Total Supply

75 BAYC

Holders

53

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BAYC
0xc4f31f351694472a39d235cd2a9b7c8ba5c8991b
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:
BAYCCHECKS

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 2023-01-17
*/

// /$$$$$$$   /$$$$$$  /$$     /$$ /$$$$$$         
//| $$__  $$ /$$__  $$|  $$   /$$//$$__  $$       
//| $$  \ $$| $$  \ $$ \  $$ /$$/| $$  \__/      
//| $$$$$$$ | $$$$$$$$  \  $$$$/ | $$             
//| $$__  $$| $$__  $$   \  $$/  | $$            
//| $$  \ $$| $$  | $$    | $$   | $$    $$      
//| $$$$$$$/| $$  | $$    | $$   |  $$$$$$/      
//|_______/ |__/  |__/    |__/    \______/        


// /$$$$$$  /$$   /$$ /$$$$$$$$  /$$$$$$  /$$   /$$  /$$$$$$                                                                               
///$$__  $$| $$  | $$| $$_____/ /$$__  $$| $$  /$$/ /$$__  $$
//| $$  \__/| $$  | $$| $$      | $$  \__/| $$ /$$/ | $$  \__/
//| $$      | $$$$$$$$| $$$$$   | $$      | $$$$$/  |  $$$$$$
//| $$      | $$$$$$$$| $$$$$   | $$      | $$$$$/  |  $$$$$$
//| $$    $$| $$  | $$| $$      | $$    $$| $$\  $$  /$$  \ $$
//|  $$$$$$/| $$  | $$| $$$$$$$$|  $$$$$$/| $$ \  $$|  $$$$$$/
//\______/ |__/  |__/|________/ \______/ |__/  \__/ \______/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}
// File: MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
// File: Strings.sol


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;

/**
 * @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: Ownable.sol


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

pragma solidity ^0.8.0;


/**
 * @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 onlyOwner() {
        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 onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        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: Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

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: IERC721Receiver.sol


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

pragma solidity ^0.8.0;

/**
 * @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: IERC165.sol


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

pragma solidity ^0.8.0;

/**
 * @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: ERC165.sol


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

pragma solidity ^0.8.0;


/**
 * @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: IERC721.sol


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

pragma solidity ^0.8.0;


/**
 * @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: IERC721Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @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: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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..).
 *
 * 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 {
    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 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) {
        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) {
        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) {
        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 {
        _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 virtual 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 virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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 {}
}
// File: BAYCCHECKS.sol



pragma solidity >=0.8.9 <0.9.0;





contract BAYCCHECKS is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  bytes32 public merkleRoot;
  mapping(address => bool) public whitelistClaimed;

mapping(address => uint256) public alreadyFreeMinted;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;

  uint256 public MAX_FREE_PER_WALLET = 1;
  uint256 public cost;
  uint256 public maxSupply;
  uint256 public maxMintAmountPerTx;

  bool public paused = true;
  bool public whitelistMintEnabled = false;
  bool public revealed = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 _cost,
    uint256 _maxSupply,
    uint256 _maxMintAmountPerTx,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setCost(_cost);
    maxSupply = _maxSupply;
    setMaxMintAmountPerTx(_maxMintAmountPerTx);
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    // Verify whitelist requirements
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    require(!whitelistClaimed[_msgSender()], 'Address already claimed!');
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');

    whitelistClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _mintAmount);
  }

    function mint(uint256 amount) external payable
    {
		require(amount <= maxMintAmountPerTx,"Maximum of 10 per txn!");
		require(_totalMinted() + amount <= maxSupply,"No NFTs lefts!");
        require(paused, "Mint not started yet.");
        uint payForCount = amount;
        uint minted = alreadyFreeMinted[_msgSender()];
        if(minted < MAX_FREE_PER_WALLET && _totalMinted() < maxSupply) {
            uint remainingFreeMints = MAX_FREE_PER_WALLET - minted;
            if(amount > remainingFreeMints) {
                payForCount = amount - remainingFreeMints;
            }
            else {
                payForCount = 0;
            }
        }
		require(
			msg.value >= payForCount * cost,
			'Ether value sent is not sufficient'
		);
    	alreadyFreeMinted[_msgSender()] += amount;

        _safeMint(_msgSender(), amount);
    }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned) {
        if (ownership.addr != address(0)) {
          latestOwnerAddress = ownership.addr;
        }

        if (latestOwnerAddress == _owner) {
          ownedTokenIds[ownedTokenIndex] = currentTokenId;

          ownedTokenIndex++;
        }
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setMaxFreePerWallet(uint256 _MAX_FREE_PER_WALLET) public onlyOwner {
    MAX_FREE_PER_WALLET = _MAX_FREE_PER_WALLET;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":[],"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_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"cost","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_FREE_PER_WALLET","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600d90805190602001906200002b92919062000497565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e90805190602001906200007992919062000497565b5060016010556001601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506001601460026101000a81548160ff021916908315150217905550348015620000dd57600080fd5b50604051620057af380380620057af83398181016040528101906200010391906200071f565b858581600290805190602001906200011d92919062000497565b5080600390805190602001906200013692919062000497565b5062000147620001bd60201b60201c565b60008190555050506200016f62000163620001c260201b60201c565b620001ca60201b60201c565b600160098190555062000188846200029060201b60201c565b82601281905550620001a0826200032960201b60201c565b620001b181620003c260201b60201c565b505050505050620008ff565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a0620001c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c66200046d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200031f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003169062000879565b60405180910390fd5b8060118190555050565b62000339620001c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200035f6200046d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003af9062000879565b60405180910390fd5b8060138190555050565b620003d2620001c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003f86200046d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004489062000879565b60405180910390fd5b80600f90805190602001906200046992919062000497565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004a590620008ca565b90600052602060002090601f016020900481019282620004c9576000855562000515565b82601f10620004e457805160ff191683800117855562000515565b8280016001018555821562000515579182015b8281111562000514578251825591602001919060010190620004f7565b5b50905062000524919062000528565b5090565b5b808211156200054357600081600090555060010162000529565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005b08262000565565b810181811067ffffffffffffffff82111715620005d257620005d162000576565b5b80604052505050565b6000620005e762000547565b9050620005f58282620005a5565b919050565b600067ffffffffffffffff82111562000618576200061762000576565b5b620006238262000565565b9050602081019050919050565b60005b838110156200065057808201518184015260208101905062000633565b8381111562000660576000848401525b50505050565b60006200067d6200067784620005fa565b620005db565b9050828152602081018484840111156200069c576200069b62000560565b5b620006a984828562000630565b509392505050565b600082601f830112620006c957620006c86200055b565b5b8151620006db84826020860162000666565b91505092915050565b6000819050919050565b620006f981620006e4565b81146200070557600080fd5b50565b6000815190506200071981620006ee565b92915050565b60008060008060008060c087890312156200073f576200073e62000551565b5b600087015167ffffffffffffffff81111562000760576200075f62000556565b5b6200076e89828a01620006b1565b965050602087015167ffffffffffffffff81111562000792576200079162000556565b5b620007a089828a01620006b1565b9550506040620007b389828a0162000708565b9450506060620007c689828a0162000708565b9350506080620007d989828a0162000708565b92505060a087015167ffffffffffffffff811115620007fd57620007fc62000556565b5b6200080b89828a01620006b1565b9150509295509295509295565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200086160208362000818565b91506200086e8262000829565b602082019050919050565b60006020820190508181036000830152620008948162000852565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008e357607f821691505b602082108103620008f957620008f86200089b565b5b50919050565b614ea0806200090f6000396000f3fe60806040526004361061027d5760003560e01c80636f8b44b01161014f578063a45ba8e7116100c1578063d5abeb011161007a578063d5abeb0114610954578063db4bec441461097f578063e0a80853146109bc578063e985e9c5146109e5578063efbd73f414610a22578063f2fde38b14610a4b5761027d565b8063a45ba8e714610855578063b071401b14610880578063b767a098146108a9578063b88d4fde146108d2578063c87b56dd146108fb578063d2cab056146109385761027d565b80638da5cb5b116101135780638da5cb5b1461076457806394354fd01461078f57806395d89b41146107ba57806398710d1e146107e5578063a0712d6814610810578063a22cb4651461082c5761027d565b80636f8b44b01461069557806370a08231146106be578063715018a6146106fb5780637cb64759146107125780637ec4a6591461073b5761027d565b80633ccfd60b116101f35780635503a0e8116101ac5780635503a0e8146105835780635c975abb146105ae57806362b99ad4146105d95780636352211e146106045780636caede3d146106415780636d7c4a4b1461066c5761027d565b80633ccfd60b1461048957806342842e0e146104a0578063438b6300146104c957806344a0d68a146105065780634fdd43cb1461052f57806351830227146105585761027d565b806313faede61161024557806313faede61461038d57806316ba10e0146103b857806316c38b3c146103e157806318160ddd1461040a57806323b872dd146104355780632eb4a7ab1461045e5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630cabd4f314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613a07565b610a74565b6040516102b69190613a4f565b60405180910390f35b3480156102cb57600080fd5b506102d4610b56565b6040516102e19190613b03565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613b5b565b610be8565b60405161031e9190613bc9565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613c10565b610c64565b005b34801561035c57600080fd5b5061037760048036038101906103729190613c50565b610d6e565b6040516103849190613c8c565b60405180910390f35b34801561039957600080fd5b506103a2610d86565b6040516103af9190613c8c565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190613ddc565b610d8c565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613e51565b610e22565b005b34801561041657600080fd5b5061041f610ebb565b60405161042c9190613c8c565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613e7e565b610ed2565b005b34801561046a57600080fd5b50610473610ee2565b6040516104809190613eea565b60405180910390f35b34801561049557600080fd5b5061049e610ee8565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190613e7e565b611039565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190613c50565b611059565b6040516104fd9190613fc3565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613b5b565b61126c565b005b34801561053b57600080fd5b5061055660048036038101906105519190613ddc565b6112f2565b005b34801561056457600080fd5b5061056d611388565b60405161057a9190613a4f565b60405180910390f35b34801561058f57600080fd5b5061059861139b565b6040516105a59190613b03565b60405180910390f35b3480156105ba57600080fd5b506105c3611429565b6040516105d09190613a4f565b60405180910390f35b3480156105e557600080fd5b506105ee61143c565b6040516105fb9190613b03565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190613b5b565b6114ca565b6040516106389190613bc9565b60405180910390f35b34801561064d57600080fd5b506106566114e0565b6040516106639190613a4f565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190613b5b565b6114f3565b005b3480156106a157600080fd5b506106bc60048036038101906106b79190613b5b565b611579565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190613c50565b6115ff565b6040516106f29190613c8c565b60405180910390f35b34801561070757600080fd5b506107106116ce565b005b34801561071e57600080fd5b5061073960048036038101906107349190614011565b611756565b005b34801561074757600080fd5b50610762600480360381019061075d9190613ddc565b6117dc565b005b34801561077057600080fd5b50610779611872565b6040516107869190613bc9565b60405180910390f35b34801561079b57600080fd5b506107a461189c565b6040516107b19190613c8c565b60405180910390f35b3480156107c657600080fd5b506107cf6118a2565b6040516107dc9190613b03565b60405180910390f35b3480156107f157600080fd5b506107fa611934565b6040516108079190613c8c565b60405180910390f35b61082a60048036038101906108259190613b5b565b61193a565b005b34801561083857600080fd5b50610853600480360381019061084e919061403e565b611b8a565b005b34801561086157600080fd5b5061086a611d01565b6040516108779190613b03565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190613b5b565b611d8f565b005b3480156108b557600080fd5b506108d060048036038101906108cb9190613e51565b611e15565b005b3480156108de57600080fd5b506108f960048036038101906108f4919061411f565b611eae565b005b34801561090757600080fd5b50610922600480360381019061091d9190613b5b565b611f2a565b60405161092f9190613b03565b60405180910390f35b610952600480360381019061094d9190614202565b612082565b005b34801561096057600080fd5b50610969612396565b6040516109769190613c8c565b60405180910390f35b34801561098b57600080fd5b506109a660048036038101906109a19190613c50565b61239c565b6040516109b39190613a4f565b60405180910390f35b3480156109c857600080fd5b506109e360048036038101906109de9190613e51565b6123bc565b005b3480156109f157600080fd5b50610a0c6004803603810190610a079190614262565b612455565b604051610a199190613a4f565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a4491906142a2565b6124e9565b005b348015610a5757600080fd5b50610a726004803603810190610a6d9190613c50565b61261d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4f5750610b4e82612714565b5b9050919050565b606060028054610b6590614311565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9190614311565b8015610bde5780601f10610bb357610100808354040283529160200191610bde565b820191906000526020600020905b815481529060010190602001808311610bc157829003601f168201915b5050505050905090565b6000610bf38261277e565b610c29576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c6f826114ca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf56127cc565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d275750610d2581610d206127cc565b612455565b155b15610d5e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d698383836127d4565b505050565b600c6020528060005260406000206000915090505481565b60115481565b610d946127cc565b73ffffffffffffffffffffffffffffffffffffffff16610db2611872565b73ffffffffffffffffffffffffffffffffffffffff1614610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff9061438e565b60405180910390fd5b80600e9080519060200190610e1e9291906138b5565b5050565b610e2a6127cc565b73ffffffffffffffffffffffffffffffffffffffff16610e48611872565b73ffffffffffffffffffffffffffffffffffffffff1614610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e959061438e565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b6000610ec5612886565b6001546000540303905090565b610edd83838361288b565b505050565b600a5481565b610ef06127cc565b73ffffffffffffffffffffffffffffffffffffffff16610f0e611872565b73ffffffffffffffffffffffffffffffffffffffff1614610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061438e565b60405180910390fd5b600260095403610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa0906143fa565b60405180910390fd5b60026009819055506000610fbb611872565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fde9061444b565b60006040518083038185875af1925050503d806000811461101b576040519150601f19603f3d011682016040523d82523d6000602084013e611020565b606091505b505090508061102e57600080fd5b506001600981905550565b61105483838360405180602001604052806000815250611eae565b505050565b60606000611066836115ff565b905060008167ffffffffffffffff81111561108457611083613cb1565b5b6040519080825280602002602001820160405280156110b25781602001602082028036833780820191505090505b50905060006110bf612886565b90506000805b84821080156110d5575060005483105b1561125f576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161124b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111e857806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361124a578385848151811061122f5761122e614460565b5b6020026020010181815250508280611246906144be565b9350505b5b8380611256906144be565b945050506110c5565b8395505050505050919050565b6112746127cc565b73ffffffffffffffffffffffffffffffffffffffff16611292611872565b73ffffffffffffffffffffffffffffffffffffffff16146112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df9061438e565b60405180910390fd5b8060118190555050565b6112fa6127cc565b73ffffffffffffffffffffffffffffffffffffffff16611318611872565b73ffffffffffffffffffffffffffffffffffffffff161461136e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113659061438e565b60405180910390fd5b80600f90805190602001906113849291906138b5565b5050565b601460029054906101000a900460ff1681565b600e80546113a890614311565b80601f01602080910402602001604051908101604052809291908181526020018280546113d490614311565b80156114215780601f106113f657610100808354040283529160200191611421565b820191906000526020600020905b81548152906001019060200180831161140457829003601f168201915b505050505081565b601460009054906101000a900460ff1681565b600d805461144990614311565b80601f016020809104026020016040519081016040528092919081815260200182805461147590614311565b80156114c25780601f10611497576101008083540402835291602001916114c2565b820191906000526020600020905b8154815290600101906020018083116114a557829003601f168201915b505050505081565b60006114d582612d3f565b600001519050919050565b601460019054906101000a900460ff1681565b6114fb6127cc565b73ffffffffffffffffffffffffffffffffffffffff16611519611872565b73ffffffffffffffffffffffffffffffffffffffff161461156f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115669061438e565b60405180910390fd5b8060108190555050565b6115816127cc565b73ffffffffffffffffffffffffffffffffffffffff1661159f611872565b73ffffffffffffffffffffffffffffffffffffffff16146115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec9061438e565b60405180910390fd5b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611666576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6116d66127cc565b73ffffffffffffffffffffffffffffffffffffffff166116f4611872565b73ffffffffffffffffffffffffffffffffffffffff161461174a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117419061438e565b60405180910390fd5b6117546000612fce565b565b61175e6127cc565b73ffffffffffffffffffffffffffffffffffffffff1661177c611872565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c99061438e565b60405180910390fd5b80600a8190555050565b6117e46127cc565b73ffffffffffffffffffffffffffffffffffffffff16611802611872565b73ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f9061438e565b60405180910390fd5b80600d908051906020019061186e9291906138b5565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b6060600380546118b190614311565b80601f01602080910402602001604051908101604052809291908181526020018280546118dd90614311565b801561192a5780601f106118ff5761010080835404028352916020019161192a565b820191906000526020600020905b81548152906001019060200180831161190d57829003601f168201915b5050505050905090565b60105481565b60135481111561197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690614552565b60405180910390fd5b6012548161198b613094565b6119959190614572565b11156119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90614614565b60405180910390fd5b601460009054906101000a900460ff16611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90614680565b60405180910390fd5b60008190506000600c6000611a386127cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060105481108015611a8e5750601254611a8c613094565b105b15611ac757600081601054611aa391906146a0565b905080841115611ac0578084611ab991906146a0565b9250611ac5565b600092505b505b60115482611ad591906146d4565b341015611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e906147a0565b60405180910390fd5b82600c6000611b246127cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b6d9190614572565b92505081905550611b85611b7f6127cc565b846130a7565b505050565b611b926127cc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bf6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c036127cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cb06127cc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cf59190613a4f565b60405180910390a35050565b600f8054611d0e90614311565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3a90614311565b8015611d875780601f10611d5c57610100808354040283529160200191611d87565b820191906000526020600020905b815481529060010190602001808311611d6a57829003601f168201915b505050505081565b611d976127cc565b73ffffffffffffffffffffffffffffffffffffffff16611db5611872565b73ffffffffffffffffffffffffffffffffffffffff1614611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e029061438e565b60405180910390fd5b8060138190555050565b611e1d6127cc565b73ffffffffffffffffffffffffffffffffffffffff16611e3b611872565b73ffffffffffffffffffffffffffffffffffffffff1614611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e889061438e565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b611eb984848461288b565b611ed88373ffffffffffffffffffffffffffffffffffffffff166130c5565b8015611eed5750611eeb848484846130e8565b155b15611f24576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611f358261277e565b611f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6b90614832565b60405180910390fd5b60001515601460029054906101000a900460ff1615150361202157600f8054611f9c90614311565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc890614311565b80156120155780601f10611fea57610100808354040283529160200191612015565b820191906000526020600020905b815481529060010190602001808311611ff857829003601f168201915b5050505050905061207d565b600061202b613238565b9050600081511161204b5760405180602001604052806000815250612079565b80612055846132ca565b600e60405160200161206993929190614922565b6040516020818303038152906040525b9150505b919050565b8260008111801561209557506013548111155b6120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb9061499f565b60405180910390fd5b601254816120e0610ebb565b6120ea9190614572565b111561212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290614a0b565b60405180910390fd5b838060115461213a91906146d4565b34101561217c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217390614a77565b60405180910390fd5b601460019054906101000a900460ff166121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c290614b09565b60405180910390fd5b600b60006121d76127cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561225f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225690614b75565b60405180910390fd5b60006122696127cc565b6040516020016122799190614bdd565b6040516020818303038152906040528051906020012090506122df858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a548361342a565b61231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590614c44565b60405180910390fd5b6001600b600061232c6127cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061238e6123886127cc565b876130a7565b505050505050565b60125481565b600b6020528060005260406000206000915054906101000a900460ff1681565b6123c46127cc565b73ffffffffffffffffffffffffffffffffffffffff166123e2611872565b73ffffffffffffffffffffffffffffffffffffffff1614612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f9061438e565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156124fc57506013548111155b61253b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125329061499f565b60405180910390fd5b60125481612547610ebb565b6125519190614572565b1115612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258990614a0b565b60405180910390fd5b61259a6127cc565b73ffffffffffffffffffffffffffffffffffffffff166125b8611872565b73ffffffffffffffffffffffffffffffffffffffff161461260e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126059061438e565b60405180910390fd5b61261882846130a7565b505050565b6126256127cc565b73ffffffffffffffffffffffffffffffffffffffff16612643611872565b73ffffffffffffffffffffffffffffffffffffffff1614612699576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126909061438e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff90614cd6565b60405180910390fd5b61271181612fce565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612789612886565b11158015612798575060005482105b80156127c5575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061289682612d3f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612901576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166129226127cc565b73ffffffffffffffffffffffffffffffffffffffff16148061295157506129508561294b6127cc565b612455565b5b80612996575061295f6127cc565b73ffffffffffffffffffffffffffffffffffffffff1661297e84610be8565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806129cf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612a35576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a428585856001613441565b612a4e600084876127d4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612ccd576000548214612ccc57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d388585856001613447565b5050505050565b612d4761393b565b600082905080612d55612886565b11158015612d64575060005481105b15612f97576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612f9557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e79578092505050612fc9565b5b600115612f9457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f8f578092505050612fc9565b612e7a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061309e612886565b60005403905090565b6130c182826040518060200160405280600081525061344d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261310e6127cc565b8786866040518563ffffffff1660e01b81526004016131309493929190614d4b565b6020604051808303816000875af192505050801561316c57506040513d601f19601f820116820180604052508101906131699190614dac565b60015b6131e5573d806000811461319c576040519150601f19603f3d011682016040523d82523d6000602084013e6131a1565b606091505b5060008151036131dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d805461324790614311565b80601f016020809104026020016040519081016040528092919081815260200182805461327390614311565b80156132c05780601f10613295576101008083540402835291602001916132c0565b820191906000526020600020905b8154815290600101906020018083116132a357829003601f168201915b5050505050905090565b606060008203613311576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613425565b600082905060005b6000821461334357808061332c906144be565b915050600a8261333c9190614e08565b9150613319565b60008167ffffffffffffffff81111561335f5761335e613cb1565b5b6040519080825280601f01601f1916602001820160405280156133915781602001600182028036833780820191505090505b5090505b6000851461341e576001826133aa91906146a0565b9150600a856133b99190614e39565b60306133c59190614572565b60f81b8183815181106133db576133da614460565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134179190614e08565b9450613395565b8093505050505b919050565b600082613437858461345f565b1490509392505050565b50505050565b50505050565b61345a83838360016134d4565b505050565b60008082905060005b84518110156134c957600085828151811061348657613485614460565b5b602002602001015190508083116134a8576134a1838261389e565b92506134b5565b6134b2818461389e565b92505b5080806134c1906144be565b915050613468565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613540576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361357a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135876000868387613441565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561375157506137508773ffffffffffffffffffffffffffffffffffffffff166130c5565b5b15613816575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137c660008884806001019550886130e8565b6137fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361375757826000541461381157600080fd5b613881565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613817575b8160008190555050506138976000868387613447565b5050505050565b600082600052816020526040600020905092915050565b8280546138c190614311565b90600052602060002090601f0160209004810192826138e3576000855561392a565b82601f106138fc57805160ff191683800117855561392a565b8280016001018555821561392a579182015b8281111561392957825182559160200191906001019061390e565b5b509050613937919061397e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561399757600081600090555060010161397f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139e4816139af565b81146139ef57600080fd5b50565b600081359050613a01816139db565b92915050565b600060208284031215613a1d57613a1c6139a5565b5b6000613a2b848285016139f2565b91505092915050565b60008115159050919050565b613a4981613a34565b82525050565b6000602082019050613a646000830184613a40565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613aa4578082015181840152602081019050613a89565b83811115613ab3576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ad582613a6a565b613adf8185613a75565b9350613aef818560208601613a86565b613af881613ab9565b840191505092915050565b60006020820190508181036000830152613b1d8184613aca565b905092915050565b6000819050919050565b613b3881613b25565b8114613b4357600080fd5b50565b600081359050613b5581613b2f565b92915050565b600060208284031215613b7157613b706139a5565b5b6000613b7f84828501613b46565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bb382613b88565b9050919050565b613bc381613ba8565b82525050565b6000602082019050613bde6000830184613bba565b92915050565b613bed81613ba8565b8114613bf857600080fd5b50565b600081359050613c0a81613be4565b92915050565b60008060408385031215613c2757613c266139a5565b5b6000613c3585828601613bfb565b9250506020613c4685828601613b46565b9150509250929050565b600060208284031215613c6657613c656139a5565b5b6000613c7484828501613bfb565b91505092915050565b613c8681613b25565b82525050565b6000602082019050613ca16000830184613c7d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ce982613ab9565b810181811067ffffffffffffffff82111715613d0857613d07613cb1565b5b80604052505050565b6000613d1b61399b565b9050613d278282613ce0565b919050565b600067ffffffffffffffff821115613d4757613d46613cb1565b5b613d5082613ab9565b9050602081019050919050565b82818337600083830152505050565b6000613d7f613d7a84613d2c565b613d11565b905082815260208101848484011115613d9b57613d9a613cac565b5b613da6848285613d5d565b509392505050565b600082601f830112613dc357613dc2613ca7565b5b8135613dd3848260208601613d6c565b91505092915050565b600060208284031215613df257613df16139a5565b5b600082013567ffffffffffffffff811115613e1057613e0f6139aa565b5b613e1c84828501613dae565b91505092915050565b613e2e81613a34565b8114613e3957600080fd5b50565b600081359050613e4b81613e25565b92915050565b600060208284031215613e6757613e666139a5565b5b6000613e7584828501613e3c565b91505092915050565b600080600060608486031215613e9757613e966139a5565b5b6000613ea586828701613bfb565b9350506020613eb686828701613bfb565b9250506040613ec786828701613b46565b9150509250925092565b6000819050919050565b613ee481613ed1565b82525050565b6000602082019050613eff6000830184613edb565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f3a81613b25565b82525050565b6000613f4c8383613f31565b60208301905092915050565b6000602082019050919050565b6000613f7082613f05565b613f7a8185613f10565b9350613f8583613f21565b8060005b83811015613fb6578151613f9d8882613f40565b9750613fa883613f58565b925050600181019050613f89565b5085935050505092915050565b60006020820190508181036000830152613fdd8184613f65565b905092915050565b613fee81613ed1565b8114613ff957600080fd5b50565b60008135905061400b81613fe5565b92915050565b600060208284031215614027576140266139a5565b5b600061403584828501613ffc565b91505092915050565b60008060408385031215614055576140546139a5565b5b600061406385828601613bfb565b925050602061407485828601613e3c565b9150509250929050565b600067ffffffffffffffff82111561409957614098613cb1565b5b6140a282613ab9565b9050602081019050919050565b60006140c26140bd8461407e565b613d11565b9050828152602081018484840111156140de576140dd613cac565b5b6140e9848285613d5d565b509392505050565b600082601f83011261410657614105613ca7565b5b81356141168482602086016140af565b91505092915050565b60008060008060808587031215614139576141386139a5565b5b600061414787828801613bfb565b945050602061415887828801613bfb565b935050604061416987828801613b46565b925050606085013567ffffffffffffffff81111561418a576141896139aa565b5b614196878288016140f1565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126141c2576141c1613ca7565b5b8235905067ffffffffffffffff8111156141df576141de6141a2565b5b6020830191508360208202830111156141fb576141fa6141a7565b5b9250929050565b60008060006040848603121561421b5761421a6139a5565b5b600061422986828701613b46565b935050602084013567ffffffffffffffff81111561424a576142496139aa565b5b614256868287016141ac565b92509250509250925092565b60008060408385031215614279576142786139a5565b5b600061428785828601613bfb565b925050602061429885828601613bfb565b9150509250929050565b600080604083850312156142b9576142b86139a5565b5b60006142c785828601613b46565b92505060206142d885828601613bfb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061432957607f821691505b60208210810361433c5761433b6142e2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614378602083613a75565b915061438382614342565b602082019050919050565b600060208201905081810360008301526143a78161436b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006143e4601f83613a75565b91506143ef826143ae565b602082019050919050565b60006020820190508181036000830152614413816143d7565b9050919050565b600081905092915050565b50565b600061443560008361441a565b915061444082614425565b600082019050919050565b600061445682614428565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144c982613b25565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036144fb576144fa61448f565b5b600182019050919050565b7f4d6178696d756d206f66203130207065722074786e2100000000000000000000600082015250565b600061453c601683613a75565b915061454782614506565b602082019050919050565b6000602082019050818103600083015261456b8161452f565b9050919050565b600061457d82613b25565b915061458883613b25565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145bd576145bc61448f565b5b828201905092915050565b7f4e6f204e465473206c6566747321000000000000000000000000000000000000600082015250565b60006145fe600e83613a75565b9150614609826145c8565b602082019050919050565b6000602082019050818103600083015261462d816145f1565b9050919050565b7f4d696e74206e6f742073746172746564207965742e0000000000000000000000600082015250565b600061466a601583613a75565b915061467582614634565b602082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b60006146ab82613b25565b91506146b683613b25565b9250828210156146c9576146c861448f565b5b828203905092915050565b60006146df82613b25565b91506146ea83613b25565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147235761472261448f565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b600061478a602283613a75565b91506147958261472e565b604082019050919050565b600060208201905081810360008301526147b98161477d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061481c602f83613a75565b9150614827826147c0565b604082019050919050565b6000602082019050818103600083015261484b8161480f565b9050919050565b600081905092915050565b600061486882613a6a565b6148728185614852565b9350614882818560208601613a86565b80840191505092915050565b60008190508160005260206000209050919050565b600081546148b081614311565b6148ba8186614852565b945060018216600081146148d557600181146148e657614919565b60ff19831686528186019350614919565b6148ef8561488e565b60005b83811015614911578154818901526001820191506020810190506148f2565b838801955050505b50505092915050565b600061492e828661485d565b915061493a828561485d565b915061494682846148a3565b9150819050949350505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614989601483613a75565b915061499482614953565b602082019050919050565b600060208201905081810360008301526149b88161497c565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006149f5601483613a75565b9150614a00826149bf565b602082019050919050565b60006020820190508181036000830152614a24816149e8565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614a61601383613a75565b9150614a6c82614a2b565b602082019050919050565b60006020820190508181036000830152614a9081614a54565b9050919050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b6000614af3602283613a75565b9150614afe82614a97565b604082019050919050565b60006020820190508181036000830152614b2281614ae6565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b6000614b5f601883613a75565b9150614b6a82614b29565b602082019050919050565b60006020820190508181036000830152614b8e81614b52565b9050919050565b60008160601b9050919050565b6000614bad82614b95565b9050919050565b6000614bbf82614ba2565b9050919050565b614bd7614bd282613ba8565b614bb4565b82525050565b6000614be98284614bc6565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614c2e600e83613a75565b9150614c3982614bf8565b602082019050919050565b60006020820190508181036000830152614c5d81614c21565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cc0602683613a75565b9150614ccb82614c64565b604082019050919050565b60006020820190508181036000830152614cef81614cb3565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d1d82614cf6565b614d278185614d01565b9350614d37818560208601613a86565b614d4081613ab9565b840191505092915050565b6000608082019050614d606000830187613bba565b614d6d6020830186613bba565b614d7a6040830185613c7d565b8181036060830152614d8c8184614d12565b905095945050505050565b600081519050614da6816139db565b92915050565b600060208284031215614dc257614dc16139a5565b5b6000614dd084828501614d97565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e1382613b25565b9150614e1e83613b25565b925082614e2e57614e2d614dd9565b5b828204905092915050565b6000614e4482613b25565b9150614e4f83613b25565b925082614e5f57614e5e614dd9565b5b82820690509291505056fea2646970667358221220a168dde39911b057a69832c6fe8b6e7eee999b2017bfed029553fe56c0db44e364736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000071afd498d00000000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a42415943636865636b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442415943000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64744175485755737978765441355675536f4b765571774c43736d675a79364644584567746d6166376835512f00000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636f8b44b01161014f578063a45ba8e7116100c1578063d5abeb011161007a578063d5abeb0114610954578063db4bec441461097f578063e0a80853146109bc578063e985e9c5146109e5578063efbd73f414610a22578063f2fde38b14610a4b5761027d565b8063a45ba8e714610855578063b071401b14610880578063b767a098146108a9578063b88d4fde146108d2578063c87b56dd146108fb578063d2cab056146109385761027d565b80638da5cb5b116101135780638da5cb5b1461076457806394354fd01461078f57806395d89b41146107ba57806398710d1e146107e5578063a0712d6814610810578063a22cb4651461082c5761027d565b80636f8b44b01461069557806370a08231146106be578063715018a6146106fb5780637cb64759146107125780637ec4a6591461073b5761027d565b80633ccfd60b116101f35780635503a0e8116101ac5780635503a0e8146105835780635c975abb146105ae57806362b99ad4146105d95780636352211e146106045780636caede3d146106415780636d7c4a4b1461066c5761027d565b80633ccfd60b1461048957806342842e0e146104a0578063438b6300146104c957806344a0d68a146105065780634fdd43cb1461052f57806351830227146105585761027d565b806313faede61161024557806313faede61461038d57806316ba10e0146103b857806316c38b3c146103e157806318160ddd1461040a57806323b872dd146104355780632eb4a7ab1461045e5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630cabd4f314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613a07565b610a74565b6040516102b69190613a4f565b60405180910390f35b3480156102cb57600080fd5b506102d4610b56565b6040516102e19190613b03565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613b5b565b610be8565b60405161031e9190613bc9565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613c10565b610c64565b005b34801561035c57600080fd5b5061037760048036038101906103729190613c50565b610d6e565b6040516103849190613c8c565b60405180910390f35b34801561039957600080fd5b506103a2610d86565b6040516103af9190613c8c565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190613ddc565b610d8c565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613e51565b610e22565b005b34801561041657600080fd5b5061041f610ebb565b60405161042c9190613c8c565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613e7e565b610ed2565b005b34801561046a57600080fd5b50610473610ee2565b6040516104809190613eea565b60405180910390f35b34801561049557600080fd5b5061049e610ee8565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190613e7e565b611039565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190613c50565b611059565b6040516104fd9190613fc3565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613b5b565b61126c565b005b34801561053b57600080fd5b5061055660048036038101906105519190613ddc565b6112f2565b005b34801561056457600080fd5b5061056d611388565b60405161057a9190613a4f565b60405180910390f35b34801561058f57600080fd5b5061059861139b565b6040516105a59190613b03565b60405180910390f35b3480156105ba57600080fd5b506105c3611429565b6040516105d09190613a4f565b60405180910390f35b3480156105e557600080fd5b506105ee61143c565b6040516105fb9190613b03565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190613b5b565b6114ca565b6040516106389190613bc9565b60405180910390f35b34801561064d57600080fd5b506106566114e0565b6040516106639190613a4f565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190613b5b565b6114f3565b005b3480156106a157600080fd5b506106bc60048036038101906106b79190613b5b565b611579565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190613c50565b6115ff565b6040516106f29190613c8c565b60405180910390f35b34801561070757600080fd5b506107106116ce565b005b34801561071e57600080fd5b5061073960048036038101906107349190614011565b611756565b005b34801561074757600080fd5b50610762600480360381019061075d9190613ddc565b6117dc565b005b34801561077057600080fd5b50610779611872565b6040516107869190613bc9565b60405180910390f35b34801561079b57600080fd5b506107a461189c565b6040516107b19190613c8c565b60405180910390f35b3480156107c657600080fd5b506107cf6118a2565b6040516107dc9190613b03565b60405180910390f35b3480156107f157600080fd5b506107fa611934565b6040516108079190613c8c565b60405180910390f35b61082a60048036038101906108259190613b5b565b61193a565b005b34801561083857600080fd5b50610853600480360381019061084e919061403e565b611b8a565b005b34801561086157600080fd5b5061086a611d01565b6040516108779190613b03565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190613b5b565b611d8f565b005b3480156108b557600080fd5b506108d060048036038101906108cb9190613e51565b611e15565b005b3480156108de57600080fd5b506108f960048036038101906108f4919061411f565b611eae565b005b34801561090757600080fd5b50610922600480360381019061091d9190613b5b565b611f2a565b60405161092f9190613b03565b60405180910390f35b610952600480360381019061094d9190614202565b612082565b005b34801561096057600080fd5b50610969612396565b6040516109769190613c8c565b60405180910390f35b34801561098b57600080fd5b506109a660048036038101906109a19190613c50565b61239c565b6040516109b39190613a4f565b60405180910390f35b3480156109c857600080fd5b506109e360048036038101906109de9190613e51565b6123bc565b005b3480156109f157600080fd5b50610a0c6004803603810190610a079190614262565b612455565b604051610a199190613a4f565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a4491906142a2565b6124e9565b005b348015610a5757600080fd5b50610a726004803603810190610a6d9190613c50565b61261d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4f5750610b4e82612714565b5b9050919050565b606060028054610b6590614311565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9190614311565b8015610bde5780601f10610bb357610100808354040283529160200191610bde565b820191906000526020600020905b815481529060010190602001808311610bc157829003601f168201915b5050505050905090565b6000610bf38261277e565b610c29576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c6f826114ca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf56127cc565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d275750610d2581610d206127cc565b612455565b155b15610d5e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d698383836127d4565b505050565b600c6020528060005260406000206000915090505481565b60115481565b610d946127cc565b73ffffffffffffffffffffffffffffffffffffffff16610db2611872565b73ffffffffffffffffffffffffffffffffffffffff1614610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff9061438e565b60405180910390fd5b80600e9080519060200190610e1e9291906138b5565b5050565b610e2a6127cc565b73ffffffffffffffffffffffffffffffffffffffff16610e48611872565b73ffffffffffffffffffffffffffffffffffffffff1614610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e959061438e565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b6000610ec5612886565b6001546000540303905090565b610edd83838361288b565b505050565b600a5481565b610ef06127cc565b73ffffffffffffffffffffffffffffffffffffffff16610f0e611872565b73ffffffffffffffffffffffffffffffffffffffff1614610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061438e565b60405180910390fd5b600260095403610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa0906143fa565b60405180910390fd5b60026009819055506000610fbb611872565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fde9061444b565b60006040518083038185875af1925050503d806000811461101b576040519150601f19603f3d011682016040523d82523d6000602084013e611020565b606091505b505090508061102e57600080fd5b506001600981905550565b61105483838360405180602001604052806000815250611eae565b505050565b60606000611066836115ff565b905060008167ffffffffffffffff81111561108457611083613cb1565b5b6040519080825280602002602001820160405280156110b25781602001602082028036833780820191505090505b50905060006110bf612886565b90506000805b84821080156110d5575060005483105b1561125f576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161124b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111e857806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361124a578385848151811061122f5761122e614460565b5b6020026020010181815250508280611246906144be565b9350505b5b8380611256906144be565b945050506110c5565b8395505050505050919050565b6112746127cc565b73ffffffffffffffffffffffffffffffffffffffff16611292611872565b73ffffffffffffffffffffffffffffffffffffffff16146112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df9061438e565b60405180910390fd5b8060118190555050565b6112fa6127cc565b73ffffffffffffffffffffffffffffffffffffffff16611318611872565b73ffffffffffffffffffffffffffffffffffffffff161461136e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113659061438e565b60405180910390fd5b80600f90805190602001906113849291906138b5565b5050565b601460029054906101000a900460ff1681565b600e80546113a890614311565b80601f01602080910402602001604051908101604052809291908181526020018280546113d490614311565b80156114215780601f106113f657610100808354040283529160200191611421565b820191906000526020600020905b81548152906001019060200180831161140457829003601f168201915b505050505081565b601460009054906101000a900460ff1681565b600d805461144990614311565b80601f016020809104026020016040519081016040528092919081815260200182805461147590614311565b80156114c25780601f10611497576101008083540402835291602001916114c2565b820191906000526020600020905b8154815290600101906020018083116114a557829003601f168201915b505050505081565b60006114d582612d3f565b600001519050919050565b601460019054906101000a900460ff1681565b6114fb6127cc565b73ffffffffffffffffffffffffffffffffffffffff16611519611872565b73ffffffffffffffffffffffffffffffffffffffff161461156f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115669061438e565b60405180910390fd5b8060108190555050565b6115816127cc565b73ffffffffffffffffffffffffffffffffffffffff1661159f611872565b73ffffffffffffffffffffffffffffffffffffffff16146115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec9061438e565b60405180910390fd5b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611666576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6116d66127cc565b73ffffffffffffffffffffffffffffffffffffffff166116f4611872565b73ffffffffffffffffffffffffffffffffffffffff161461174a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117419061438e565b60405180910390fd5b6117546000612fce565b565b61175e6127cc565b73ffffffffffffffffffffffffffffffffffffffff1661177c611872565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c99061438e565b60405180910390fd5b80600a8190555050565b6117e46127cc565b73ffffffffffffffffffffffffffffffffffffffff16611802611872565b73ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f9061438e565b60405180910390fd5b80600d908051906020019061186e9291906138b5565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b6060600380546118b190614311565b80601f01602080910402602001604051908101604052809291908181526020018280546118dd90614311565b801561192a5780601f106118ff5761010080835404028352916020019161192a565b820191906000526020600020905b81548152906001019060200180831161190d57829003601f168201915b5050505050905090565b60105481565b60135481111561197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690614552565b60405180910390fd5b6012548161198b613094565b6119959190614572565b11156119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90614614565b60405180910390fd5b601460009054906101000a900460ff16611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90614680565b60405180910390fd5b60008190506000600c6000611a386127cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060105481108015611a8e5750601254611a8c613094565b105b15611ac757600081601054611aa391906146a0565b905080841115611ac0578084611ab991906146a0565b9250611ac5565b600092505b505b60115482611ad591906146d4565b341015611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e906147a0565b60405180910390fd5b82600c6000611b246127cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b6d9190614572565b92505081905550611b85611b7f6127cc565b846130a7565b505050565b611b926127cc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bf6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c036127cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cb06127cc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cf59190613a4f565b60405180910390a35050565b600f8054611d0e90614311565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3a90614311565b8015611d875780601f10611d5c57610100808354040283529160200191611d87565b820191906000526020600020905b815481529060010190602001808311611d6a57829003601f168201915b505050505081565b611d976127cc565b73ffffffffffffffffffffffffffffffffffffffff16611db5611872565b73ffffffffffffffffffffffffffffffffffffffff1614611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e029061438e565b60405180910390fd5b8060138190555050565b611e1d6127cc565b73ffffffffffffffffffffffffffffffffffffffff16611e3b611872565b73ffffffffffffffffffffffffffffffffffffffff1614611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e889061438e565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b611eb984848461288b565b611ed88373ffffffffffffffffffffffffffffffffffffffff166130c5565b8015611eed5750611eeb848484846130e8565b155b15611f24576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611f358261277e565b611f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6b90614832565b60405180910390fd5b60001515601460029054906101000a900460ff1615150361202157600f8054611f9c90614311565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc890614311565b80156120155780601f10611fea57610100808354040283529160200191612015565b820191906000526020600020905b815481529060010190602001808311611ff857829003601f168201915b5050505050905061207d565b600061202b613238565b9050600081511161204b5760405180602001604052806000815250612079565b80612055846132ca565b600e60405160200161206993929190614922565b6040516020818303038152906040525b9150505b919050565b8260008111801561209557506013548111155b6120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb9061499f565b60405180910390fd5b601254816120e0610ebb565b6120ea9190614572565b111561212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290614a0b565b60405180910390fd5b838060115461213a91906146d4565b34101561217c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217390614a77565b60405180910390fd5b601460019054906101000a900460ff166121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c290614b09565b60405180910390fd5b600b60006121d76127cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561225f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225690614b75565b60405180910390fd5b60006122696127cc565b6040516020016122799190614bdd565b6040516020818303038152906040528051906020012090506122df858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a548361342a565b61231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590614c44565b60405180910390fd5b6001600b600061232c6127cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061238e6123886127cc565b876130a7565b505050505050565b60125481565b600b6020528060005260406000206000915054906101000a900460ff1681565b6123c46127cc565b73ffffffffffffffffffffffffffffffffffffffff166123e2611872565b73ffffffffffffffffffffffffffffffffffffffff1614612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f9061438e565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156124fc57506013548111155b61253b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125329061499f565b60405180910390fd5b60125481612547610ebb565b6125519190614572565b1115612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258990614a0b565b60405180910390fd5b61259a6127cc565b73ffffffffffffffffffffffffffffffffffffffff166125b8611872565b73ffffffffffffffffffffffffffffffffffffffff161461260e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126059061438e565b60405180910390fd5b61261882846130a7565b505050565b6126256127cc565b73ffffffffffffffffffffffffffffffffffffffff16612643611872565b73ffffffffffffffffffffffffffffffffffffffff1614612699576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126909061438e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff90614cd6565b60405180910390fd5b61271181612fce565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612789612886565b11158015612798575060005482105b80156127c5575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061289682612d3f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612901576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166129226127cc565b73ffffffffffffffffffffffffffffffffffffffff16148061295157506129508561294b6127cc565b612455565b5b80612996575061295f6127cc565b73ffffffffffffffffffffffffffffffffffffffff1661297e84610be8565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806129cf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612a35576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a428585856001613441565b612a4e600084876127d4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612ccd576000548214612ccc57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d388585856001613447565b5050505050565b612d4761393b565b600082905080612d55612886565b11158015612d64575060005481105b15612f97576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612f9557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e79578092505050612fc9565b5b600115612f9457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f8f578092505050612fc9565b612e7a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061309e612886565b60005403905090565b6130c182826040518060200160405280600081525061344d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261310e6127cc565b8786866040518563ffffffff1660e01b81526004016131309493929190614d4b565b6020604051808303816000875af192505050801561316c57506040513d601f19601f820116820180604052508101906131699190614dac565b60015b6131e5573d806000811461319c576040519150601f19603f3d011682016040523d82523d6000602084013e6131a1565b606091505b5060008151036131dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d805461324790614311565b80601f016020809104026020016040519081016040528092919081815260200182805461327390614311565b80156132c05780601f10613295576101008083540402835291602001916132c0565b820191906000526020600020905b8154815290600101906020018083116132a357829003601f168201915b5050505050905090565b606060008203613311576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613425565b600082905060005b6000821461334357808061332c906144be565b915050600a8261333c9190614e08565b9150613319565b60008167ffffffffffffffff81111561335f5761335e613cb1565b5b6040519080825280601f01601f1916602001820160405280156133915781602001600182028036833780820191505090505b5090505b6000851461341e576001826133aa91906146a0565b9150600a856133b99190614e39565b60306133c59190614572565b60f81b8183815181106133db576133da614460565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134179190614e08565b9450613395565b8093505050505b919050565b600082613437858461345f565b1490509392505050565b50505050565b50505050565b61345a83838360016134d4565b505050565b60008082905060005b84518110156134c957600085828151811061348657613485614460565b5b602002602001015190508083116134a8576134a1838261389e565b92506134b5565b6134b2818461389e565b92505b5080806134c1906144be565b915050613468565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613540576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361357a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135876000868387613441565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561375157506137508773ffffffffffffffffffffffffffffffffffffffff166130c5565b5b15613816575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137c660008884806001019550886130e8565b6137fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361375757826000541461381157600080fd5b613881565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613817575b8160008190555050506138976000868387613447565b5050505050565b600082600052816020526040600020905092915050565b8280546138c190614311565b90600052602060002090601f0160209004810192826138e3576000855561392a565b82601f106138fc57805160ff191683800117855561392a565b8280016001018555821561392a579182015b8281111561392957825182559160200191906001019061390e565b5b509050613937919061397e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561399757600081600090555060010161397f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139e4816139af565b81146139ef57600080fd5b50565b600081359050613a01816139db565b92915050565b600060208284031215613a1d57613a1c6139a5565b5b6000613a2b848285016139f2565b91505092915050565b60008115159050919050565b613a4981613a34565b82525050565b6000602082019050613a646000830184613a40565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613aa4578082015181840152602081019050613a89565b83811115613ab3576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ad582613a6a565b613adf8185613a75565b9350613aef818560208601613a86565b613af881613ab9565b840191505092915050565b60006020820190508181036000830152613b1d8184613aca565b905092915050565b6000819050919050565b613b3881613b25565b8114613b4357600080fd5b50565b600081359050613b5581613b2f565b92915050565b600060208284031215613b7157613b706139a5565b5b6000613b7f84828501613b46565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bb382613b88565b9050919050565b613bc381613ba8565b82525050565b6000602082019050613bde6000830184613bba565b92915050565b613bed81613ba8565b8114613bf857600080fd5b50565b600081359050613c0a81613be4565b92915050565b60008060408385031215613c2757613c266139a5565b5b6000613c3585828601613bfb565b9250506020613c4685828601613b46565b9150509250929050565b600060208284031215613c6657613c656139a5565b5b6000613c7484828501613bfb565b91505092915050565b613c8681613b25565b82525050565b6000602082019050613ca16000830184613c7d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ce982613ab9565b810181811067ffffffffffffffff82111715613d0857613d07613cb1565b5b80604052505050565b6000613d1b61399b565b9050613d278282613ce0565b919050565b600067ffffffffffffffff821115613d4757613d46613cb1565b5b613d5082613ab9565b9050602081019050919050565b82818337600083830152505050565b6000613d7f613d7a84613d2c565b613d11565b905082815260208101848484011115613d9b57613d9a613cac565b5b613da6848285613d5d565b509392505050565b600082601f830112613dc357613dc2613ca7565b5b8135613dd3848260208601613d6c565b91505092915050565b600060208284031215613df257613df16139a5565b5b600082013567ffffffffffffffff811115613e1057613e0f6139aa565b5b613e1c84828501613dae565b91505092915050565b613e2e81613a34565b8114613e3957600080fd5b50565b600081359050613e4b81613e25565b92915050565b600060208284031215613e6757613e666139a5565b5b6000613e7584828501613e3c565b91505092915050565b600080600060608486031215613e9757613e966139a5565b5b6000613ea586828701613bfb565b9350506020613eb686828701613bfb565b9250506040613ec786828701613b46565b9150509250925092565b6000819050919050565b613ee481613ed1565b82525050565b6000602082019050613eff6000830184613edb565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f3a81613b25565b82525050565b6000613f4c8383613f31565b60208301905092915050565b6000602082019050919050565b6000613f7082613f05565b613f7a8185613f10565b9350613f8583613f21565b8060005b83811015613fb6578151613f9d8882613f40565b9750613fa883613f58565b925050600181019050613f89565b5085935050505092915050565b60006020820190508181036000830152613fdd8184613f65565b905092915050565b613fee81613ed1565b8114613ff957600080fd5b50565b60008135905061400b81613fe5565b92915050565b600060208284031215614027576140266139a5565b5b600061403584828501613ffc565b91505092915050565b60008060408385031215614055576140546139a5565b5b600061406385828601613bfb565b925050602061407485828601613e3c565b9150509250929050565b600067ffffffffffffffff82111561409957614098613cb1565b5b6140a282613ab9565b9050602081019050919050565b60006140c26140bd8461407e565b613d11565b9050828152602081018484840111156140de576140dd613cac565b5b6140e9848285613d5d565b509392505050565b600082601f83011261410657614105613ca7565b5b81356141168482602086016140af565b91505092915050565b60008060008060808587031215614139576141386139a5565b5b600061414787828801613bfb565b945050602061415887828801613bfb565b935050604061416987828801613b46565b925050606085013567ffffffffffffffff81111561418a576141896139aa565b5b614196878288016140f1565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126141c2576141c1613ca7565b5b8235905067ffffffffffffffff8111156141df576141de6141a2565b5b6020830191508360208202830111156141fb576141fa6141a7565b5b9250929050565b60008060006040848603121561421b5761421a6139a5565b5b600061422986828701613b46565b935050602084013567ffffffffffffffff81111561424a576142496139aa565b5b614256868287016141ac565b92509250509250925092565b60008060408385031215614279576142786139a5565b5b600061428785828601613bfb565b925050602061429885828601613bfb565b9150509250929050565b600080604083850312156142b9576142b86139a5565b5b60006142c785828601613b46565b92505060206142d885828601613bfb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061432957607f821691505b60208210810361433c5761433b6142e2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614378602083613a75565b915061438382614342565b602082019050919050565b600060208201905081810360008301526143a78161436b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006143e4601f83613a75565b91506143ef826143ae565b602082019050919050565b60006020820190508181036000830152614413816143d7565b9050919050565b600081905092915050565b50565b600061443560008361441a565b915061444082614425565b600082019050919050565b600061445682614428565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144c982613b25565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036144fb576144fa61448f565b5b600182019050919050565b7f4d6178696d756d206f66203130207065722074786e2100000000000000000000600082015250565b600061453c601683613a75565b915061454782614506565b602082019050919050565b6000602082019050818103600083015261456b8161452f565b9050919050565b600061457d82613b25565b915061458883613b25565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145bd576145bc61448f565b5b828201905092915050565b7f4e6f204e465473206c6566747321000000000000000000000000000000000000600082015250565b60006145fe600e83613a75565b9150614609826145c8565b602082019050919050565b6000602082019050818103600083015261462d816145f1565b9050919050565b7f4d696e74206e6f742073746172746564207965742e0000000000000000000000600082015250565b600061466a601583613a75565b915061467582614634565b602082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b60006146ab82613b25565b91506146b683613b25565b9250828210156146c9576146c861448f565b5b828203905092915050565b60006146df82613b25565b91506146ea83613b25565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147235761472261448f565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b600061478a602283613a75565b91506147958261472e565b604082019050919050565b600060208201905081810360008301526147b98161477d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061481c602f83613a75565b9150614827826147c0565b604082019050919050565b6000602082019050818103600083015261484b8161480f565b9050919050565b600081905092915050565b600061486882613a6a565b6148728185614852565b9350614882818560208601613a86565b80840191505092915050565b60008190508160005260206000209050919050565b600081546148b081614311565b6148ba8186614852565b945060018216600081146148d557600181146148e657614919565b60ff19831686528186019350614919565b6148ef8561488e565b60005b83811015614911578154818901526001820191506020810190506148f2565b838801955050505b50505092915050565b600061492e828661485d565b915061493a828561485d565b915061494682846148a3565b9150819050949350505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614989601483613a75565b915061499482614953565b602082019050919050565b600060208201905081810360008301526149b88161497c565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006149f5601483613a75565b9150614a00826149bf565b602082019050919050565b60006020820190508181036000830152614a24816149e8565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614a61601383613a75565b9150614a6c82614a2b565b602082019050919050565b60006020820190508181036000830152614a9081614a54565b9050919050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b6000614af3602283613a75565b9150614afe82614a97565b604082019050919050565b60006020820190508181036000830152614b2281614ae6565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b6000614b5f601883613a75565b9150614b6a82614b29565b602082019050919050565b60006020820190508181036000830152614b8e81614b52565b9050919050565b60008160601b9050919050565b6000614bad82614b95565b9050919050565b6000614bbf82614ba2565b9050919050565b614bd7614bd282613ba8565b614bb4565b82525050565b6000614be98284614bc6565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614c2e600e83613a75565b9150614c3982614bf8565b602082019050919050565b60006020820190508181036000830152614c5d81614c21565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cc0602683613a75565b9150614ccb82614c64565b604082019050919050565b60006020820190508181036000830152614cef81614cb3565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d1d82614cf6565b614d278185614d01565b9350614d37818560208601613a86565b614d4081613ab9565b840191505092915050565b6000608082019050614d606000830187613bba565b614d6d6020830186613bba565b614d7a6040830185613c7d565b8181036060830152614d8c8184614d12565b905095945050505050565b600081519050614da6816139db565b92915050565b600060208284031215614dc257614dc16139a5565b5b6000614dd084828501614d97565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e1382613b25565b9150614e1e83613b25565b925082614e2e57614e2d614dd9565b5b828204905092915050565b6000614e4482613b25565b9150614e4f83613b25565b925082614e5f57614e5e614dd9565b5b82820690509291505056fea2646970667358221220a168dde39911b057a69832c6fe8b6e7eee999b2017bfed029553fe56c0db44e364736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000071afd498d00000000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a42415943636865636b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442415943000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64744175485755737978765441355675536f4b765571774c43736d675a79364644584567746d6166376835512f00000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): BAYCchecks
Arg [1] : _tokenSymbol (string): BAYC
Arg [2] : _cost (uint256): 2000000000000000
Arg [3] : _maxSupply (uint256): 3333
Arg [4] : _maxMintAmountPerTx (uint256): 10
Arg [5] : _hiddenMetadataUri (string): ipfs://QmdtAuHWUsyxvTA5VuSoKvUqwLCsmgZy6FDXEgtmaf7h5Q/

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 00000000000000000000000000000000000000000000000000071afd498d0000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 42415943636865636b7300000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 4241594300000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [11] : 697066733a2f2f516d64744175485755737978765441355675536f4b76557177
Arg [12] : 4c43736d675a79364644584567746d6166376835512f00000000000000000000


Deployed Bytecode Sourcemap

50492:6157:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32675:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35788:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37291:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36854:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50671:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50882:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55657:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55763:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31924:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38156:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50588:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56061:475;;;;;;;;;;;;;:::i;:::-;;38397:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53482:833;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54960:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55413:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51050:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50763:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50975:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50730:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35596:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51005:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55176:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55313:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33044:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10705:103;;;;;;;;;;;;;:::i;:::-;;55846:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55551:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10054:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50935:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35957:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50839:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52442:871;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37567:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50801:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55040:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55950:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38653:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54422:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51852:582;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50906:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50618:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54873:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37925:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53321:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10963:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32675:305;32777:4;32829:25;32814:40;;;:11;:40;;;;:105;;;;32886:33;32871:48;;;:11;:48;;;;32814:105;:158;;;;32936:36;32960:11;32936:23;:36::i;:::-;32814:158;32794:178;;32675:305;;;:::o;35788:100::-;35842:13;35875:5;35868:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35788:100;:::o;37291:204::-;37359:7;37384:16;37392:7;37384;:16::i;:::-;37379:64;;37409:34;;;;;;;;;;;;;;37379:64;37463:15;:24;37479:7;37463:24;;;;;;;;;;;;;;;;;;;;;37456:31;;37291:204;;;:::o;36854:371::-;36927:13;36943:24;36959:7;36943:15;:24::i;:::-;36927:40;;36988:5;36982:11;;:2;:11;;;36978:48;;37002:24;;;;;;;;;;;;;;36978:48;37059:5;37043:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;37069:37;37086:5;37093:12;:10;:12::i;:::-;37069:16;:37::i;:::-;37068:38;37043:63;37039:138;;;37130:35;;;;;;;;;;;;;;37039:138;37189:28;37198:2;37202:7;37211:5;37189:8;:28::i;:::-;36916:309;36854:371;;:::o;50671:52::-;;;;;;;;;;;;;;;;;:::o;50882:19::-;;;;:::o;55657:100::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55741:10:::1;55729:9;:22;;;;;;;;;;;;:::i;:::-;;55657:100:::0;:::o;55763:77::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55828:6:::1;55819;;:15;;;;;;;;;;;;;;;;;;55763:77:::0;:::o;31924:303::-;31968:7;32193:15;:13;:15::i;:::-;32178:12;;32162:13;;:28;:46;32155:53;;31924:303;:::o;38156:170::-;38290:28;38300:4;38306:2;38310:7;38290:9;:28::i;:::-;38156:170;;;:::o;50588:25::-;;;;:::o;56061:475::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2781:1:::1;3379:7;;:19:::0;3371:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2781:1;3512:7;:18;;;;56358:7:::2;56379;:5;:7::i;:::-;56371:21;;56400;56371:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56357:69;;;56441:2;56433:11;;;::::0;::::2;;56111:425;2737:1:::1;3691:7;:22;;;;56061:475::o:0;38397:185::-;38535:39;38552:4;38558:2;38562:7;38535:39;;;;;;;;;;;;:16;:39::i;:::-;38397:185;;;:::o;53482:833::-;53542:16;53567:23;53593:17;53603:6;53593:9;:17::i;:::-;53567:43;;53617:30;53664:15;53650:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53617:63;;53687:22;53712:15;:13;:15::i;:::-;53687:40;;53734:23;53768:26;53803:478;53828:15;53810;:33;:67;;;;;53864:13;;53847:14;:30;53810:67;53803:478;;;53888:31;53922:11;:27;53934:14;53922:27;;;;;;;;;;;53888:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53965:9;:16;;;53960:287;;54024:1;53998:28;;:9;:14;;;:28;;;53994:94;;54062:9;:14;;;54041:35;;53994:94;54126:6;54104:28;;:18;:28;;;54100:138;;54180:14;54147:13;54161:15;54147:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;54209:17;;;;;:::i;:::-;;;;54100:138;53960:287;54257:16;;;;;:::i;:::-;;;;53879:402;53803:478;;;54296:13;54289:20;;;;;;;53482:833;;;:::o;54960:74::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55023:5:::1;55016:4;:12;;;;54960:74:::0;:::o;55413:132::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55521:18:::1;55501:17;:38;;;;;;;;;;;;:::i;:::-;;55413:132:::0;:::o;51050:27::-;;;;;;;;;;;;;:::o;50763:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50975:25::-;;;;;;;;;;;;;:::o;50730:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35596:125::-;35660:7;35687:21;35700:7;35687:12;:21::i;:::-;:26;;;35680:33;;35596:125;;;:::o;51005:40::-;;;;;;;;;;;;;:::o;55176:131::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55281:20:::1;55259:19;:42;;;;55176:131:::0;:::o;55313:94::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55391:10:::1;55379:9;:22;;;;55313:94:::0;:::o;33044:206::-;33108:7;33149:1;33132:19;;:5;:19;;;33128:60;;33160:28;;;;;;;;;;;;;;33128:60;33214:12;:19;33227:5;33214:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;33206:36;;33199:43;;33044:206;;;:::o;10705:103::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10770:30:::1;10797:1;10770:18;:30::i;:::-;10705:103::o:0;55846:98::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55927:11:::1;55914:10;:24;;;;55846:98:::0;:::o;55551:100::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55635:10:::1;55623:9;:22;;;;;;;;;;;;:::i;:::-;;55551:100:::0;:::o;10054:87::-;10100:7;10127:6;;;;;;;;;;;10120:13;;10054:87;:::o;50935:33::-;;;;:::o;35957:104::-;36013:13;36046:7;36039:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35957:104;:::o;50839:38::-;;;;:::o;52442:871::-;52517:18;;52507:6;:28;;52499:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;52601:9;;52591:6;52574:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:36;;52566:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;52647:6;;;;;;;;;;;52639:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;52690:16;52709:6;52690:25;;52726:11;52740:17;:31;52758:12;:10;:12::i;:::-;52740:31;;;;;;;;;;;;;;;;52726:45;;52794:19;;52785:6;:28;:58;;;;;52834:9;;52817:14;:12;:14::i;:::-;:26;52785:58;52782:335;;;52860:23;52908:6;52886:19;;:28;;;;:::i;:::-;52860:54;;52941:18;52932:6;:27;52929:177;;;53003:18;52994:6;:27;;;;:::i;:::-;52980:41;;52929:177;;;53089:1;53075:15;;52929:177;52845:272;52782:335;53161:4;;53147:11;:18;;;;:::i;:::-;53134:9;:31;;53121:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;53255:6;53220:17;:31;53238:12;:10;:12::i;:::-;53220:31;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;53274:31;53284:12;:10;:12::i;:::-;53298:6;53274:9;:31::i;:::-;52494:819;;52442:871;:::o;37567:287::-;37678:12;:10;:12::i;:::-;37666:24;;:8;:24;;;37662:54;;37699:17;;;;;;;;;;;;;;37662:54;37774:8;37729:18;:32;37748:12;:10;:12::i;:::-;37729:32;;;;;;;;;;;;;;;:42;37762:8;37729:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;37827:8;37798:48;;37813:12;:10;:12::i;:::-;37798:48;;;37837:8;37798:48;;;;;;:::i;:::-;;;;;;;;37567:287;;:::o;50801:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55040:130::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55145:19:::1;55124:18;:40;;;;55040:130:::0;:::o;55950:105::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56043:6:::1;56020:20;;:29;;;;;;;;;;;;;;;;;;55950:105:::0;:::o;38653:369::-;38820:28;38830:4;38836:2;38840:7;38820:9;:28::i;:::-;38863:15;:2;:13;;;:15::i;:::-;:76;;;;;38883:56;38914:4;38920:2;38924:7;38933:5;38883:30;:56::i;:::-;38882:57;38863:76;38859:156;;;38963:40;;;;;;;;;;;;;;38859:156;38653:369;;;;:::o;54422:445::-;54496:13;54526:17;54534:8;54526:7;:17::i;:::-;54518:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;54620:5;54608:17;;:8;;;;;;;;;;;:17;;;54604:64;;54643:17;54636:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54604:64;54676:28;54707:10;:8;:10::i;:::-;54676:41;;54762:1;54737:14;54731:28;:32;:130;;;;;;;;;;;;;;;;;54799:14;54815:19;:8;:17;:19::i;:::-;54836:9;54782:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54731:130;54724:137;;;54422:445;;;;:::o;51852:582::-;51959:11;51549:1;51535:11;:15;:52;;;;;51569:18;;51554:11;:33;;51535:52;51527:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51658:9;;51643:11;51627:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51619:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51992:11:::1;51797;51790:4;;:18;;;;:::i;:::-;51777:9;:31;;51769:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52058:20:::2;;;;;;;;;;;52050:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;52133:16;:30;52150:12;:10;:12::i;:::-;52133:30;;;;;;;;;;;;;;;;;;;;;;;;;52132:31;52124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52199:12;52241;:10;:12::i;:::-;52224:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;52214:41;;;;;;52199:56;;52270:50;52289:12;;52270:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52303:10;;52315:4;52270:18;:50::i;:::-;52262:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;52381:4;52348:16;:30;52365:12;:10;:12::i;:::-;52348:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;52392:36;52402:12;:10;:12::i;:::-;52416:11;52392:9;:36::i;:::-;52005:429;51699:1:::1;51852:582:::0;;;;:::o;50906:24::-;;;;:::o;50618:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;54873:81::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54942:6:::1;54931:8;;:17;;;;;;;;;;;;;;;;;;54873:81:::0;:::o;37925:164::-;38022:4;38046:18;:25;38065:5;38046:25;;;;;;;;;;;;;;;:35;38072:8;38046:35;;;;;;;;;;;;;;;;;;;;;;;;;38039:42;;37925:164;;;;:::o;53321:155::-;53407:11;51549:1;51535:11;:15;:52;;;;;51569:18;;51554:11;:33;;51535:52;51527:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51658:9;;51643:11;51627:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51619:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10285:12:::1;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53437:33:::2;53447:9;53458:11;53437:9;:33::i;:::-;53321:155:::0;;;:::o;10963:201::-;10285:12;:10;:12::i;:::-;10274:23;;:7;:5;:7::i;:::-;:23;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11072:1:::1;11052:22;;:8;:22;;::::0;11044:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11128:28;11147:8;11128:18;:28::i;:::-;10963:201:::0;:::o;22675:157::-;22760:4;22799:25;22784:40;;;:11;:40;;;;22777:47;;22675:157;;;:::o;39277:174::-;39334:4;39377:7;39358:15;:13;:15::i;:::-;:26;;:53;;;;;39398:13;;39388:7;:23;39358:53;:85;;;;;39416:11;:20;39428:7;39416:20;;;;;;;;;;;:27;;;;;;;;;;;;39415:28;39358:85;39351:92;;39277:174;;;:::o;8811:98::-;8864:7;8891:10;8884:17;;8811:98;:::o;47434:196::-;47576:2;47549:15;:24;47565:7;47549:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47614:7;47610:2;47594:28;;47603:5;47594:28;;;;;;;;;;;;47434:196;;;:::o;54321:95::-;54386:7;54321:95;:::o;42377:2130::-;42492:35;42530:21;42543:7;42530:12;:21::i;:::-;42492:59;;42590:4;42568:26;;:13;:18;;;:26;;;42564:67;;42603:28;;;;;;;;;;;;;;42564:67;42644:22;42686:4;42670:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42707:36;42724:4;42730:12;:10;:12::i;:::-;42707:16;:36::i;:::-;42670:73;:126;;;;42784:12;:10;:12::i;:::-;42760:36;;:20;42772:7;42760:11;:20::i;:::-;:36;;;42670:126;42644:153;;42815:17;42810:66;;42841:35;;;;;;;;;;;;;;42810:66;42905:1;42891:16;;:2;:16;;;42887:52;;42916:23;;;;;;;;;;;;;;42887:52;42952:43;42974:4;42980:2;42984:7;42993:1;42952:21;:43::i;:::-;43060:35;43077:1;43081:7;43090:4;43060:8;:35::i;:::-;43421:1;43391:12;:18;43404:4;43391:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43465:1;43437:12;:16;43450:2;43437:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43483:31;43517:11;:20;43529:7;43517:20;;;;;;;;;;;43483:54;;43568:2;43552:8;:13;;;:18;;;;;;;;;;;;;;;;;;43618:15;43585:8;:23;;;:49;;;;;;;;;;;;;;;;;;43886:19;43918:1;43908:7;:11;43886:33;;43934:31;43968:11;:24;43980:11;43968:24;;;;;;;;;;;43934:58;;44036:1;44011:27;;:8;:13;;;;;;;;;;;;:27;;;44007:384;;44221:13;;44206:11;:28;44202:174;;44275:4;44259:8;:13;;;:20;;;;;;;;;;;;;;;;;;44328:13;:28;;;44302:8;:23;;;:54;;;;;;;;;;;;;;;;;;44202:174;44007:384;43366:1036;;;44438:7;44434:2;44419:27;;44428:4;44419:27;;;;;;;;;;;;44457:42;44478:4;44484:2;44488:7;44497:1;44457:20;:42::i;:::-;42481:2026;;42377:2130;;;:::o;34425:1109::-;34487:21;;:::i;:::-;34521:12;34536:7;34521:22;;34604:4;34585:15;:13;:15::i;:::-;:23;;:47;;;;;34619:13;;34612:4;:20;34585:47;34581:886;;;34653:31;34687:11;:17;34699:4;34687:17;;;;;;;;;;;34653:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34728:9;:16;;;34723:729;;34799:1;34773:28;;:9;:14;;;:28;;;34769:101;;34837:9;34830:16;;;;;;34769:101;35172:261;35179:4;35172:261;;;35212:6;;;;;;;;35257:11;:17;35269:4;35257:17;;;;;;;;;;;35245:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35331:1;35305:28;;:9;:14;;;:28;;;35301:109;;35373:9;35366:16;;;;;;35301:109;35172:261;;;34723:729;34634:833;34581:886;35495:31;;;;;;;;;;;;;;34425:1109;;;;:::o;11324:191::-;11398:16;11417:6;;;;;;;;;;;11398:25;;11443:8;11434:6;;:17;;;;;;;;;;;;;;;;;;11498:8;11467:40;;11488:8;11467:40;;;;;;;;;;;;11387:128;11324:191;:::o;32320:283::-;32367:7;32569:15;:13;:15::i;:::-;32553:13;;:31;32546:38;;32320:283;:::o;39459:104::-;39528:27;39538:2;39542:8;39528:27;;;;;;;;;;;;:9;:27::i;:::-;39459:104;;:::o;12723:326::-;12783:4;13040:1;13018:7;:19;;;:23;13011:30;;12723:326;;;:::o;48122:667::-;48285:4;48322:2;48306:36;;;48343:12;:10;:12::i;:::-;48357:4;48363:7;48372:5;48306:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48302:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48557:1;48540:6;:13;:18;48536:235;;48586:40;;;;;;;;;;;;;;48536:235;48729:6;48723:13;48714:6;48710:2;48706:15;48699:38;48302:480;48435:45;;;48425:55;;;:6;:55;;;;48418:62;;;48122:667;;;;;;:::o;56542:104::-;56602:13;56631:9;56624:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56542:104;:::o;6405:723::-;6461:13;6691:1;6682:5;:10;6678:53;;6709:10;;;;;;;;;;;;;;;;;;;;;6678:53;6741:12;6756:5;6741:20;;6772:14;6797:78;6812:1;6804:4;:9;6797:78;;6830:8;;;;;:::i;:::-;;;;6861:2;6853:10;;;;;:::i;:::-;;;6797:78;;;6885:19;6917:6;6907:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6885:39;;6935:154;6951:1;6942:5;:10;6935:154;;6979:1;6969:11;;;;;:::i;:::-;;;7046:2;7038:5;:10;;;;:::i;:::-;7025:2;:24;;;;:::i;:::-;7012:39;;6995:6;7002;6995:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;7075:2;7066:11;;;;;:::i;:::-;;;6935:154;;;7113:6;7099:21;;;;;6405:723;;;;:::o;4606:190::-;4731:4;4784;4755:25;4768:5;4775:4;4755:12;:25::i;:::-;:33;4748:40;;4606:190;;;;;:::o;49437:159::-;;;;;:::o;50255:158::-;;;;;:::o;39926:163::-;40049:32;40055:2;40059:8;40069:5;40076:4;40049:5;:32::i;:::-;39926:163;;;:::o;5158:675::-;5241:7;5261:20;5284:4;5261:27;;5304:9;5299:497;5323:5;:12;5319:1;:16;5299:497;;;5357:20;5380:5;5386:1;5380:8;;;;;;;;:::i;:::-;;;;;;;;5357:31;;5423:12;5407;:28;5403:382;;5550:42;5565:12;5579;5550:14;:42::i;:::-;5535:57;;5403:382;;;5727:42;5742:12;5756;5727:14;:42::i;:::-;5712:57;;5403:382;5342:454;5337:3;;;;;:::i;:::-;;;;5299:497;;;;5813:12;5806:19;;;5158:675;;;;:::o;40348:1775::-;40487:20;40510:13;;40487:36;;40552:1;40538:16;;:2;:16;;;40534:48;;40563:19;;;;;;;;;;;;;;40534:48;40609:1;40597:8;:13;40593:44;;40619:18;;;;;;;;;;;;;;40593:44;40650:61;40680:1;40684:2;40688:12;40702:8;40650:21;:61::i;:::-;41023:8;40988:12;:16;41001:2;40988:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41087:8;41047:12;:16;41060:2;41047:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41146:2;41113:11;:25;41125:12;41113:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41213:15;41163:11;:25;41175:12;41163:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;41246:20;41269:12;41246:35;;41296:11;41325:8;41310:12;:23;41296:37;;41354:4;:23;;;;;41362:15;:2;:13;;;:15::i;:::-;41354:23;41350:641;;;41398:314;41454:12;41450:2;41429:38;;41446:1;41429:38;;;;;;;;;;;;41495:69;41534:1;41538:2;41542:14;;;;;;41558:5;41495:30;:69::i;:::-;41490:174;;41600:40;;;;;;;;;;;;;;41490:174;41707:3;41691:12;:19;41398:314;;41793:12;41776:13;;:29;41772:43;;41807:8;;;41772:43;41350:641;;;41856:120;41912:14;;;;;;41908:2;41887:40;;41904:1;41887:40;;;;;;;;;;;;41971:3;41955:12;:19;41856:120;;41350:641;42021:12;42005:13;:28;;;;40963:1082;;42055:60;42084:1;42088:2;42092:12;42106:8;42055:20;:60::i;:::-;40476:1647;40348:1775;;;;:::o;5841:224::-;5909:13;5972:1;5966:4;5959:15;6001:1;5995:4;5988:15;6042:4;6036;6026:21;6017:30;;5841:224;;;;:::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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:329::-;4997:6;5046:2;5034:9;5025:7;5021:23;5017:32;5014:119;;;5052:79;;:::i;:::-;5014:119;5172:1;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5143:117;4938:329;;;;:::o;5273:118::-;5360:24;5378:5;5360:24;:::i;:::-;5355:3;5348:37;5273:118;;:::o;5397:222::-;5490:4;5528:2;5517:9;5513:18;5505:26;;5541:71;5609:1;5598:9;5594:17;5585:6;5541:71;:::i;:::-;5397:222;;;;:::o;5625:117::-;5734:1;5731;5724:12;5748:117;5857:1;5854;5847:12;5871:180;5919:77;5916:1;5909:88;6016:4;6013:1;6006:15;6040:4;6037:1;6030:15;6057:281;6140:27;6162:4;6140:27;:::i;:::-;6132:6;6128:40;6270:6;6258:10;6255:22;6234:18;6222:10;6219:34;6216:62;6213:88;;;6281:18;;:::i;:::-;6213:88;6321:10;6317:2;6310:22;6100:238;6057:281;;:::o;6344:129::-;6378:6;6405:20;;:::i;:::-;6395:30;;6434:33;6462:4;6454:6;6434:33;:::i;:::-;6344:129;;;:::o;6479:308::-;6541:4;6631:18;6623:6;6620:30;6617:56;;;6653:18;;:::i;:::-;6617:56;6691:29;6713:6;6691:29;:::i;:::-;6683:37;;6775:4;6769;6765:15;6757:23;;6479:308;;;:::o;6793:154::-;6877:6;6872:3;6867;6854:30;6939:1;6930:6;6925:3;6921:16;6914:27;6793:154;;;:::o;6953:412::-;7031:5;7056:66;7072:49;7114:6;7072:49;:::i;:::-;7056:66;:::i;:::-;7047:75;;7145:6;7138:5;7131:21;7183:4;7176:5;7172:16;7221:3;7212:6;7207:3;7203:16;7200:25;7197:112;;;7228:79;;:::i;:::-;7197:112;7318:41;7352:6;7347:3;7342;7318:41;:::i;:::-;7037:328;6953:412;;;;;:::o;7385:340::-;7441:5;7490:3;7483:4;7475:6;7471:17;7467:27;7457:122;;7498:79;;:::i;:::-;7457:122;7615:6;7602:20;7640:79;7715:3;7707:6;7700:4;7692:6;7688:17;7640:79;:::i;:::-;7631:88;;7447:278;7385:340;;;;:::o;7731:509::-;7800:6;7849:2;7837:9;7828:7;7824:23;7820:32;7817:119;;;7855:79;;:::i;:::-;7817:119;8003:1;7992:9;7988:17;7975:31;8033:18;8025:6;8022:30;8019:117;;;8055:79;;:::i;:::-;8019:117;8160:63;8215:7;8206:6;8195:9;8191:22;8160:63;:::i;:::-;8150:73;;7946:287;7731:509;;;;:::o;8246:116::-;8316:21;8331:5;8316:21;:::i;:::-;8309:5;8306:32;8296:60;;8352:1;8349;8342:12;8296:60;8246:116;:::o;8368:133::-;8411:5;8449:6;8436:20;8427:29;;8465:30;8489:5;8465:30;:::i;:::-;8368:133;;;;:::o;8507:323::-;8563:6;8612:2;8600:9;8591:7;8587:23;8583:32;8580:119;;;8618:79;;:::i;:::-;8580:119;8738:1;8763:50;8805:7;8796:6;8785:9;8781:22;8763:50;:::i;:::-;8753:60;;8709:114;8507:323;;;;:::o;8836:619::-;8913:6;8921;8929;8978:2;8966:9;8957:7;8953:23;8949:32;8946:119;;;8984:79;;:::i;:::-;8946:119;9104:1;9129:53;9174:7;9165:6;9154:9;9150:22;9129:53;:::i;:::-;9119:63;;9075:117;9231:2;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9202:118;9359:2;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9330:118;8836:619;;;;;:::o;9461:77::-;9498:7;9527:5;9516:16;;9461:77;;;:::o;9544:118::-;9631:24;9649:5;9631:24;:::i;:::-;9626:3;9619:37;9544:118;;:::o;9668:222::-;9761:4;9799:2;9788:9;9784:18;9776:26;;9812:71;9880:1;9869:9;9865:17;9856:6;9812:71;:::i;:::-;9668:222;;;;:::o;9896:114::-;9963:6;9997:5;9991:12;9981:22;;9896:114;;;:::o;10016:184::-;10115:11;10149:6;10144:3;10137:19;10189:4;10184:3;10180:14;10165:29;;10016:184;;;;:::o;10206:132::-;10273:4;10296:3;10288:11;;10326:4;10321:3;10317:14;10309:22;;10206:132;;;:::o;10344:108::-;10421:24;10439:5;10421:24;:::i;:::-;10416:3;10409:37;10344:108;;:::o;10458:179::-;10527:10;10548:46;10590:3;10582:6;10548:46;:::i;:::-;10626:4;10621:3;10617:14;10603:28;;10458:179;;;;:::o;10643:113::-;10713:4;10745;10740:3;10736:14;10728:22;;10643:113;;;:::o;10792:732::-;10911:3;10940:54;10988:5;10940:54;:::i;:::-;11010:86;11089:6;11084:3;11010:86;:::i;:::-;11003:93;;11120:56;11170:5;11120:56;:::i;:::-;11199:7;11230:1;11215:284;11240:6;11237:1;11234:13;11215:284;;;11316:6;11310:13;11343:63;11402:3;11387:13;11343:63;:::i;:::-;11336:70;;11429:60;11482:6;11429:60;:::i;:::-;11419:70;;11275:224;11262:1;11259;11255:9;11250:14;;11215:284;;;11219:14;11515:3;11508:10;;10916:608;;;10792:732;;;;:::o;11530:373::-;11673:4;11711:2;11700:9;11696:18;11688:26;;11760:9;11754:4;11750:20;11746:1;11735:9;11731:17;11724:47;11788:108;11891:4;11882:6;11788:108;:::i;:::-;11780:116;;11530:373;;;;:::o;11909:122::-;11982:24;12000:5;11982:24;:::i;:::-;11975:5;11972:35;11962:63;;12021:1;12018;12011:12;11962:63;11909:122;:::o;12037:139::-;12083:5;12121:6;12108:20;12099:29;;12137:33;12164:5;12137:33;:::i;:::-;12037:139;;;;:::o;12182:329::-;12241:6;12290:2;12278:9;12269:7;12265:23;12261:32;12258:119;;;12296:79;;:::i;:::-;12258:119;12416:1;12441:53;12486:7;12477:6;12466:9;12462:22;12441:53;:::i;:::-;12431:63;;12387:117;12182:329;;;;:::o;12517:468::-;12582:6;12590;12639:2;12627:9;12618:7;12614:23;12610:32;12607:119;;;12645:79;;:::i;:::-;12607:119;12765:1;12790:53;12835:7;12826:6;12815:9;12811:22;12790:53;:::i;:::-;12780:63;;12736:117;12892:2;12918:50;12960:7;12951:6;12940:9;12936:22;12918:50;:::i;:::-;12908:60;;12863:115;12517:468;;;;;:::o;12991:307::-;13052:4;13142:18;13134:6;13131:30;13128:56;;;13164:18;;:::i;:::-;13128:56;13202:29;13224:6;13202:29;:::i;:::-;13194:37;;13286:4;13280;13276:15;13268:23;;12991:307;;;:::o;13304:410::-;13381:5;13406:65;13422:48;13463:6;13422:48;:::i;:::-;13406:65;:::i;:::-;13397:74;;13494:6;13487:5;13480:21;13532:4;13525:5;13521:16;13570:3;13561:6;13556:3;13552:16;13549:25;13546:112;;;13577:79;;:::i;:::-;13546:112;13667:41;13701:6;13696:3;13691;13667:41;:::i;:::-;13387:327;13304:410;;;;;:::o;13733:338::-;13788:5;13837:3;13830:4;13822:6;13818:17;13814:27;13804:122;;13845:79;;:::i;:::-;13804:122;13962:6;13949:20;13987:78;14061:3;14053:6;14046:4;14038:6;14034:17;13987:78;:::i;:::-;13978:87;;13794:277;13733:338;;;;:::o;14077:943::-;14172:6;14180;14188;14196;14245:3;14233:9;14224:7;14220:23;14216:33;14213:120;;;14252:79;;:::i;:::-;14213:120;14372:1;14397:53;14442:7;14433:6;14422:9;14418:22;14397:53;:::i;:::-;14387:63;;14343:117;14499:2;14525:53;14570:7;14561:6;14550:9;14546:22;14525:53;:::i;:::-;14515:63;;14470:118;14627:2;14653:53;14698:7;14689:6;14678:9;14674:22;14653:53;:::i;:::-;14643:63;;14598:118;14783:2;14772:9;14768:18;14755:32;14814:18;14806:6;14803:30;14800:117;;;14836:79;;:::i;:::-;14800:117;14941:62;14995:7;14986:6;14975:9;14971:22;14941:62;:::i;:::-;14931:72;;14726:287;14077:943;;;;;;;:::o;15026:117::-;15135:1;15132;15125:12;15149:117;15258:1;15255;15248:12;15289:568;15362:8;15372:6;15422:3;15415:4;15407:6;15403:17;15399:27;15389:122;;15430:79;;:::i;:::-;15389:122;15543:6;15530:20;15520:30;;15573:18;15565:6;15562:30;15559:117;;;15595:79;;:::i;:::-;15559:117;15709:4;15701:6;15697:17;15685:29;;15763:3;15755:4;15747:6;15743:17;15733:8;15729:32;15726:41;15723:128;;;15770:79;;:::i;:::-;15723:128;15289:568;;;;;:::o;15863:704::-;15958:6;15966;15974;16023:2;16011:9;16002:7;15998:23;15994:32;15991:119;;;16029:79;;:::i;:::-;15991:119;16149:1;16174:53;16219:7;16210:6;16199:9;16195:22;16174:53;:::i;:::-;16164:63;;16120:117;16304:2;16293:9;16289:18;16276:32;16335:18;16327:6;16324:30;16321:117;;;16357:79;;:::i;:::-;16321:117;16470:80;16542:7;16533:6;16522:9;16518:22;16470:80;:::i;:::-;16452:98;;;;16247:313;15863:704;;;;;:::o;16573:474::-;16641:6;16649;16698:2;16686:9;16677:7;16673:23;16669:32;16666:119;;;16704:79;;:::i;:::-;16666:119;16824:1;16849:53;16894:7;16885:6;16874:9;16870:22;16849:53;:::i;:::-;16839:63;;16795:117;16951:2;16977:53;17022:7;17013:6;17002:9;16998:22;16977:53;:::i;:::-;16967:63;;16922:118;16573:474;;;;;:::o;17053:::-;17121:6;17129;17178:2;17166:9;17157:7;17153:23;17149:32;17146:119;;;17184:79;;:::i;:::-;17146:119;17304:1;17329:53;17374:7;17365:6;17354:9;17350:22;17329:53;:::i;:::-;17319:63;;17275:117;17431:2;17457:53;17502:7;17493:6;17482:9;17478:22;17457:53;:::i;:::-;17447:63;;17402:118;17053:474;;;;;:::o;17533:180::-;17581:77;17578:1;17571:88;17678:4;17675:1;17668:15;17702:4;17699:1;17692:15;17719:320;17763:6;17800:1;17794:4;17790:12;17780:22;;17847:1;17841:4;17837:12;17868:18;17858:81;;17924:4;17916:6;17912:17;17902:27;;17858:81;17986:2;17978:6;17975:14;17955:18;17952:38;17949:84;;18005:18;;:::i;:::-;17949:84;17770:269;17719:320;;;:::o;18045:182::-;18185:34;18181:1;18173:6;18169:14;18162:58;18045:182;:::o;18233:366::-;18375:3;18396:67;18460:2;18455:3;18396:67;:::i;:::-;18389:74;;18472:93;18561:3;18472:93;:::i;:::-;18590:2;18585:3;18581:12;18574:19;;18233:366;;;:::o;18605:419::-;18771:4;18809:2;18798:9;18794:18;18786:26;;18858:9;18852:4;18848:20;18844:1;18833:9;18829:17;18822:47;18886:131;19012:4;18886:131;:::i;:::-;18878:139;;18605:419;;;:::o;19030:181::-;19170:33;19166:1;19158:6;19154:14;19147:57;19030:181;:::o;19217:366::-;19359:3;19380:67;19444:2;19439:3;19380:67;:::i;:::-;19373:74;;19456:93;19545:3;19456:93;:::i;:::-;19574:2;19569:3;19565:12;19558:19;;19217:366;;;:::o;19589:419::-;19755:4;19793:2;19782:9;19778:18;19770:26;;19842:9;19836:4;19832:20;19828:1;19817:9;19813:17;19806:47;19870:131;19996:4;19870:131;:::i;:::-;19862:139;;19589:419;;;:::o;20014:147::-;20115:11;20152:3;20137:18;;20014:147;;;;:::o;20167:114::-;;:::o;20287:398::-;20446:3;20467:83;20548:1;20543:3;20467:83;:::i;:::-;20460:90;;20559:93;20648:3;20559:93;:::i;:::-;20677:1;20672:3;20668:11;20661:18;;20287:398;;;:::o;20691:379::-;20875:3;20897:147;21040:3;20897:147;:::i;:::-;20890:154;;21061:3;21054:10;;20691:379;;;:::o;21076:180::-;21124:77;21121:1;21114:88;21221:4;21218:1;21211:15;21245:4;21242:1;21235:15;21262:180;21310:77;21307:1;21300:88;21407:4;21404:1;21397:15;21431:4;21428:1;21421:15;21448:233;21487:3;21510:24;21528:5;21510:24;:::i;:::-;21501:33;;21556:66;21549:5;21546:77;21543:103;;21626:18;;:::i;:::-;21543:103;21673:1;21666:5;21662:13;21655:20;;21448:233;;;:::o;21687:172::-;21827:24;21823:1;21815:6;21811:14;21804:48;21687:172;:::o;21865:366::-;22007:3;22028:67;22092:2;22087:3;22028:67;:::i;:::-;22021:74;;22104:93;22193:3;22104:93;:::i;:::-;22222:2;22217:3;22213:12;22206:19;;21865:366;;;:::o;22237:419::-;22403:4;22441:2;22430:9;22426:18;22418:26;;22490:9;22484:4;22480:20;22476:1;22465:9;22461:17;22454:47;22518:131;22644:4;22518:131;:::i;:::-;22510:139;;22237:419;;;:::o;22662:305::-;22702:3;22721:20;22739:1;22721:20;:::i;:::-;22716:25;;22755:20;22773:1;22755:20;:::i;:::-;22750:25;;22909:1;22841:66;22837:74;22834:1;22831:81;22828:107;;;22915:18;;:::i;:::-;22828:107;22959:1;22956;22952:9;22945:16;;22662:305;;;;:::o;22973:164::-;23113:16;23109:1;23101:6;23097:14;23090:40;22973:164;:::o;23143:366::-;23285:3;23306:67;23370:2;23365:3;23306:67;:::i;:::-;23299:74;;23382:93;23471:3;23382:93;:::i;:::-;23500:2;23495:3;23491:12;23484:19;;23143:366;;;:::o;23515:419::-;23681:4;23719:2;23708:9;23704:18;23696:26;;23768:9;23762:4;23758:20;23754:1;23743:9;23739:17;23732:47;23796:131;23922:4;23796:131;:::i;:::-;23788:139;;23515:419;;;:::o;23940:171::-;24080:23;24076:1;24068:6;24064:14;24057:47;23940:171;:::o;24117:366::-;24259:3;24280:67;24344:2;24339:3;24280:67;:::i;:::-;24273:74;;24356:93;24445:3;24356:93;:::i;:::-;24474:2;24469:3;24465:12;24458:19;;24117:366;;;:::o;24489:419::-;24655:4;24693:2;24682:9;24678:18;24670:26;;24742:9;24736:4;24732:20;24728:1;24717:9;24713:17;24706:47;24770:131;24896:4;24770:131;:::i;:::-;24762:139;;24489:419;;;:::o;24914:191::-;24954:4;24974:20;24992:1;24974:20;:::i;:::-;24969:25;;25008:20;25026:1;25008:20;:::i;:::-;25003:25;;25047:1;25044;25041:8;25038:34;;;25052:18;;:::i;:::-;25038:34;25097:1;25094;25090:9;25082:17;;24914:191;;;;:::o;25111:348::-;25151:7;25174:20;25192:1;25174:20;:::i;:::-;25169:25;;25208:20;25226:1;25208:20;:::i;:::-;25203:25;;25396:1;25328:66;25324:74;25321:1;25318:81;25313:1;25306:9;25299:17;25295:105;25292:131;;;25403:18;;:::i;:::-;25292:131;25451:1;25448;25444:9;25433:20;;25111:348;;;;:::o;25465:221::-;25605:34;25601:1;25593:6;25589:14;25582:58;25674:4;25669:2;25661:6;25657:15;25650:29;25465:221;:::o;25692:366::-;25834:3;25855:67;25919:2;25914:3;25855:67;:::i;:::-;25848:74;;25931:93;26020:3;25931:93;:::i;:::-;26049:2;26044:3;26040:12;26033:19;;25692:366;;;:::o;26064:419::-;26230:4;26268:2;26257:9;26253:18;26245:26;;26317:9;26311:4;26307:20;26303:1;26292:9;26288:17;26281:47;26345:131;26471:4;26345:131;:::i;:::-;26337:139;;26064:419;;;:::o;26489:234::-;26629:34;26625:1;26617:6;26613:14;26606:58;26698:17;26693:2;26685:6;26681:15;26674:42;26489:234;:::o;26729:366::-;26871:3;26892:67;26956:2;26951:3;26892:67;:::i;:::-;26885:74;;26968:93;27057:3;26968:93;:::i;:::-;27086:2;27081:3;27077:12;27070:19;;26729:366;;;:::o;27101:419::-;27267:4;27305:2;27294:9;27290:18;27282:26;;27354:9;27348:4;27344:20;27340:1;27329:9;27325:17;27318:47;27382:131;27508:4;27382:131;:::i;:::-;27374:139;;27101:419;;;:::o;27526:148::-;27628:11;27665:3;27650:18;;27526:148;;;;:::o;27680:377::-;27786:3;27814:39;27847:5;27814:39;:::i;:::-;27869:89;27951:6;27946:3;27869:89;:::i;:::-;27862:96;;27967:52;28012:6;28007:3;28000:4;27993:5;27989:16;27967:52;:::i;:::-;28044:6;28039:3;28035:16;28028:23;;27790:267;27680:377;;;;:::o;28063:141::-;28112:4;28135:3;28127:11;;28158:3;28155:1;28148:14;28192:4;28189:1;28179:18;28171:26;;28063:141;;;:::o;28234:845::-;28337:3;28374:5;28368:12;28403:36;28429:9;28403:36;:::i;:::-;28455:89;28537:6;28532:3;28455:89;:::i;:::-;28448:96;;28575:1;28564:9;28560:17;28591:1;28586:137;;;;28737:1;28732:341;;;;28553:520;;28586:137;28670:4;28666:9;28655;28651:25;28646:3;28639:38;28706:6;28701:3;28697:16;28690:23;;28586:137;;28732:341;28799:38;28831:5;28799:38;:::i;:::-;28859:1;28873:154;28887:6;28884:1;28881:13;28873:154;;;28961:7;28955:14;28951:1;28946:3;28942:11;28935:35;29011:1;29002:7;28998:15;28987:26;;28909:4;28906:1;28902:12;28897:17;;28873:154;;;29056:6;29051:3;29047:16;29040:23;;28739:334;;28553:520;;28341:738;;28234:845;;;;:::o;29085:589::-;29310:3;29332:95;29423:3;29414:6;29332:95;:::i;:::-;29325:102;;29444:95;29535:3;29526:6;29444:95;:::i;:::-;29437:102;;29556:92;29644:3;29635:6;29556:92;:::i;:::-;29549:99;;29665:3;29658:10;;29085:589;;;;;;:::o;29680:170::-;29820:22;29816:1;29808:6;29804:14;29797:46;29680:170;:::o;29856:366::-;29998:3;30019:67;30083:2;30078:3;30019:67;:::i;:::-;30012:74;;30095:93;30184:3;30095:93;:::i;:::-;30213:2;30208:3;30204:12;30197:19;;29856:366;;;:::o;30228:419::-;30394:4;30432:2;30421:9;30417:18;30409:26;;30481:9;30475:4;30471:20;30467:1;30456:9;30452:17;30445:47;30509:131;30635:4;30509:131;:::i;:::-;30501:139;;30228:419;;;:::o;30653:170::-;30793:22;30789:1;30781:6;30777:14;30770:46;30653:170;:::o;30829:366::-;30971:3;30992:67;31056:2;31051:3;30992:67;:::i;:::-;30985:74;;31068:93;31157:3;31068:93;:::i;:::-;31186:2;31181:3;31177:12;31170:19;;30829:366;;;:::o;31201:419::-;31367:4;31405:2;31394:9;31390:18;31382:26;;31454:9;31448:4;31444:20;31440:1;31429:9;31425:17;31418:47;31482:131;31608:4;31482:131;:::i;:::-;31474:139;;31201:419;;;:::o;31626:169::-;31766:21;31762:1;31754:6;31750:14;31743:45;31626:169;:::o;31801:366::-;31943:3;31964:67;32028:2;32023:3;31964:67;:::i;:::-;31957:74;;32040:93;32129:3;32040:93;:::i;:::-;32158:2;32153:3;32149:12;32142:19;;31801:366;;;:::o;32173:419::-;32339:4;32377:2;32366:9;32362:18;32354:26;;32426:9;32420:4;32416:20;32412:1;32401:9;32397:17;32390:47;32454:131;32580:4;32454:131;:::i;:::-;32446:139;;32173:419;;;:::o;32598:221::-;32738:34;32734:1;32726:6;32722:14;32715:58;32807:4;32802:2;32794:6;32790:15;32783:29;32598:221;:::o;32825:366::-;32967:3;32988:67;33052:2;33047:3;32988:67;:::i;:::-;32981:74;;33064:93;33153:3;33064:93;:::i;:::-;33182:2;33177:3;33173:12;33166:19;;32825:366;;;:::o;33197:419::-;33363:4;33401:2;33390:9;33386:18;33378:26;;33450:9;33444:4;33440:20;33436:1;33425:9;33421:17;33414:47;33478:131;33604:4;33478:131;:::i;:::-;33470:139;;33197:419;;;:::o;33622:174::-;33762:26;33758:1;33750:6;33746:14;33739:50;33622:174;:::o;33802:366::-;33944:3;33965:67;34029:2;34024:3;33965:67;:::i;:::-;33958:74;;34041:93;34130:3;34041:93;:::i;:::-;34159:2;34154:3;34150:12;34143:19;;33802:366;;;:::o;34174:419::-;34340:4;34378:2;34367:9;34363:18;34355:26;;34427:9;34421:4;34417:20;34413:1;34402:9;34398:17;34391:47;34455:131;34581:4;34455:131;:::i;:::-;34447:139;;34174:419;;;:::o;34599:94::-;34632:8;34680:5;34676:2;34672:14;34651:35;;34599:94;;;:::o;34699:::-;34738:7;34767:20;34781:5;34767:20;:::i;:::-;34756:31;;34699:94;;;:::o;34799:100::-;34838:7;34867:26;34887:5;34867:26;:::i;:::-;34856:37;;34799:100;;;:::o;34905:157::-;35010:45;35030:24;35048:5;35030:24;:::i;:::-;35010:45;:::i;:::-;35005:3;34998:58;34905:157;;:::o;35068:256::-;35180:3;35195:75;35266:3;35257:6;35195:75;:::i;:::-;35295:2;35290:3;35286:12;35279:19;;35315:3;35308:10;;35068:256;;;;:::o;35330:164::-;35470:16;35466:1;35458:6;35454:14;35447:40;35330:164;:::o;35500:366::-;35642:3;35663:67;35727:2;35722:3;35663:67;:::i;:::-;35656:74;;35739:93;35828:3;35739:93;:::i;:::-;35857:2;35852:3;35848:12;35841:19;;35500:366;;;:::o;35872:419::-;36038:4;36076:2;36065:9;36061:18;36053:26;;36125:9;36119:4;36115:20;36111:1;36100:9;36096:17;36089:47;36153:131;36279:4;36153:131;:::i;:::-;36145:139;;35872:419;;;:::o;36297:225::-;36437:34;36433:1;36425:6;36421:14;36414:58;36506:8;36501:2;36493:6;36489:15;36482:33;36297:225;:::o;36528:366::-;36670:3;36691:67;36755:2;36750:3;36691:67;:::i;:::-;36684:74;;36767:93;36856:3;36767:93;:::i;:::-;36885:2;36880:3;36876:12;36869:19;;36528:366;;;:::o;36900:419::-;37066:4;37104:2;37093:9;37089:18;37081:26;;37153:9;37147:4;37143:20;37139:1;37128:9;37124:17;37117:47;37181:131;37307:4;37181:131;:::i;:::-;37173:139;;36900:419;;;:::o;37325:98::-;37376:6;37410:5;37404:12;37394:22;;37325:98;;;:::o;37429:168::-;37512:11;37546:6;37541:3;37534:19;37586:4;37581:3;37577:14;37562:29;;37429:168;;;;:::o;37603:360::-;37689:3;37717:38;37749:5;37717:38;:::i;:::-;37771:70;37834:6;37829:3;37771:70;:::i;:::-;37764:77;;37850:52;37895:6;37890:3;37883:4;37876:5;37872:16;37850:52;:::i;:::-;37927:29;37949:6;37927:29;:::i;:::-;37922:3;37918:39;37911:46;;37693:270;37603:360;;;;:::o;37969:640::-;38164:4;38202:3;38191:9;38187:19;38179:27;;38216:71;38284:1;38273:9;38269:17;38260:6;38216:71;:::i;:::-;38297:72;38365:2;38354:9;38350:18;38341:6;38297:72;:::i;:::-;38379;38447:2;38436:9;38432:18;38423:6;38379:72;:::i;:::-;38498:9;38492:4;38488:20;38483:2;38472:9;38468:18;38461:48;38526:76;38597:4;38588:6;38526:76;:::i;:::-;38518:84;;37969:640;;;;;;;:::o;38615:141::-;38671:5;38702:6;38696:13;38687:22;;38718:32;38744:5;38718:32;:::i;:::-;38615:141;;;;:::o;38762:349::-;38831:6;38880:2;38868:9;38859:7;38855:23;38851:32;38848:119;;;38886:79;;:::i;:::-;38848:119;39006:1;39031:63;39086:7;39077:6;39066:9;39062:22;39031:63;:::i;:::-;39021:73;;38977:127;38762:349;;;;:::o;39117:180::-;39165:77;39162:1;39155:88;39262:4;39259:1;39252:15;39286:4;39283:1;39276:15;39303:185;39343:1;39360:20;39378:1;39360:20;:::i;:::-;39355:25;;39394:20;39412:1;39394:20;:::i;:::-;39389:25;;39433:1;39423:35;;39438:18;;:::i;:::-;39423:35;39480:1;39477;39473:9;39468:14;;39303:185;;;;:::o;39494:176::-;39526:1;39543:20;39561:1;39543:20;:::i;:::-;39538:25;;39577:20;39595:1;39577:20;:::i;:::-;39572:25;;39616:1;39606:35;;39621:18;;:::i;:::-;39606:35;39662:1;39659;39655:9;39650:14;;39494:176;;;;:::o

Swarm Source

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