ETH Price: $3,471.42 (+2.28%)
Gas: 12 Gwei

Token

Santa Surprise Box (SSB)
 

Overview

Max Total Supply

999 SSB

Holders

501

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️.eth
Balance
2 SSB
0x1b0cAe4374eBc96289D8dAB50EeFfc20D3528503
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:
SantaSurprise

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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 {}
}
 
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.13;
 
interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
pragma solidity ^0.8.13;
 
 
 
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);
 
    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);
 
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }
 
    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
pragma solidity ^0.8.13;
 
 
 
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);
 
    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
    pragma solidity ^0.8.7;
 
    contract SantaSurprise is ERC721A, DefaultOperatorFilterer , Ownable {
    using Strings for uint256;
 
 
  string private uriPrefix ;
  string private uriSuffix = ".json";
  string public hiddenURL;
 
 
 
  address public presentsContractAddress;
  uint256 public christmasTime = 1671926400;
 
 
 
  uint256 public cost = 0.0045 ether;
 
 
 
  uint16 public maxSupply = 999;
  uint8 public maxMintAmountPerTx = 2;
  uint8 public maxFreeMintAmountPerWallet = 0;
 
 
  bool public paused = true;
  bool public reveal =false;
 
   mapping (address => uint8) public NFTPerPublicAddress;
 
 
 
 
 
 
 
  constructor() ERC721A("Santa Surprise Box", "SSB") {
  }
 
 
 
 
  function mint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
     uint8 nft = NFTPerPublicAddress[msg.sender];
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction.");
 
    require(!paused, "The contract is paused!");
 
      if(nft >= maxFreeMintAmountPerWallet)
    {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    else {
         uint8 costAmount = _mintAmount + nft;
        if(costAmount > maxFreeMintAmountPerWallet)
       {
        costAmount = costAmount - maxFreeMintAmountPerWallet;
        require(msg.value >= cost * costAmount, "Insufficient funds!");
       }
 
 
    }
 
 
 
    _safeMint(msg.sender , _mintAmount);
 
    NFTPerPublicAddress[msg.sender] = _mintAmount + nft;
 
     delete totalSupply;
     delete _mintAmount;
  }
 
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }
 
  function  Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }
 
     delete _amountPerAddress;
     delete totalSupply;
  }
 
 
 
  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }
 
  function getPresentsContractAddress() external view
  returns (address)
  {
    return presentsContractAddress;
  }
 
  function setPresentsContractAddress(
    address contractAddress
  )
  external onlyOwner
  {
    presentsContractAddress = contractAddress;
  }
 
 
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
 
 
if ( reveal == false)
{
    return hiddenURL;
}
 
 
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
        : "";
  }
 
 
 
 
 function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;
 
}
 
 
 
 
  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }
 
 
  function setPaused() external onlyOwner {
    paused = !paused;
 
  }
 
  function setCost(uint _cost) external onlyOwner{
      cost = _cost;
 
  }
 
 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }
 
  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;
 
  }
 
 
 
  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(msg.sender).transfer(_balance ); 
 
  }
 
 
  function _baseURI() internal view  override returns (string memory) {
    return uriPrefix;
  }
 
    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }
 
    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }
 
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","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":[{"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":"christmasTime","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":"getPresentsContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","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":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","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":"presentsContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setPresentsContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90816200004a919062000722565b506363a79280600d55660ffcb9e57d4000600e556103e7600f60006101000a81548161ffff021916908361ffff1602179055506002600f60026101000a81548160ff021916908360ff1602179055506000600f60036101000a81548160ff021916908360ff1602179055506001600f60046101000a81548160ff0219169083151502179055506000600f60056101000a81548160ff021916908315150217905550348015620000f857600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601281526020017f53616e746120537572707269736520426f7800000000000000000000000000008152506040518060400160405280600381526020017f535342000000000000000000000000000000000000000000000000000000000081525081600290816200018d919062000722565b5080600390816200019f919062000722565b50620001b0620003d560201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003ad57801562000273576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002399291906200084e565b600060405180830381600087803b1580156200025457600080fd5b505af115801562000269573d6000803e3d6000fd5b50505050620003ac565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200032d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002f39291906200084e565b600060405180830381600087803b1580156200030e57600080fd5b505af115801562000323573d6000803e3d6000fd5b50505050620003ab565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200037691906200087b565b600060405180830381600087803b1580156200039157600080fd5b505af1158015620003a6573d6000803e3d6000fd5b505050505b5b5b5050620003cf620003c3620003da60201b60201c565b620003e260201b60201c565b62000898565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052a57607f821691505b60208210810362000540576200053f620004e2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005aa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200056b565b620005b686836200056b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000603620005fd620005f784620005ce565b620005d8565b620005ce565b9050919050565b6000819050919050565b6200061f83620005e2565b620006376200062e826200060a565b84845462000578565b825550505050565b600090565b6200064e6200063f565b6200065b81848462000614565b505050565b5b8181101562000683576200067760008262000644565b60018101905062000661565b5050565b601f821115620006d2576200069c8162000546565b620006a7846200055b565b81016020851015620006b7578190505b620006cf620006c6856200055b565b83018262000660565b50505b505050565b600082821c905092915050565b6000620006f760001984600802620006d7565b1980831691505092915050565b6000620007128383620006e4565b9150826002028217905092915050565b6200072d82620004a8565b67ffffffffffffffff811115620007495762000748620004b3565b5b62000755825462000511565b6200076282828562000687565b600060209050601f8311600181146200079a576000841562000785578287015190505b62000791858262000704565b86555062000801565b601f198416620007aa8662000546565b60005b82811015620007d457848901518255600182019150602085019450602081019050620007ad565b86831015620007f45784890151620007f0601f891682620006e4565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008368262000809565b9050919050565b620008488162000829565b82525050565b60006040820190506200086560008301856200083d565b6200087460208301846200083d565b9392505050565b60006020820190506200089260008301846200083d565b92915050565b614b5b80620008a86000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063aa062290116100b6578063d5abeb011161007a578063d5abeb011461080b578063e94053c714610836578063e985e9c514610873578063eef440af146108b0578063f2fde38b146108db578063f8bf51721461090457610246565b8063aa06229014610728578063b88d4fde14610751578063c87b56dd1461077a578063cffb6e20146107b7578063d0db9ab8146107e057610246565b80638da5cb5b116100fd5780638da5cb5b1461065357806394354fd01461067e57806395d89b41146106a9578063a22cb465146106d4578063a475b5dd146106fd57610246565b806370a0823114610582578063715018a6146105bf5780637ec4a659146105d6578063879d25ad146105ff5780638a8a189b1461062a57610246565b80632f6f98e1116101c757806344a0d68a1161018b57806344a0d68a146104ac5780634d9c1848146104d55780635c975abb146104fe5780636352211e146105295780636ecd23061461056657610246565b80632f6f98e11461041557806337a66d851461043e5780633bd64968146104555780633ccfd60b1461046c57806342842e0e1461048357610246565b80631067fcc71161020e5780631067fcc71461034257806313faede61461036b57806318160ddd1461039657806323b872dd146103c1578063290f9e17146103ea57610246565b806301ffc9a71461024b57806306421c2f1461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906137ef565b61092f565b60405161027f9190613837565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa919061388c565b610a11565b005b3480156102bd57600080fd5b506102c6610aad565b6040516102d39190613949565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe91906139a1565b610b3f565b6040516103109190613a0f565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190613a56565b610bbb565b005b34801561034e57600080fd5b5061036960048036038101906103649190613bcb565b610cc5565b005b34801561037757600080fd5b50610380610d54565b60405161038d9190613c23565b60405180910390f35b3480156103a257600080fd5b506103ab610d5a565b6040516103b89190613c23565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190613c3e565b610d71565b005b3480156103f657600080fd5b506103ff610f53565b60405161040c9190613c23565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190613c91565b610f59565b005b34801561044a57600080fd5b50610453611066565b005b34801561046157600080fd5b5061046a61110e565b005b34801561047857600080fd5b506104816111b6565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613c3e565b611281565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906139a1565b611463565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190613d0a565b6114e9565b005b34801561050a57600080fd5b50610513611587565b6040516105209190613837565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b91906139a1565b61159a565b60405161055d9190613a0f565b60405180910390f35b610580600480360381019061057b9190613d0a565b6115b0565b005b34801561058e57600080fd5b506105a960048036038101906105a49190613d37565b6118ba565b6040516105b69190613c23565b60405180910390f35b3480156105cb57600080fd5b506105d4611989565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190613bcb565b611a11565b005b34801561060b57600080fd5b50610614611aa0565b6040516106219190613a0f565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190613d37565b611aca565b005b34801561065f57600080fd5b50610668611b8a565b6040516106759190613a0f565b60405180910390f35b34801561068a57600080fd5b50610693611bb4565b6040516106a09190613d73565b60405180910390f35b3480156106b557600080fd5b506106be611bc7565b6040516106cb9190613949565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190613dba565b611c59565b005b34801561070957600080fd5b50610712611dd0565b60405161071f9190613837565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190613d0a565b611de3565b005b34801561075d57600080fd5b5061077860048036038101906107739190613e9b565b611e7d565b005b34801561078657600080fd5b506107a1600480360381019061079c91906139a1565b612062565b6040516107ae9190613949565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190613f7e565b6121ba565b005b3480156107ec57600080fd5b506107f5612323565b6040516108029190613a0f565b60405180910390f35b34801561081757600080fd5b50610820612349565b60405161082d9190613fed565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190613d37565b61235d565b60405161086a9190613d73565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190614008565b61237d565b6040516108a79190613837565b60405180910390f35b3480156108bc57600080fd5b506108c5612411565b6040516108d29190613949565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd9190613d37565b61249f565b005b34801561091057600080fd5b50610919612596565b6040516109269190613d73565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0a5750610a09826125a9565b5b9050919050565b610a19612613565b73ffffffffffffffffffffffffffffffffffffffff16610a37611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490614094565b60405180910390fd5b80600f60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610abc906140e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae8906140e3565b8015610b355780601f10610b0a57610100808354040283529160200191610b35565b820191906000526020600020905b815481529060010190602001808311610b1857829003601f168201915b5050505050905090565b6000610b4a8261261b565b610b80576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc68261159a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c2d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4c612613565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c7e5750610c7c81610c77612613565b61237d565b155b15610cb5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc0838383612669565b505050565b610ccd612613565b73ffffffffffffffffffffffffffffffffffffffff16610ceb611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890614094565b60405180910390fd5b80600b9081610d5091906142c0565b5050565b600e5481565b6000610d6461271b565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f41573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610de357610dde848484612720565b610f4d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e2c929190614392565b602060405180830381865afa158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d91906143d0565b8015610eff57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ebd929190614392565b602060405180830381865afa158015610eda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efe91906143d0565b5b610f4057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f379190613a0f565b60405180910390fd5b5b610f4c848484612720565b5b50505050565b600d5481565b610f61612613565b73ffffffffffffffffffffffffffffffffffffffff16610f7f611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90614094565b60405180910390fd5b6000610fdf610d5a565b9050600f60009054906101000a900461ffff1661ffff168382611002919061442c565b61ffff161115611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e906144ae565b60405180910390fd5b611055828461ffff16612730565b600092506000915060009050505050565b61106e612613565b73ffffffffffffffffffffffffffffffffffffffff1661108c611b8a565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990614094565b60405180910390fd5b600f60049054906101000a900460ff1615600f60046101000a81548160ff021916908315150217905550565b611116612613565b73ffffffffffffffffffffffffffffffffffffffff16611134611b8a565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190614094565b60405180910390fd5b600f60059054906101000a900460ff1615600f60056101000a81548160ff021916908315150217905550565b6111be612613565b73ffffffffffffffffffffffffffffffffffffffff166111dc611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990614094565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561127d573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611451573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112f3576112ee84848461274e565b61145d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161133c929190614392565b602060405180830381865afa158015611359573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137d91906143d0565b801561140f57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016113cd929190614392565b602060405180830381865afa1580156113ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140e91906143d0565b5b61145057336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114479190613a0f565b60405180910390fd5b5b61145c84848461274e565b5b50505050565b61146b612613565b73ffffffffffffffffffffffffffffffffffffffff16611489611b8a565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690614094565b60405180910390fd5b80600e8190555050565b6114f1612613565b73ffffffffffffffffffffffffffffffffffffffff1661150f611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90614094565b60405180910390fd5b80600f60036101000a81548160ff021916908360ff1602179055506000905050565b600f60049054906101000a900460ff1681565b60006115a58261276e565b600001519050919050565b60006115ba610d5a565b90506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600f60009054906101000a900461ffff1661ffff168360ff1683611631919061442c565b61ffff161115611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d906144ae565b60405180910390fd5b600f60029054906101000a900460ff1660ff16818461169591906144ce565b60ff1611156116d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d09061454f565b60405180910390fd5b600f60049054906101000a900460ff1615611729576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611720906145bb565b60405180910390fd5b600f60039054906101000a900460ff1660ff168160ff161061179d578260ff16600e5461175691906145db565b341015611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90614669565b60405180910390fd5b61183d565b600081846117ab91906144ce565b9050600f60039054906101000a900460ff1660ff168160ff16111561183b57600f60039054906101000a900460ff16816117e59190614689565b90508060ff16600e546117f891906145db565b34101561183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190614669565b60405180910390fd5b5b505b61184a338460ff16612730565b808361185691906144ce565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611921576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611991612613565b73ffffffffffffffffffffffffffffffffffffffff166119af611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90614094565b60405180910390fd5b611a0f60006129fd565b565b611a19612613565b73ffffffffffffffffffffffffffffffffffffffff16611a37611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490614094565b60405180910390fd5b8060099081611a9c91906142c0565b5050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ad2612613565b73ffffffffffffffffffffffffffffffffffffffff16611af0611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90614094565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60029054906101000a900460ff1681565b606060038054611bd6906140e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611c02906140e3565b8015611c4f5780601f10611c2457610100808354040283529160200191611c4f565b820191906000526020600020905b815481529060010190602001808311611c3257829003601f168201915b5050505050905090565b611c61612613565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cc5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611cd2612613565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d7f612613565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dc49190613837565b60405180910390a35050565b600f60059054906101000a900460ff1681565b611deb612613565b73ffffffffffffffffffffffffffffffffffffffff16611e09611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690614094565b60405180910390fd5b80600f60026101000a81548160ff021916908360ff16021790555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561204e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ef057611eeb85858585612ac3565b61205b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611f39929190614392565b602060405180830381865afa158015611f56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f7a91906143d0565b801561200c57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611fca929190614392565b602060405180830381865afa158015611fe7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061200b91906143d0565b5b61204d57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016120449190613a0f565b60405180910390fd5b5b61205a85858585612ac3565b5b5050505050565b606061206d8261261b565b6120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a390614730565b60405180910390fd5b60001515600f60059054906101000a900460ff1615150361215957600b80546120d4906140e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612100906140e3565b801561214d5780601f106121225761010080835404028352916020019161214d565b820191906000526020600020905b81548152906001019060200180831161213057829003601f168201915b505050505090506121b5565b6000612163612b3f565b9050600081511161218357604051806020016040528060008152506121b1565b8061218d84612bd1565b600a6040516020016121a19392919061480f565b6040516020818303038152906040525b9150505b919050565b6121c2612613565b73ffffffffffffffffffffffffffffffffffffffff166121e0611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222d90614094565b60405180910390fd5b6000612240610d5a565b90506000838390508560ff1661225691906145db565b9050600f60009054906101000a900461ffff1661ffff16818361ffff1661227d9190614840565b11156122be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b5906144ae565b60405180910390fd5b60005b84849050811015612313576123008585838181106122e2576122e1614874565b5b90506020020160208101906122f79190613d37565b8760ff16612730565b808061230b906148a3565b9150506122c1565b5060009450600091505050505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900461ffff1681565b60106020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461241e906140e3565b80601f016020809104026020016040519081016040528092919081815260200182805461244a906140e3565b80156124975780601f1061246c57610100808354040283529160200191612497565b820191906000526020600020905b81548152906001019060200180831161247a57829003601f168201915b505050505081565b6124a7612613565b73ffffffffffffffffffffffffffffffffffffffff166124c5611b8a565b73ffffffffffffffffffffffffffffffffffffffff161461251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290614094565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361258a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125819061495d565b60405180910390fd5b612593816129fd565b50565b600f60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161262661271b565b11158015612635575060005482105b8015612662575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61272b838383612d31565b505050565b61274a8282604051806020016040528060008152506131e5565b5050565b61276983838360405180602001604052806000815250611e7d565b505050565b612776613740565b60008290508061278461271b565b11158015612793575060005481105b156129c6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516129c457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128a85780925050506129f8565b5b6001156129c357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129be5780925050506129f8565b6128a9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ace848484612d31565b612aed8373ffffffffffffffffffffffffffffffffffffffff166131f7565b8015612b025750612b008484848461321a565b155b15612b39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606060098054612b4e906140e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612b7a906140e3565b8015612bc75780601f10612b9c57610100808354040283529160200191612bc7565b820191906000526020600020905b815481529060010190602001808311612baa57829003601f168201915b5050505050905090565b606060008203612c18576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d2c565b600082905060005b60008214612c4a578080612c33906148a3565b915050600a82612c4391906149ac565b9150612c20565b60008167ffffffffffffffff811115612c6657612c65613aa0565b5b6040519080825280601f01601f191660200182016040528015612c985781602001600182028036833780820191505090505b5090505b60008514612d2557600182612cb191906149dd565b9150600a85612cc09190614a11565b6030612ccc9190614840565b60f81b818381518110612ce257612ce1614874565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d1e91906149ac565b9450612c9c565b8093505050505b919050565b6000612d3c8261276e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612da7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612dc8612613565b73ffffffffffffffffffffffffffffffffffffffff161480612df75750612df685612df1612613565b61237d565b5b80612e3c5750612e05612613565b73ffffffffffffffffffffffffffffffffffffffff16612e2484610b3f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612e75576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612edb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ee8858585600161336a565b612ef460008487612669565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361317357600054821461317257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131de8585856001613370565b5050505050565b6131f28383836001613376565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613240612613565b8786866040518563ffffffff1660e01b81526004016132629493929190614a97565b6020604051808303816000875af192505050801561329e57506040513d601f19601f8201168201806040525081019061329b9190614af8565b60015b613317573d80600081146132ce576040519150601f19603f3d011682016040523d82523d6000602084013e6132d3565b606091505b50600081510361330f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036133e2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361341c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613429600086838761336a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156135f357506135f28773ffffffffffffffffffffffffffffffffffffffff166131f7565b5b156136b8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613668600088848060010195508861321a565b61369e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036135f95782600054146136b357600080fd5b613723565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036136b9575b8160008190555050506137396000868387613370565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137cc81613797565b81146137d757600080fd5b50565b6000813590506137e9816137c3565b92915050565b6000602082840312156138055761380461378d565b5b6000613813848285016137da565b91505092915050565b60008115159050919050565b6138318161381c565b82525050565b600060208201905061384c6000830184613828565b92915050565b600061ffff82169050919050565b61386981613852565b811461387457600080fd5b50565b60008135905061388681613860565b92915050565b6000602082840312156138a2576138a161378d565b5b60006138b084828501613877565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138f35780820151818401526020810190506138d8565b60008484015250505050565b6000601f19601f8301169050919050565b600061391b826138b9565b61392581856138c4565b93506139358185602086016138d5565b61393e816138ff565b840191505092915050565b600060208201905081810360008301526139638184613910565b905092915050565b6000819050919050565b61397e8161396b565b811461398957600080fd5b50565b60008135905061399b81613975565b92915050565b6000602082840312156139b7576139b661378d565b5b60006139c58482850161398c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139f9826139ce565b9050919050565b613a09816139ee565b82525050565b6000602082019050613a246000830184613a00565b92915050565b613a33816139ee565b8114613a3e57600080fd5b50565b600081359050613a5081613a2a565b92915050565b60008060408385031215613a6d57613a6c61378d565b5b6000613a7b85828601613a41565b9250506020613a8c8582860161398c565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ad8826138ff565b810181811067ffffffffffffffff82111715613af757613af6613aa0565b5b80604052505050565b6000613b0a613783565b9050613b168282613acf565b919050565b600067ffffffffffffffff821115613b3657613b35613aa0565b5b613b3f826138ff565b9050602081019050919050565b82818337600083830152505050565b6000613b6e613b6984613b1b565b613b00565b905082815260208101848484011115613b8a57613b89613a9b565b5b613b95848285613b4c565b509392505050565b600082601f830112613bb257613bb1613a96565b5b8135613bc2848260208601613b5b565b91505092915050565b600060208284031215613be157613be061378d565b5b600082013567ffffffffffffffff811115613bff57613bfe613792565b5b613c0b84828501613b9d565b91505092915050565b613c1d8161396b565b82525050565b6000602082019050613c386000830184613c14565b92915050565b600080600060608486031215613c5757613c5661378d565b5b6000613c6586828701613a41565b9350506020613c7686828701613a41565b9250506040613c878682870161398c565b9150509250925092565b60008060408385031215613ca857613ca761378d565b5b6000613cb685828601613877565b9250506020613cc785828601613a41565b9150509250929050565b600060ff82169050919050565b613ce781613cd1565b8114613cf257600080fd5b50565b600081359050613d0481613cde565b92915050565b600060208284031215613d2057613d1f61378d565b5b6000613d2e84828501613cf5565b91505092915050565b600060208284031215613d4d57613d4c61378d565b5b6000613d5b84828501613a41565b91505092915050565b613d6d81613cd1565b82525050565b6000602082019050613d886000830184613d64565b92915050565b613d978161381c565b8114613da257600080fd5b50565b600081359050613db481613d8e565b92915050565b60008060408385031215613dd157613dd061378d565b5b6000613ddf85828601613a41565b9250506020613df085828601613da5565b9150509250929050565b600067ffffffffffffffff821115613e1557613e14613aa0565b5b613e1e826138ff565b9050602081019050919050565b6000613e3e613e3984613dfa565b613b00565b905082815260208101848484011115613e5a57613e59613a9b565b5b613e65848285613b4c565b509392505050565b600082601f830112613e8257613e81613a96565b5b8135613e92848260208601613e2b565b91505092915050565b60008060008060808587031215613eb557613eb461378d565b5b6000613ec387828801613a41565b9450506020613ed487828801613a41565b9350506040613ee58782880161398c565b925050606085013567ffffffffffffffff811115613f0657613f05613792565b5b613f1287828801613e6d565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613f3e57613f3d613a96565b5b8235905067ffffffffffffffff811115613f5b57613f5a613f1e565b5b602083019150836020820283011115613f7757613f76613f23565b5b9250929050565b600080600060408486031215613f9757613f9661378d565b5b6000613fa586828701613cf5565b935050602084013567ffffffffffffffff811115613fc657613fc5613792565b5b613fd286828701613f28565b92509250509250925092565b613fe781613852565b82525050565b60006020820190506140026000830184613fde565b92915050565b6000806040838503121561401f5761401e61378d565b5b600061402d85828601613a41565b925050602061403e85828601613a41565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061407e6020836138c4565b915061408982614048565b602082019050919050565b600060208201905081810360008301526140ad81614071565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140fb57607f821691505b60208210810361410e5761410d6140b4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026141767fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614139565b6141808683614139565b95508019841693508086168417925050509392505050565b6000819050919050565b60006141bd6141b86141b38461396b565b614198565b61396b565b9050919050565b6000819050919050565b6141d7836141a2565b6141eb6141e3826141c4565b848454614146565b825550505050565b600090565b6142006141f3565b61420b8184846141ce565b505050565b5b8181101561422f576142246000826141f8565b600181019050614211565b5050565b601f8211156142745761424581614114565b61424e84614129565b8101602085101561425d578190505b61427161426985614129565b830182614210565b50505b505050565b600082821c905092915050565b600061429760001984600802614279565b1980831691505092915050565b60006142b08383614286565b9150826002028217905092915050565b6142c9826138b9565b67ffffffffffffffff8111156142e2576142e1613aa0565b5b6142ec82546140e3565b6142f7828285614233565b600060209050601f83116001811461432a5760008415614318578287015190505b61432285826142a4565b86555061438a565b601f19841661433886614114565b60005b828110156143605784890151825560018201915060208501945060208101905061433b565b8683101561437d5784890151614379601f891682614286565b8355505b6001600288020188555050505b505050505050565b60006040820190506143a76000830185613a00565b6143b46020830184613a00565b9392505050565b6000815190506143ca81613d8e565b92915050565b6000602082840312156143e6576143e561378d565b5b60006143f4848285016143bb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061443782613852565b915061444283613852565b9250828201905061ffff81111561445c5761445b6143fd565b5b92915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006144986013836138c4565b91506144a382614462565b602082019050919050565b600060208201905081810360008301526144c78161448b565b9050919050565b60006144d982613cd1565b91506144e483613cd1565b9250828201905060ff8111156144fd576144fc6143fd565b5b92915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b6000614539601c836138c4565b915061454482614503565b602082019050919050565b600060208201905081810360008301526145688161452c565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006145a56017836138c4565b91506145b08261456f565b602082019050919050565b600060208201905081810360008301526145d481614598565b9050919050565b60006145e68261396b565b91506145f18361396b565b92508282026145ff8161396b565b91508282048414831517614616576146156143fd565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006146536013836138c4565b915061465e8261461d565b602082019050919050565b6000602082019050818103600083015261468281614646565b9050919050565b600061469482613cd1565b915061469f83613cd1565b9250828203905060ff8111156146b8576146b76143fd565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061471a602f836138c4565b9150614725826146be565b604082019050919050565b600060208201905081810360008301526147498161470d565b9050919050565b600081905092915050565b6000614766826138b9565b6147708185614750565b93506147808185602086016138d5565b80840191505092915050565b60008154614799816140e3565b6147a38186614750565b945060018216600081146147be57600181146147d357614806565b60ff1983168652811515820286019350614806565b6147dc85614114565b60005b838110156147fe578154818901526001820191506020810190506147df565b838801955050505b50505092915050565b600061481b828661475b565b9150614827828561475b565b9150614833828461478c565b9150819050949350505050565b600061484b8261396b565b91506148568361396b565b925082820190508082111561486e5761486d6143fd565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006148ae8261396b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036148e0576148df6143fd565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149476026836138c4565b9150614952826148eb565b604082019050919050565b600060208201905081810360008301526149768161493a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149b78261396b565b91506149c28361396b565b9250826149d2576149d161497d565b5b828204905092915050565b60006149e88261396b565b91506149f38361396b565b9250828203905081811115614a0b57614a0a6143fd565b5b92915050565b6000614a1c8261396b565b9150614a278361396b565b925082614a3757614a3661497d565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614a6982614a42565b614a738185614a4d565b9350614a838185602086016138d5565b614a8c816138ff565b840191505092915050565b6000608082019050614aac6000830187613a00565b614ab96020830186613a00565b614ac66040830185613c14565b8181036060830152614ad88184614a5e565b905095945050505050565b600081519050614af2816137c3565b92915050565b600060208284031215614b0e57614b0d61378d565b5b6000614b1c84828501614ae3565b9150509291505056fea2646970667358221220e920a8585b0f59ae8c723869220efaa7027632ec0e65459c433622beecc39c4d64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063aa062290116100b6578063d5abeb011161007a578063d5abeb011461080b578063e94053c714610836578063e985e9c514610873578063eef440af146108b0578063f2fde38b146108db578063f8bf51721461090457610246565b8063aa06229014610728578063b88d4fde14610751578063c87b56dd1461077a578063cffb6e20146107b7578063d0db9ab8146107e057610246565b80638da5cb5b116100fd5780638da5cb5b1461065357806394354fd01461067e57806395d89b41146106a9578063a22cb465146106d4578063a475b5dd146106fd57610246565b806370a0823114610582578063715018a6146105bf5780637ec4a659146105d6578063879d25ad146105ff5780638a8a189b1461062a57610246565b80632f6f98e1116101c757806344a0d68a1161018b57806344a0d68a146104ac5780634d9c1848146104d55780635c975abb146104fe5780636352211e146105295780636ecd23061461056657610246565b80632f6f98e11461041557806337a66d851461043e5780633bd64968146104555780633ccfd60b1461046c57806342842e0e1461048357610246565b80631067fcc71161020e5780631067fcc71461034257806313faede61461036b57806318160ddd1461039657806323b872dd146103c1578063290f9e17146103ea57610246565b806301ffc9a71461024b57806306421c2f1461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906137ef565b61092f565b60405161027f9190613837565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa919061388c565b610a11565b005b3480156102bd57600080fd5b506102c6610aad565b6040516102d39190613949565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe91906139a1565b610b3f565b6040516103109190613a0f565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190613a56565b610bbb565b005b34801561034e57600080fd5b5061036960048036038101906103649190613bcb565b610cc5565b005b34801561037757600080fd5b50610380610d54565b60405161038d9190613c23565b60405180910390f35b3480156103a257600080fd5b506103ab610d5a565b6040516103b89190613c23565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190613c3e565b610d71565b005b3480156103f657600080fd5b506103ff610f53565b60405161040c9190613c23565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190613c91565b610f59565b005b34801561044a57600080fd5b50610453611066565b005b34801561046157600080fd5b5061046a61110e565b005b34801561047857600080fd5b506104816111b6565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613c3e565b611281565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906139a1565b611463565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190613d0a565b6114e9565b005b34801561050a57600080fd5b50610513611587565b6040516105209190613837565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b91906139a1565b61159a565b60405161055d9190613a0f565b60405180910390f35b610580600480360381019061057b9190613d0a565b6115b0565b005b34801561058e57600080fd5b506105a960048036038101906105a49190613d37565b6118ba565b6040516105b69190613c23565b60405180910390f35b3480156105cb57600080fd5b506105d4611989565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190613bcb565b611a11565b005b34801561060b57600080fd5b50610614611aa0565b6040516106219190613a0f565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190613d37565b611aca565b005b34801561065f57600080fd5b50610668611b8a565b6040516106759190613a0f565b60405180910390f35b34801561068a57600080fd5b50610693611bb4565b6040516106a09190613d73565b60405180910390f35b3480156106b557600080fd5b506106be611bc7565b6040516106cb9190613949565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190613dba565b611c59565b005b34801561070957600080fd5b50610712611dd0565b60405161071f9190613837565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190613d0a565b611de3565b005b34801561075d57600080fd5b5061077860048036038101906107739190613e9b565b611e7d565b005b34801561078657600080fd5b506107a1600480360381019061079c91906139a1565b612062565b6040516107ae9190613949565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190613f7e565b6121ba565b005b3480156107ec57600080fd5b506107f5612323565b6040516108029190613a0f565b60405180910390f35b34801561081757600080fd5b50610820612349565b60405161082d9190613fed565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190613d37565b61235d565b60405161086a9190613d73565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190614008565b61237d565b6040516108a79190613837565b60405180910390f35b3480156108bc57600080fd5b506108c5612411565b6040516108d29190613949565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd9190613d37565b61249f565b005b34801561091057600080fd5b50610919612596565b6040516109269190613d73565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0a5750610a09826125a9565b5b9050919050565b610a19612613565b73ffffffffffffffffffffffffffffffffffffffff16610a37611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490614094565b60405180910390fd5b80600f60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610abc906140e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae8906140e3565b8015610b355780601f10610b0a57610100808354040283529160200191610b35565b820191906000526020600020905b815481529060010190602001808311610b1857829003601f168201915b5050505050905090565b6000610b4a8261261b565b610b80576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc68261159a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c2d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4c612613565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c7e5750610c7c81610c77612613565b61237d565b155b15610cb5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc0838383612669565b505050565b610ccd612613565b73ffffffffffffffffffffffffffffffffffffffff16610ceb611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890614094565b60405180910390fd5b80600b9081610d5091906142c0565b5050565b600e5481565b6000610d6461271b565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f41573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610de357610dde848484612720565b610f4d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e2c929190614392565b602060405180830381865afa158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d91906143d0565b8015610eff57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ebd929190614392565b602060405180830381865afa158015610eda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efe91906143d0565b5b610f4057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f379190613a0f565b60405180910390fd5b5b610f4c848484612720565b5b50505050565b600d5481565b610f61612613565b73ffffffffffffffffffffffffffffffffffffffff16610f7f611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90614094565b60405180910390fd5b6000610fdf610d5a565b9050600f60009054906101000a900461ffff1661ffff168382611002919061442c565b61ffff161115611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e906144ae565b60405180910390fd5b611055828461ffff16612730565b600092506000915060009050505050565b61106e612613565b73ffffffffffffffffffffffffffffffffffffffff1661108c611b8a565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990614094565b60405180910390fd5b600f60049054906101000a900460ff1615600f60046101000a81548160ff021916908315150217905550565b611116612613565b73ffffffffffffffffffffffffffffffffffffffff16611134611b8a565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190614094565b60405180910390fd5b600f60059054906101000a900460ff1615600f60056101000a81548160ff021916908315150217905550565b6111be612613565b73ffffffffffffffffffffffffffffffffffffffff166111dc611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990614094565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561127d573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611451573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112f3576112ee84848461274e565b61145d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161133c929190614392565b602060405180830381865afa158015611359573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137d91906143d0565b801561140f57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016113cd929190614392565b602060405180830381865afa1580156113ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140e91906143d0565b5b61145057336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114479190613a0f565b60405180910390fd5b5b61145c84848461274e565b5b50505050565b61146b612613565b73ffffffffffffffffffffffffffffffffffffffff16611489611b8a565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690614094565b60405180910390fd5b80600e8190555050565b6114f1612613565b73ffffffffffffffffffffffffffffffffffffffff1661150f611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90614094565b60405180910390fd5b80600f60036101000a81548160ff021916908360ff1602179055506000905050565b600f60049054906101000a900460ff1681565b60006115a58261276e565b600001519050919050565b60006115ba610d5a565b90506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600f60009054906101000a900461ffff1661ffff168360ff1683611631919061442c565b61ffff161115611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d906144ae565b60405180910390fd5b600f60029054906101000a900460ff1660ff16818461169591906144ce565b60ff1611156116d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d09061454f565b60405180910390fd5b600f60049054906101000a900460ff1615611729576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611720906145bb565b60405180910390fd5b600f60039054906101000a900460ff1660ff168160ff161061179d578260ff16600e5461175691906145db565b341015611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90614669565b60405180910390fd5b61183d565b600081846117ab91906144ce565b9050600f60039054906101000a900460ff1660ff168160ff16111561183b57600f60039054906101000a900460ff16816117e59190614689565b90508060ff16600e546117f891906145db565b34101561183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190614669565b60405180910390fd5b5b505b61184a338460ff16612730565b808361185691906144ce565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611921576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611991612613565b73ffffffffffffffffffffffffffffffffffffffff166119af611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90614094565b60405180910390fd5b611a0f60006129fd565b565b611a19612613565b73ffffffffffffffffffffffffffffffffffffffff16611a37611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490614094565b60405180910390fd5b8060099081611a9c91906142c0565b5050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ad2612613565b73ffffffffffffffffffffffffffffffffffffffff16611af0611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90614094565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60029054906101000a900460ff1681565b606060038054611bd6906140e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611c02906140e3565b8015611c4f5780601f10611c2457610100808354040283529160200191611c4f565b820191906000526020600020905b815481529060010190602001808311611c3257829003601f168201915b5050505050905090565b611c61612613565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cc5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611cd2612613565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d7f612613565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dc49190613837565b60405180910390a35050565b600f60059054906101000a900460ff1681565b611deb612613565b73ffffffffffffffffffffffffffffffffffffffff16611e09611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690614094565b60405180910390fd5b80600f60026101000a81548160ff021916908360ff16021790555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561204e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ef057611eeb85858585612ac3565b61205b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611f39929190614392565b602060405180830381865afa158015611f56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f7a91906143d0565b801561200c57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611fca929190614392565b602060405180830381865afa158015611fe7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061200b91906143d0565b5b61204d57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016120449190613a0f565b60405180910390fd5b5b61205a85858585612ac3565b5b5050505050565b606061206d8261261b565b6120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a390614730565b60405180910390fd5b60001515600f60059054906101000a900460ff1615150361215957600b80546120d4906140e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612100906140e3565b801561214d5780601f106121225761010080835404028352916020019161214d565b820191906000526020600020905b81548152906001019060200180831161213057829003601f168201915b505050505090506121b5565b6000612163612b3f565b9050600081511161218357604051806020016040528060008152506121b1565b8061218d84612bd1565b600a6040516020016121a19392919061480f565b6040516020818303038152906040525b9150505b919050565b6121c2612613565b73ffffffffffffffffffffffffffffffffffffffff166121e0611b8a565b73ffffffffffffffffffffffffffffffffffffffff1614612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222d90614094565b60405180910390fd5b6000612240610d5a565b90506000838390508560ff1661225691906145db565b9050600f60009054906101000a900461ffff1661ffff16818361ffff1661227d9190614840565b11156122be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b5906144ae565b60405180910390fd5b60005b84849050811015612313576123008585838181106122e2576122e1614874565b5b90506020020160208101906122f79190613d37565b8760ff16612730565b808061230b906148a3565b9150506122c1565b5060009450600091505050505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900461ffff1681565b60106020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461241e906140e3565b80601f016020809104026020016040519081016040528092919081815260200182805461244a906140e3565b80156124975780601f1061246c57610100808354040283529160200191612497565b820191906000526020600020905b81548152906001019060200180831161247a57829003601f168201915b505050505081565b6124a7612613565b73ffffffffffffffffffffffffffffffffffffffff166124c5611b8a565b73ffffffffffffffffffffffffffffffffffffffff161461251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290614094565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361258a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125819061495d565b60405180910390fd5b612593816129fd565b50565b600f60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161262661271b565b11158015612635575060005482105b8015612662575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61272b838383612d31565b505050565b61274a8282604051806020016040528060008152506131e5565b5050565b61276983838360405180602001604052806000815250611e7d565b505050565b612776613740565b60008290508061278461271b565b11158015612793575060005481105b156129c6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516129c457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128a85780925050506129f8565b5b6001156129c357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129be5780925050506129f8565b6128a9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ace848484612d31565b612aed8373ffffffffffffffffffffffffffffffffffffffff166131f7565b8015612b025750612b008484848461321a565b155b15612b39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606060098054612b4e906140e3565b80601f0160208091040260200160405190810160405280929190818152602001828054612b7a906140e3565b8015612bc75780601f10612b9c57610100808354040283529160200191612bc7565b820191906000526020600020905b815481529060010190602001808311612baa57829003601f168201915b5050505050905090565b606060008203612c18576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d2c565b600082905060005b60008214612c4a578080612c33906148a3565b915050600a82612c4391906149ac565b9150612c20565b60008167ffffffffffffffff811115612c6657612c65613aa0565b5b6040519080825280601f01601f191660200182016040528015612c985781602001600182028036833780820191505090505b5090505b60008514612d2557600182612cb191906149dd565b9150600a85612cc09190614a11565b6030612ccc9190614840565b60f81b818381518110612ce257612ce1614874565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d1e91906149ac565b9450612c9c565b8093505050505b919050565b6000612d3c8261276e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612da7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612dc8612613565b73ffffffffffffffffffffffffffffffffffffffff161480612df75750612df685612df1612613565b61237d565b5b80612e3c5750612e05612613565b73ffffffffffffffffffffffffffffffffffffffff16612e2484610b3f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612e75576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612edb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ee8858585600161336a565b612ef460008487612669565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361317357600054821461317257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131de8585856001613370565b5050505050565b6131f28383836001613376565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613240612613565b8786866040518563ffffffff1660e01b81526004016132629493929190614a97565b6020604051808303816000875af192505050801561329e57506040513d601f19601f8201168201806040525081019061329b9190614af8565b60015b613317573d80600081146132ce576040519150601f19603f3d011682016040523d82523d6000602084013e6132d3565b606091505b50600081510361330f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036133e2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361341c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613429600086838761336a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156135f357506135f28773ffffffffffffffffffffffffffffffffffffffff166131f7565b5b156136b8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613668600088848060010195508861321a565b61369e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036135f95782600054146136b357600080fd5b613723565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036136b9575b8160008190555050506137396000868387613370565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137cc81613797565b81146137d757600080fd5b50565b6000813590506137e9816137c3565b92915050565b6000602082840312156138055761380461378d565b5b6000613813848285016137da565b91505092915050565b60008115159050919050565b6138318161381c565b82525050565b600060208201905061384c6000830184613828565b92915050565b600061ffff82169050919050565b61386981613852565b811461387457600080fd5b50565b60008135905061388681613860565b92915050565b6000602082840312156138a2576138a161378d565b5b60006138b084828501613877565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138f35780820151818401526020810190506138d8565b60008484015250505050565b6000601f19601f8301169050919050565b600061391b826138b9565b61392581856138c4565b93506139358185602086016138d5565b61393e816138ff565b840191505092915050565b600060208201905081810360008301526139638184613910565b905092915050565b6000819050919050565b61397e8161396b565b811461398957600080fd5b50565b60008135905061399b81613975565b92915050565b6000602082840312156139b7576139b661378d565b5b60006139c58482850161398c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139f9826139ce565b9050919050565b613a09816139ee565b82525050565b6000602082019050613a246000830184613a00565b92915050565b613a33816139ee565b8114613a3e57600080fd5b50565b600081359050613a5081613a2a565b92915050565b60008060408385031215613a6d57613a6c61378d565b5b6000613a7b85828601613a41565b9250506020613a8c8582860161398c565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ad8826138ff565b810181811067ffffffffffffffff82111715613af757613af6613aa0565b5b80604052505050565b6000613b0a613783565b9050613b168282613acf565b919050565b600067ffffffffffffffff821115613b3657613b35613aa0565b5b613b3f826138ff565b9050602081019050919050565b82818337600083830152505050565b6000613b6e613b6984613b1b565b613b00565b905082815260208101848484011115613b8a57613b89613a9b565b5b613b95848285613b4c565b509392505050565b600082601f830112613bb257613bb1613a96565b5b8135613bc2848260208601613b5b565b91505092915050565b600060208284031215613be157613be061378d565b5b600082013567ffffffffffffffff811115613bff57613bfe613792565b5b613c0b84828501613b9d565b91505092915050565b613c1d8161396b565b82525050565b6000602082019050613c386000830184613c14565b92915050565b600080600060608486031215613c5757613c5661378d565b5b6000613c6586828701613a41565b9350506020613c7686828701613a41565b9250506040613c878682870161398c565b9150509250925092565b60008060408385031215613ca857613ca761378d565b5b6000613cb685828601613877565b9250506020613cc785828601613a41565b9150509250929050565b600060ff82169050919050565b613ce781613cd1565b8114613cf257600080fd5b50565b600081359050613d0481613cde565b92915050565b600060208284031215613d2057613d1f61378d565b5b6000613d2e84828501613cf5565b91505092915050565b600060208284031215613d4d57613d4c61378d565b5b6000613d5b84828501613a41565b91505092915050565b613d6d81613cd1565b82525050565b6000602082019050613d886000830184613d64565b92915050565b613d978161381c565b8114613da257600080fd5b50565b600081359050613db481613d8e565b92915050565b60008060408385031215613dd157613dd061378d565b5b6000613ddf85828601613a41565b9250506020613df085828601613da5565b9150509250929050565b600067ffffffffffffffff821115613e1557613e14613aa0565b5b613e1e826138ff565b9050602081019050919050565b6000613e3e613e3984613dfa565b613b00565b905082815260208101848484011115613e5a57613e59613a9b565b5b613e65848285613b4c565b509392505050565b600082601f830112613e8257613e81613a96565b5b8135613e92848260208601613e2b565b91505092915050565b60008060008060808587031215613eb557613eb461378d565b5b6000613ec387828801613a41565b9450506020613ed487828801613a41565b9350506040613ee58782880161398c565b925050606085013567ffffffffffffffff811115613f0657613f05613792565b5b613f1287828801613e6d565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613f3e57613f3d613a96565b5b8235905067ffffffffffffffff811115613f5b57613f5a613f1e565b5b602083019150836020820283011115613f7757613f76613f23565b5b9250929050565b600080600060408486031215613f9757613f9661378d565b5b6000613fa586828701613cf5565b935050602084013567ffffffffffffffff811115613fc657613fc5613792565b5b613fd286828701613f28565b92509250509250925092565b613fe781613852565b82525050565b60006020820190506140026000830184613fde565b92915050565b6000806040838503121561401f5761401e61378d565b5b600061402d85828601613a41565b925050602061403e85828601613a41565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061407e6020836138c4565b915061408982614048565b602082019050919050565b600060208201905081810360008301526140ad81614071565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140fb57607f821691505b60208210810361410e5761410d6140b4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026141767fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614139565b6141808683614139565b95508019841693508086168417925050509392505050565b6000819050919050565b60006141bd6141b86141b38461396b565b614198565b61396b565b9050919050565b6000819050919050565b6141d7836141a2565b6141eb6141e3826141c4565b848454614146565b825550505050565b600090565b6142006141f3565b61420b8184846141ce565b505050565b5b8181101561422f576142246000826141f8565b600181019050614211565b5050565b601f8211156142745761424581614114565b61424e84614129565b8101602085101561425d578190505b61427161426985614129565b830182614210565b50505b505050565b600082821c905092915050565b600061429760001984600802614279565b1980831691505092915050565b60006142b08383614286565b9150826002028217905092915050565b6142c9826138b9565b67ffffffffffffffff8111156142e2576142e1613aa0565b5b6142ec82546140e3565b6142f7828285614233565b600060209050601f83116001811461432a5760008415614318578287015190505b61432285826142a4565b86555061438a565b601f19841661433886614114565b60005b828110156143605784890151825560018201915060208501945060208101905061433b565b8683101561437d5784890151614379601f891682614286565b8355505b6001600288020188555050505b505050505050565b60006040820190506143a76000830185613a00565b6143b46020830184613a00565b9392505050565b6000815190506143ca81613d8e565b92915050565b6000602082840312156143e6576143e561378d565b5b60006143f4848285016143bb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061443782613852565b915061444283613852565b9250828201905061ffff81111561445c5761445b6143fd565b5b92915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006144986013836138c4565b91506144a382614462565b602082019050919050565b600060208201905081810360008301526144c78161448b565b9050919050565b60006144d982613cd1565b91506144e483613cd1565b9250828201905060ff8111156144fd576144fc6143fd565b5b92915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b6000614539601c836138c4565b915061454482614503565b602082019050919050565b600060208201905081810360008301526145688161452c565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006145a56017836138c4565b91506145b08261456f565b602082019050919050565b600060208201905081810360008301526145d481614598565b9050919050565b60006145e68261396b565b91506145f18361396b565b92508282026145ff8161396b565b91508282048414831517614616576146156143fd565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006146536013836138c4565b915061465e8261461d565b602082019050919050565b6000602082019050818103600083015261468281614646565b9050919050565b600061469482613cd1565b915061469f83613cd1565b9250828203905060ff8111156146b8576146b76143fd565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061471a602f836138c4565b9150614725826146be565b604082019050919050565b600060208201905081810360008301526147498161470d565b9050919050565b600081905092915050565b6000614766826138b9565b6147708185614750565b93506147808185602086016138d5565b80840191505092915050565b60008154614799816140e3565b6147a38186614750565b945060018216600081146147be57600181146147d357614806565b60ff1983168652811515820286019350614806565b6147dc85614114565b60005b838110156147fe578154818901526001820191506020810190506147df565b838801955050505b50505092915050565b600061481b828661475b565b9150614827828561475b565b9150614833828461478c565b9150819050949350505050565b600061484b8261396b565b91506148568361396b565b925082820190508082111561486e5761486d6143fd565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006148ae8261396b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036148e0576148df6143fd565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149476026836138c4565b9150614952826148eb565b604082019050919050565b600060208201905081810360008301526149768161493a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149b78261396b565b91506149c28361396b565b9250826149d2576149d161497d565b5b828204905092915050565b60006149e88261396b565b91506149f38361396b565b9250828203905081811115614a0b57614a0a6143fd565b5b92915050565b6000614a1c8261396b565b9150614a278361396b565b925082614a3757614a3661497d565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614a6982614a42565b614a738185614a4d565b9350614a838185602086016138d5565b614a8c816138ff565b840191505092915050565b6000608082019050614aac6000830187613a00565b614ab96020830186613a00565b614ac66040830185613c14565b8181036060830152614ad88184614a5e565b905095945050505050565b600081519050614af2816137c3565b92915050565b600060208284031215614b0e57614b0d61378d565b5b6000614b1c84828501614ae3565b9150509291505056fea2646970667358221220e920a8585b0f59ae8c723869220efaa7027632ec0e65459c433622beecc39c4d64736f6c63430008110033

Deployed Bytecode Sourcemap

48732:4947:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24546:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51223:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27668:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29179:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28739:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52370:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49048:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23793:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53096:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48993:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50403:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52482:72;;;;;;;;;;;;;:::i;:::-;;52644:70;;;;;;;;;;;;;:::i;:::-;;52842:138;;;;;;;;;;;;;:::i;:::-;;53268:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52561:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52112:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49224:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27475:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49440:956;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24916:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43433:103;;;;;;;;;;;;;:::i;:::-;;52263:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51327:119;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51453:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42779:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49130:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27838:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29457:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49254:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52721:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53448:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51613:484;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50736:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48950:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49096:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49288:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29817:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48913:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43692:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49170:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24546:305;24648:4;24700:25;24685:40;;;:11;:40;;;;:105;;;;24757:33;24742:48;;;:11;:48;;;;24685:105;:158;;;;24807:36;24831:11;24807:23;:36::i;:::-;24685:158;24665:178;;24546:305;;;:::o;51223:97::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51304:10:::1;51292:9;;:22;;;;;;;;;;;;;;;;;;51223:97:::0;:::o;27668:100::-;27722:13;27755:5;27748:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27668:100;:::o;29179:205::-;29247:7;29272:16;29280:7;29272;:16::i;:::-;29267:64;;29297:34;;;;;;;;;;;;;;29267:64;29352:15;:24;29368:7;29352:24;;;;;;;;;;;;;;;;;;;;;29345:31;;29179:205;;;:::o;28739:373::-;28812:13;28828:24;28844:7;28828:15;:24::i;:::-;28812:40;;28873:5;28867:11;;:2;:11;;;28863:48;;28887:24;;;;;;;;;;;;;;28863:48;28945:5;28929:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28955:37;28972:5;28979:12;:10;:12::i;:::-;28955:16;:37::i;:::-;28954:38;28929:63;28925:138;;;29016:35;;;;;;;;;;;;;;28925:138;29076:28;29085:2;29089:7;29098:5;29076:8;:28::i;:::-;28801:311;28739:373;;:::o;52370:102::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52456:10:::1;52444:9;:22;;;;;;:::i;:::-;;52370:102:::0;:::o;49048:34::-;;;;:::o;23793:303::-;23837:7;24062:15;:13;:15::i;:::-;24047:12;;24031:13;;:28;:46;24024:53;;23793:303;:::o;53096:163::-;53197:4;47752:1;46564:42;47706:43;;;:47;47702:699;;;47993:10;47985:18;;:4;:18;;;47981:85;;53214:37:::1;53233:4;53239:2;53243:7;53214:18;:37::i;:::-;48044:7:::0;;47981:85;46564:42;48126:40;;;48175:4;48182:10;48126:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46564:42;48222:40;;;48271:4;48278;48222:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48126:157;48080:310;;48363:10;48344:30;;;;;;;;;;;:::i;:::-;;;;;;;;48080:310;47702:699;53214:37:::1;53233:4;53239:2;53243:7;53214:18;:37::i;:::-;53096:163:::0;;;;;:::o;48993:41::-;;;;:::o;50403:326::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50486:18:::1;50514:13;:11;:13::i;:::-;50486:42;;50572:9;;;;;;;;;;;50543:38;;50557:11;50543;:25;;;;:::i;:::-;:38;;;;50535:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50613:34;50623:9;50635:11;50613:34;;:9;:34::i;:::-;50655:18;;;50681:16;;;50705:18;;;50478:251;50403:326:::0;;:::o;52482:72::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52539:6:::1;;;;;;;;;;;52538:7;52529:6;;:16;;;;;;;;;;;;;;;;;;52482:72::o:0;52644:70::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52703:6:::1;;;;;;;;;;;52702:7;52693:6;;:16;;;;;;;;;;;;;;;;;;52644:70::o:0;52842:138::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52886:13:::1;52902:21;52886:37;;52939:10;52931:28;;:39;52960:8;52931:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52881:99;52842:138::o:0;53268:171::-;53373:4;47752:1;46564:42;47706:43;;;:47;47702:699;;;47993:10;47985:18;;:4;:18;;;47981:85;;53390:41:::1;53413:4;53419:2;53423:7;53390:22;:41::i;:::-;48044:7:::0;;47981:85;46564:42;48126:40;;;48175:4;48182:10;48126:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46564:42;48222:40;;;48271:4;48278;48222:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48126:157;48080:310;;48363:10;48344:30;;;;;;;;;;;:::i;:::-;;;;;;;;48080:310;47702:699;53390:41:::1;53413:4;53419:2;53423:7;53390:22;:41::i;:::-;53268:171:::0;;;;;:::o;52561:77::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52624:5:::1;52617:4;:12;;;;52561:77:::0;:::o;52112:135::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52215:6:::1;52186:26;;:35;;;;;;;;;;;;;;;;;;52227:13;;;52112:135:::0;:::o;49224:25::-;;;;;;;;;;;;;:::o;27475:125::-;27539:7;27566:21;27579:7;27566:12;:21::i;:::-;:26;;;27559:33;;27475:125;;;:::o;49440:956::-;49499:18;49527:13;:11;:13::i;:::-;49499:42;;49549:9;49561:19;:31;49581:10;49561:31;;;;;;;;;;;;;;;;;;;;;;;;;49549:43;;49636:9;;;;;;;;;;;49607:38;;49621:11;49607:25;;:11;:25;;;;:::i;:::-;:38;;;;49599:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;49705:18;;;;;;;;;;;49684:39;;49698:3;49684:11;:17;;;;:::i;:::-;:39;;;;49676:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49775:6;;;;;;;;;;;49774:7;49766:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;49831:26;;;;;;;;;;;49824:33;;:3;:33;;;49821:403;;49899:11;49892:18;;:4;;:18;;;;:::i;:::-;49879:9;:31;;49871:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49821:403;;;49965:16;49998:3;49984:11;:17;;;;:::i;:::-;49965:36;;50028:26;;;;;;;;;;;50015:39;;:10;:39;;;50012:199;;;50101:26;;;;;;;;;;;50088:10;:39;;;;:::i;:::-;50075:52;;50166:10;50159:17;;:4;;:17;;;;:::i;:::-;50146:9;:30;;50138:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50012:199;49953:271;49821:403;50239:35;50249:10;50262:11;50239:35;;:9;:35::i;:::-;50332:3;50318:11;:17;;;;:::i;:::-;50284:19;:31;50304:10;50284:31;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;50346:18;;;50372;;;49491:905;;49440:956;:::o;24916:206::-;24980:7;25021:1;25004:19;;:5;:19;;;25000:60;;25032:28;;;;;;;;;;;;;;25000:60;25086:12;:19;25099:5;25086:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25078:36;;25071:43;;24916:206;;;:::o;43433:103::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43498:30:::1;43525:1;43498:18;:30::i;:::-;43433:103::o:0;52263:102::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52349:10:::1;52337:9;:22;;;;;;:::i;:::-;;52263:102:::0;:::o;51327:119::-;51391:7;51417:23;;;;;;;;;;;51410:30;;51327:119;:::o;51453:150::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51582:15:::1;51556:23;;:41;;;;;;;;;;;;;;;;;;51453:150:::0;:::o;42779:87::-;42825:7;42852:6;;;;;;;;;;;42845:13;;42779:87;:::o;49130:35::-;;;;;;;;;;;;;:::o;27838:104::-;27894:13;27927:7;27920:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27838:104;:::o;29457:288::-;29568:12;:10;:12::i;:::-;29556:24;;:8;:24;;;29552:54;;29589:17;;;;;;;;;;;;;;29552:54;29665:8;29620:18;:32;29639:12;:10;:12::i;:::-;29620:32;;;;;;;;;;;;;;;:42;29653:8;29620:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29718:8;29689:48;;29704:12;:10;:12::i;:::-;29689:48;;;29728:8;29689:48;;;;;;:::i;:::-;;;;;;;;29457:288;;:::o;49254:25::-;;;;;;;;;;;;;:::o;52721:108::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52814:6:::1;52793:18;;:27;;;;;;;;;;;;;;;;;;52721:108:::0;:::o;53448:228::-;53599:4;47752:1;46564:42;47706:43;;;:47;47702:699;;;47993:10;47985:18;;:4;:18;;;47981:85;;53621:47:::1;53644:4;53650:2;53654:7;53663:4;53621:22;:47::i;:::-;48044:7:::0;;47981:85;46564:42;48126:40;;;48175:4;48182:10;48126:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46564:42;48222:40;;;48271:4;48278;48222:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48126:157;48080:310;;48363:10;48344:30;;;;;;;;;;;:::i;:::-;;;;;;;;48080:310;47702:699;53621:47:::1;53644:4;53650:2;53654:7;53663:4;53621:22;:47::i;:::-;53448:228:::0;;;;;;:::o;51613:484::-;51712:13;51753:17;51761:8;51753:7;:17::i;:::-;51737:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51859:5;51849:15;;:6;;;;;;;;;;;:15;;;51844:50;;51881:9;51874:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51844:50;51906:28;51937:10;:8;:10::i;:::-;51906:41;;51992:1;51967:14;51961:28;:32;:130;;;;;;;;;;;;;;;;;52029:14;52045:19;:8;:17;:19::i;:::-;52066:9;52012:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51961:130;51954:137;;;51613:484;;;;:::o;50736:474::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50836:18:::1;50864:13;:11;:13::i;:::-;50836:42;;50886:16;50927:9;;:16;;50907:17;:36;;;;;;:::i;:::-;50886:57;;50987:9;;;;;;;;;;;50958:38;;50972:11;50958;:25;;;;;;:::i;:::-;:38;;50950:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51033:9;51028:116;51052:9;;:16;;51048:1;:20;51028:116;;;51090:42;51100:9;;51110:1;51100:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;51114:17;51090:42;;:9;:42::i;:::-;51070:3;;;;;:::i;:::-;;;;51028:116;;;;51154:24;;;51186:18;;;50828:382;;50736:474:::0;;;:::o;48950:38::-;;;;;;;;;;;;;:::o;49096:29::-;;;;;;;;;;;;;:::o;49288:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;29817:164::-;29914:4;29938:18;:25;29957:5;29938:25;;;;;;;;;;;;;;;:35;29964:8;29938:35;;;;;;;;;;;;;;;;;;;;;;;;;29931:42;;29817:164;;;;:::o;48913:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43692:201::-;43011:12;:10;:12::i;:::-;43000:23;;:7;:5;:7::i;:::-;:23;;;42992:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43801:1:::1;43781:22;;:8;:22;;::::0;43773:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43857:28;43876:8;43857:18;:28::i;:::-;43692:201:::0;:::o;49170:43::-;;;;;;;;;;;;;:::o;14417:157::-;14502:4;14541:25;14526:40;;;:11;:40;;;;14519:47;;14417:157;;;:::o;2849:98::-;2902:7;2929:10;2922:17;;2849:98;:::o;31173:187::-;31230:4;31273:7;31254:15;:13;:15::i;:::-;:26;;:53;;;;;31294:13;;31284:7;:23;31254:53;:98;;;;;31325:11;:20;31337:7;31325:20;;;;;;;;;;;:27;;;;;;;;;;;;31324:28;31254:98;31247:105;;31173:187;;;:::o;39374:196::-;39516:2;39489:15;:24;39505:7;39489:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39554:7;39550:2;39534:28;;39543:5;39534:28;;;;;;;;;;;;39374:196;;;:::o;23566:92::-;23622:7;23566:92;:::o;30049:170::-;30183:28;30193:4;30199:2;30203:7;30183:9;:28::i;:::-;30049:170;;;:::o;31369:104::-;31438:27;31448:2;31452:8;31438:27;;;;;;;;;;;;:9;:27::i;:::-;31369:104;;:::o;30291:185::-;30429:39;30446:4;30452:2;30456:7;30429:39;;;;;;;;;;;;:16;:39::i;:::-;30291:185;;;:::o;26302:1110::-;26364:21;;:::i;:::-;26398:12;26413:7;26398:22;;26482:4;26463:15;:13;:15::i;:::-;:23;;:47;;;;;26497:13;;26490:4;:20;26463:47;26459:886;;;26531:31;26565:11;:17;26577:4;26565:17;;;;;;;;;;;26531:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26606:9;:16;;;26601:729;;26677:1;26651:28;;:9;:14;;;:28;;;26647:101;;26715:9;26708:16;;;;;;26647:101;27050:261;27057:4;27050:261;;;27090:6;;;;;;;;27135:11;:17;27147:4;27135:17;;;;;;;;;;;27123:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27209:1;27183:28;;:9;:14;;;:28;;;27179:109;;27251:9;27244:16;;;;;;27179:109;27050:261;;;26601:729;26512:833;26459:886;27373:31;;;;;;;;;;;;;;26302:1110;;;;:::o;44054:191::-;44128:16;44147:6;;;;;;;;;;;44128:25;;44173:8;44164:6;;:17;;;;;;;;;;;;;;;;;;44228:8;44197:40;;44218:8;44197:40;;;;;;;;;;;;44117:128;44054:191;:::o;30548:369::-;30715:28;30725:4;30731:2;30735:7;30715:9;:28::i;:::-;30758:15;:2;:13;;;:15::i;:::-;:76;;;;;30778:56;30809:4;30815:2;30819:7;30828:5;30778:30;:56::i;:::-;30777:57;30758:76;30754:156;;;30858:40;;;;;;;;;;;;;;30754:156;30548:369;;;;:::o;52990:97::-;53043:13;53072:9;53065:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52990:97;:::o;403:724::-;459:13;690:1;681:5;:10;677:53;;708:10;;;;;;;;;;;;;;;;;;;;;677:53;740:12;755:5;740:20;;771:14;796:78;811:1;803:4;:9;796:78;;829:8;;;;;:::i;:::-;;;;860:2;852:10;;;;;:::i;:::-;;;796:78;;;884:19;916:6;906:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;884:39;;934:154;950:1;941:5;:10;934:154;;978:1;968:11;;;;;:::i;:::-;;;1045:2;1037:5;:10;;;;:::i;:::-;1024:2;:24;;;;:::i;:::-;1011:39;;994:6;1001;994:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1074:2;1065:11;;;;;:::i;:::-;;;934:154;;;1112:6;1098:21;;;;;403:724;;;;:::o;34295:2139::-;34410:35;34448:21;34461:7;34448:12;:21::i;:::-;34410:59;;34509:4;34487:26;;:13;:18;;;:26;;;34483:67;;34522:28;;;;;;;;;;;;;;34483:67;34564:22;34606:4;34590:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34627:36;34644:4;34650:12;:10;:12::i;:::-;34627:16;:36::i;:::-;34590:73;:126;;;;34704:12;:10;:12::i;:::-;34680:36;;:20;34692:7;34680:11;:20::i;:::-;:36;;;34590:126;34564:153;;34736:17;34731:66;;34762:35;;;;;;;;;;;;;;34731:66;34826:1;34812:16;;:2;:16;;;34808:52;;34837:23;;;;;;;;;;;;;;34808:52;34874:43;34896:4;34902:2;34906:7;34915:1;34874:21;:43::i;:::-;34983:35;35000:1;35004:7;35013:4;34983:8;:35::i;:::-;35345:1;35315:12;:18;35328:4;35315:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35389:1;35361:12;:16;35374:2;35361:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35408:31;35442:11;:20;35454:7;35442:20;;;;;;;;;;;35408:54;;35493:2;35477:8;:13;;;:18;;;;;;;;;;;;;;;;;;35543:15;35510:8;:23;;;:49;;;;;;;;;;;;;;;;;;35812:19;35844:1;35834:7;:11;35812:33;;35860:31;35894:11;:24;35906:11;35894:24;;;;;;;;;;;35860:58;;35962:1;35937:27;;:8;:13;;;;;;;;;;;;:27;;;35933:384;;36147:13;;36132:11;:28;36128:174;;36201:4;36185:8;:13;;;:20;;;;;;;;;;;;;;;;;;36254:13;:28;;;36228:8;:23;;;:54;;;;;;;;;;;;;;;;;;36128:174;35933:384;35290:1038;;;36365:7;36361:2;36346:27;;36355:4;36346:27;;;;;;;;;;;;36384:42;36405:4;36411:2;36415:7;36424:1;36384:20;:42::i;:::-;34399:2035;;34295:2139;;;:::o;31837:163::-;31960:32;31966:2;31970:8;31980:5;31987:4;31960:5;:32::i;:::-;31837:163;;;:::o;4302:327::-;4362:4;4620:1;4598:7;:19;;;:23;4591:30;;4302:327;;;:::o;40063:667::-;40226:4;40263:2;40247:36;;;40284:12;:10;:12::i;:::-;40298:4;40304:7;40313:5;40247:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40243:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40498:1;40481:6;:13;:18;40477:235;;40527:40;;;;;;;;;;;;;;40477:235;40670:6;40664:13;40655:6;40651:2;40647:15;40640:38;40243:480;40376:45;;;40366:55;;;:6;:55;;;;40359:62;;;40063:667;;;;;;:::o;41379:159::-;;;;;:::o;42198:158::-;;;;;:::o;32260:1780::-;32399:20;32422:13;;32399:36;;32464:1;32450:16;;:2;:16;;;32446:48;;32475:19;;;;;;;;;;;;;;32446:48;32521:1;32509:8;:13;32505:44;;32531:18;;;;;;;;;;;;;;32505:44;32563:61;32593:1;32597:2;32601:12;32615:8;32563:21;:61::i;:::-;32937:8;32902:12;:16;32915:2;32902:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33001:8;32961:12;:16;32974:2;32961:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33061:2;33028:11;:25;33040:12;33028:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33128:15;33078:11;:25;33090:12;33078:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33162:20;33185:12;33162:35;;33212:11;33241:8;33226:12;:23;33212:37;;33271:4;:23;;;;;33279:15;:2;:13;;;:15::i;:::-;33271:23;33267:641;;;33315:314;33371:12;33367:2;33346:38;;33363:1;33346:38;;;;;;;;;;;;33412:69;33451:1;33455:2;33459:14;;;;;;33475:5;33412:30;:69::i;:::-;33407:174;;33517:40;;;;;;;;;;;;;;33407:174;33624:3;33608:12;:19;33315:314;;33710:12;33693:13;;:29;33689:43;;33724:8;;;33689:43;33267:641;;;33773:120;33829:14;;;;;;33825:2;33804:40;;33821:1;33804:40;;;;;;;;;;;;33888:3;33872:12;:19;33773:120;;33267:641;33938:12;33922:13;:28;;;;32877:1085;;33972:60;34001:1;34005:2;34009:12;34023:8;33972:20;:60::i;:::-;32388:1652;32260:1780;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:89::-;1554:7;1594:6;1587:5;1583:18;1572:29;;1518:89;;;:::o;1613:120::-;1685:23;1702:5;1685:23;:::i;:::-;1678:5;1675:34;1665:62;;1723:1;1720;1713:12;1665:62;1613:120;:::o;1739:137::-;1784:5;1822:6;1809:20;1800:29;;1838:32;1864:5;1838:32;:::i;:::-;1739:137;;;;:::o;1882:327::-;1940:6;1989:2;1977:9;1968:7;1964:23;1960:32;1957:119;;;1995:79;;:::i;:::-;1957:119;2115:1;2140:52;2184:7;2175:6;2164:9;2160:22;2140:52;:::i;:::-;2130:62;;2086:116;1882:327;;;;:::o;2215:99::-;2267:6;2301:5;2295:12;2285:22;;2215:99;;;:::o;2320:169::-;2404:11;2438:6;2433:3;2426:19;2478:4;2473:3;2469:14;2454:29;;2320:169;;;;:::o;2495:246::-;2576:1;2586:113;2600:6;2597:1;2594:13;2586:113;;;2685:1;2680:3;2676:11;2670:18;2666:1;2661:3;2657:11;2650:39;2622:2;2619:1;2615:10;2610:15;;2586:113;;;2733:1;2724:6;2719:3;2715:16;2708:27;2557:184;2495:246;;;:::o;2747:102::-;2788:6;2839:2;2835:7;2830:2;2823:5;2819:14;2815:28;2805:38;;2747:102;;;:::o;2855:377::-;2943:3;2971:39;3004:5;2971:39;:::i;:::-;3026:71;3090:6;3085:3;3026:71;:::i;:::-;3019:78;;3106:65;3164:6;3159:3;3152:4;3145:5;3141:16;3106:65;:::i;:::-;3196:29;3218:6;3196:29;:::i;:::-;3191:3;3187:39;3180:46;;2947:285;2855:377;;;;:::o;3238:313::-;3351:4;3389:2;3378:9;3374:18;3366:26;;3438:9;3432:4;3428:20;3424:1;3413:9;3409:17;3402:47;3466:78;3539:4;3530:6;3466:78;:::i;:::-;3458:86;;3238:313;;;;:::o;3557:77::-;3594:7;3623:5;3612:16;;3557:77;;;:::o;3640:122::-;3713:24;3731:5;3713:24;:::i;:::-;3706:5;3703:35;3693:63;;3752:1;3749;3742:12;3693:63;3640:122;:::o;3768:139::-;3814:5;3852:6;3839:20;3830:29;;3868:33;3895:5;3868:33;:::i;:::-;3768:139;;;;:::o;3913:329::-;3972:6;4021:2;4009:9;4000:7;3996:23;3992:32;3989:119;;;4027:79;;:::i;:::-;3989:119;4147:1;4172:53;4217:7;4208:6;4197:9;4193:22;4172:53;:::i;:::-;4162:63;;4118:117;3913:329;;;;:::o;4248:126::-;4285:7;4325:42;4318:5;4314:54;4303:65;;4248:126;;;:::o;4380:96::-;4417:7;4446:24;4464:5;4446:24;:::i;:::-;4435:35;;4380:96;;;:::o;4482:118::-;4569:24;4587:5;4569:24;:::i;:::-;4564:3;4557:37;4482:118;;:::o;4606:222::-;4699:4;4737:2;4726:9;4722:18;4714:26;;4750:71;4818:1;4807:9;4803:17;4794:6;4750:71;:::i;:::-;4606:222;;;;:::o;4834:122::-;4907:24;4925:5;4907:24;:::i;:::-;4900:5;4897:35;4887:63;;4946:1;4943;4936:12;4887:63;4834:122;:::o;4962:139::-;5008:5;5046:6;5033:20;5024:29;;5062:33;5089:5;5062:33;:::i;:::-;4962:139;;;;:::o;5107:474::-;5175:6;5183;5232:2;5220:9;5211:7;5207:23;5203:32;5200:119;;;5238:79;;:::i;:::-;5200:119;5358:1;5383:53;5428:7;5419:6;5408:9;5404:22;5383:53;:::i;:::-;5373:63;;5329:117;5485:2;5511:53;5556:7;5547:6;5536:9;5532:22;5511:53;:::i;:::-;5501:63;;5456:118;5107:474;;;;;:::o;5587:117::-;5696:1;5693;5686:12;5710:117;5819:1;5816;5809:12;5833:180;5881:77;5878:1;5871:88;5978:4;5975:1;5968:15;6002:4;5999:1;5992:15;6019:281;6102:27;6124:4;6102:27;:::i;:::-;6094:6;6090:40;6232:6;6220:10;6217:22;6196:18;6184:10;6181:34;6178:62;6175:88;;;6243:18;;:::i;:::-;6175:88;6283:10;6279:2;6272:22;6062:238;6019:281;;:::o;6306:129::-;6340:6;6367:20;;:::i;:::-;6357:30;;6396:33;6424:4;6416:6;6396:33;:::i;:::-;6306:129;;;:::o;6441:308::-;6503:4;6593:18;6585:6;6582:30;6579:56;;;6615:18;;:::i;:::-;6579:56;6653:29;6675:6;6653:29;:::i;:::-;6645:37;;6737:4;6731;6727:15;6719:23;;6441:308;;;:::o;6755:146::-;6852:6;6847:3;6842;6829:30;6893:1;6884:6;6879:3;6875:16;6868:27;6755:146;;;:::o;6907:425::-;6985:5;7010:66;7026:49;7068:6;7026:49;:::i;:::-;7010:66;:::i;:::-;7001:75;;7099:6;7092:5;7085:21;7137:4;7130:5;7126:16;7175:3;7166:6;7161:3;7157:16;7154:25;7151:112;;;7182:79;;:::i;:::-;7151:112;7272:54;7319:6;7314:3;7309;7272:54;:::i;:::-;6991:341;6907:425;;;;;:::o;7352:340::-;7408:5;7457:3;7450:4;7442:6;7438:17;7434:27;7424:122;;7465:79;;:::i;:::-;7424:122;7582:6;7569:20;7607:79;7682:3;7674:6;7667:4;7659:6;7655:17;7607:79;:::i;:::-;7598:88;;7414:278;7352:340;;;;:::o;7698:509::-;7767:6;7816:2;7804:9;7795:7;7791:23;7787:32;7784:119;;;7822:79;;:::i;:::-;7784:119;7970:1;7959:9;7955:17;7942:31;8000:18;7992:6;7989:30;7986:117;;;8022:79;;:::i;:::-;7986:117;8127:63;8182:7;8173:6;8162:9;8158:22;8127:63;:::i;:::-;8117:73;;7913:287;7698:509;;;;:::o;8213:118::-;8300:24;8318:5;8300:24;:::i;:::-;8295:3;8288:37;8213:118;;:::o;8337:222::-;8430:4;8468:2;8457:9;8453:18;8445:26;;8481:71;8549:1;8538:9;8534:17;8525:6;8481:71;:::i;:::-;8337:222;;;;:::o;8565:619::-;8642:6;8650;8658;8707:2;8695:9;8686:7;8682:23;8678:32;8675:119;;;8713:79;;:::i;:::-;8675:119;8833:1;8858:53;8903:7;8894:6;8883:9;8879:22;8858:53;:::i;:::-;8848:63;;8804:117;8960:2;8986:53;9031:7;9022:6;9011:9;9007:22;8986:53;:::i;:::-;8976:63;;8931:118;9088:2;9114:53;9159:7;9150:6;9139:9;9135:22;9114:53;:::i;:::-;9104:63;;9059:118;8565:619;;;;;:::o;9190:472::-;9257:6;9265;9314:2;9302:9;9293:7;9289:23;9285:32;9282:119;;;9320:79;;:::i;:::-;9282:119;9440:1;9465:52;9509:7;9500:6;9489:9;9485:22;9465:52;:::i;:::-;9455:62;;9411:116;9566:2;9592:53;9637:7;9628:6;9617:9;9613:22;9592:53;:::i;:::-;9582:63;;9537:118;9190:472;;;;;:::o;9668:86::-;9703:7;9743:4;9736:5;9732:16;9721:27;;9668:86;;;:::o;9760:118::-;9831:22;9847:5;9831:22;:::i;:::-;9824:5;9821:33;9811:61;;9868:1;9865;9858:12;9811:61;9760:118;:::o;9884:135::-;9928:5;9966:6;9953:20;9944:29;;9982:31;10007:5;9982:31;:::i;:::-;9884:135;;;;:::o;10025:325::-;10082:6;10131:2;10119:9;10110:7;10106:23;10102:32;10099:119;;;10137:79;;:::i;:::-;10099:119;10257:1;10282:51;10325:7;10316:6;10305:9;10301:22;10282:51;:::i;:::-;10272:61;;10228:115;10025:325;;;;:::o;10356:329::-;10415:6;10464:2;10452:9;10443:7;10439:23;10435:32;10432:119;;;10470:79;;:::i;:::-;10432:119;10590:1;10615:53;10660:7;10651:6;10640:9;10636:22;10615:53;:::i;:::-;10605:63;;10561:117;10356:329;;;;:::o;10691:112::-;10774:22;10790:5;10774:22;:::i;:::-;10769:3;10762:35;10691:112;;:::o;10809:214::-;10898:4;10936:2;10925:9;10921:18;10913:26;;10949:67;11013:1;11002:9;10998:17;10989:6;10949:67;:::i;:::-;10809:214;;;;:::o;11029:116::-;11099:21;11114:5;11099:21;:::i;:::-;11092:5;11089:32;11079:60;;11135:1;11132;11125:12;11079:60;11029:116;:::o;11151:133::-;11194:5;11232:6;11219:20;11210:29;;11248:30;11272:5;11248:30;:::i;:::-;11151:133;;;;:::o;11290:468::-;11355:6;11363;11412:2;11400:9;11391:7;11387:23;11383:32;11380:119;;;11418:79;;:::i;:::-;11380:119;11538:1;11563:53;11608:7;11599:6;11588:9;11584:22;11563:53;:::i;:::-;11553:63;;11509:117;11665:2;11691:50;11733:7;11724:6;11713:9;11709:22;11691:50;:::i;:::-;11681:60;;11636:115;11290:468;;;;;:::o;11764:307::-;11825:4;11915:18;11907:6;11904:30;11901:56;;;11937:18;;:::i;:::-;11901:56;11975:29;11997:6;11975:29;:::i;:::-;11967:37;;12059:4;12053;12049:15;12041:23;;11764:307;;;:::o;12077:423::-;12154:5;12179:65;12195:48;12236:6;12195:48;:::i;:::-;12179:65;:::i;:::-;12170:74;;12267:6;12260:5;12253:21;12305:4;12298:5;12294:16;12343:3;12334:6;12329:3;12325:16;12322:25;12319:112;;;12350:79;;:::i;:::-;12319:112;12440:54;12487:6;12482:3;12477;12440:54;:::i;:::-;12160:340;12077:423;;;;;:::o;12519:338::-;12574:5;12623:3;12616:4;12608:6;12604:17;12600:27;12590:122;;12631:79;;:::i;:::-;12590:122;12748:6;12735:20;12773:78;12847:3;12839:6;12832:4;12824:6;12820:17;12773:78;:::i;:::-;12764:87;;12580:277;12519:338;;;;:::o;12863:943::-;12958:6;12966;12974;12982;13031:3;13019:9;13010:7;13006:23;13002:33;12999:120;;;13038:79;;:::i;:::-;12999:120;13158:1;13183:53;13228:7;13219:6;13208:9;13204:22;13183:53;:::i;:::-;13173:63;;13129:117;13285:2;13311:53;13356:7;13347:6;13336:9;13332:22;13311:53;:::i;:::-;13301:63;;13256:118;13413:2;13439:53;13484:7;13475:6;13464:9;13460:22;13439:53;:::i;:::-;13429:63;;13384:118;13569:2;13558:9;13554:18;13541:32;13600:18;13592:6;13589:30;13586:117;;;13622:79;;:::i;:::-;13586:117;13727:62;13781:7;13772:6;13761:9;13757:22;13727:62;:::i;:::-;13717:72;;13512:287;12863:943;;;;;;;:::o;13812:117::-;13921:1;13918;13911:12;13935:117;14044:1;14041;14034:12;14075:568;14148:8;14158:6;14208:3;14201:4;14193:6;14189:17;14185:27;14175:122;;14216:79;;:::i;:::-;14175:122;14329:6;14316:20;14306:30;;14359:18;14351:6;14348:30;14345:117;;;14381:79;;:::i;:::-;14345:117;14495:4;14487:6;14483:17;14471:29;;14549:3;14541:4;14533:6;14529:17;14519:8;14515:32;14512:41;14509:128;;;14556:79;;:::i;:::-;14509:128;14075:568;;;;;:::o;14649:700::-;14742:6;14750;14758;14807:2;14795:9;14786:7;14782:23;14778:32;14775:119;;;14813:79;;:::i;:::-;14775:119;14933:1;14958:51;15001:7;14992:6;14981:9;14977:22;14958:51;:::i;:::-;14948:61;;14904:115;15086:2;15075:9;15071:18;15058:32;15117:18;15109:6;15106:30;15103:117;;;15139:79;;:::i;:::-;15103:117;15252:80;15324:7;15315:6;15304:9;15300:22;15252:80;:::i;:::-;15234:98;;;;15029:313;14649:700;;;;;:::o;15355:115::-;15440:23;15457:5;15440:23;:::i;:::-;15435:3;15428:36;15355:115;;:::o;15476:218::-;15567:4;15605:2;15594:9;15590:18;15582:26;;15618:69;15684:1;15673:9;15669:17;15660:6;15618:69;:::i;:::-;15476:218;;;;:::o;15700:474::-;15768:6;15776;15825:2;15813:9;15804:7;15800:23;15796:32;15793:119;;;15831:79;;:::i;:::-;15793:119;15951:1;15976:53;16021:7;16012:6;16001:9;15997:22;15976:53;:::i;:::-;15966:63;;15922:117;16078:2;16104:53;16149:7;16140:6;16129:9;16125:22;16104:53;:::i;:::-;16094:63;;16049:118;15700:474;;;;;:::o;16180:182::-;16320:34;16316:1;16308:6;16304:14;16297:58;16180:182;:::o;16368:366::-;16510:3;16531:67;16595:2;16590:3;16531:67;:::i;:::-;16524:74;;16607:93;16696:3;16607:93;:::i;:::-;16725:2;16720:3;16716:12;16709:19;;16368:366;;;:::o;16740:419::-;16906:4;16944:2;16933:9;16929:18;16921:26;;16993:9;16987:4;16983:20;16979:1;16968:9;16964:17;16957:47;17021:131;17147:4;17021:131;:::i;:::-;17013:139;;16740:419;;;:::o;17165:180::-;17213:77;17210:1;17203:88;17310:4;17307:1;17300:15;17334:4;17331:1;17324:15;17351:320;17395:6;17432:1;17426:4;17422:12;17412:22;;17479:1;17473:4;17469:12;17500:18;17490:81;;17556:4;17548:6;17544:17;17534:27;;17490:81;17618:2;17610:6;17607:14;17587:18;17584:38;17581:84;;17637:18;;:::i;:::-;17581:84;17402:269;17351:320;;;:::o;17677:141::-;17726:4;17749:3;17741:11;;17772:3;17769:1;17762:14;17806:4;17803:1;17793:18;17785:26;;17677:141;;;:::o;17824:93::-;17861:6;17908:2;17903;17896:5;17892:14;17888:23;17878:33;;17824:93;;;:::o;17923:107::-;17967:8;18017:5;18011:4;18007:16;17986:37;;17923:107;;;;:::o;18036:393::-;18105:6;18155:1;18143:10;18139:18;18178:97;18208:66;18197:9;18178:97;:::i;:::-;18296:39;18326:8;18315:9;18296:39;:::i;:::-;18284:51;;18368:4;18364:9;18357:5;18353:21;18344:30;;18417:4;18407:8;18403:19;18396:5;18393:30;18383:40;;18112:317;;18036:393;;;;;:::o;18435:60::-;18463:3;18484:5;18477:12;;18435:60;;;:::o;18501:142::-;18551:9;18584:53;18602:34;18611:24;18629:5;18611:24;:::i;:::-;18602:34;:::i;:::-;18584:53;:::i;:::-;18571:66;;18501:142;;;:::o;18649:75::-;18692:3;18713:5;18706:12;;18649:75;;;:::o;18730:269::-;18840:39;18871:7;18840:39;:::i;:::-;18901:91;18950:41;18974:16;18950:41;:::i;:::-;18942:6;18935:4;18929:11;18901:91;:::i;:::-;18895:4;18888:105;18806:193;18730:269;;;:::o;19005:73::-;19050:3;19005:73;:::o;19084:189::-;19161:32;;:::i;:::-;19202:65;19260:6;19252;19246:4;19202:65;:::i;:::-;19137:136;19084:189;;:::o;19279:186::-;19339:120;19356:3;19349:5;19346:14;19339:120;;;19410:39;19447:1;19440:5;19410:39;:::i;:::-;19383:1;19376:5;19372:13;19363:22;;19339:120;;;19279:186;;:::o;19471:543::-;19572:2;19567:3;19564:11;19561:446;;;19606:38;19638:5;19606:38;:::i;:::-;19690:29;19708:10;19690:29;:::i;:::-;19680:8;19676:44;19873:2;19861:10;19858:18;19855:49;;;19894:8;19879:23;;19855:49;19917:80;19973:22;19991:3;19973:22;:::i;:::-;19963:8;19959:37;19946:11;19917:80;:::i;:::-;19576:431;;19561:446;19471:543;;;:::o;20020:117::-;20074:8;20124:5;20118:4;20114:16;20093:37;;20020:117;;;;:::o;20143:169::-;20187:6;20220:51;20268:1;20264:6;20256:5;20253:1;20249:13;20220:51;:::i;:::-;20216:56;20301:4;20295;20291:15;20281:25;;20194:118;20143:169;;;;:::o;20317:295::-;20393:4;20539:29;20564:3;20558:4;20539:29;:::i;:::-;20531:37;;20601:3;20598:1;20594:11;20588:4;20585:21;20577:29;;20317:295;;;;:::o;20617:1395::-;20734:37;20767:3;20734:37;:::i;:::-;20836:18;20828:6;20825:30;20822:56;;;20858:18;;:::i;:::-;20822:56;20902:38;20934:4;20928:11;20902:38;:::i;:::-;20987:67;21047:6;21039;21033:4;20987:67;:::i;:::-;21081:1;21105:4;21092:17;;21137:2;21129:6;21126:14;21154:1;21149:618;;;;21811:1;21828:6;21825:77;;;21877:9;21872:3;21868:19;21862:26;21853:35;;21825:77;21928:67;21988:6;21981:5;21928:67;:::i;:::-;21922:4;21915:81;21784:222;21119:887;;21149:618;21201:4;21197:9;21189:6;21185:22;21235:37;21267:4;21235:37;:::i;:::-;21294:1;21308:208;21322:7;21319:1;21316:14;21308:208;;;21401:9;21396:3;21392:19;21386:26;21378:6;21371:42;21452:1;21444:6;21440:14;21430:24;;21499:2;21488:9;21484:18;21471:31;;21345:4;21342:1;21338:12;21333:17;;21308:208;;;21544:6;21535:7;21532:19;21529:179;;;21602:9;21597:3;21593:19;21587:26;21645:48;21687:4;21679:6;21675:17;21664:9;21645:48;:::i;:::-;21637:6;21630:64;21552:156;21529:179;21754:1;21750;21742:6;21738:14;21734:22;21728:4;21721:36;21156:611;;;21119:887;;20709:1303;;;20617:1395;;:::o;22018:332::-;22139:4;22177:2;22166:9;22162:18;22154:26;;22190:71;22258:1;22247:9;22243:17;22234:6;22190:71;:::i;:::-;22271:72;22339:2;22328:9;22324:18;22315:6;22271:72;:::i;:::-;22018:332;;;;;:::o;22356:137::-;22410:5;22441:6;22435:13;22426:22;;22457:30;22481:5;22457:30;:::i;:::-;22356:137;;;;:::o;22499:345::-;22566:6;22615:2;22603:9;22594:7;22590:23;22586:32;22583:119;;;22621:79;;:::i;:::-;22583:119;22741:1;22766:61;22819:7;22810:6;22799:9;22795:22;22766:61;:::i;:::-;22756:71;;22712:125;22499:345;;;;:::o;22850:180::-;22898:77;22895:1;22888:88;22995:4;22992:1;22985:15;23019:4;23016:1;23009:15;23036:193;23075:3;23094:19;23111:1;23094:19;:::i;:::-;23089:24;;23127:19;23144:1;23127:19;:::i;:::-;23122:24;;23169:1;23166;23162:9;23155:16;;23192:6;23187:3;23184:15;23181:41;;;23202:18;;:::i;:::-;23181:41;23036:193;;;;:::o;23235:169::-;23375:21;23371:1;23363:6;23359:14;23352:45;23235:169;:::o;23410:366::-;23552:3;23573:67;23637:2;23632:3;23573:67;:::i;:::-;23566:74;;23649:93;23738:3;23649:93;:::i;:::-;23767:2;23762:3;23758:12;23751:19;;23410:366;;;:::o;23782:419::-;23948:4;23986:2;23975:9;23971:18;23963:26;;24035:9;24029:4;24025:20;24021:1;24010:9;24006:17;23999:47;24063:131;24189:4;24063:131;:::i;:::-;24055:139;;23782:419;;;:::o;24207:188::-;24245:3;24264:18;24280:1;24264:18;:::i;:::-;24259:23;;24296:18;24312:1;24296:18;:::i;:::-;24291:23;;24337:1;24334;24330:9;24323:16;;24360:4;24355:3;24352:13;24349:39;;;24368:18;;:::i;:::-;24349:39;24207:188;;;;:::o;24401:178::-;24541:30;24537:1;24529:6;24525:14;24518:54;24401:178;:::o;24585:366::-;24727:3;24748:67;24812:2;24807:3;24748:67;:::i;:::-;24741:74;;24824:93;24913:3;24824:93;:::i;:::-;24942:2;24937:3;24933:12;24926:19;;24585:366;;;:::o;24957:419::-;25123:4;25161:2;25150:9;25146:18;25138:26;;25210:9;25204:4;25200:20;25196:1;25185:9;25181:17;25174:47;25238:131;25364:4;25238:131;:::i;:::-;25230:139;;24957:419;;;:::o;25382:173::-;25522:25;25518:1;25510:6;25506:14;25499:49;25382:173;:::o;25561:366::-;25703:3;25724:67;25788:2;25783:3;25724:67;:::i;:::-;25717:74;;25800:93;25889:3;25800:93;:::i;:::-;25918:2;25913:3;25909:12;25902:19;;25561:366;;;:::o;25933:419::-;26099:4;26137:2;26126:9;26122:18;26114:26;;26186:9;26180:4;26176:20;26172:1;26161:9;26157:17;26150:47;26214:131;26340:4;26214:131;:::i;:::-;26206:139;;25933:419;;;:::o;26358:410::-;26398:7;26421:20;26439:1;26421:20;:::i;:::-;26416:25;;26455:20;26473:1;26455:20;:::i;:::-;26450:25;;26510:1;26507;26503:9;26532:30;26550:11;26532:30;:::i;:::-;26521:41;;26711:1;26702:7;26698:15;26695:1;26692:22;26672:1;26665:9;26645:83;26622:139;;26741:18;;:::i;:::-;26622:139;26406:362;26358:410;;;;:::o;26774:169::-;26914:21;26910:1;26902:6;26898:14;26891:45;26774:169;:::o;26949:366::-;27091:3;27112:67;27176:2;27171:3;27112:67;:::i;:::-;27105:74;;27188:93;27277:3;27188:93;:::i;:::-;27306:2;27301:3;27297:12;27290:19;;26949:366;;;:::o;27321:419::-;27487:4;27525:2;27514:9;27510:18;27502:26;;27574:9;27568:4;27564:20;27560:1;27549:9;27545:17;27538:47;27602:131;27728:4;27602:131;:::i;:::-;27594:139;;27321:419;;;:::o;27746:191::-;27784:4;27804:18;27820:1;27804:18;:::i;:::-;27799:23;;27836:18;27852:1;27836:18;:::i;:::-;27831:23;;27878:1;27875;27871:9;27863:17;;27902:4;27896;27893:14;27890:40;;;27910:18;;:::i;:::-;27890:40;27746:191;;;;:::o;27943:234::-;28083:34;28079:1;28071:6;28067:14;28060:58;28152:17;28147:2;28139:6;28135:15;28128:42;27943:234;:::o;28183:366::-;28325:3;28346:67;28410:2;28405:3;28346:67;:::i;:::-;28339:74;;28422:93;28511:3;28422:93;:::i;:::-;28540:2;28535:3;28531:12;28524:19;;28183:366;;;:::o;28555:419::-;28721:4;28759:2;28748:9;28744:18;28736:26;;28808:9;28802:4;28798:20;28794:1;28783:9;28779:17;28772:47;28836:131;28962:4;28836:131;:::i;:::-;28828:139;;28555:419;;;:::o;28980:148::-;29082:11;29119:3;29104:18;;28980:148;;;;:::o;29134:390::-;29240:3;29268:39;29301:5;29268:39;:::i;:::-;29323:89;29405:6;29400:3;29323:89;:::i;:::-;29316:96;;29421:65;29479:6;29474:3;29467:4;29460:5;29456:16;29421:65;:::i;:::-;29511:6;29506:3;29502:16;29495:23;;29244:280;29134:390;;;;:::o;29554:874::-;29657:3;29694:5;29688:12;29723:36;29749:9;29723:36;:::i;:::-;29775:89;29857:6;29852:3;29775:89;:::i;:::-;29768:96;;29895:1;29884:9;29880:17;29911:1;29906:166;;;;30086:1;30081:341;;;;29873:549;;29906:166;29990:4;29986:9;29975;29971:25;29966:3;29959:38;30052:6;30045:14;30038:22;30030:6;30026:35;30021:3;30017:45;30010:52;;29906:166;;30081:341;30148:38;30180:5;30148:38;:::i;:::-;30208:1;30222:154;30236:6;30233:1;30230:13;30222:154;;;30310:7;30304:14;30300:1;30295:3;30291:11;30284:35;30360:1;30351:7;30347:15;30336:26;;30258:4;30255:1;30251:12;30246:17;;30222:154;;;30405:6;30400:3;30396:16;30389:23;;30088:334;;29873:549;;29661:767;;29554:874;;;;:::o;30434:589::-;30659:3;30681:95;30772:3;30763:6;30681:95;:::i;:::-;30674:102;;30793:95;30884:3;30875:6;30793:95;:::i;:::-;30786:102;;30905:92;30993:3;30984:6;30905:92;:::i;:::-;30898:99;;31014:3;31007:10;;30434:589;;;;;;:::o;31029:191::-;31069:3;31088:20;31106:1;31088:20;:::i;:::-;31083:25;;31122:20;31140:1;31122:20;:::i;:::-;31117:25;;31165:1;31162;31158:9;31151:16;;31186:3;31183:1;31180:10;31177:36;;;31193:18;;:::i;:::-;31177:36;31029:191;;;;:::o;31226:180::-;31274:77;31271:1;31264:88;31371:4;31368:1;31361:15;31395:4;31392:1;31385:15;31412:233;31451:3;31474:24;31492:5;31474:24;:::i;:::-;31465:33;;31520:66;31513:5;31510:77;31507:103;;31590:18;;:::i;:::-;31507:103;31637:1;31630:5;31626:13;31619:20;;31412:233;;;:::o;31651:225::-;31791:34;31787:1;31779:6;31775:14;31768:58;31860:8;31855:2;31847:6;31843:15;31836:33;31651:225;:::o;31882:366::-;32024:3;32045:67;32109:2;32104:3;32045:67;:::i;:::-;32038:74;;32121:93;32210:3;32121:93;:::i;:::-;32239:2;32234:3;32230:12;32223:19;;31882:366;;;:::o;32254:419::-;32420:4;32458:2;32447:9;32443:18;32435:26;;32507:9;32501:4;32497:20;32493:1;32482:9;32478:17;32471:47;32535:131;32661:4;32535:131;:::i;:::-;32527:139;;32254:419;;;:::o;32679:180::-;32727:77;32724:1;32717:88;32824:4;32821:1;32814:15;32848:4;32845:1;32838:15;32865:185;32905:1;32922:20;32940:1;32922:20;:::i;:::-;32917:25;;32956:20;32974:1;32956:20;:::i;:::-;32951:25;;32995:1;32985:35;;33000:18;;:::i;:::-;32985:35;33042:1;33039;33035:9;33030:14;;32865:185;;;;:::o;33056:194::-;33096:4;33116:20;33134:1;33116:20;:::i;:::-;33111:25;;33150:20;33168:1;33150:20;:::i;:::-;33145:25;;33194:1;33191;33187:9;33179:17;;33218:1;33212:4;33209:11;33206:37;;;33223:18;;:::i;:::-;33206:37;33056:194;;;;:::o;33256:176::-;33288:1;33305:20;33323:1;33305:20;:::i;:::-;33300:25;;33339:20;33357:1;33339:20;:::i;:::-;33334:25;;33378:1;33368:35;;33383:18;;:::i;:::-;33368:35;33424:1;33421;33417:9;33412:14;;33256:176;;;;:::o;33438:98::-;33489:6;33523:5;33517:12;33507:22;;33438:98;;;:::o;33542:168::-;33625:11;33659:6;33654:3;33647:19;33699:4;33694:3;33690:14;33675:29;;33542:168;;;;:::o;33716:373::-;33802:3;33830:38;33862:5;33830:38;:::i;:::-;33884:70;33947:6;33942:3;33884:70;:::i;:::-;33877:77;;33963:65;34021:6;34016:3;34009:4;34002:5;33998:16;33963:65;:::i;:::-;34053:29;34075:6;34053:29;:::i;:::-;34048:3;34044:39;34037:46;;33806:283;33716:373;;;;:::o;34095:640::-;34290:4;34328:3;34317:9;34313:19;34305:27;;34342:71;34410:1;34399:9;34395:17;34386:6;34342:71;:::i;:::-;34423:72;34491:2;34480:9;34476:18;34467:6;34423:72;:::i;:::-;34505;34573:2;34562:9;34558:18;34549:6;34505:72;:::i;:::-;34624:9;34618:4;34614:20;34609:2;34598:9;34594:18;34587:48;34652:76;34723:4;34714:6;34652:76;:::i;:::-;34644:84;;34095:640;;;;;;;:::o;34741:141::-;34797:5;34828:6;34822:13;34813:22;;34844:32;34870:5;34844:32;:::i;:::-;34741:141;;;;:::o;34888:349::-;34957:6;35006:2;34994:9;34985:7;34981:23;34977:32;34974:119;;;35012:79;;:::i;:::-;34974:119;35132:1;35157:63;35212:7;35203:6;35192:9;35188:22;35157:63;:::i;:::-;35147:73;;35103:127;34888:349;;;;:::o

Swarm Source

ipfs://e920a8585b0f59ae8c723869220efaa7027632ec0e65459c433622beecc39c4d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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