ETH Price: $3,450.43 (+1.54%)
Gas: 12 Gwei

Token

Cube Monkeys Business Cards (CMBC)
 

Overview

Max Total Supply

10,000 CMBC

Holders

1,150

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CMBC
0x07e9c05c8904aff02852e078ba135eec246ab6c5
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:
CubeMonkeysBusinessCards

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT



// File: @openzeppelin/contracts/utils/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: @openzeppelin/contracts/utils/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: @openzeppelin/contracts/utils/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: @openzeppelin/contracts/token/ERC721/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: @openzeppelin/contracts/utils/introspection/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: @openzeppelin/contracts/utils/introspection/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: @openzeppelin/contracts/token/ERC721/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: @openzeppelin/contracts/token/ERC721/extensions/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: contracts/new.sol




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 {}
}
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)
        }
    }
}
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);
    }
}
    pragma solidity ^0.8.7;
    
    contract CubeMonkeysBusinessCards is ERC721A, Ownable {
    using Strings for uint256;


  string private uriPrefix = "ipfs://QmXLUeRkMWF4ET4R37U9MrBwbNZY8zHiWstAEZrKJMSgCp/" ;
  string private uriSuffix = ".json";
  string public hiddenMetadataUri;

  
  

  uint256 public cost = 0.0 ether;


  uint16 public constant maxSupply = 10000;
 
                                                             
  bool public WLpaused = true;
  bool public paused = true;
  
  mapping (address => uint8) public NFTPerWLAddress;
   mapping (address => uint8) public NFTPerAddress;
  uint8 public maxMintAmountPerWallet = 10; 

  
  bytes32 public whitelistMerkleRoot = 0xc9fc5d9d2b8b0d9c641b338271855d94ad88ad95a92d31a69cbf0db57a771b24;
  bool public revealed = false;

  constructor() ERC721A("Cube Monkeys Business Cards", "CMBC") {
      setHiddenMetadataUri("ipfs://QmZcbNbT3sC84UK1ddF8mzhWhvdN9Ad7XDKQALjdLgCDNM/hidden.json");
  }

  
 
  function mint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    uint8 Nft = NFTPerAddress[msg.sender];
    require(_mintAmount + Nft <= maxMintAmountPerWallet, "Exceeds max Nfts allowed per wallet.");

    require(!paused, "The contract is paused!");

    if(Nft == 0)
    {
    require(msg.value >= cost * (_mintAmount - 1 ), "Insufficient funds!");
    }
    else {
       require(msg.value >= cost * _mintAmount , "Insufficient funds!");
    }
    _safeMint(msg.sender , _mintAmount);
    NFTPerAddress[msg.sender] = _mintAmount + Nft;
     
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

   
  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 setWLPaused() external onlyOwner {
    WLpaused = !WLpaused;
  }



 function setMaxMintAmountPerWallet(uint8 _limit) external onlyOwner{
    maxMintAmountPerWallet = _limit;
   delete _limit;

}
function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    
    function getLeafNode(address _leaf) internal pure returns (bytes32 temp)
    {
        return keccak256(abi.encodePacked(_leaf));
    }
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
    }

function whitelistMint(uint8 _mintAmount, bytes32[] calldata merkleProof) external payable {
        
       bytes32  leafnode = getLeafNode(msg.sender);
        uint8 _txPerAddress = NFTPerWLAddress[msg.sender];
       require(_verify(leafnode ,   merkleProof   ),  "Invalid merkle proof");
       require (_txPerAddress + _mintAmount <= maxMintAmountPerWallet, "Exceeds max nft allowed per address");
      
  
    require(!WLpaused, "Whitelist minting is over!");

      if(_txPerAddress >= 2)
    {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    else {
         uint8 costAmount = _mintAmount + _txPerAddress;
        if(costAmount > 2)
       {
        costAmount = costAmount - 2;
        require(msg.value >= cost * costAmount, "Insufficient funds!");
       }
       
         
    }

   
     _safeMint(msg.sender , _mintAmount);
      NFTPerWLAddress[msg.sender] =_txPerAddress + _mintAmount;
     
      delete _mintAmount;
       delete _txPerAddress;
    
    }

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


  function setPaused() external onlyOwner {
    paused = !paused;
    WLpaused = true;
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

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

 

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(msg.sender).transfer(_balance ); 
       
  }


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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"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":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerWLAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806036815260200162004d51603691396009908051906020019062000035929190620003d9565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908051906020019062000083929190620003d9565b506000600c556001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff021916908315150217905550600a601060006101000a81548160ff021916908360ff1602179055507fc9fc5d9d2b8b0d9c641b338271855d94ad88ad95a92d31a69cbf0db57a771b2460001b6011556000601260006101000a81548160ff0219169083151502179055503480156200012a57600080fd5b506040518060400160405280601b81526020017f43756265204d6f6e6b65797320427573696e65737320436172647300000000008152506040518060400160405280600481526020017f434d4243000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001af929190620003d9565b508060039080519060200190620001c8929190620003d9565b50620001d96200023160201b60201c565b600081905550505062000201620001f56200023660201b60201c565b6200023e60201b60201c565b6200022b60405180608001604052806041815260200162004d10604191396200030460201b60201c565b62000571565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003146200023660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200033a620003af60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000393576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038a90620004b0565b60405180910390fd5b80600b9080519060200190620003ab929190620003d9565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003e790620004e3565b90600052602060002090601f0160209004810192826200040b576000855562000457565b82601f106200042657805160ff191683800117855562000457565b8280016001018555821562000457579182015b828111156200045657825182559160200191906001019062000439565b5b5090506200046691906200046a565b5090565b5b80821115620004855760008160009055506001016200046b565b5090565b600062000498602083620004d2565b9150620004a58262000548565b602082019050919050565b60006020820190508181036000830152620004cb8162000489565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004fc57607f821691505b6020821081141562000513576200051262000519565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61478f80620005816000396000f3fe6080604052600436106102305760003560e01c80636352211e1161012e578063aa98e0c6116100ab578063d5abeb011161006f578063d5abeb01146107d3578063dbd37cf4146107fe578063e0a808531461083b578063e985e9c514610864578063f2fde38b146108a157610230565b8063aa98e0c6146106ee578063b88d4fde14610719578063bc951b9114610742578063bd32fb661461076d578063c87b56dd1461079657610230565b80637f6e9093116100f25780637f6e9093146106195780638da5cb5b1461064457806395d89b411461066f578063a22cb4651461069a578063a45ba8e7146106c357610230565b80636352211e146105435780636ecd23061461058057806370a082311461059c578063715018a6146105d95780637ec4a659146105f057610230565b80632f6f98e1116101bc5780634fdd43cb116101805780634fdd43cb1461046b578063518302271461049457806358381669146104bf57806359bf5dbb146104db5780635c975abb1461051857610230565b80632f6f98e1146103c257806337a66d85146103eb5780633ccfd60b1461040257806342842e0e1461041957806344a0d68a1461044257610230565b8063095ea7b311610203578063095ea7b3146102f157806313faede61461031a57806318160ddd1461034557806323b872dd1461037057806328b60d151461039957610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063093cfa63146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613756565b6108ca565b6040516102699190613cba565b60405180910390f35b34801561027e57600080fd5b506102876109ac565b6040516102949190613cf0565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613839565b610a3e565b6040516102d19190613c53565b60405180910390f35b3480156102e657600080fd5b506102ef610aba565b005b3480156102fd57600080fd5b50610318600480360381019061031391906136bc565b610b62565b005b34801561032657600080fd5b5061032f610c6d565b60405161033c9190613e8d565b60405180910390f35b34801561035157600080fd5b5061035a610c73565b6040516103679190613e8d565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906135a6565b610c8a565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613866565b610c9a565b005b3480156103ce57600080fd5b506103e960048036038101906103e491906137f9565b610d38565b005b3480156103f757600080fd5b50610400610e37565b005b34801561040e57600080fd5b50610417610efa565b005b34801561042557600080fd5b50610440600480360381019061043b91906135a6565b610fc5565b005b34801561044e57600080fd5b5061046960048036038101906104649190613839565b610fe5565b005b34801561047757600080fd5b50610492600480360381019061048d91906137b0565b61106b565b005b3480156104a057600080fd5b506104a9611101565b6040516104b69190613cba565b60405180910390f35b6104d960048036038101906104d49190613893565b611114565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190613539565b611412565b60405161050f9190613ea8565b60405180910390f35b34801561052457600080fd5b5061052d611432565b60405161053a9190613cba565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613839565b611445565b6040516105779190613c53565b60405180910390f35b61059a60048036038101906105959190613866565b61145b565b005b3480156105a857600080fd5b506105c360048036038101906105be9190613539565b611707565b6040516105d09190613e8d565b60405180910390f35b3480156105e557600080fd5b506105ee6117d7565b005b3480156105fc57600080fd5b50610617600480360381019061061291906137b0565b61185f565b005b34801561062557600080fd5b5061062e6118f5565b60405161063b9190613cba565b60405180910390f35b34801561065057600080fd5b50610659611908565b6040516106669190613c53565b60405180910390f35b34801561067b57600080fd5b50610684611932565b6040516106919190613cf0565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc919061367c565b6119c4565b005b3480156106cf57600080fd5b506106d8611b3c565b6040516106e59190613cf0565b60405180910390f35b3480156106fa57600080fd5b50610703611bca565b6040516107109190613cd5565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906135f9565b611bd0565b005b34801561074e57600080fd5b50610757611c4c565b6040516107649190613ea8565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190613729565b611c5f565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613839565b611ce5565b6040516107ca9190613cf0565b60405180910390f35b3480156107df57600080fd5b506107e8611e3e565b6040516107f59190613e72565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190613539565b611e44565b6040516108329190613ea8565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d91906136fc565b611e64565b005b34801561087057600080fd5b5061088b60048036038101906108869190613566565b611efd565b6040516108989190613cba565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613539565b611f91565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a557506109a482612089565b5b9050919050565b6060600280546109bb90614235565b80601f01602080910402602001604051908101604052809291908181526020018280546109e790614235565b8015610a345780601f10610a0957610100808354040283529160200191610a34565b820191906000526020600020905b815481529060010190602001808311610a1757829003601f168201915b5050505050905090565b6000610a49826120f3565b610a7f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610ac2612141565b73ffffffffffffffffffffffffffffffffffffffff16610ae0611908565b73ffffffffffffffffffffffffffffffffffffffff1614610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90613db2565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000610b6d82611445565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf4612141565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c265750610c2481610c1f612141565b611efd565b155b15610c5d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c68838383612149565b505050565b600c5481565b6000610c7d6121fb565b6001546000540303905090565b610c95838383612200565b505050565b610ca2612141565b73ffffffffffffffffffffffffffffffffffffffff16610cc0611908565b73ffffffffffffffffffffffffffffffffffffffff1614610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90613db2565b60405180910390fd5b80601060006101000a81548160ff021916908360ff1602179055506000905050565b610d40612141565b73ffffffffffffffffffffffffffffffffffffffff16610d5e611908565b73ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90613db2565b60405180910390fd5b6000610dbe610c73565b905061271061ffff168382610dd39190613fa2565b61ffff161115610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90613d12565b60405180910390fd5b610e26828461ffff166126b6565b600092506000915060009050505050565b610e3f612141565b73ffffffffffffffffffffffffffffffffffffffff16610e5d611908565b73ffffffffffffffffffffffffffffffffffffffff1614610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613db2565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff021916908315150217905550565b610f02612141565b73ffffffffffffffffffffffffffffffffffffffff16610f20611908565b73ffffffffffffffffffffffffffffffffffffffff1614610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90613db2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fc1573d6000803e3d6000fd5b5050565b610fe083838360405180602001604052806000815250611bd0565b505050565b610fed612141565b73ffffffffffffffffffffffffffffffffffffffff1661100b611908565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890613db2565b60405180910390fd5b80600c8190555050565b611073612141565b73ffffffffffffffffffffffffffffffffffffffff16611091611908565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613db2565b60405180910390fd5b80600b90805190602001906110fd929190613275565b5050565b601260009054906101000a900460ff1681565b600061111f336126d4565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506111bd82858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612704565b6111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390613dd2565b60405180910390fd5b601060009054906101000a900460ff1660ff16858261121b9190614030565b60ff16111561125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690613d92565b60405180910390fd5b600d60009054906101000a900460ff16156112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690613d52565b60405180910390fd5b60028160ff1610611312578460ff16600c546112cb9190614098565b34101561130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490613e52565b60405180910390fd5b611393565b600081866113209190614030565b905060028160ff1611156113915760028161133b9190614126565b90508060ff16600c5461134e9190614098565b341015611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790613e52565b60405180910390fd5b5b505b6113a0338660ff166126b6565b84816113ac9190614030565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555060009450600090505050505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b60006114508261271b565b600001519050919050565b6000611465610c73565b905061271061ffff168260ff168261147d9190613fa2565b61ffff1611156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990613e32565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050601060009054906101000a900460ff1660ff1681846115329190614030565b60ff161115611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d90613d72565b60405180910390fd5b600d60019054906101000a900460ff16156115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90613df2565b60405180910390fd5b60008160ff161415611636576001836115df9190614126565b60ff16600c546115ef9190614098565b341015611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890613e52565b60405180910390fd5b61168a565b8260ff16600c546116479190614098565b341015611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613e52565b60405180910390fd5b5b611697338460ff166126b6565b80836116a39190614030565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117df612141565b73ffffffffffffffffffffffffffffffffffffffff166117fd611908565b73ffffffffffffffffffffffffffffffffffffffff1614611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a90613db2565b60405180910390fd5b61185d60006129aa565b565b611867612141565b73ffffffffffffffffffffffffffffffffffffffff16611885611908565b73ffffffffffffffffffffffffffffffffffffffff16146118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290613db2565b60405180910390fd5b80600990805190602001906118f1929190613275565b5050565b600d60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461194190614235565b80601f016020809104026020016040519081016040528092919081815260200182805461196d90614235565b80156119ba5780601f1061198f576101008083540402835291602001916119ba565b820191906000526020600020905b81548152906001019060200180831161199d57829003601f168201915b5050505050905090565b6119cc612141565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a31576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a3e612141565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aeb612141565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b309190613cba565b60405180910390a35050565b600b8054611b4990614235565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7590614235565b8015611bc25780601f10611b9757610100808354040283529160200191611bc2565b820191906000526020600020905b815481529060010190602001808311611ba557829003601f168201915b505050505081565b60115481565b611bdb848484612200565b611bfa8373ffffffffffffffffffffffffffffffffffffffff16612a70565b8015611c0f5750611c0d84848484612a93565b155b15611c46576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b601060009054906101000a900460ff1681565b611c67612141565b73ffffffffffffffffffffffffffffffffffffffff16611c85611908565b73ffffffffffffffffffffffffffffffffffffffff1614611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290613db2565b60405180910390fd5b8060118190555050565b6060611cf0826120f3565b611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2690613e12565b60405180910390fd5b60001515601260009054906101000a900460ff1615151415611ddd57600b8054611d5890614235565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8490614235565b8015611dd15780601f10611da657610100808354040283529160200191611dd1565b820191906000526020600020905b815481529060010190602001808311611db457829003601f168201915b50505050509050611e39565b6000611de7612bf3565b90506000815111611e075760405180602001604052806000815250611e35565b80611e1184612c85565b600a604051602001611e2593929190613c22565b6040516020818303038152906040525b9150505b919050565b61271081565b600f6020528060005260406000206000915054906101000a900460ff1681565b611e6c612141565b73ffffffffffffffffffffffffffffffffffffffff16611e8a611908565b73ffffffffffffffffffffffffffffffffffffffff1614611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed790613db2565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f99612141565b73ffffffffffffffffffffffffffffffffffffffff16611fb7611908565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490613db2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490613d32565b60405180910390fd5b612086816129aa565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816120fe6121fb565b1115801561210d575060005482105b801561213a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061220b8261271b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612276576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612297612141565b73ffffffffffffffffffffffffffffffffffffffff1614806122c657506122c5856122c0612141565b611efd565b5b8061230b57506122d4612141565b73ffffffffffffffffffffffffffffffffffffffff166122f384610a3e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612344576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123ab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b88585856001612de6565b6123c460008487612149565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561264457600054821461264357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126af8585856001612dec565b5050505050565b6126d0828260405180602001604052806000815250612df2565b5050565b6000816040516020016126e79190613c07565b604051602081830303815290604052805190602001209050919050565b60006127138260115485612e04565b905092915050565b6127236132fb565b6000829050806127316121fb565b11158015612740575060005481105b15612973576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161297157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128555780925050506129a5565b5b60011561297057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461296b5780925050506129a5565b612856565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ab9612141565b8786866040518563ffffffff1660e01b8152600401612adb9493929190613c6e565b602060405180830381600087803b158015612af557600080fd5b505af1925050508015612b2657506040513d601f19601f82011682018060405250810190612b239190613783565b60015b612ba0573d8060008114612b56576040519150601f19603f3d011682016040523d82523d6000602084013e612b5b565b606091505b50600081511415612b98576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612c0290614235565b80601f0160208091040260200160405190810160405280929190818152602001828054612c2e90614235565b8015612c7b5780601f10612c5057610100808354040283529160200191612c7b565b820191906000526020600020905b815481529060010190602001808311612c5e57829003601f168201915b5050505050905090565b60606000821415612ccd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612de1565b600082905060005b60008214612cff578080612ce890614298565b915050600a82612cf89190614067565b9150612cd5565b60008167ffffffffffffffff811115612d1b57612d1a6143f2565b5b6040519080825280601f01601f191660200182016040528015612d4d5781602001600182028036833780820191505090505b5090505b60008514612dda57600182612d6691906140f2565b9150600a85612d759190614305565b6030612d819190613fda565b60f81b818381518110612d9757612d966143c3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dd39190614067565b9450612d51565b8093505050505b919050565b50505050565b50505050565b612dff8383836001612e1b565b505050565b600082612e1185846131e9565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e88576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612ec3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ed06000868387612de6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561309a57506130998773ffffffffffffffffffffffffffffffffffffffff16612a70565b5b15613160575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461310f6000888480600101955088612a93565b613145576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156130a057826000541461315b57600080fd5b6131cc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613161575b8160008190555050506131e26000868387612dec565b5050505050565b60008082905060005b84518110156132535760008582815181106132105761320f6143c3565b5b602002602001015190508083116132325761322b838261325e565b925061323f565b61323c818461325e565b92505b50808061324b90614298565b9150506131f2565b508091505092915050565b600082600052816020526040600020905092915050565b82805461328190614235565b90600052602060002090601f0160209004810192826132a357600085556132ea565b82601f106132bc57805160ff19168380011785556132ea565b828001600101855582156132ea579182015b828111156132e95782518255916020019190600101906132ce565b5b5090506132f7919061333e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561335757600081600090555060010161333f565b5090565b600061336e61336984613ee8565b613ec3565b90508281526020810184848401111561338a57613389614430565b5b6133958482856141f3565b509392505050565b60006133b06133ab84613f19565b613ec3565b9050828152602081018484840111156133cc576133cb614430565b5b6133d78482856141f3565b509392505050565b6000813590506133ee816146b8565b92915050565b60008083601f84011261340a57613409614426565b5b8235905067ffffffffffffffff81111561342757613426614421565b5b6020830191508360208202830111156134435761344261442b565b5b9250929050565b600081359050613459816146cf565b92915050565b60008135905061346e816146e6565b92915050565b600081359050613483816146fd565b92915050565b600081519050613498816146fd565b92915050565b600082601f8301126134b3576134b2614426565b5b81356134c384826020860161335b565b91505092915050565b600082601f8301126134e1576134e0614426565b5b81356134f184826020860161339d565b91505092915050565b60008135905061350981614714565b92915050565b60008135905061351e8161472b565b92915050565b60008135905061353381614742565b92915050565b60006020828403121561354f5761354e61443a565b5b600061355d848285016133df565b91505092915050565b6000806040838503121561357d5761357c61443a565b5b600061358b858286016133df565b925050602061359c858286016133df565b9150509250929050565b6000806000606084860312156135bf576135be61443a565b5b60006135cd868287016133df565b93505060206135de868287016133df565b92505060406135ef8682870161350f565b9150509250925092565b600080600080608085870312156136135761361261443a565b5b6000613621878288016133df565b9450506020613632878288016133df565b93505060406136438782880161350f565b925050606085013567ffffffffffffffff81111561366457613663614435565b5b6136708782880161349e565b91505092959194509250565b600080604083850312156136935761369261443a565b5b60006136a1858286016133df565b92505060206136b28582860161344a565b9150509250929050565b600080604083850312156136d3576136d261443a565b5b60006136e1858286016133df565b92505060206136f28582860161350f565b9150509250929050565b6000602082840312156137125761371161443a565b5b60006137208482850161344a565b91505092915050565b60006020828403121561373f5761373e61443a565b5b600061374d8482850161345f565b91505092915050565b60006020828403121561376c5761376b61443a565b5b600061377a84828501613474565b91505092915050565b6000602082840312156137995761379861443a565b5b60006137a784828501613489565b91505092915050565b6000602082840312156137c6576137c561443a565b5b600082013567ffffffffffffffff8111156137e4576137e3614435565b5b6137f0848285016134cc565b91505092915050565b600080604083850312156138105761380f61443a565b5b600061381e858286016134fa565b925050602061382f858286016133df565b9150509250929050565b60006020828403121561384f5761384e61443a565b5b600061385d8482850161350f565b91505092915050565b60006020828403121561387c5761387b61443a565b5b600061388a84828501613524565b91505092915050565b6000806000604084860312156138ac576138ab61443a565b5b60006138ba86828701613524565b935050602084013567ffffffffffffffff8111156138db576138da614435565b5b6138e7868287016133f4565b92509250509250925092565b6138fc8161415a565b82525050565b61391361390e8261415a565b6142e1565b82525050565b6139228161416c565b82525050565b61393181614178565b82525050565b600061394282613f5f565b61394c8185613f75565b935061395c818560208601614202565b6139658161443f565b840191505092915050565b600061397b82613f6a565b6139858185613f86565b9350613995818560208601614202565b61399e8161443f565b840191505092915050565b60006139b482613f6a565b6139be8185613f97565b93506139ce818560208601614202565b80840191505092915050565b600081546139e781614235565b6139f18186613f97565b94506001821660008114613a0c5760018114613a1d57613a50565b60ff19831686528186019350613a50565b613a2685613f4a565b60005b83811015613a4857815481890152600182019150602081019050613a29565b838801955050505b50505092915050565b6000613a66601383613f86565b9150613a718261445d565b602082019050919050565b6000613a89602683613f86565b9150613a9482614486565b604082019050919050565b6000613aac601a83613f86565b9150613ab7826144d5565b602082019050919050565b6000613acf602483613f86565b9150613ada826144fe565b604082019050919050565b6000613af2602383613f86565b9150613afd8261454d565b604082019050919050565b6000613b15602083613f86565b9150613b208261459c565b602082019050919050565b6000613b38601483613f86565b9150613b43826145c5565b602082019050919050565b6000613b5b601783613f86565b9150613b66826145ee565b602082019050919050565b6000613b7e602f83613f86565b9150613b8982614617565b604082019050919050565b6000613ba1601383613f86565b9150613bac82614666565b602082019050919050565b6000613bc4601383613f86565b9150613bcf8261468f565b602082019050919050565b613be3816141ae565b82525050565b613bf2816141dc565b82525050565b613c01816141e6565b82525050565b6000613c138284613902565b60148201915081905092915050565b6000613c2e82866139a9565b9150613c3a82856139a9565b9150613c4682846139da565b9150819050949350505050565b6000602082019050613c6860008301846138f3565b92915050565b6000608082019050613c8360008301876138f3565b613c9060208301866138f3565b613c9d6040830185613be9565b8181036060830152613caf8184613937565b905095945050505050565b6000602082019050613ccf6000830184613919565b92915050565b6000602082019050613cea6000830184613928565b92915050565b60006020820190508181036000830152613d0a8184613970565b905092915050565b60006020820190508181036000830152613d2b81613a59565b9050919050565b60006020820190508181036000830152613d4b81613a7c565b9050919050565b60006020820190508181036000830152613d6b81613a9f565b9050919050565b60006020820190508181036000830152613d8b81613ac2565b9050919050565b60006020820190508181036000830152613dab81613ae5565b9050919050565b60006020820190508181036000830152613dcb81613b08565b9050919050565b60006020820190508181036000830152613deb81613b2b565b9050919050565b60006020820190508181036000830152613e0b81613b4e565b9050919050565b60006020820190508181036000830152613e2b81613b71565b9050919050565b60006020820190508181036000830152613e4b81613b94565b9050919050565b60006020820190508181036000830152613e6b81613bb7565b9050919050565b6000602082019050613e876000830184613bda565b92915050565b6000602082019050613ea26000830184613be9565b92915050565b6000602082019050613ebd6000830184613bf8565b92915050565b6000613ecd613ede565b9050613ed98282614267565b919050565b6000604051905090565b600067ffffffffffffffff821115613f0357613f026143f2565b5b613f0c8261443f565b9050602081019050919050565b600067ffffffffffffffff821115613f3457613f336143f2565b5b613f3d8261443f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fad826141ae565b9150613fb8836141ae565b92508261ffff03821115613fcf57613fce614336565b5b828201905092915050565b6000613fe5826141dc565b9150613ff0836141dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402557614024614336565b5b828201905092915050565b600061403b826141e6565b9150614046836141e6565b92508260ff0382111561405c5761405b614336565b5b828201905092915050565b6000614072826141dc565b915061407d836141dc565b92508261408d5761408c614365565b5b828204905092915050565b60006140a3826141dc565b91506140ae836141dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140e7576140e6614336565b5b828202905092915050565b60006140fd826141dc565b9150614108836141dc565b92508282101561411b5761411a614336565b5b828203905092915050565b6000614131826141e6565b915061413c836141e6565b92508282101561414f5761414e614336565b5b828203905092915050565b6000614165826141bc565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614220578082015181840152602081019050614205565b8381111561422f576000848401525b50505050565b6000600282049050600182168061424d57607f821691505b6020821081141561426157614260614394565b5b50919050565b6142708261443f565b810181811067ffffffffffffffff8211171561428f5761428e6143f2565b5b80604052505050565b60006142a3826141dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142d6576142d5614336565b5b600182019050919050565b60006142ec826142f3565b9050919050565b60006142fe82614450565b9050919050565b6000614310826141dc565b915061431b836141dc565b92508261432b5761432a614365565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365646573206d617820737570706c792e00000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74696e67206973206f76657221000000000000600082015250565b7f45786365656473206d6178204e66747320616c6c6f776564207065722077616c60008201527f6c65742e00000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178206e667420616c6c6f77656420706572206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6146c18161415a565b81146146cc57600080fd5b50565b6146d88161416c565b81146146e357600080fd5b50565b6146ef81614178565b81146146fa57600080fd5b50565b61470681614182565b811461471157600080fd5b50565b61471d816141ae565b811461472857600080fd5b50565b614734816141dc565b811461473f57600080fd5b50565b61474b816141e6565b811461475657600080fd5b5056fea264697066735822122060073fa5a8b9a2a2cf7b203f4d5f0984c8adccca15fcae44b3231c7bc510102b64736f6c63430008070033697066733a2f2f516d5a63624e62543373433834554b31646446386d7a68576876644e3941643758444b51414c6a644c6743444e4d2f68696464656e2e6a736f6e697066733a2f2f516d584c5565526b4d57463445543452333755394d724277624e5a59387a486957737441455a724b4a4d536743702f

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636352211e1161012e578063aa98e0c6116100ab578063d5abeb011161006f578063d5abeb01146107d3578063dbd37cf4146107fe578063e0a808531461083b578063e985e9c514610864578063f2fde38b146108a157610230565b8063aa98e0c6146106ee578063b88d4fde14610719578063bc951b9114610742578063bd32fb661461076d578063c87b56dd1461079657610230565b80637f6e9093116100f25780637f6e9093146106195780638da5cb5b1461064457806395d89b411461066f578063a22cb4651461069a578063a45ba8e7146106c357610230565b80636352211e146105435780636ecd23061461058057806370a082311461059c578063715018a6146105d95780637ec4a659146105f057610230565b80632f6f98e1116101bc5780634fdd43cb116101805780634fdd43cb1461046b578063518302271461049457806358381669146104bf57806359bf5dbb146104db5780635c975abb1461051857610230565b80632f6f98e1146103c257806337a66d85146103eb5780633ccfd60b1461040257806342842e0e1461041957806344a0d68a1461044257610230565b8063095ea7b311610203578063095ea7b3146102f157806313faede61461031a57806318160ddd1461034557806323b872dd1461037057806328b60d151461039957610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063093cfa63146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613756565b6108ca565b6040516102699190613cba565b60405180910390f35b34801561027e57600080fd5b506102876109ac565b6040516102949190613cf0565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613839565b610a3e565b6040516102d19190613c53565b60405180910390f35b3480156102e657600080fd5b506102ef610aba565b005b3480156102fd57600080fd5b50610318600480360381019061031391906136bc565b610b62565b005b34801561032657600080fd5b5061032f610c6d565b60405161033c9190613e8d565b60405180910390f35b34801561035157600080fd5b5061035a610c73565b6040516103679190613e8d565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906135a6565b610c8a565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613866565b610c9a565b005b3480156103ce57600080fd5b506103e960048036038101906103e491906137f9565b610d38565b005b3480156103f757600080fd5b50610400610e37565b005b34801561040e57600080fd5b50610417610efa565b005b34801561042557600080fd5b50610440600480360381019061043b91906135a6565b610fc5565b005b34801561044e57600080fd5b5061046960048036038101906104649190613839565b610fe5565b005b34801561047757600080fd5b50610492600480360381019061048d91906137b0565b61106b565b005b3480156104a057600080fd5b506104a9611101565b6040516104b69190613cba565b60405180910390f35b6104d960048036038101906104d49190613893565b611114565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190613539565b611412565b60405161050f9190613ea8565b60405180910390f35b34801561052457600080fd5b5061052d611432565b60405161053a9190613cba565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613839565b611445565b6040516105779190613c53565b60405180910390f35b61059a60048036038101906105959190613866565b61145b565b005b3480156105a857600080fd5b506105c360048036038101906105be9190613539565b611707565b6040516105d09190613e8d565b60405180910390f35b3480156105e557600080fd5b506105ee6117d7565b005b3480156105fc57600080fd5b50610617600480360381019061061291906137b0565b61185f565b005b34801561062557600080fd5b5061062e6118f5565b60405161063b9190613cba565b60405180910390f35b34801561065057600080fd5b50610659611908565b6040516106669190613c53565b60405180910390f35b34801561067b57600080fd5b50610684611932565b6040516106919190613cf0565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc919061367c565b6119c4565b005b3480156106cf57600080fd5b506106d8611b3c565b6040516106e59190613cf0565b60405180910390f35b3480156106fa57600080fd5b50610703611bca565b6040516107109190613cd5565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906135f9565b611bd0565b005b34801561074e57600080fd5b50610757611c4c565b6040516107649190613ea8565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190613729565b611c5f565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613839565b611ce5565b6040516107ca9190613cf0565b60405180910390f35b3480156107df57600080fd5b506107e8611e3e565b6040516107f59190613e72565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190613539565b611e44565b6040516108329190613ea8565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d91906136fc565b611e64565b005b34801561087057600080fd5b5061088b60048036038101906108869190613566565b611efd565b6040516108989190613cba565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613539565b611f91565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a557506109a482612089565b5b9050919050565b6060600280546109bb90614235565b80601f01602080910402602001604051908101604052809291908181526020018280546109e790614235565b8015610a345780601f10610a0957610100808354040283529160200191610a34565b820191906000526020600020905b815481529060010190602001808311610a1757829003601f168201915b5050505050905090565b6000610a49826120f3565b610a7f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610ac2612141565b73ffffffffffffffffffffffffffffffffffffffff16610ae0611908565b73ffffffffffffffffffffffffffffffffffffffff1614610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90613db2565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000610b6d82611445565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf4612141565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c265750610c2481610c1f612141565b611efd565b155b15610c5d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c68838383612149565b505050565b600c5481565b6000610c7d6121fb565b6001546000540303905090565b610c95838383612200565b505050565b610ca2612141565b73ffffffffffffffffffffffffffffffffffffffff16610cc0611908565b73ffffffffffffffffffffffffffffffffffffffff1614610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90613db2565b60405180910390fd5b80601060006101000a81548160ff021916908360ff1602179055506000905050565b610d40612141565b73ffffffffffffffffffffffffffffffffffffffff16610d5e611908565b73ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90613db2565b60405180910390fd5b6000610dbe610c73565b905061271061ffff168382610dd39190613fa2565b61ffff161115610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90613d12565b60405180910390fd5b610e26828461ffff166126b6565b600092506000915060009050505050565b610e3f612141565b73ffffffffffffffffffffffffffffffffffffffff16610e5d611908565b73ffffffffffffffffffffffffffffffffffffffff1614610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613db2565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff021916908315150217905550565b610f02612141565b73ffffffffffffffffffffffffffffffffffffffff16610f20611908565b73ffffffffffffffffffffffffffffffffffffffff1614610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90613db2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fc1573d6000803e3d6000fd5b5050565b610fe083838360405180602001604052806000815250611bd0565b505050565b610fed612141565b73ffffffffffffffffffffffffffffffffffffffff1661100b611908565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890613db2565b60405180910390fd5b80600c8190555050565b611073612141565b73ffffffffffffffffffffffffffffffffffffffff16611091611908565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613db2565b60405180910390fd5b80600b90805190602001906110fd929190613275565b5050565b601260009054906101000a900460ff1681565b600061111f336126d4565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506111bd82858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612704565b6111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390613dd2565b60405180910390fd5b601060009054906101000a900460ff1660ff16858261121b9190614030565b60ff16111561125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690613d92565b60405180910390fd5b600d60009054906101000a900460ff16156112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690613d52565b60405180910390fd5b60028160ff1610611312578460ff16600c546112cb9190614098565b34101561130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490613e52565b60405180910390fd5b611393565b600081866113209190614030565b905060028160ff1611156113915760028161133b9190614126565b90508060ff16600c5461134e9190614098565b341015611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790613e52565b60405180910390fd5b5b505b6113a0338660ff166126b6565b84816113ac9190614030565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555060009450600090505050505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b60006114508261271b565b600001519050919050565b6000611465610c73565b905061271061ffff168260ff168261147d9190613fa2565b61ffff1611156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990613e32565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050601060009054906101000a900460ff1660ff1681846115329190614030565b60ff161115611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d90613d72565b60405180910390fd5b600d60019054906101000a900460ff16156115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90613df2565b60405180910390fd5b60008160ff161415611636576001836115df9190614126565b60ff16600c546115ef9190614098565b341015611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890613e52565b60405180910390fd5b61168a565b8260ff16600c546116479190614098565b341015611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613e52565b60405180910390fd5b5b611697338460ff166126b6565b80836116a39190614030565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117df612141565b73ffffffffffffffffffffffffffffffffffffffff166117fd611908565b73ffffffffffffffffffffffffffffffffffffffff1614611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a90613db2565b60405180910390fd5b61185d60006129aa565b565b611867612141565b73ffffffffffffffffffffffffffffffffffffffff16611885611908565b73ffffffffffffffffffffffffffffffffffffffff16146118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290613db2565b60405180910390fd5b80600990805190602001906118f1929190613275565b5050565b600d60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461194190614235565b80601f016020809104026020016040519081016040528092919081815260200182805461196d90614235565b80156119ba5780601f1061198f576101008083540402835291602001916119ba565b820191906000526020600020905b81548152906001019060200180831161199d57829003601f168201915b5050505050905090565b6119cc612141565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a31576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a3e612141565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aeb612141565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b309190613cba565b60405180910390a35050565b600b8054611b4990614235565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7590614235565b8015611bc25780601f10611b9757610100808354040283529160200191611bc2565b820191906000526020600020905b815481529060010190602001808311611ba557829003601f168201915b505050505081565b60115481565b611bdb848484612200565b611bfa8373ffffffffffffffffffffffffffffffffffffffff16612a70565b8015611c0f5750611c0d84848484612a93565b155b15611c46576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b601060009054906101000a900460ff1681565b611c67612141565b73ffffffffffffffffffffffffffffffffffffffff16611c85611908565b73ffffffffffffffffffffffffffffffffffffffff1614611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290613db2565b60405180910390fd5b8060118190555050565b6060611cf0826120f3565b611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2690613e12565b60405180910390fd5b60001515601260009054906101000a900460ff1615151415611ddd57600b8054611d5890614235565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8490614235565b8015611dd15780601f10611da657610100808354040283529160200191611dd1565b820191906000526020600020905b815481529060010190602001808311611db457829003601f168201915b50505050509050611e39565b6000611de7612bf3565b90506000815111611e075760405180602001604052806000815250611e35565b80611e1184612c85565b600a604051602001611e2593929190613c22565b6040516020818303038152906040525b9150505b919050565b61271081565b600f6020528060005260406000206000915054906101000a900460ff1681565b611e6c612141565b73ffffffffffffffffffffffffffffffffffffffff16611e8a611908565b73ffffffffffffffffffffffffffffffffffffffff1614611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed790613db2565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f99612141565b73ffffffffffffffffffffffffffffffffffffffff16611fb7611908565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490613db2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490613d32565b60405180910390fd5b612086816129aa565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816120fe6121fb565b1115801561210d575060005482105b801561213a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061220b8261271b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612276576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612297612141565b73ffffffffffffffffffffffffffffffffffffffff1614806122c657506122c5856122c0612141565b611efd565b5b8061230b57506122d4612141565b73ffffffffffffffffffffffffffffffffffffffff166122f384610a3e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612344576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123ab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b88585856001612de6565b6123c460008487612149565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561264457600054821461264357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126af8585856001612dec565b5050505050565b6126d0828260405180602001604052806000815250612df2565b5050565b6000816040516020016126e79190613c07565b604051602081830303815290604052805190602001209050919050565b60006127138260115485612e04565b905092915050565b6127236132fb565b6000829050806127316121fb565b11158015612740575060005481105b15612973576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161297157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128555780925050506129a5565b5b60011561297057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461296b5780925050506129a5565b612856565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ab9612141565b8786866040518563ffffffff1660e01b8152600401612adb9493929190613c6e565b602060405180830381600087803b158015612af557600080fd5b505af1925050508015612b2657506040513d601f19601f82011682018060405250810190612b239190613783565b60015b612ba0573d8060008114612b56576040519150601f19603f3d011682016040523d82523d6000602084013e612b5b565b606091505b50600081511415612b98576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612c0290614235565b80601f0160208091040260200160405190810160405280929190818152602001828054612c2e90614235565b8015612c7b5780601f10612c5057610100808354040283529160200191612c7b565b820191906000526020600020905b815481529060010190602001808311612c5e57829003601f168201915b5050505050905090565b60606000821415612ccd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612de1565b600082905060005b60008214612cff578080612ce890614298565b915050600a82612cf89190614067565b9150612cd5565b60008167ffffffffffffffff811115612d1b57612d1a6143f2565b5b6040519080825280601f01601f191660200182016040528015612d4d5781602001600182028036833780820191505090505b5090505b60008514612dda57600182612d6691906140f2565b9150600a85612d759190614305565b6030612d819190613fda565b60f81b818381518110612d9757612d966143c3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dd39190614067565b9450612d51565b8093505050505b919050565b50505050565b50505050565b612dff8383836001612e1b565b505050565b600082612e1185846131e9565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e88576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612ec3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ed06000868387612de6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561309a57506130998773ffffffffffffffffffffffffffffffffffffffff16612a70565b5b15613160575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461310f6000888480600101955088612a93565b613145576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156130a057826000541461315b57600080fd5b6131cc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613161575b8160008190555050506131e26000868387612dec565b5050505050565b60008082905060005b84518110156132535760008582815181106132105761320f6143c3565b5b602002602001015190508083116132325761322b838261325e565b925061323f565b61323c818461325e565b92505b50808061324b90614298565b9150506131f2565b508091505092915050565b600082600052816020526040600020905092915050565b82805461328190614235565b90600052602060002090601f0160209004810192826132a357600085556132ea565b82601f106132bc57805160ff19168380011785556132ea565b828001600101855582156132ea579182015b828111156132e95782518255916020019190600101906132ce565b5b5090506132f7919061333e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561335757600081600090555060010161333f565b5090565b600061336e61336984613ee8565b613ec3565b90508281526020810184848401111561338a57613389614430565b5b6133958482856141f3565b509392505050565b60006133b06133ab84613f19565b613ec3565b9050828152602081018484840111156133cc576133cb614430565b5b6133d78482856141f3565b509392505050565b6000813590506133ee816146b8565b92915050565b60008083601f84011261340a57613409614426565b5b8235905067ffffffffffffffff81111561342757613426614421565b5b6020830191508360208202830111156134435761344261442b565b5b9250929050565b600081359050613459816146cf565b92915050565b60008135905061346e816146e6565b92915050565b600081359050613483816146fd565b92915050565b600081519050613498816146fd565b92915050565b600082601f8301126134b3576134b2614426565b5b81356134c384826020860161335b565b91505092915050565b600082601f8301126134e1576134e0614426565b5b81356134f184826020860161339d565b91505092915050565b60008135905061350981614714565b92915050565b60008135905061351e8161472b565b92915050565b60008135905061353381614742565b92915050565b60006020828403121561354f5761354e61443a565b5b600061355d848285016133df565b91505092915050565b6000806040838503121561357d5761357c61443a565b5b600061358b858286016133df565b925050602061359c858286016133df565b9150509250929050565b6000806000606084860312156135bf576135be61443a565b5b60006135cd868287016133df565b93505060206135de868287016133df565b92505060406135ef8682870161350f565b9150509250925092565b600080600080608085870312156136135761361261443a565b5b6000613621878288016133df565b9450506020613632878288016133df565b93505060406136438782880161350f565b925050606085013567ffffffffffffffff81111561366457613663614435565b5b6136708782880161349e565b91505092959194509250565b600080604083850312156136935761369261443a565b5b60006136a1858286016133df565b92505060206136b28582860161344a565b9150509250929050565b600080604083850312156136d3576136d261443a565b5b60006136e1858286016133df565b92505060206136f28582860161350f565b9150509250929050565b6000602082840312156137125761371161443a565b5b60006137208482850161344a565b91505092915050565b60006020828403121561373f5761373e61443a565b5b600061374d8482850161345f565b91505092915050565b60006020828403121561376c5761376b61443a565b5b600061377a84828501613474565b91505092915050565b6000602082840312156137995761379861443a565b5b60006137a784828501613489565b91505092915050565b6000602082840312156137c6576137c561443a565b5b600082013567ffffffffffffffff8111156137e4576137e3614435565b5b6137f0848285016134cc565b91505092915050565b600080604083850312156138105761380f61443a565b5b600061381e858286016134fa565b925050602061382f858286016133df565b9150509250929050565b60006020828403121561384f5761384e61443a565b5b600061385d8482850161350f565b91505092915050565b60006020828403121561387c5761387b61443a565b5b600061388a84828501613524565b91505092915050565b6000806000604084860312156138ac576138ab61443a565b5b60006138ba86828701613524565b935050602084013567ffffffffffffffff8111156138db576138da614435565b5b6138e7868287016133f4565b92509250509250925092565b6138fc8161415a565b82525050565b61391361390e8261415a565b6142e1565b82525050565b6139228161416c565b82525050565b61393181614178565b82525050565b600061394282613f5f565b61394c8185613f75565b935061395c818560208601614202565b6139658161443f565b840191505092915050565b600061397b82613f6a565b6139858185613f86565b9350613995818560208601614202565b61399e8161443f565b840191505092915050565b60006139b482613f6a565b6139be8185613f97565b93506139ce818560208601614202565b80840191505092915050565b600081546139e781614235565b6139f18186613f97565b94506001821660008114613a0c5760018114613a1d57613a50565b60ff19831686528186019350613a50565b613a2685613f4a565b60005b83811015613a4857815481890152600182019150602081019050613a29565b838801955050505b50505092915050565b6000613a66601383613f86565b9150613a718261445d565b602082019050919050565b6000613a89602683613f86565b9150613a9482614486565b604082019050919050565b6000613aac601a83613f86565b9150613ab7826144d5565b602082019050919050565b6000613acf602483613f86565b9150613ada826144fe565b604082019050919050565b6000613af2602383613f86565b9150613afd8261454d565b604082019050919050565b6000613b15602083613f86565b9150613b208261459c565b602082019050919050565b6000613b38601483613f86565b9150613b43826145c5565b602082019050919050565b6000613b5b601783613f86565b9150613b66826145ee565b602082019050919050565b6000613b7e602f83613f86565b9150613b8982614617565b604082019050919050565b6000613ba1601383613f86565b9150613bac82614666565b602082019050919050565b6000613bc4601383613f86565b9150613bcf8261468f565b602082019050919050565b613be3816141ae565b82525050565b613bf2816141dc565b82525050565b613c01816141e6565b82525050565b6000613c138284613902565b60148201915081905092915050565b6000613c2e82866139a9565b9150613c3a82856139a9565b9150613c4682846139da565b9150819050949350505050565b6000602082019050613c6860008301846138f3565b92915050565b6000608082019050613c8360008301876138f3565b613c9060208301866138f3565b613c9d6040830185613be9565b8181036060830152613caf8184613937565b905095945050505050565b6000602082019050613ccf6000830184613919565b92915050565b6000602082019050613cea6000830184613928565b92915050565b60006020820190508181036000830152613d0a8184613970565b905092915050565b60006020820190508181036000830152613d2b81613a59565b9050919050565b60006020820190508181036000830152613d4b81613a7c565b9050919050565b60006020820190508181036000830152613d6b81613a9f565b9050919050565b60006020820190508181036000830152613d8b81613ac2565b9050919050565b60006020820190508181036000830152613dab81613ae5565b9050919050565b60006020820190508181036000830152613dcb81613b08565b9050919050565b60006020820190508181036000830152613deb81613b2b565b9050919050565b60006020820190508181036000830152613e0b81613b4e565b9050919050565b60006020820190508181036000830152613e2b81613b71565b9050919050565b60006020820190508181036000830152613e4b81613b94565b9050919050565b60006020820190508181036000830152613e6b81613bb7565b9050919050565b6000602082019050613e876000830184613bda565b92915050565b6000602082019050613ea26000830184613be9565b92915050565b6000602082019050613ebd6000830184613bf8565b92915050565b6000613ecd613ede565b9050613ed98282614267565b919050565b6000604051905090565b600067ffffffffffffffff821115613f0357613f026143f2565b5b613f0c8261443f565b9050602081019050919050565b600067ffffffffffffffff821115613f3457613f336143f2565b5b613f3d8261443f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fad826141ae565b9150613fb8836141ae565b92508261ffff03821115613fcf57613fce614336565b5b828201905092915050565b6000613fe5826141dc565b9150613ff0836141dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402557614024614336565b5b828201905092915050565b600061403b826141e6565b9150614046836141e6565b92508260ff0382111561405c5761405b614336565b5b828201905092915050565b6000614072826141dc565b915061407d836141dc565b92508261408d5761408c614365565b5b828204905092915050565b60006140a3826141dc565b91506140ae836141dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140e7576140e6614336565b5b828202905092915050565b60006140fd826141dc565b9150614108836141dc565b92508282101561411b5761411a614336565b5b828203905092915050565b6000614131826141e6565b915061413c836141e6565b92508282101561414f5761414e614336565b5b828203905092915050565b6000614165826141bc565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614220578082015181840152602081019050614205565b8381111561422f576000848401525b50505050565b6000600282049050600182168061424d57607f821691505b6020821081141561426157614260614394565b5b50919050565b6142708261443f565b810181811067ffffffffffffffff8211171561428f5761428e6143f2565b5b80604052505050565b60006142a3826141dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142d6576142d5614336565b5b600182019050919050565b60006142ec826142f3565b9050919050565b60006142fe82614450565b9050919050565b6000614310826141dc565b915061431b836141dc565b92508261432b5761432a614365565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365646573206d617820737570706c792e00000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74696e67206973206f76657221000000000000600082015250565b7f45786365656473206d6178204e66747320616c6c6f776564207065722077616c60008201527f6c65742e00000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178206e667420616c6c6f77656420706572206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6146c18161415a565b81146146cc57600080fd5b50565b6146d88161416c565b81146146e357600080fd5b50565b6146ef81614178565b81146146fa57600080fd5b50565b61470681614182565b811461471157600080fd5b50565b61471d816141ae565b811461472857600080fd5b50565b614734816141dc565b811461473f57600080fd5b50565b61474b816141e6565b811461475657600080fd5b5056fea264697066735822122060073fa5a8b9a2a2cf7b203f4d5f0984c8adccca15fcae44b3231c7bc510102b64736f6c63430008070033

Deployed Bytecode Sourcemap

46345:5077:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24445:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29061:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49003:75;;;;;;;;;;;;;:::i;:::-;;28624:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46616:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23694:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29926:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49087:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48057:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50844:91;;;;;;;;;;;;;:::i;:::-;;51170:144;;;;;;;;;;;;;:::i;:::-;;30167:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50941:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51024:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47100:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49685:1038;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46833:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46799:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27366:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47313:736;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24814:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45491:103;;;;;;;;;;;;;:::i;:::-;;50729:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46767:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44839:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27727:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29337:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46568:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46992:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30423:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46940:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49219:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48394:510;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46656:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46888:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48912:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29695:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45749:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24445:305;24547:4;24599:25;24584:40;;;:11;:40;;;;:105;;;;24656:33;24641:48;;;:11;:48;;;;24584:105;:158;;;;24706:36;24730:11;24706:23;:36::i;:::-;24584:158;24564:178;;24445:305;;;:::o;27558:100::-;27612:13;27645:5;27638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27558:100;:::o;29061:204::-;29129:7;29154:16;29162:7;29154;:16::i;:::-;29149:64;;29179:34;;;;;;;;;;;;;;29149:64;29233:15;:24;29249:7;29233:24;;;;;;;;;;;;;;;;;;;;;29226:31;;29061:204;;;:::o;49003:75::-;45070:12;:10;:12::i;:::-;45059:23;;:7;:5;:7::i;:::-;:23;;;45051:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49064:8:::1;;;;;;;;;;;49063:9;49052:8;;:20;;;;;;;;;;;;;;;;;;49003:75::o:0;28624:371::-;28697:13;28713:24;28729:7;28713:15;:24::i;:::-;28697:40;;28758:5;28752:11;;:2;:11;;;28748:48;;;28772:24;;;;;;;;;;;;;;28748:48;28829:5;28813:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28839:37;28856:5;28863:12;:10;:12::i;:::-;28839:16;:37::i;:::-;28838:38;28813:63;28809:138;;;28900:35;;;;;;;;;;;;;;28809:138;28959:28;28968:2;28972:7;28981:5;28959:8;:28::i;:::-;28686:309;28624:371;;:::o;46616:31::-;;;;:::o;23694:303::-;23738:7;23963:15;:13;:15::i;:::-;23948:12;;23932:13;;:28;:46;23925:53;;23694:303;:::o;29926:170::-;30060:28;30070:4;30076:2;30080:7;30060:9;:28::i;:::-;29926:170;;;:::o;49087:130::-;45070:12;:10;:12::i;:::-;45059:23;;:7;:5;:7::i;:::-;:23;;;45051:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49186:6:::1;49161:22;;:31;;;;;;;;;;;;;;;;;;49198:13;;;49087:130:::0;:::o;48057:326::-;45070:12;:10;:12::i;:::-;45059:23;;:7;:5;:7::i;:::-;:23;;;45051:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48140:18:::1;48168:13;:11;:13::i;:::-;48140:42;;46691:5;48197:38;;48211:11;48197;:25;;;;:::i;:::-;:38;;;;48189:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;48267:34;48277:9;48289:11;48267:34;;:9;:34::i;:::-;48309:18;;;48335:16;;;48359:18;;;48132:251;48057:326:::0;;:::o;50844:91::-;45070:12;:10;:12::i;:::-;45059:23;;:7;:5;:7::i;:::-;:23;;;45051:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50901:6:::1;;;;;;;;;;;50900:7;50891:6;;:16;;;;;;;;;;;;;;;;;;50925:4;50914:8;;:15;;;;;;;;;;;;;;;;;;50844:91::o:0;51170:144::-;45070:12;:10;:12::i;:::-;45059:23;;:7;:5;:7::i;:::-;:23;;;45051:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51214:13:::1;51230:21;51214:37;;51267:10;51259:28;;:39;51288:8;51259:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;51209:105;51170:144::o:0;30167:185::-;30305:39;30322:4;30328:2;30332:7;30305:39;;;;;;;;;;;;:16;:39::i;:::-;30167:185;;;:::o;50941:76::-;45070:12;:10;:12::i;:::-;45059:23;;:7;:5;:7::i;:::-;:23;;;45051:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51004:5:::1;50997:4;:12;;;;50941:76:::0;:::o;51024:132::-;45070:12;:10;:12::i;:::-;45059:23;;:7;:5;:7::i;:::-;:23;;;45051:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51132:18:::1;51112:17;:38;;;;;;;;;;;;:::i;:::-;;51024:132:::0;:::o;47100:28::-;;;;;;;;;;;;;:::o;49685:1038::-;49796:17;49816:23;49828:10;49816:11;:23::i;:::-;49796:43;;49850:19;49872:15;:27;49888:10;49872:27;;;;;;;;;;;;;;;;;;;;;;;;;49850:49;;49917:36;49925:8;49938:11;;49917:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:36::i;:::-;49909:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50029:22;;;;;;;;;;;49998:53;;50014:11;49998:13;:27;;;;:::i;:::-;:53;;;;49989:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;50119:8;;;;;;;;;;;50118:9;50110:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;50189:1;50172:13;:18;;;50169:362;;50232:11;50225:18;;:4;;:18;;;;:::i;:::-;50212:9;:31;;50204:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50169:362;;;50298:16;50331:13;50317:11;:27;;;;:::i;:::-;50298:46;;50371:1;50358:10;:14;;;50355:149;;;50419:1;50406:10;:14;;;;:::i;:::-;50393:27;;50459:10;50452:17;;:4;;:17;;;;:::i;:::-;50439:9;:30;;50431:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50355:149;50286:245;50169:362;50545:35;50555:10;50568:11;50545:35;;:9;:35::i;:::-;50634:11;50618:13;:27;;;;:::i;:::-;50589:15;:27;50605:10;50589:27;;;;;;;;;;;;;;;;:56;;;;;;;;;;;;;;;;;;50661:18;;;50689:20;;;49776:947;;49685:1038;;;:::o;46833:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;46799:25::-;;;;;;;;;;;;;:::o;27366:125::-;27430:7;27457:21;27470:7;27457:12;:21::i;:::-;:26;;;27450:33;;27366:125;;;:::o;47313:736::-;47372:18;47400:13;:11;:13::i;:::-;47372:42;;46691:5;47429:38;;47443:11;47429:25;;:11;:25;;;;:::i;:::-;:38;;;;47421:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;47498:9;47510:13;:25;47524:10;47510:25;;;;;;;;;;;;;;;;;;;;;;;;;47498:37;;47571:22;;;;;;;;;;;47550:43;;47564:3;47550:11;:17;;;;:::i;:::-;:43;;;;47542:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;47652:6;;;;;;;;;;;47651:7;47643:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;47705:1;47698:3;:8;;;47695:196;;;47763:1;47749:11;:15;;;;:::i;:::-;47741:25;;:4;;:25;;;;:::i;:::-;47728:9;:38;;47720:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;47695:196;;;47847:11;47840:18;;:4;;:18;;;;:::i;:::-;47827:9;:31;;47819:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47695:196;47897:35;47907:10;47920:11;47897:35;;:9;:35::i;:::-;47981:3;47967:11;:17;;;;:::i;:::-;47939:13;:25;47953:10;47939:25;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;47999:18;;;48025;;;47364:685;;47313:736;:::o;24814:206::-;24878:7;24919:1;24902:19;;:5;:19;;;24898:60;;;24930:28;;;;;;;;;;;;;;24898:60;24984:12;:19;24997:5;24984:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24976:36;;24969:43;;24814:206;;;:::o;45491:103::-;45070:12;:10;:12::i;:::-;45059:23;;:7;:5;:7::i;:::-;:23;;;45051:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;45556:30:::1;45583:1;45556:18;:30::i;:::-;45491:103::o:0;50729:102::-;45070:12;:10;:12::i;:::-;45059:23;;:7;:5;:7::i;:::-;:23;;;45051:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50815:10:::1;50803:9;:22;;;;;;;;;;;;:::i;:::-;;50729:102:::0;:::o;46767:27::-;;;;;;;;;;;;;:::o;44839:87::-;44885:7;44912:6;;;;;;;;;;;44905:13;;44839:87;:::o;27727:104::-;27783:13;27816:7;27809:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27727:104;:::o;29337:287::-;29448:12;:10;:12::i;:::-;29436:24;;:8;:24;;;29432:54;;;29469:17;;;;;;;;;;;;;;29432:54;29544:8;29499:18;:32;29518:12;:10;:12::i;:::-;29499:32;;;;;;;;;;;;;;;:42;29532:8;29499:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29597:8;29568:48;;29583:12;:10;:12::i;:::-;29568:48;;;29607:8;29568:48;;;;;;:::i;:::-;;;;;;;;29337:287;;:::o;46568:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46992:103::-;;;;:::o;30423:369::-;30590:28;30600:4;30606:2;30610:7;30590:9;:28::i;:::-;30633:15;:2;:13;;;:15::i;:::-;:76;;;;;30653:56;30684:4;30690:2;30694:7;30703:5;30653:30;:56::i;:::-;30652:57;30633:76;30629:156;;;30733:40;;;;;;;;;;;;;;30629:156;30423:369;;;;:::o;46940:40::-;;;;;;;;;;;;;:::o;49219:142::-;45070:12;:10;:12::i;:::-;45059:23;;:7;:5;:7::i;:::-;:23;;;45051:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49333:20:::1;49311:19;:42;;;;49219:142:::0;:::o;48394:510::-;48493:13;48534:17;48542:8;48534:7;:17::i;:::-;48518:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;48645:5;48633:17;;:8;;;;;;;;;;;:17;;;48629:64;;;48668:17;48661:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48629:64;48713:28;48744:10;:8;:10::i;:::-;48713:41;;48799:1;48774:14;48768:28;:32;:130;;;;;;;;;;;;;;;;;48836:14;48852:19;:8;:17;:19::i;:::-;48873:9;48819:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48768:130;48761:137;;;48394:510;;;;:::o;46656:40::-;46691:5;46656:40;:::o;46888:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;48912:81::-;45070:12;:10;:12::i;:::-;45059:23;;:7;:5;:7::i;:::-;:23;;;45051:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48981:6:::1;48970:8;;:17;;;;;;;;;;;;;;;;;;48912:81:::0;:::o;29695:164::-;29792:4;29816:18;:25;29835:5;29816:25;;;;;;;;;;;;;;;:35;29842:8;29816:35;;;;;;;;;;;;;;;;;;;;;;;;;29809:42;;29695:164;;;;:::o;45749:201::-;45070:12;:10;:12::i;:::-;45059:23;;:7;:5;:7::i;:::-;:23;;;45051:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;45858:1:::1;45838:22;;:8;:22;;;;45830:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45914:28;45933:8;45914:18;:28::i;:::-;45749:201:::0;:::o;14370:157::-;14455:4;14494:25;14479:40;;;:11;:40;;;;14472:47;;14370:157;;;:::o;31047:187::-;31104:4;31147:7;31128:15;:13;:15::i;:::-;:26;;:53;;;;;31168:13;;31158:7;:23;31128:53;:98;;;;;31199:11;:20;31211:7;31199:20;;;;;;;;;;;:27;;;;;;;;;;;;31198:28;31128:98;31121:105;;31047:187;;;:::o;2840:98::-;2893:7;2920:10;2913:17;;2840:98;:::o;39217:196::-;39359:2;39332:15;:24;39348:7;39332:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39397:7;39393:2;39377:28;;39386:5;39377:28;;;;;;;;;;;;39217:196;;;:::o;23468:92::-;23524:7;23468:92;:::o;34160:2130::-;34275:35;34313:21;34326:7;34313:12;:21::i;:::-;34275:59;;34373:4;34351:26;;:13;:18;;;:26;;;34347:67;;34386:28;;;;;;;;;;;;;;34347:67;34427:22;34469:4;34453:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34490:36;34507:4;34513:12;:10;:12::i;:::-;34490:16;:36::i;:::-;34453:73;:126;;;;34567:12;:10;:12::i;:::-;34543:36;;:20;34555:7;34543:11;:20::i;:::-;:36;;;34453:126;34427:153;;34598:17;34593:66;;34624:35;;;;;;;;;;;;;;34593:66;34688:1;34674:16;;:2;:16;;;34670:52;;;34699:23;;;;;;;;;;;;;;34670:52;34735:43;34757:4;34763:2;34767:7;34776:1;34735:21;:43::i;:::-;34843:35;34860:1;34864:7;34873:4;34843:8;:35::i;:::-;35204:1;35174:12;:18;35187:4;35174:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35248:1;35220:12;:16;35233:2;35220:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35266:31;35300:11;:20;35312:7;35300:20;;;;;;;;;;;35266:54;;35351:2;35335:8;:13;;;:18;;;;;;;;;;;;;;;;;;35401:15;35368:8;:23;;;:49;;;;;;;;;;;;;;;;;;35669:19;35701:1;35691:7;:11;35669:33;;35717:31;35751:11;:24;35763:11;35751:24;;;;;;;;;;;35717:58;;35819:1;35794:27;;:8;:13;;;;;;;;;;;;:27;;;35790:384;;;36004:13;;35989:11;:28;35985:174;;36058:4;36042:8;:13;;;:20;;;;;;;;;;;;;;;;;;36111:13;:28;;;36085:8;:23;;;:54;;;;;;;;;;;;;;;;;;35985:174;35790:384;35149:1036;;;36221:7;36217:2;36202:27;;36211:4;36202:27;;;;;;;;;;;;36240:42;36261:4;36267:2;36271:7;36280:1;36240:20;:42::i;:::-;34264:2026;;34160:2130;;;:::o;31242:104::-;31311:27;31321:2;31325:8;31311:27;;;;;;;;;;;;:9;:27::i;:::-;31242:104;;:::o;49375:138::-;49434:12;49498:5;49481:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;49471:34;;;;;;49464:41;;49375:138;;;:::o;49519:162::-;49597:4;49621:52;49640:5;49647:19;;49668:4;49621:18;:52::i;:::-;49614:59;;49519:162;;;;:::o;26195:1109::-;26257:21;;:::i;:::-;26291:12;26306:7;26291:22;;26374:4;26355:15;:13;:15::i;:::-;:23;;:47;;;;;26389:13;;26382:4;:20;26355:47;26351:886;;;26423:31;26457:11;:17;26469:4;26457:17;;;;;;;;;;;26423:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26498:9;:16;;;26493:729;;26569:1;26543:28;;:9;:14;;;:28;;;26539:101;;26607:9;26600:16;;;;;;26539:101;26942:261;26949:4;26942:261;;;26982:6;;;;;;;;27027:11;:17;27039:4;27027:17;;;;;;;;;;;27015:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27101:1;27075:28;;:9;:14;;;:28;;;27071:109;;27143:9;27136:16;;;;;;27071:109;26942:261;;;26493:729;26404:833;26351:886;27265:31;;;;;;;;;;;;;;26195:1109;;;;:::o;46110:191::-;46184:16;46203:6;;;;;;;;;;;46184:25;;46229:8;46220:6;;:17;;;;;;;;;;;;;;;;;;46284:8;46253:40;;46274:8;46253:40;;;;;;;;;;;;46173:128;46110:191;:::o;4287:326::-;4347:4;4604:1;4582:7;:19;;;:23;4575:30;;4287:326;;;:::o;39905:667::-;40068:4;40105:2;40089:36;;;40126:12;:10;:12::i;:::-;40140:4;40146:7;40155:5;40089:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40085:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40340:1;40323:6;:13;:18;40319:235;;;40369:40;;;;;;;;;;;;;;40319:235;40512:6;40506:13;40497:6;40493:2;40489:15;40482:38;40085:480;40218:45;;;40208:55;;;:6;:55;;;;40201:62;;;39905:667;;;;;;:::o;51322:97::-;51375:13;51404:9;51397:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51322:97;:::o;402:723::-;458:13;688:1;679:5;:10;675:53;;;706:10;;;;;;;;;;;;;;;;;;;;;675:53;738:12;753:5;738:20;;769:14;794:78;809:1;801:4;:9;794:78;;827:8;;;;;:::i;:::-;;;;858:2;850:10;;;;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;882:39;;932:154;948:1;939:5;:10;932:154;;976:1;966:11;;;;;:::i;:::-;;;1043:2;1035:5;:10;;;;:::i;:::-;1022:2;:24;;;;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1072:2;1063:11;;;;;:::i;:::-;;;932:154;;;1110:6;1096:21;;;;;402:723;;;;:::o;41220:159::-;;;;;:::o;42038:158::-;;;;;:::o;31709:163::-;31832:32;31838:2;31842:8;31852:5;31859:4;31832:5;:32::i;:::-;31709:163;;;:::o;42963:190::-;43088:4;43141;43112:25;43125:5;43132:4;43112:12;:25::i;:::-;:33;43105:40;;42963:190;;;;;:::o;32131:1775::-;32270:20;32293:13;;32270:36;;32335:1;32321:16;;:2;:16;;;32317:48;;;32346:19;;;;;;;;;;;;;;32317:48;32392:1;32380:8;:13;32376:44;;;32402:18;;;;;;;;;;;;;;32376:44;32433:61;32463:1;32467:2;32471:12;32485:8;32433:21;:61::i;:::-;32806:8;32771:12;:16;32784:2;32771:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32870:8;32830:12;:16;32843:2;32830:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32929:2;32896:11;:25;32908:12;32896:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32996:15;32946:11;:25;32958:12;32946:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33029:20;33052:12;33029:35;;33079:11;33108:8;33093:12;:23;33079:37;;33137:4;:23;;;;;33145:15;:2;:13;;;:15::i;:::-;33137:23;33133:641;;;33181:314;33237:12;33233:2;33212:38;;33229:1;33212:38;;;;;;;;;;;;33278:69;33317:1;33321:2;33325:14;;;;;;33341:5;33278:30;:69::i;:::-;33273:174;;33383:40;;;;;;;;;;;;;;33273:174;33490:3;33474:12;:19;;33181:314;;33576:12;33559:13;;:29;33555:43;;33590:8;;;33555:43;33133:641;;;33639:120;33695:14;;;;;;33691:2;33670:40;;33687:1;33670:40;;;;;;;;;;;;33754:3;33738:12;:19;;33639:120;;33133:641;33804:12;33788:13;:28;;;;32746:1082;;33838:60;33867:1;33871:2;33875:12;33889:8;33838:20;:60::i;:::-;32259:1647;32131:1775;;;;:::o;43515:675::-;43598:7;43618:20;43641:4;43618:27;;43661:9;43656:497;43680:5;:12;43676:1;:16;43656:497;;;43714:20;43737:5;43743:1;43737:8;;;;;;;;:::i;:::-;;;;;;;;43714:31;;43780:12;43764;:28;43760:382;;43907:42;43922:12;43936;43907:14;:42::i;:::-;43892:57;;43760:382;;;44084:42;44099:12;44113;44084:14;:42::i;:::-;44069:57;;43760:382;43699:454;43694:3;;;;;:::i;:::-;;;;43656:497;;;;44170:12;44163:19;;;43515:675;;;;:::o;44198:224::-;44266:13;44329:1;44323:4;44316:15;44358:1;44352:4;44345:15;44399:4;44393;44383:21;44374:30;;44198:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:137::-;2913:5;2951:6;2938:20;2929:29;;2967:32;2993:5;2967:32;:::i;:::-;2868:137;;;;:::o;3011:139::-;3057:5;3095:6;3082:20;3073:29;;3111:33;3138:5;3111:33;:::i;:::-;3011:139;;;;:::o;3156:135::-;3200:5;3238:6;3225:20;3216:29;;3254:31;3279:5;3254:31;:::i;:::-;3156:135;;;;:::o;3297:329::-;3356:6;3405:2;3393:9;3384:7;3380:23;3376:32;3373:119;;;3411:79;;:::i;:::-;3373:119;3531:1;3556:53;3601:7;3592:6;3581:9;3577:22;3556:53;:::i;:::-;3546:63;;3502:117;3297:329;;;;:::o;3632:474::-;3700:6;3708;3757:2;3745:9;3736:7;3732:23;3728:32;3725:119;;;3763:79;;:::i;:::-;3725:119;3883:1;3908:53;3953:7;3944:6;3933:9;3929:22;3908:53;:::i;:::-;3898:63;;3854:117;4010:2;4036:53;4081:7;4072:6;4061:9;4057:22;4036:53;:::i;:::-;4026:63;;3981:118;3632:474;;;;;:::o;4112:619::-;4189:6;4197;4205;4254:2;4242:9;4233:7;4229:23;4225:32;4222:119;;;4260:79;;:::i;:::-;4222:119;4380:1;4405:53;4450:7;4441:6;4430:9;4426:22;4405:53;:::i;:::-;4395:63;;4351:117;4507:2;4533:53;4578:7;4569:6;4558:9;4554:22;4533:53;:::i;:::-;4523:63;;4478:118;4635:2;4661:53;4706:7;4697:6;4686:9;4682:22;4661:53;:::i;:::-;4651:63;;4606:118;4112:619;;;;;:::o;4737:943::-;4832:6;4840;4848;4856;4905:3;4893:9;4884:7;4880:23;4876:33;4873:120;;;4912:79;;:::i;:::-;4873:120;5032:1;5057:53;5102:7;5093:6;5082:9;5078:22;5057:53;:::i;:::-;5047:63;;5003:117;5159:2;5185:53;5230:7;5221:6;5210:9;5206:22;5185:53;:::i;:::-;5175:63;;5130:118;5287:2;5313:53;5358:7;5349:6;5338:9;5334:22;5313:53;:::i;:::-;5303:63;;5258:118;5443:2;5432:9;5428:18;5415:32;5474:18;5466:6;5463:30;5460:117;;;5496:79;;:::i;:::-;5460:117;5601:62;5655:7;5646:6;5635:9;5631:22;5601:62;:::i;:::-;5591:72;;5386:287;4737:943;;;;;;;:::o;5686:468::-;5751:6;5759;5808:2;5796:9;5787:7;5783:23;5779:32;5776:119;;;5814:79;;:::i;:::-;5776:119;5934:1;5959:53;6004:7;5995:6;5984:9;5980:22;5959:53;:::i;:::-;5949:63;;5905:117;6061:2;6087:50;6129:7;6120:6;6109:9;6105:22;6087:50;:::i;:::-;6077:60;;6032:115;5686:468;;;;;:::o;6160:474::-;6228:6;6236;6285:2;6273:9;6264:7;6260:23;6256:32;6253:119;;;6291:79;;:::i;:::-;6253:119;6411:1;6436:53;6481:7;6472:6;6461:9;6457:22;6436:53;:::i;:::-;6426:63;;6382:117;6538:2;6564:53;6609:7;6600:6;6589:9;6585:22;6564:53;:::i;:::-;6554:63;;6509:118;6160:474;;;;;:::o;6640:323::-;6696:6;6745:2;6733:9;6724:7;6720:23;6716:32;6713:119;;;6751:79;;:::i;:::-;6713:119;6871:1;6896:50;6938:7;6929:6;6918:9;6914:22;6896:50;:::i;:::-;6886:60;;6842:114;6640:323;;;;:::o;6969:329::-;7028:6;7077:2;7065:9;7056:7;7052:23;7048:32;7045:119;;;7083:79;;:::i;:::-;7045:119;7203:1;7228:53;7273:7;7264:6;7253:9;7249:22;7228:53;:::i;:::-;7218:63;;7174:117;6969:329;;;;:::o;7304:327::-;7362:6;7411:2;7399:9;7390:7;7386:23;7382:32;7379:119;;;7417:79;;:::i;:::-;7379:119;7537:1;7562:52;7606:7;7597:6;7586:9;7582:22;7562:52;:::i;:::-;7552:62;;7508:116;7304:327;;;;:::o;7637:349::-;7706:6;7755:2;7743:9;7734:7;7730:23;7726:32;7723:119;;;7761:79;;:::i;:::-;7723:119;7881:1;7906:63;7961:7;7952:6;7941:9;7937:22;7906:63;:::i;:::-;7896:73;;7852:127;7637:349;;;;:::o;7992:509::-;8061:6;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8264:1;8253:9;8249:17;8236:31;8294:18;8286:6;8283:30;8280:117;;;8316:79;;:::i;:::-;8280:117;8421:63;8476:7;8467:6;8456:9;8452:22;8421:63;:::i;:::-;8411:73;;8207:287;7992:509;;;;:::o;8507:472::-;8574:6;8582;8631:2;8619:9;8610:7;8606:23;8602:32;8599:119;;;8637:79;;:::i;:::-;8599:119;8757:1;8782:52;8826:7;8817:6;8806:9;8802:22;8782:52;:::i;:::-;8772:62;;8728:116;8883:2;8909:53;8954:7;8945:6;8934:9;8930:22;8909:53;:::i;:::-;8899:63;;8854:118;8507:472;;;;;:::o;8985:329::-;9044:6;9093:2;9081:9;9072:7;9068:23;9064:32;9061:119;;;9099:79;;:::i;:::-;9061:119;9219:1;9244:53;9289:7;9280:6;9269:9;9265:22;9244:53;:::i;:::-;9234:63;;9190:117;8985:329;;;;:::o;9320:325::-;9377:6;9426:2;9414:9;9405:7;9401:23;9397:32;9394:119;;;9432:79;;:::i;:::-;9394:119;9552:1;9577:51;9620:7;9611:6;9600:9;9596:22;9577:51;:::i;:::-;9567:61;;9523:115;9320:325;;;;:::o;9651:700::-;9744:6;9752;9760;9809:2;9797:9;9788:7;9784:23;9780:32;9777:119;;;9815:79;;:::i;:::-;9777:119;9935:1;9960:51;10003:7;9994:6;9983:9;9979:22;9960:51;:::i;:::-;9950:61;;9906:115;10088:2;10077:9;10073:18;10060:32;10119:18;10111:6;10108:30;10105:117;;;10141:79;;:::i;:::-;10105:117;10254:80;10326:7;10317:6;10306:9;10302:22;10254:80;:::i;:::-;10236:98;;;;10031:313;9651:700;;;;;:::o;10357:118::-;10444:24;10462:5;10444:24;:::i;:::-;10439:3;10432:37;10357:118;;:::o;10481:157::-;10586:45;10606:24;10624:5;10606:24;:::i;:::-;10586:45;:::i;:::-;10581:3;10574:58;10481:157;;:::o;10644:109::-;10725:21;10740:5;10725:21;:::i;:::-;10720:3;10713:34;10644:109;;:::o;10759:118::-;10846:24;10864:5;10846:24;:::i;:::-;10841:3;10834:37;10759:118;;:::o;10883:360::-;10969:3;10997:38;11029:5;10997:38;:::i;:::-;11051:70;11114:6;11109:3;11051:70;:::i;:::-;11044:77;;11130:52;11175:6;11170:3;11163:4;11156:5;11152:16;11130:52;:::i;:::-;11207:29;11229:6;11207:29;:::i;:::-;11202:3;11198:39;11191:46;;10973:270;10883:360;;;;:::o;11249:364::-;11337:3;11365:39;11398:5;11365:39;:::i;:::-;11420:71;11484:6;11479:3;11420:71;:::i;:::-;11413:78;;11500:52;11545:6;11540:3;11533:4;11526:5;11522:16;11500:52;:::i;:::-;11577:29;11599:6;11577:29;:::i;:::-;11572:3;11568:39;11561:46;;11341:272;11249:364;;;;:::o;11619:377::-;11725:3;11753:39;11786:5;11753:39;:::i;:::-;11808:89;11890:6;11885:3;11808:89;:::i;:::-;11801:96;;11906:52;11951:6;11946:3;11939:4;11932:5;11928:16;11906:52;:::i;:::-;11983:6;11978:3;11974:16;11967:23;;11729:267;11619:377;;;;:::o;12026:845::-;12129:3;12166:5;12160:12;12195:36;12221:9;12195:36;:::i;:::-;12247:89;12329:6;12324:3;12247:89;:::i;:::-;12240:96;;12367:1;12356:9;12352:17;12383:1;12378:137;;;;12529:1;12524:341;;;;12345:520;;12378:137;12462:4;12458:9;12447;12443:25;12438:3;12431:38;12498:6;12493:3;12489:16;12482:23;;12378:137;;12524:341;12591:38;12623:5;12591:38;:::i;:::-;12651:1;12665:154;12679:6;12676:1;12673:13;12665:154;;;12753:7;12747:14;12743:1;12738:3;12734:11;12727:35;12803:1;12794:7;12790:15;12779:26;;12701:4;12698:1;12694:12;12689:17;;12665:154;;;12848:6;12843:3;12839:16;12832:23;;12531:334;;12345:520;;12133:738;;12026:845;;;;:::o;12877:366::-;13019:3;13040:67;13104:2;13099:3;13040:67;:::i;:::-;13033:74;;13116:93;13205:3;13116:93;:::i;:::-;13234:2;13229:3;13225:12;13218:19;;12877:366;;;:::o;13249:::-;13391:3;13412:67;13476:2;13471:3;13412:67;:::i;:::-;13405:74;;13488:93;13577:3;13488:93;:::i;:::-;13606:2;13601:3;13597:12;13590:19;;13249:366;;;:::o;13621:::-;13763:3;13784:67;13848:2;13843:3;13784:67;:::i;:::-;13777:74;;13860:93;13949:3;13860:93;:::i;:::-;13978:2;13973:3;13969:12;13962:19;;13621:366;;;:::o;13993:::-;14135:3;14156:67;14220:2;14215:3;14156:67;:::i;:::-;14149:74;;14232:93;14321:3;14232:93;:::i;:::-;14350:2;14345:3;14341:12;14334:19;;13993:366;;;:::o;14365:::-;14507:3;14528:67;14592:2;14587:3;14528:67;:::i;:::-;14521:74;;14604:93;14693:3;14604:93;:::i;:::-;14722:2;14717:3;14713:12;14706:19;;14365:366;;;:::o;14737:::-;14879:3;14900:67;14964:2;14959:3;14900:67;:::i;:::-;14893:74;;14976:93;15065:3;14976:93;:::i;:::-;15094:2;15089:3;15085:12;15078:19;;14737:366;;;:::o;15109:::-;15251:3;15272:67;15336:2;15331:3;15272:67;:::i;:::-;15265:74;;15348:93;15437:3;15348:93;:::i;:::-;15466:2;15461:3;15457:12;15450:19;;15109:366;;;:::o;15481:::-;15623:3;15644:67;15708:2;15703:3;15644:67;:::i;:::-;15637:74;;15720:93;15809:3;15720:93;:::i;:::-;15838:2;15833:3;15829:12;15822:19;;15481:366;;;:::o;15853:::-;15995:3;16016:67;16080:2;16075:3;16016:67;:::i;:::-;16009:74;;16092:93;16181:3;16092:93;:::i;:::-;16210:2;16205:3;16201:12;16194:19;;15853:366;;;:::o;16225:::-;16367:3;16388:67;16452:2;16447:3;16388:67;:::i;:::-;16381:74;;16464:93;16553:3;16464:93;:::i;:::-;16582:2;16577:3;16573:12;16566:19;;16225:366;;;:::o;16597:::-;16739:3;16760:67;16824:2;16819:3;16760:67;:::i;:::-;16753:74;;16836:93;16925:3;16836:93;:::i;:::-;16954:2;16949:3;16945:12;16938:19;;16597:366;;;:::o;16969:115::-;17054:23;17071:5;17054:23;:::i;:::-;17049:3;17042:36;16969:115;;:::o;17090:118::-;17177:24;17195:5;17177:24;:::i;:::-;17172:3;17165:37;17090:118;;:::o;17214:112::-;17297:22;17313:5;17297:22;:::i;:::-;17292:3;17285:35;17214:112;;:::o;17332:256::-;17444:3;17459:75;17530:3;17521:6;17459:75;:::i;:::-;17559:2;17554:3;17550:12;17543:19;;17579:3;17572:10;;17332:256;;;;:::o;17594:589::-;17819:3;17841:95;17932:3;17923:6;17841:95;:::i;:::-;17834:102;;17953:95;18044:3;18035:6;17953:95;:::i;:::-;17946:102;;18065:92;18153:3;18144:6;18065:92;:::i;:::-;18058:99;;18174:3;18167:10;;17594:589;;;;;;:::o;18189:222::-;18282:4;18320:2;18309:9;18305:18;18297:26;;18333:71;18401:1;18390:9;18386:17;18377:6;18333:71;:::i;:::-;18189:222;;;;:::o;18417:640::-;18612:4;18650:3;18639:9;18635:19;18627:27;;18664:71;18732:1;18721:9;18717:17;18708:6;18664:71;:::i;:::-;18745:72;18813:2;18802:9;18798:18;18789:6;18745:72;:::i;:::-;18827;18895:2;18884:9;18880:18;18871:6;18827:72;:::i;:::-;18946:9;18940:4;18936:20;18931:2;18920:9;18916:18;18909:48;18974:76;19045:4;19036:6;18974:76;:::i;:::-;18966:84;;18417:640;;;;;;;:::o;19063:210::-;19150:4;19188:2;19177:9;19173:18;19165:26;;19201:65;19263:1;19252:9;19248:17;19239:6;19201:65;:::i;:::-;19063:210;;;;:::o;19279:222::-;19372:4;19410:2;19399:9;19395:18;19387:26;;19423:71;19491:1;19480:9;19476:17;19467:6;19423:71;:::i;:::-;19279:222;;;;:::o;19507:313::-;19620:4;19658:2;19647:9;19643:18;19635:26;;19707:9;19701:4;19697:20;19693:1;19682:9;19678:17;19671:47;19735:78;19808:4;19799:6;19735:78;:::i;:::-;19727:86;;19507:313;;;;:::o;19826:419::-;19992:4;20030:2;20019:9;20015:18;20007:26;;20079:9;20073:4;20069:20;20065:1;20054:9;20050:17;20043:47;20107:131;20233:4;20107:131;:::i;:::-;20099:139;;19826:419;;;:::o;20251:::-;20417:4;20455:2;20444:9;20440:18;20432:26;;20504:9;20498:4;20494:20;20490:1;20479:9;20475:17;20468:47;20532:131;20658:4;20532:131;:::i;:::-;20524:139;;20251:419;;;:::o;20676:::-;20842:4;20880:2;20869:9;20865:18;20857:26;;20929:9;20923:4;20919:20;20915:1;20904:9;20900:17;20893:47;20957:131;21083:4;20957:131;:::i;:::-;20949:139;;20676:419;;;:::o;21101:::-;21267:4;21305:2;21294:9;21290:18;21282:26;;21354:9;21348:4;21344:20;21340:1;21329:9;21325:17;21318:47;21382:131;21508:4;21382:131;:::i;:::-;21374:139;;21101:419;;;:::o;21526:::-;21692:4;21730:2;21719:9;21715:18;21707:26;;21779:9;21773:4;21769:20;21765:1;21754:9;21750:17;21743:47;21807:131;21933:4;21807:131;:::i;:::-;21799:139;;21526:419;;;:::o;21951:::-;22117:4;22155:2;22144:9;22140:18;22132:26;;22204:9;22198:4;22194:20;22190:1;22179:9;22175:17;22168:47;22232:131;22358:4;22232:131;:::i;:::-;22224:139;;21951:419;;;:::o;22376:::-;22542:4;22580:2;22569:9;22565:18;22557:26;;22629:9;22623:4;22619:20;22615:1;22604:9;22600:17;22593:47;22657:131;22783:4;22657:131;:::i;:::-;22649:139;;22376:419;;;:::o;22801:::-;22967:4;23005:2;22994:9;22990:18;22982:26;;23054:9;23048:4;23044:20;23040:1;23029:9;23025:17;23018:47;23082:131;23208:4;23082:131;:::i;:::-;23074:139;;22801:419;;;:::o;23226:::-;23392:4;23430:2;23419:9;23415:18;23407:26;;23479:9;23473:4;23469:20;23465:1;23454:9;23450:17;23443:47;23507:131;23633:4;23507:131;:::i;:::-;23499:139;;23226:419;;;:::o;23651:::-;23817:4;23855:2;23844:9;23840:18;23832:26;;23904:9;23898:4;23894:20;23890:1;23879:9;23875:17;23868:47;23932:131;24058:4;23932:131;:::i;:::-;23924:139;;23651:419;;;:::o;24076:::-;24242:4;24280:2;24269:9;24265:18;24257:26;;24329:9;24323:4;24319:20;24315:1;24304:9;24300:17;24293:47;24357:131;24483:4;24357:131;:::i;:::-;24349:139;;24076:419;;;:::o;24501:218::-;24592:4;24630:2;24619:9;24615:18;24607:26;;24643:69;24709:1;24698:9;24694:17;24685:6;24643:69;:::i;:::-;24501:218;;;;:::o;24725:222::-;24818:4;24856:2;24845:9;24841:18;24833:26;;24869:71;24937:1;24926:9;24922:17;24913:6;24869:71;:::i;:::-;24725:222;;;;:::o;24953:214::-;25042:4;25080:2;25069:9;25065:18;25057:26;;25093:67;25157:1;25146:9;25142:17;25133:6;25093:67;:::i;:::-;24953:214;;;;:::o;25173:129::-;25207:6;25234:20;;:::i;:::-;25224:30;;25263:33;25291:4;25283:6;25263:33;:::i;:::-;25173:129;;;:::o;25308:75::-;25341:6;25374:2;25368:9;25358:19;;25308:75;:::o;25389:307::-;25450:4;25540:18;25532:6;25529:30;25526:56;;;25562:18;;:::i;:::-;25526:56;25600:29;25622:6;25600:29;:::i;:::-;25592:37;;25684:4;25678;25674:15;25666:23;;25389:307;;;:::o;25702:308::-;25764:4;25854:18;25846:6;25843:30;25840:56;;;25876:18;;:::i;:::-;25840:56;25914:29;25936:6;25914:29;:::i;:::-;25906:37;;25998:4;25992;25988:15;25980:23;;25702:308;;;:::o;26016:141::-;26065:4;26088:3;26080:11;;26111:3;26108:1;26101:14;26145:4;26142:1;26132:18;26124:26;;26016:141;;;:::o;26163:98::-;26214:6;26248:5;26242:12;26232:22;;26163:98;;;:::o;26267:99::-;26319:6;26353:5;26347:12;26337:22;;26267:99;;;:::o;26372:168::-;26455:11;26489:6;26484:3;26477:19;26529:4;26524:3;26520:14;26505:29;;26372:168;;;;:::o;26546:169::-;26630:11;26664:6;26659:3;26652:19;26704:4;26699:3;26695:14;26680:29;;26546:169;;;;:::o;26721:148::-;26823:11;26860:3;26845:18;;26721:148;;;;:::o;26875:242::-;26914:3;26933:19;26950:1;26933:19;:::i;:::-;26928:24;;26966:19;26983:1;26966:19;:::i;:::-;26961:24;;27059:1;27051:6;27047:14;27044:1;27041:21;27038:47;;;27065:18;;:::i;:::-;27038:47;27109:1;27106;27102:9;27095:16;;26875:242;;;;:::o;27123:305::-;27163:3;27182:20;27200:1;27182:20;:::i;:::-;27177:25;;27216:20;27234:1;27216:20;:::i;:::-;27211:25;;27370:1;27302:66;27298:74;27295:1;27292:81;27289:107;;;27376:18;;:::i;:::-;27289:107;27420:1;27417;27413:9;27406:16;;27123:305;;;;:::o;27434:237::-;27472:3;27491:18;27507:1;27491:18;:::i;:::-;27486:23;;27523:18;27539:1;27523:18;:::i;:::-;27518:23;;27613:1;27607:4;27603:12;27600:1;27597:19;27594:45;;;27619:18;;:::i;:::-;27594:45;27663:1;27660;27656:9;27649:16;;27434:237;;;;:::o;27677:185::-;27717:1;27734:20;27752:1;27734:20;:::i;:::-;27729:25;;27768:20;27786:1;27768:20;:::i;:::-;27763:25;;27807:1;27797:35;;27812:18;;:::i;:::-;27797:35;27854:1;27851;27847:9;27842:14;;27677:185;;;;:::o;27868:348::-;27908:7;27931:20;27949:1;27931:20;:::i;:::-;27926:25;;27965:20;27983:1;27965:20;:::i;:::-;27960:25;;28153:1;28085:66;28081:74;28078:1;28075:81;28070:1;28063:9;28056:17;28052:105;28049:131;;;28160:18;;:::i;:::-;28049:131;28208:1;28205;28201:9;28190:20;;27868:348;;;;:::o;28222:191::-;28262:4;28282:20;28300:1;28282:20;:::i;:::-;28277:25;;28316:20;28334:1;28316:20;:::i;:::-;28311:25;;28355:1;28352;28349:8;28346:34;;;28360:18;;:::i;:::-;28346:34;28405:1;28402;28398:9;28390:17;;28222:191;;;;:::o;28419:185::-;28457:4;28477:18;28493:1;28477:18;:::i;:::-;28472:23;;28509:18;28525:1;28509:18;:::i;:::-;28504:23;;28546:1;28543;28540:8;28537:34;;;28551:18;;:::i;:::-;28537:34;28596:1;28593;28589:9;28581:17;;28419:185;;;;:::o;28610:96::-;28647:7;28676:24;28694:5;28676:24;:::i;:::-;28665:35;;28610:96;;;:::o;28712:90::-;28746:7;28789:5;28782:13;28775:21;28764:32;;28712:90;;;:::o;28808:77::-;28845:7;28874:5;28863:16;;28808:77;;;:::o;28891:149::-;28927:7;28967:66;28960:5;28956:78;28945:89;;28891:149;;;:::o;29046:89::-;29082:7;29122:6;29115:5;29111:18;29100:29;;29046:89;;;:::o;29141:126::-;29178:7;29218:42;29211:5;29207:54;29196:65;;29141:126;;;:::o;29273:77::-;29310:7;29339:5;29328:16;;29273:77;;;:::o;29356:86::-;29391:7;29431:4;29424:5;29420:16;29409:27;;29356:86;;;:::o;29448:154::-;29532:6;29527:3;29522;29509:30;29594:1;29585:6;29580:3;29576:16;29569:27;29448:154;;;:::o;29608:307::-;29676:1;29686:113;29700:6;29697:1;29694:13;29686:113;;;29785:1;29780:3;29776:11;29770:18;29766:1;29761:3;29757:11;29750:39;29722:2;29719:1;29715:10;29710:15;;29686:113;;;29817:6;29814:1;29811:13;29808:101;;;29897:1;29888:6;29883:3;29879:16;29872:27;29808:101;29657:258;29608:307;;;:::o;29921:320::-;29965:6;30002:1;29996:4;29992:12;29982:22;;30049:1;30043:4;30039:12;30070:18;30060:81;;30126:4;30118:6;30114:17;30104:27;;30060:81;30188:2;30180:6;30177:14;30157:18;30154:38;30151:84;;;30207:18;;:::i;:::-;30151:84;29972:269;29921:320;;;:::o;30247:281::-;30330:27;30352:4;30330:27;:::i;:::-;30322:6;30318:40;30460:6;30448:10;30445:22;30424:18;30412:10;30409:34;30406:62;30403:88;;;30471:18;;:::i;:::-;30403:88;30511:10;30507:2;30500:22;30290:238;30247:281;;:::o;30534:233::-;30573:3;30596:24;30614:5;30596:24;:::i;:::-;30587:33;;30642:66;30635:5;30632:77;30629:103;;;30712:18;;:::i;:::-;30629:103;30759:1;30752:5;30748:13;30741:20;;30534:233;;;:::o;30773:100::-;30812:7;30841:26;30861:5;30841:26;:::i;:::-;30830:37;;30773:100;;;:::o;30879:94::-;30918:7;30947:20;30961:5;30947:20;:::i;:::-;30936:31;;30879:94;;;:::o;30979:176::-;31011:1;31028:20;31046:1;31028:20;:::i;:::-;31023:25;;31062:20;31080:1;31062:20;:::i;:::-;31057:25;;31101:1;31091:35;;31106:18;;:::i;:::-;31091:35;31147:1;31144;31140:9;31135:14;;30979:176;;;;:::o;31161:180::-;31209:77;31206:1;31199:88;31306:4;31303:1;31296:15;31330:4;31327:1;31320:15;31347:180;31395:77;31392:1;31385:88;31492:4;31489:1;31482:15;31516:4;31513:1;31506:15;31533:180;31581:77;31578:1;31571:88;31678:4;31675:1;31668:15;31702:4;31699:1;31692:15;31719:180;31767:77;31764:1;31757:88;31864:4;31861:1;31854:15;31888:4;31885:1;31878:15;31905:180;31953:77;31950:1;31943:88;32050:4;32047:1;32040:15;32074:4;32071:1;32064:15;32091:117;32200:1;32197;32190:12;32214:117;32323:1;32320;32313:12;32337:117;32446:1;32443;32436:12;32460:117;32569:1;32566;32559:12;32583:117;32692:1;32689;32682:12;32706:117;32815:1;32812;32805:12;32829:102;32870:6;32921:2;32917:7;32912:2;32905:5;32901:14;32897:28;32887:38;;32829:102;;;:::o;32937:94::-;32970:8;33018:5;33014:2;33010:14;32989:35;;32937:94;;;:::o;33037:169::-;33177:21;33173:1;33165:6;33161:14;33154:45;33037:169;:::o;33212:225::-;33352:34;33348:1;33340:6;33336:14;33329:58;33421:8;33416:2;33408:6;33404:15;33397:33;33212:225;:::o;33443:176::-;33583:28;33579:1;33571:6;33567:14;33560:52;33443:176;:::o;33625:223::-;33765:34;33761:1;33753:6;33749:14;33742:58;33834:6;33829:2;33821:6;33817:15;33810:31;33625:223;:::o;33854:222::-;33994:34;33990:1;33982:6;33978:14;33971:58;34063:5;34058:2;34050:6;34046:15;34039:30;33854:222;:::o;34082:182::-;34222:34;34218:1;34210:6;34206:14;34199:58;34082:182;:::o;34270:170::-;34410:22;34406:1;34398:6;34394:14;34387:46;34270:170;:::o;34446:173::-;34586:25;34582:1;34574:6;34570:14;34563:49;34446:173;:::o;34625:234::-;34765:34;34761:1;34753:6;34749:14;34742:58;34834:17;34829:2;34821:6;34817:15;34810:42;34625:234;:::o;34865:169::-;35005:21;35001:1;34993:6;34989:14;34982:45;34865:169;:::o;35040:::-;35180:21;35176:1;35168:6;35164:14;35157:45;35040:169;:::o;35215:122::-;35288:24;35306:5;35288:24;:::i;:::-;35281:5;35278:35;35268:63;;35327:1;35324;35317:12;35268:63;35215:122;:::o;35343:116::-;35413:21;35428:5;35413:21;:::i;:::-;35406:5;35403:32;35393:60;;35449:1;35446;35439:12;35393:60;35343:116;:::o;35465:122::-;35538:24;35556:5;35538:24;:::i;:::-;35531:5;35528:35;35518:63;;35577:1;35574;35567:12;35518:63;35465:122;:::o;35593:120::-;35665:23;35682:5;35665:23;:::i;:::-;35658:5;35655:34;35645:62;;35703:1;35700;35693:12;35645:62;35593:120;:::o;35719:::-;35791:23;35808:5;35791:23;:::i;:::-;35784:5;35781:34;35771:62;;35829:1;35826;35819:12;35771:62;35719:120;:::o;35845:122::-;35918:24;35936:5;35918:24;:::i;:::-;35911:5;35908:35;35898:63;;35957:1;35954;35947:12;35898:63;35845:122;:::o;35973:118::-;36044:22;36060:5;36044:22;:::i;:::-;36037:5;36034:33;36024:61;;36081:1;36078;36071:12;36024:61;35973:118;:::o

Swarm Source

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