ETH Price: $3,087.89 (-0.02%)
Gas: 5 Gwei

Token

Apes In Space (AIS)
 

Overview

Max Total Supply

9,999 AIS

Holders

6,471

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
neumeyer.eth
Balance
1 AIS
0x6206926fb06Bf27ae31789D6072257c823B4fA2D
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Home of the Apes in Space NFT project launched by Takeoff, 1/3 of the award-winning group Migos.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ApesInSpace

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-03
*/

// SPDX-License-Identifier: MIT AND GPL-3.0

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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/ApesInSpace.sol

pragma solidity >=0.7.0 <0.9.0;



contract ApesInSpace is ERC721Enumerable, Ownable {
  using Strings for uint256;
  string private baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public preSaleCost = 0.12 ether;
  uint256 public cost = 0.3 ether;
  uint256 public maxSupply = 9999;
  uint256 public preSaleMaxSupply = 2250;
  uint256 public maxMintAmountPresale = 1;
  uint256 public maxMintAmount = 10;
  uint256 public nftPerAddressLimitPresale = 1;
  uint256 public nftPerAddressLimit = 100;
  uint256 public preSaleDate = 1638738000;
  uint256 public preSaleEndDate = 1638824400;
  uint256 public publicSaleDate = 1638842400;
  bool public paused = false;
  bool public revealed = false;
  mapping(address => bool) whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setNotRevealedURI(_initNotRevealedUri);
  }

  //MODIFIERS
  modifier notPaused {
    require(!paused, "the contract is paused");
    _;
  }

  modifier saleStarted {
    require(block.timestamp >= preSaleDate, "Sale has not started yet");
    _;
  }

  modifier minimumMintAmount(uint256 _mintAmount) {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    _;
  }

  // INTERNAL
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  function presaleValidations(
    uint256 _ownerMintedCount,
    uint256 _mintAmount,
    uint256 _supply
  ) internal {
    uint256 actualCost;
    block.timestamp < preSaleEndDate
      ? actualCost = preSaleCost
      : actualCost = cost;
    require(isWhitelisted(msg.sender), "user is not whitelisted");
    require(
      _ownerMintedCount + _mintAmount <= nftPerAddressLimitPresale,
      "max NFT per address exceeded for presale"
    );
    require(msg.value >= actualCost * _mintAmount, "insufficient funds");
    require(
      _mintAmount <= maxMintAmountPresale,
      "max mint amount per transaction exceeded"
    );
    require(
      _supply + _mintAmount <= preSaleMaxSupply,
      "max NFT presale limit exceeded"
    );
  }

  function publicsaleValidations(uint256 _ownerMintedCount, uint256 _mintAmount)
    internal
  {
    require(
      _ownerMintedCount + _mintAmount <= nftPerAddressLimit,
      "max NFT per address exceeded"
    );
    require(msg.value >= cost * _mintAmount, "insufficient funds");
    require(
      _mintAmount <= maxMintAmount,
      "max mint amount per transaction exceeded"
    );
  }

  //MINT
  function mint(uint256 _mintAmount)
    public
    payable
    notPaused
    saleStarted
    minimumMintAmount(_mintAmount)
  {
    uint256 supply = totalSupply();
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];

    //Do some validations depending on which step of the sale we are in
    block.timestamp < publicSaleDate
      ? presaleValidations(ownerMintedCount, _mintAmount, supply)
      : publicsaleValidations(ownerMintedCount, _mintAmount);

    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }

  function gift(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[destination]++;
      _safeMint(destination, supply + i);
    }
  }

  //PUBLIC VIEWS
  function isWhitelisted(address _user) public view returns (bool) {
    return whitelistedAddresses[_user];
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

    if (!revealed) {
      return notRevealedUri;
    } else {
      string memory currentBaseURI = _baseURI();
      return
        bytes(currentBaseURI).length > 0
          ? string(
            abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)
          )
          : "";
    }
  }

  function getCurrentCost() public view returns (uint256) {
    if (block.timestamp < preSaleEndDate) {
      return preSaleCost;
    } else {
      return cost;
    }
  }

  //ONLY OWNER VIEWS
  function getBaseURI() public view onlyOwner returns (string memory) {
    return baseURI;
  }

  function getContractBalance() public view onlyOwner returns (uint256) {
    return address(this).balance;
  }

  //ONLY OWNER SETTERS
  function reveal() public onlyOwner {
    revealed = true;
  }

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

  function setNftPerAddressLimitPreSale(uint256 _limit) public onlyOwner {
    nftPerAddressLimitPresale = _limit;
  }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

  function setPresaleCost(uint256 _newCost) public onlyOwner {
    preSaleCost = _newCost;
  }

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

  function setmaxMintAmountPreSale(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmountPresale = _newmaxMintAmount;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setPresaleMaxSupply(uint256 _newPresaleMaxSupply) public onlyOwner {
    preSaleMaxSupply = _newPresaleMaxSupply;
  }

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

  function setPreSaleDate(uint256 _preSaleDate) public onlyOwner {
    preSaleDate = _preSaleDate;
  }

  function setPreSaleEndDate(uint256 _preSaleEndDate) public onlyOwner {
    preSaleEndDate = _preSaleEndDate;
  }

  function setPublicSaleDate(uint256 _publicSaleDate) public onlyOwner {
    publicSaleDate = _publicSaleDate;
  }

  function whitelistUsers(address[] memory addresses) public onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      whitelistedAddresses[addresses[i]] = true;
    }
  }

  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(
      ""
    );
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleDate","type":"uint256"}],"name":"setPreSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleEndDate","type":"uint256"}],"name":"setPreSaleEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPresaleMaxSupply","type":"uint256"}],"name":"setPresaleMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleDate","type":"uint256"}],"name":"setPublicSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPreSale","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000519291906200031e565b506701aa535d3d0c0000600e55670429d069189e0000600f5561270f6010556108ca6011556001601255600a601355600160145560646015556361ad28506016556361ae79d06017556361aec0206018556000601960006101000a81548160ff0219169083151502179055506000601960016101000a81548160ff021916908315150217905550348015620000e557600080fd5b506040516200627e3803806200627e83398181016040528101906200010b919062000440565b82828160009080519060200190620001259291906200031e565b5080600190805190602001906200013e9291906200031e565b50505062000161620001556200017b60201b60201c565b6200018360201b60201c565b62000172816200024960201b60201c565b50505062000687565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002596200017b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200027f620002f460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cf9062000523565b60405180910390fd5b80600d9080519060200190620002f09291906200031e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200032c90620005f3565b90600052602060002090601f0160209004810192826200035057600085556200039c565b82601f106200036b57805160ff19168380011785556200039c565b828001600101855582156200039c579182015b828111156200039b5782518255916020019190600101906200037e565b5b509050620003ab9190620003af565b5090565b5b80821115620003ca576000816000905550600101620003b0565b5090565b6000620003e5620003df8462000579565b62000545565b905082815260208101848484011115620003fe57600080fd5b6200040b848285620005bd565b509392505050565b600082601f8301126200042557600080fd5b815162000437848260208601620003ce565b91505092915050565b6000806000606084860312156200045657600080fd5b600084015167ffffffffffffffff8111156200047157600080fd5b6200047f8682870162000413565b935050602084015167ffffffffffffffff8111156200049d57600080fd5b620004ab8682870162000413565b925050604084015167ffffffffffffffff811115620004c957600080fd5b620004d78682870162000413565b9150509250925092565b6000620004f0602083620005ac565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200053e81620004e1565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200056f576200056e62000658565b5b8060405250919050565b600067ffffffffffffffff82111562000597576200059662000658565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b83811015620005dd578082015181840152602081019050620005c0565b83811115620005ed576000848401525b50505050565b600060028204905060018216806200060c57607f821691505b6020821081141562000623576200062262000629565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b615be780620006976000396000f3fe6080604052600436106103975760003560e01c80636f9fb98a116101dc578063a22cb46511610102578063d0eb26b0116100a0578063eced38731161006f578063eced387314610d4a578063edec5f2714610d75578063f2c4ce1e14610d9e578063f2fde38b14610dc757610397565b8063d0eb26b014610c90578063d5abeb0114610cb9578063da3ef23f14610ce4578063e985e9c514610d0d57610397565b8063ba7d2c76116100dc578063ba7d2c7614610bd2578063c668286214610bfd578063c87b56dd14610c28578063cc9ff9c614610c6557610397565b8063a22cb46514610b69578063a475b5dd14610b92578063b88d4fde14610ba957610397565b80637f00c7a61161017a5780638fdcf942116101495780638fdcf94214610ace57806395d89b4114610af7578063a0712d6814610b22578063a18116f114610b3e57610397565b80637f00c7a614610a26578063831e60de14610a4f57806383a076be14610a7a5780638da5cb5b14610aa357610397565b8063715018a6116101b6578063715018a614610990578063743c7f6b146109a75780637967a50a146109d05780637effc032146109fb57610397565b80636f9fb98a146108fd57806370a0823114610928578063714c53981461096557610397565b80632e09282e116102c157806344a0d68a1161025f5780635c975abb1161022e5780635c975abb146108435780636352211e1461086e578063669736c0146108ab5780636f8b44b0146108d457610397565b806344a0d68a146107895780634f6ccce7146107b257806351830227146107ef57806355f804b31461081a57610397565b80633ccfd60b1161029b5780633ccfd60b146106f057806342842e0e146106fa57806342f0ca0d14610723578063438b63001461074c57610397565b80632e09282e1461064b5780632f745c59146106765780633af32abf146106b357610397565b80630a50716b1161033957806318cae2691161030857806318cae2691461058f5780631985cc65146105cc578063239c70ae146105f757806323b872dd1461062257610397565b80630a50716b146104e75780630e54a8831461051057806313faede61461053957806318160ddd1461056457610397565b8063081812fc11610375578063081812fc1461042d578063081c8c441461046a578063095ea7b3146104955780630a403f04146104be57610397565b806301ffc9a71461039c57806302329a29146103d957806306fdde0314610402575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be91906145cb565b610df0565b6040516103d091906152e0565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb91906145a2565b610e6a565b005b34801561040e57600080fd5b50610417610f03565b60405161042491906152fb565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f919061465e565b610f95565b6040516104619190615257565b60405180910390f35b34801561047657600080fd5b5061047f61101a565b60405161048c91906152fb565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190614525565b6110a8565b005b3480156104ca57600080fd5b506104e560048036038101906104e0919061465e565b6111c0565b005b3480156104f357600080fd5b5061050e6004803603810190610509919061465e565b611246565b005b34801561051c57600080fd5b506105376004803603810190610532919061465e565b6112cc565b005b34801561054557600080fd5b5061054e611352565b60405161055b919061569d565b60405180910390f35b34801561057057600080fd5b50610579611358565b604051610586919061569d565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b191906143ba565b611365565b6040516105c3919061569d565b60405180910390f35b3480156105d857600080fd5b506105e161137d565b6040516105ee919061569d565b60405180910390f35b34801561060357600080fd5b5061060c611383565b604051610619919061569d565b60405180910390f35b34801561062e57600080fd5b506106496004803603810190610644919061441f565b611389565b005b34801561065757600080fd5b506106606113e9565b60405161066d919061569d565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190614525565b6113ef565b6040516106aa919061569d565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d591906143ba565b611494565b6040516106e791906152e0565b60405180910390f35b6106f86114ea565b005b34801561070657600080fd5b50610721600480360381019061071c919061441f565b6115df565b005b34801561072f57600080fd5b5061074a6004803603810190610745919061465e565b6115ff565b005b34801561075857600080fd5b50610773600480360381019061076e91906143ba565b611685565b60405161078091906152be565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab919061465e565b61177f565b005b3480156107be57600080fd5b506107d960048036038101906107d4919061465e565b611805565b6040516107e6919061569d565b60405180910390f35b3480156107fb57600080fd5b5061080461189c565b60405161081191906152e0565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061461d565b6118af565b005b34801561084f57600080fd5b50610858611945565b60405161086591906152e0565b60405180910390f35b34801561087a57600080fd5b506108956004803603810190610890919061465e565b611958565b6040516108a29190615257565b60405180910390f35b3480156108b757600080fd5b506108d260048036038101906108cd919061465e565b611a0a565b005b3480156108e057600080fd5b506108fb60048036038101906108f6919061465e565b611a90565b005b34801561090957600080fd5b50610912611b16565b60405161091f919061569d565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a91906143ba565b611b9a565b60405161095c919061569d565b60405180910390f35b34801561097157600080fd5b5061097a611c52565b60405161098791906152fb565b60405180910390f35b34801561099c57600080fd5b506109a5611d60565b005b3480156109b357600080fd5b506109ce60048036038101906109c9919061465e565b611de8565b005b3480156109dc57600080fd5b506109e5611e6e565b6040516109f2919061569d565b60405180910390f35b348015610a0757600080fd5b50610a10611e74565b604051610a1d919061569d565b60405180910390f35b348015610a3257600080fd5b50610a4d6004803603810190610a48919061465e565b611e7a565b005b348015610a5b57600080fd5b50610a64611f00565b604051610a71919061569d565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c9190614687565b611f1f565b005b348015610aaf57600080fd5b50610ab86120cb565b604051610ac59190615257565b60405180910390f35b348015610ada57600080fd5b50610af56004803603810190610af0919061465e565b6120f5565b005b348015610b0357600080fd5b50610b0c61217b565b604051610b1991906152fb565b60405180910390f35b610b3c6004803603810190610b37919061465e565b61220d565b005b348015610b4a57600080fd5b50610b5361243c565b604051610b60919061569d565b60405180910390f35b348015610b7557600080fd5b50610b906004803603810190610b8b91906144e9565b612442565b005b348015610b9e57600080fd5b50610ba76125c3565b005b348015610bb557600080fd5b50610bd06004803603810190610bcb919061446e565b61265c565b005b348015610bde57600080fd5b50610be76126be565b604051610bf4919061569d565b60405180910390f35b348015610c0957600080fd5b50610c126126c4565b604051610c1f91906152fb565b60405180910390f35b348015610c3457600080fd5b50610c4f6004803603810190610c4a919061465e565b612752565b604051610c5c91906152fb565b60405180910390f35b348015610c7157600080fd5b50610c7a6128a3565b604051610c87919061569d565b60405180910390f35b348015610c9c57600080fd5b50610cb76004803603810190610cb2919061465e565b6128a9565b005b348015610cc557600080fd5b50610cce61292f565b604051610cdb919061569d565b60405180910390f35b348015610cf057600080fd5b50610d0b6004803603810190610d06919061461d565b612935565b005b348015610d1957600080fd5b50610d346004803603810190610d2f91906143e3565b6129cb565b604051610d4191906152e0565b60405180910390f35b348015610d5657600080fd5b50610d5f612a5f565b604051610d6c919061569d565b60405180910390f35b348015610d8157600080fd5b50610d9c6004803603810190610d979190614561565b612a65565b005b348015610daa57600080fd5b50610dc56004803603810190610dc0919061461d565b612b9c565b005b348015610dd357600080fd5b50610dee6004803603810190610de991906143ba565b612c32565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e635750610e6282612d2a565b5b9050919050565b610e72612e0c565b73ffffffffffffffffffffffffffffffffffffffff16610e906120cb565b73ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd9061551d565b60405180910390fd5b80601960006101000a81548160ff02191690831515021790555050565b606060008054610f12906159dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3e906159dc565b8015610f8b5780601f10610f6057610100808354040283529160200191610f8b565b820191906000526020600020905b815481529060010190602001808311610f6e57829003601f168201915b5050505050905090565b6000610fa082612e14565b610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd6906154fd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054611027906159dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611053906159dc565b80156110a05780601f10611075576101008083540402835291602001916110a0565b820191906000526020600020905b81548152906001019060200180831161108357829003601f168201915b505050505081565b60006110b382611958565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b906155bd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611143612e0c565b73ffffffffffffffffffffffffffffffffffffffff16148061117257506111718161116c612e0c565b6129cb565b5b6111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a89061545d565b60405180910390fd5b6111bb8383612e80565b505050565b6111c8612e0c565b73ffffffffffffffffffffffffffffffffffffffff166111e66120cb565b73ffffffffffffffffffffffffffffffffffffffff161461123c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112339061551d565b60405180910390fd5b8060118190555050565b61124e612e0c565b73ffffffffffffffffffffffffffffffffffffffff1661126c6120cb565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b99061551d565b60405180910390fd5b8060148190555050565b6112d4612e0c565b73ffffffffffffffffffffffffffffffffffffffff166112f26120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061551d565b60405180910390fd5b8060188190555050565b600f5481565b6000600880549050905090565b601b6020528060005260406000206000915090505481565b60165481565b60135481565b61139a611394612e0c565b82612f39565b6113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d09061561d565b60405180910390fd5b6113e4838383613017565b505050565b60145481565b60006113fa83611b9a565b821061143b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114329061533d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114f2612e0c565b73ffffffffffffffffffffffffffffffffffffffff166115106120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d9061551d565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161158c90615242565b60006040518083038185875af1925050503d80600081146115c9576040519150601f19603f3d011682016040523d82523d6000602084013e6115ce565b606091505b50509050806115dc57600080fd5b50565b6115fa8383836040518060200160405280600081525061265c565b505050565b611607612e0c565b73ffffffffffffffffffffffffffffffffffffffff166116256120cb565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116729061551d565b60405180910390fd5b8060178190555050565b6060600061169283611b9a565b905060008167ffffffffffffffff8111156116d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117045781602001602082028036833780820191505090505b50905060005b828110156117745761171c85826113ef565b828281518110611755577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061176c90615a0e565b91505061170a565b508092505050919050565b611787612e0c565b73ffffffffffffffffffffffffffffffffffffffff166117a56120cb565b73ffffffffffffffffffffffffffffffffffffffff16146117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f29061551d565b60405180910390fd5b80600f8190555050565b600061180f611358565b8210611850576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118479061563d565b60405180910390fd5b6008828154811061188a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601960019054906101000a900460ff1681565b6118b7612e0c565b73ffffffffffffffffffffffffffffffffffffffff166118d56120cb565b73ffffffffffffffffffffffffffffffffffffffff161461192b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119229061551d565b60405180910390fd5b80600b9080519060200190611941929190614148565b5050565b601960009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f89061549d565b60405180910390fd5b80915050919050565b611a12612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611a306120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d9061551d565b60405180910390fd5b8060128190555050565b611a98612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611ab66120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b039061551d565b60405180910390fd5b8060108190555050565b6000611b20612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611b3e6120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b9061551d565b60405180910390fd5b47905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c029061547d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060611c5c612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611c7a6120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc79061551d565b60405180910390fd5b600b8054611cdd906159dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611d09906159dc565b8015611d565780601f10611d2b57610100808354040283529160200191611d56565b820191906000526020600020905b815481529060010190602001808311611d3957829003601f168201915b5050505050905090565b611d68612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611d866120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd39061551d565b60405180910390fd5b611de66000613273565b565b611df0612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611e0e6120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b9061551d565b60405180910390fd5b8060168190555050565b60175481565b60125481565b611e82612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611ea06120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed9061551d565b60405180910390fd5b8060138190555050565b6000601754421015611f1657600e549050611f1c565b600f5490505b90565b611f27612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611f456120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f929061551d565b60405180910390fd5b60008211611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd59061567d565b60405180910390fd5b6000611fe8611358565b90506010548382611ff99190615811565b111561203a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612031906154bd565b60405180910390fd5b6000600190505b8381116120c557601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061209890615a0e565b91905055506120b28382846120ad9190615811565b613339565b80806120bd90615a0e565b915050612041565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120fd612e0c565b73ffffffffffffffffffffffffffffffffffffffff1661211b6120cb565b73ffffffffffffffffffffffffffffffffffffffff1614612171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121689061551d565b60405180910390fd5b80600e8190555050565b60606001805461218a906159dc565b80601f01602080910402602001604051908101604052809291908181526020018280546121b6906159dc565b80156122035780601f106121d857610100808354040283529160200191612203565b820191906000526020600020905b8154815290600101906020018083116121e657829003601f168201915b5050505050905090565b601960009054906101000a900460ff161561225d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122549061553d565b60405180910390fd5b6016544210156122a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122999061531d565b60405180910390fd5b80600081116122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd9061567d565b60405180910390fd5b60006122f0611358565b90506000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601854421061234e576123498185613357565b61235a565b612359818584613440565b5b60105484836123699190615811565b11156123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a1906154bd565b60405180910390fd5b6000600190505b84811161243557601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061240890615a0e565b919050555061242233828561241d9190615811565b613339565b808061242d90615a0e565b9150506123b1565b5050505050565b60115481565b61244a612e0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af906153fd565b60405180910390fd5b80600560006124c5612e0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612572612e0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125b791906152e0565b60405180910390a35050565b6125cb612e0c565b73ffffffffffffffffffffffffffffffffffffffff166125e96120cb565b73ffffffffffffffffffffffffffffffffffffffff161461263f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126369061551d565b60405180910390fd5b6001601960016101000a81548160ff021916908315150217905550565b61266d612667612e0c565b83612f39565b6126ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a39061561d565b60405180910390fd5b6126b8848484846135df565b50505050565b60155481565b600c80546126d1906159dc565b80601f01602080910402602001604051908101604052809291908181526020018280546126fd906159dc565b801561274a5780601f1061271f5761010080835404028352916020019161274a565b820191906000526020600020905b81548152906001019060200180831161272d57829003601f168201915b505050505081565b606061275d82612e14565b61279c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127939061559d565b60405180910390fd5b601960019054906101000a900460ff1661284257600d80546127bd906159dc565b80601f01602080910402602001604051908101604052809291908181526020018280546127e9906159dc565b80156128365780601f1061280b57610100808354040283529160200191612836565b820191906000526020600020905b81548152906001019060200180831161281957829003601f168201915b5050505050905061289e565b600061284c61363b565b9050600081511161286c576040518060200160405280600081525061289a565b80612876846136cd565b600c60405160200161288a93929190615211565b6040516020818303038152906040525b9150505b919050565b600e5481565b6128b1612e0c565b73ffffffffffffffffffffffffffffffffffffffff166128cf6120cb565b73ffffffffffffffffffffffffffffffffffffffff1614612925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291c9061551d565b60405180910390fd5b8060158190555050565b60105481565b61293d612e0c565b73ffffffffffffffffffffffffffffffffffffffff1661295b6120cb565b73ffffffffffffffffffffffffffffffffffffffff16146129b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a89061551d565b60405180910390fd5b80600c90805190602001906129c7929190614148565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b612a6d612e0c565b73ffffffffffffffffffffffffffffffffffffffff16612a8b6120cb565b73ffffffffffffffffffffffffffffffffffffffff1614612ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad89061551d565b60405180910390fd5b60005b8151811015612b98576001601a6000848481518110612b2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612b9090615a0e565b915050612ae4565b5050565b612ba4612e0c565b73ffffffffffffffffffffffffffffffffffffffff16612bc26120cb565b73ffffffffffffffffffffffffffffffffffffffff1614612c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0f9061551d565b60405180910390fd5b80600d9080519060200190612c2e929190614148565b5050565b612c3a612e0c565b73ffffffffffffffffffffffffffffffffffffffff16612c586120cb565b73ffffffffffffffffffffffffffffffffffffffff1614612cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca59061551d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d159061537d565b60405180910390fd5b612d2781613273565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612df557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e055750612e048261387a565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ef383611958565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612f4482612e14565b612f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7a9061543d565b60405180910390fd5b6000612f8e83611958565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ffd57508373ffffffffffffffffffffffffffffffffffffffff16612fe584610f95565b73ffffffffffffffffffffffffffffffffffffffff16145b8061300e575061300d81856129cb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661303782611958565b73ffffffffffffffffffffffffffffffffffffffff161461308d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130849061555d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f4906153dd565b60405180910390fd5b6131088383836138e4565b613113600082612e80565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461316391906158f2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131ba9190615811565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6133538282604051806020016040528060008152506139f8565b5050565b60155481836133669190615811565b11156133a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339e906153bd565b60405180910390fd5b80600f546133b59190615898565b3410156133f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ee906155dd565b60405180910390fd5b60135481111561343c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134339061541d565b60405180910390fd5b5050565b6000601754421061345657600f5490508061345d565b600e549050805b5061346733611494565b6134a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349d9061565d565b60405180910390fd5b60145483856134b59190615811565b11156134f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ed906155fd565b60405180910390fd5b82816135029190615898565b341015613544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353b906155dd565b60405180910390fd5b601254831115613589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135809061541d565b60405180910390fd5b60115483836135989190615811565b11156135d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d09061557d565b60405180910390fd5b50505050565b6135ea848484613017565b6135f684848484613a53565b613635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362c9061535d565b60405180910390fd5b50505050565b6060600b805461364a906159dc565b80601f0160208091040260200160405190810160405280929190818152602001828054613676906159dc565b80156136c35780601f10613698576101008083540402835291602001916136c3565b820191906000526020600020905b8154815290600101906020018083116136a657829003601f168201915b5050505050905090565b60606000821415613715576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613875565b600082905060005b6000821461374757808061373090615a0e565b915050600a826137409190615867565b915061371d565b60008167ffffffffffffffff811115613789577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137bb5781602001600182028036833780820191505090505b5090505b6000851461386e576001826137d491906158f2565b9150600a856137e39190615a57565b60306137ef9190615811565b60f81b81838151811061382b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138679190615867565b94506137bf565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6138ef838383613bea565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139325761392d81613bef565b613971565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146139705761396f8382613c38565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139b4576139af81613da5565b6139f3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146139f2576139f18282613ee8565b5b5b505050565b613a028383613f67565b613a0f6000848484613a53565b613a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a459061535d565b60405180910390fd5b505050565b6000613a748473ffffffffffffffffffffffffffffffffffffffff16614135565b15613bdd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613a9d612e0c565b8786866040518563ffffffff1660e01b8152600401613abf9493929190615272565b602060405180830381600087803b158015613ad957600080fd5b505af1925050508015613b0a57506040513d601f19601f82011682018060405250810190613b0791906145f4565b60015b613b8d573d8060008114613b3a576040519150601f19603f3d011682016040523d82523d6000602084013e613b3f565b606091505b50600081511415613b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b7c9061535d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613be2565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c4584611b9a565b613c4f91906158f2565b9050600060076000848152602001908152602001600020549050818114613d34576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613db991906158f2565b9050600060096000848152602001908152602001600020549050600060088381548110613e0f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613e57577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613ecc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613ef383611b9a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fce906154dd565b60405180910390fd5b613fe081612e14565b15614020576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140179061539d565b60405180910390fd5b61402c600083836138e4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461407c9190615811565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054614154906159dc565b90600052602060002090601f01602090048101928261417657600085556141bd565b82601f1061418f57805160ff19168380011785556141bd565b828001600101855582156141bd579182015b828111156141bc5782518255916020019190600101906141a1565b5b5090506141ca91906141ce565b5090565b5b808211156141e75760008160009055506001016141cf565b5090565b60006141fe6141f9846156e9565b6156b8565b9050808382526020820190508285602086028201111561421d57600080fd5b60005b8581101561424d578161423388826142d3565b845260208401935060208301925050600181019050614220565b5050509392505050565b600061426a61426584615715565b6156b8565b90508281526020810184848401111561428257600080fd5b61428d84828561599a565b509392505050565b60006142a86142a384615745565b6156b8565b9050828152602081018484840111156142c057600080fd5b6142cb84828561599a565b509392505050565b6000813590506142e281615b55565b92915050565b600082601f8301126142f957600080fd5b81356143098482602086016141eb565b91505092915050565b60008135905061432181615b6c565b92915050565b60008135905061433681615b83565b92915050565b60008151905061434b81615b83565b92915050565b600082601f83011261436257600080fd5b8135614372848260208601614257565b91505092915050565b600082601f83011261438c57600080fd5b813561439c848260208601614295565b91505092915050565b6000813590506143b481615b9a565b92915050565b6000602082840312156143cc57600080fd5b60006143da848285016142d3565b91505092915050565b600080604083850312156143f657600080fd5b6000614404858286016142d3565b9250506020614415858286016142d3565b9150509250929050565b60008060006060848603121561443457600080fd5b6000614442868287016142d3565b9350506020614453868287016142d3565b9250506040614464868287016143a5565b9150509250925092565b6000806000806080858703121561448457600080fd5b6000614492878288016142d3565b94505060206144a3878288016142d3565b93505060406144b4878288016143a5565b925050606085013567ffffffffffffffff8111156144d157600080fd5b6144dd87828801614351565b91505092959194509250565b600080604083850312156144fc57600080fd5b600061450a858286016142d3565b925050602061451b85828601614312565b9150509250929050565b6000806040838503121561453857600080fd5b6000614546858286016142d3565b9250506020614557858286016143a5565b9150509250929050565b60006020828403121561457357600080fd5b600082013567ffffffffffffffff81111561458d57600080fd5b614599848285016142e8565b91505092915050565b6000602082840312156145b457600080fd5b60006145c284828501614312565b91505092915050565b6000602082840312156145dd57600080fd5b60006145eb84828501614327565b91505092915050565b60006020828403121561460657600080fd5b60006146148482850161433c565b91505092915050565b60006020828403121561462f57600080fd5b600082013567ffffffffffffffff81111561464957600080fd5b6146558482850161437b565b91505092915050565b60006020828403121561467057600080fd5b600061467e848285016143a5565b91505092915050565b6000806040838503121561469a57600080fd5b60006146a8858286016143a5565b92505060206146b9858286016142d3565b9150509250929050565b60006146cf83836151f3565b60208301905092915050565b6146e481615926565b82525050565b60006146f58261579a565b6146ff81856157c8565b935061470a83615775565b8060005b8381101561473b57815161472288826146c3565b975061472d836157bb565b92505060018101905061470e565b5085935050505092915050565b61475181615938565b82525050565b6000614762826157a5565b61476c81856157d9565b935061477c8185602086016159a9565b61478581615b44565b840191505092915050565b600061479b826157b0565b6147a581856157f5565b93506147b58185602086016159a9565b6147be81615b44565b840191505092915050565b60006147d4826157b0565b6147de8185615806565b93506147ee8185602086016159a9565b80840191505092915050565b60008154614807816159dc565b6148118186615806565b9450600182166000811461482c576001811461483d57614870565b60ff19831686528186019350614870565b61484685615785565b60005b8381101561486857815481890152600182019150602081019050614849565b838801955050505b50505092915050565b60006148866018836157f5565b91507f53616c6520686173206e6f7420737461727465642079657400000000000000006000830152602082019050919050565b60006148c6602b836157f5565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061492c6032836157f5565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006149926026836157f5565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149f8601c836157f5565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614a38601c836157f5565b91507f6d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b6000614a786024836157f5565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ade6019836157f5565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614b1e6028836157f5565b91507f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008301527f65786365656465640000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b84602c836157f5565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614bea6038836157f5565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614c50602a836157f5565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614cb66029836157f5565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d1c6016836157f5565b91507f6d6178204e4654206c696d6974206578636565646564000000000000000000006000830152602082019050919050565b6000614d5c6020836157f5565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614d9c602c836157f5565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614e026020836157f5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614e426016836157f5565b91507f74686520636f6e747261637420697320706175736564000000000000000000006000830152602082019050919050565b6000614e826029836157f5565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ee8601e836157f5565b91507f6d6178204e46542070726573616c65206c696d697420657863656564656400006000830152602082019050919050565b6000614f28602f836157f5565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614f8e6021836157f5565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ff46000836157ea565b9150600082019050919050565b600061500e6012836157f5565b91507f696e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b600061504e6028836157f5565b91507f6d6178204e465420706572206164647265737320657863656564656420666f7260008301527f2070726573616c650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006150b46031836157f5565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061511a602c836157f5565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006151806017836157f5565b91507f75736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b60006151c0601b836157f5565b91507f6e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b6151fc81615990565b82525050565b61520b81615990565b82525050565b600061521d82866147c9565b915061522982856147c9565b915061523582846147fa565b9150819050949350505050565b600061524d82614fe7565b9150819050919050565b600060208201905061526c60008301846146db565b92915050565b600060808201905061528760008301876146db565b61529460208301866146db565b6152a16040830185615202565b81810360608301526152b38184614757565b905095945050505050565b600060208201905081810360008301526152d881846146ea565b905092915050565b60006020820190506152f56000830184614748565b92915050565b600060208201905081810360008301526153158184614790565b905092915050565b6000602082019050818103600083015261533681614879565b9050919050565b60006020820190508181036000830152615356816148b9565b9050919050565b600060208201905081810360008301526153768161491f565b9050919050565b6000602082019050818103600083015261539681614985565b9050919050565b600060208201905081810360008301526153b6816149eb565b9050919050565b600060208201905081810360008301526153d681614a2b565b9050919050565b600060208201905081810360008301526153f681614a6b565b9050919050565b6000602082019050818103600083015261541681614ad1565b9050919050565b6000602082019050818103600083015261543681614b11565b9050919050565b6000602082019050818103600083015261545681614b77565b9050919050565b6000602082019050818103600083015261547681614bdd565b9050919050565b6000602082019050818103600083015261549681614c43565b9050919050565b600060208201905081810360008301526154b681614ca9565b9050919050565b600060208201905081810360008301526154d681614d0f565b9050919050565b600060208201905081810360008301526154f681614d4f565b9050919050565b6000602082019050818103600083015261551681614d8f565b9050919050565b6000602082019050818103600083015261553681614df5565b9050919050565b6000602082019050818103600083015261555681614e35565b9050919050565b6000602082019050818103600083015261557681614e75565b9050919050565b6000602082019050818103600083015261559681614edb565b9050919050565b600060208201905081810360008301526155b681614f1b565b9050919050565b600060208201905081810360008301526155d681614f81565b9050919050565b600060208201905081810360008301526155f681615001565b9050919050565b6000602082019050818103600083015261561681615041565b9050919050565b60006020820190508181036000830152615636816150a7565b9050919050565b600060208201905081810360008301526156568161510d565b9050919050565b6000602082019050818103600083015261567681615173565b9050919050565b60006020820190508181036000830152615696816151b3565b9050919050565b60006020820190506156b26000830184615202565b92915050565b6000604051905081810181811067ffffffffffffffff821117156156df576156de615b15565b5b8060405250919050565b600067ffffffffffffffff82111561570457615703615b15565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156157305761572f615b15565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156157605761575f615b15565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061581c82615990565b915061582783615990565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561585c5761585b615a88565b5b828201905092915050565b600061587282615990565b915061587d83615990565b92508261588d5761588c615ab7565b5b828204905092915050565b60006158a382615990565b91506158ae83615990565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156158e7576158e6615a88565b5b828202905092915050565b60006158fd82615990565b915061590883615990565b92508282101561591b5761591a615a88565b5b828203905092915050565b600061593182615970565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156159c75780820151818401526020810190506159ac565b838111156159d6576000848401525b50505050565b600060028204905060018216806159f457607f821691505b60208210811415615a0857615a07615ae6565b5b50919050565b6000615a1982615990565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615a4c57615a4b615a88565b5b600182019050919050565b6000615a6282615990565b9150615a6d83615990565b925082615a7d57615a7c615ab7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615b5e81615926565b8114615b6957600080fd5b50565b615b7581615938565b8114615b8057600080fd5b50565b615b8c81615944565b8114615b9757600080fd5b50565b615ba381615990565b8114615bae57600080fd5b5056fea264697066735822122096be81bc2677dd7573a242b842ce6b3a4207216af595d8ac6ef60b03ec7650b164736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d4170657320496e20537061636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000341495300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103975760003560e01c80636f9fb98a116101dc578063a22cb46511610102578063d0eb26b0116100a0578063eced38731161006f578063eced387314610d4a578063edec5f2714610d75578063f2c4ce1e14610d9e578063f2fde38b14610dc757610397565b8063d0eb26b014610c90578063d5abeb0114610cb9578063da3ef23f14610ce4578063e985e9c514610d0d57610397565b8063ba7d2c76116100dc578063ba7d2c7614610bd2578063c668286214610bfd578063c87b56dd14610c28578063cc9ff9c614610c6557610397565b8063a22cb46514610b69578063a475b5dd14610b92578063b88d4fde14610ba957610397565b80637f00c7a61161017a5780638fdcf942116101495780638fdcf94214610ace57806395d89b4114610af7578063a0712d6814610b22578063a18116f114610b3e57610397565b80637f00c7a614610a26578063831e60de14610a4f57806383a076be14610a7a5780638da5cb5b14610aa357610397565b8063715018a6116101b6578063715018a614610990578063743c7f6b146109a75780637967a50a146109d05780637effc032146109fb57610397565b80636f9fb98a146108fd57806370a0823114610928578063714c53981461096557610397565b80632e09282e116102c157806344a0d68a1161025f5780635c975abb1161022e5780635c975abb146108435780636352211e1461086e578063669736c0146108ab5780636f8b44b0146108d457610397565b806344a0d68a146107895780634f6ccce7146107b257806351830227146107ef57806355f804b31461081a57610397565b80633ccfd60b1161029b5780633ccfd60b146106f057806342842e0e146106fa57806342f0ca0d14610723578063438b63001461074c57610397565b80632e09282e1461064b5780632f745c59146106765780633af32abf146106b357610397565b80630a50716b1161033957806318cae2691161030857806318cae2691461058f5780631985cc65146105cc578063239c70ae146105f757806323b872dd1461062257610397565b80630a50716b146104e75780630e54a8831461051057806313faede61461053957806318160ddd1461056457610397565b8063081812fc11610375578063081812fc1461042d578063081c8c441461046a578063095ea7b3146104955780630a403f04146104be57610397565b806301ffc9a71461039c57806302329a29146103d957806306fdde0314610402575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be91906145cb565b610df0565b6040516103d091906152e0565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb91906145a2565b610e6a565b005b34801561040e57600080fd5b50610417610f03565b60405161042491906152fb565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f919061465e565b610f95565b6040516104619190615257565b60405180910390f35b34801561047657600080fd5b5061047f61101a565b60405161048c91906152fb565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190614525565b6110a8565b005b3480156104ca57600080fd5b506104e560048036038101906104e0919061465e565b6111c0565b005b3480156104f357600080fd5b5061050e6004803603810190610509919061465e565b611246565b005b34801561051c57600080fd5b506105376004803603810190610532919061465e565b6112cc565b005b34801561054557600080fd5b5061054e611352565b60405161055b919061569d565b60405180910390f35b34801561057057600080fd5b50610579611358565b604051610586919061569d565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b191906143ba565b611365565b6040516105c3919061569d565b60405180910390f35b3480156105d857600080fd5b506105e161137d565b6040516105ee919061569d565b60405180910390f35b34801561060357600080fd5b5061060c611383565b604051610619919061569d565b60405180910390f35b34801561062e57600080fd5b506106496004803603810190610644919061441f565b611389565b005b34801561065757600080fd5b506106606113e9565b60405161066d919061569d565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190614525565b6113ef565b6040516106aa919061569d565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d591906143ba565b611494565b6040516106e791906152e0565b60405180910390f35b6106f86114ea565b005b34801561070657600080fd5b50610721600480360381019061071c919061441f565b6115df565b005b34801561072f57600080fd5b5061074a6004803603810190610745919061465e565b6115ff565b005b34801561075857600080fd5b50610773600480360381019061076e91906143ba565b611685565b60405161078091906152be565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab919061465e565b61177f565b005b3480156107be57600080fd5b506107d960048036038101906107d4919061465e565b611805565b6040516107e6919061569d565b60405180910390f35b3480156107fb57600080fd5b5061080461189c565b60405161081191906152e0565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061461d565b6118af565b005b34801561084f57600080fd5b50610858611945565b60405161086591906152e0565b60405180910390f35b34801561087a57600080fd5b506108956004803603810190610890919061465e565b611958565b6040516108a29190615257565b60405180910390f35b3480156108b757600080fd5b506108d260048036038101906108cd919061465e565b611a0a565b005b3480156108e057600080fd5b506108fb60048036038101906108f6919061465e565b611a90565b005b34801561090957600080fd5b50610912611b16565b60405161091f919061569d565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a91906143ba565b611b9a565b60405161095c919061569d565b60405180910390f35b34801561097157600080fd5b5061097a611c52565b60405161098791906152fb565b60405180910390f35b34801561099c57600080fd5b506109a5611d60565b005b3480156109b357600080fd5b506109ce60048036038101906109c9919061465e565b611de8565b005b3480156109dc57600080fd5b506109e5611e6e565b6040516109f2919061569d565b60405180910390f35b348015610a0757600080fd5b50610a10611e74565b604051610a1d919061569d565b60405180910390f35b348015610a3257600080fd5b50610a4d6004803603810190610a48919061465e565b611e7a565b005b348015610a5b57600080fd5b50610a64611f00565b604051610a71919061569d565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c9190614687565b611f1f565b005b348015610aaf57600080fd5b50610ab86120cb565b604051610ac59190615257565b60405180910390f35b348015610ada57600080fd5b50610af56004803603810190610af0919061465e565b6120f5565b005b348015610b0357600080fd5b50610b0c61217b565b604051610b1991906152fb565b60405180910390f35b610b3c6004803603810190610b37919061465e565b61220d565b005b348015610b4a57600080fd5b50610b5361243c565b604051610b60919061569d565b60405180910390f35b348015610b7557600080fd5b50610b906004803603810190610b8b91906144e9565b612442565b005b348015610b9e57600080fd5b50610ba76125c3565b005b348015610bb557600080fd5b50610bd06004803603810190610bcb919061446e565b61265c565b005b348015610bde57600080fd5b50610be76126be565b604051610bf4919061569d565b60405180910390f35b348015610c0957600080fd5b50610c126126c4565b604051610c1f91906152fb565b60405180910390f35b348015610c3457600080fd5b50610c4f6004803603810190610c4a919061465e565b612752565b604051610c5c91906152fb565b60405180910390f35b348015610c7157600080fd5b50610c7a6128a3565b604051610c87919061569d565b60405180910390f35b348015610c9c57600080fd5b50610cb76004803603810190610cb2919061465e565b6128a9565b005b348015610cc557600080fd5b50610cce61292f565b604051610cdb919061569d565b60405180910390f35b348015610cf057600080fd5b50610d0b6004803603810190610d06919061461d565b612935565b005b348015610d1957600080fd5b50610d346004803603810190610d2f91906143e3565b6129cb565b604051610d4191906152e0565b60405180910390f35b348015610d5657600080fd5b50610d5f612a5f565b604051610d6c919061569d565b60405180910390f35b348015610d8157600080fd5b50610d9c6004803603810190610d979190614561565b612a65565b005b348015610daa57600080fd5b50610dc56004803603810190610dc0919061461d565b612b9c565b005b348015610dd357600080fd5b50610dee6004803603810190610de991906143ba565b612c32565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e635750610e6282612d2a565b5b9050919050565b610e72612e0c565b73ffffffffffffffffffffffffffffffffffffffff16610e906120cb565b73ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd9061551d565b60405180910390fd5b80601960006101000a81548160ff02191690831515021790555050565b606060008054610f12906159dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3e906159dc565b8015610f8b5780601f10610f6057610100808354040283529160200191610f8b565b820191906000526020600020905b815481529060010190602001808311610f6e57829003601f168201915b5050505050905090565b6000610fa082612e14565b610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd6906154fd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054611027906159dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611053906159dc565b80156110a05780601f10611075576101008083540402835291602001916110a0565b820191906000526020600020905b81548152906001019060200180831161108357829003601f168201915b505050505081565b60006110b382611958565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b906155bd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611143612e0c565b73ffffffffffffffffffffffffffffffffffffffff16148061117257506111718161116c612e0c565b6129cb565b5b6111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a89061545d565b60405180910390fd5b6111bb8383612e80565b505050565b6111c8612e0c565b73ffffffffffffffffffffffffffffffffffffffff166111e66120cb565b73ffffffffffffffffffffffffffffffffffffffff161461123c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112339061551d565b60405180910390fd5b8060118190555050565b61124e612e0c565b73ffffffffffffffffffffffffffffffffffffffff1661126c6120cb565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b99061551d565b60405180910390fd5b8060148190555050565b6112d4612e0c565b73ffffffffffffffffffffffffffffffffffffffff166112f26120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061551d565b60405180910390fd5b8060188190555050565b600f5481565b6000600880549050905090565b601b6020528060005260406000206000915090505481565b60165481565b60135481565b61139a611394612e0c565b82612f39565b6113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d09061561d565b60405180910390fd5b6113e4838383613017565b505050565b60145481565b60006113fa83611b9a565b821061143b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114329061533d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114f2612e0c565b73ffffffffffffffffffffffffffffffffffffffff166115106120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d9061551d565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161158c90615242565b60006040518083038185875af1925050503d80600081146115c9576040519150601f19603f3d011682016040523d82523d6000602084013e6115ce565b606091505b50509050806115dc57600080fd5b50565b6115fa8383836040518060200160405280600081525061265c565b505050565b611607612e0c565b73ffffffffffffffffffffffffffffffffffffffff166116256120cb565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116729061551d565b60405180910390fd5b8060178190555050565b6060600061169283611b9a565b905060008167ffffffffffffffff8111156116d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117045781602001602082028036833780820191505090505b50905060005b828110156117745761171c85826113ef565b828281518110611755577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061176c90615a0e565b91505061170a565b508092505050919050565b611787612e0c565b73ffffffffffffffffffffffffffffffffffffffff166117a56120cb565b73ffffffffffffffffffffffffffffffffffffffff16146117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f29061551d565b60405180910390fd5b80600f8190555050565b600061180f611358565b8210611850576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118479061563d565b60405180910390fd5b6008828154811061188a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601960019054906101000a900460ff1681565b6118b7612e0c565b73ffffffffffffffffffffffffffffffffffffffff166118d56120cb565b73ffffffffffffffffffffffffffffffffffffffff161461192b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119229061551d565b60405180910390fd5b80600b9080519060200190611941929190614148565b5050565b601960009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f89061549d565b60405180910390fd5b80915050919050565b611a12612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611a306120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d9061551d565b60405180910390fd5b8060128190555050565b611a98612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611ab66120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b039061551d565b60405180910390fd5b8060108190555050565b6000611b20612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611b3e6120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b9061551d565b60405180910390fd5b47905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c029061547d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060611c5c612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611c7a6120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc79061551d565b60405180910390fd5b600b8054611cdd906159dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611d09906159dc565b8015611d565780601f10611d2b57610100808354040283529160200191611d56565b820191906000526020600020905b815481529060010190602001808311611d3957829003601f168201915b5050505050905090565b611d68612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611d866120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd39061551d565b60405180910390fd5b611de66000613273565b565b611df0612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611e0e6120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b9061551d565b60405180910390fd5b8060168190555050565b60175481565b60125481565b611e82612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611ea06120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed9061551d565b60405180910390fd5b8060138190555050565b6000601754421015611f1657600e549050611f1c565b600f5490505b90565b611f27612e0c565b73ffffffffffffffffffffffffffffffffffffffff16611f456120cb565b73ffffffffffffffffffffffffffffffffffffffff1614611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f929061551d565b60405180910390fd5b60008211611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd59061567d565b60405180910390fd5b6000611fe8611358565b90506010548382611ff99190615811565b111561203a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612031906154bd565b60405180910390fd5b6000600190505b8381116120c557601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061209890615a0e565b91905055506120b28382846120ad9190615811565b613339565b80806120bd90615a0e565b915050612041565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120fd612e0c565b73ffffffffffffffffffffffffffffffffffffffff1661211b6120cb565b73ffffffffffffffffffffffffffffffffffffffff1614612171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121689061551d565b60405180910390fd5b80600e8190555050565b60606001805461218a906159dc565b80601f01602080910402602001604051908101604052809291908181526020018280546121b6906159dc565b80156122035780601f106121d857610100808354040283529160200191612203565b820191906000526020600020905b8154815290600101906020018083116121e657829003601f168201915b5050505050905090565b601960009054906101000a900460ff161561225d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122549061553d565b60405180910390fd5b6016544210156122a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122999061531d565b60405180910390fd5b80600081116122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd9061567d565b60405180910390fd5b60006122f0611358565b90506000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601854421061234e576123498185613357565b61235a565b612359818584613440565b5b60105484836123699190615811565b11156123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a1906154bd565b60405180910390fd5b6000600190505b84811161243557601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061240890615a0e565b919050555061242233828561241d9190615811565b613339565b808061242d90615a0e565b9150506123b1565b5050505050565b60115481565b61244a612e0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af906153fd565b60405180910390fd5b80600560006124c5612e0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612572612e0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125b791906152e0565b60405180910390a35050565b6125cb612e0c565b73ffffffffffffffffffffffffffffffffffffffff166125e96120cb565b73ffffffffffffffffffffffffffffffffffffffff161461263f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126369061551d565b60405180910390fd5b6001601960016101000a81548160ff021916908315150217905550565b61266d612667612e0c565b83612f39565b6126ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a39061561d565b60405180910390fd5b6126b8848484846135df565b50505050565b60155481565b600c80546126d1906159dc565b80601f01602080910402602001604051908101604052809291908181526020018280546126fd906159dc565b801561274a5780601f1061271f5761010080835404028352916020019161274a565b820191906000526020600020905b81548152906001019060200180831161272d57829003601f168201915b505050505081565b606061275d82612e14565b61279c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127939061559d565b60405180910390fd5b601960019054906101000a900460ff1661284257600d80546127bd906159dc565b80601f01602080910402602001604051908101604052809291908181526020018280546127e9906159dc565b80156128365780601f1061280b57610100808354040283529160200191612836565b820191906000526020600020905b81548152906001019060200180831161281957829003601f168201915b5050505050905061289e565b600061284c61363b565b9050600081511161286c576040518060200160405280600081525061289a565b80612876846136cd565b600c60405160200161288a93929190615211565b6040516020818303038152906040525b9150505b919050565b600e5481565b6128b1612e0c565b73ffffffffffffffffffffffffffffffffffffffff166128cf6120cb565b73ffffffffffffffffffffffffffffffffffffffff1614612925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291c9061551d565b60405180910390fd5b8060158190555050565b60105481565b61293d612e0c565b73ffffffffffffffffffffffffffffffffffffffff1661295b6120cb565b73ffffffffffffffffffffffffffffffffffffffff16146129b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a89061551d565b60405180910390fd5b80600c90805190602001906129c7929190614148565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b612a6d612e0c565b73ffffffffffffffffffffffffffffffffffffffff16612a8b6120cb565b73ffffffffffffffffffffffffffffffffffffffff1614612ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad89061551d565b60405180910390fd5b60005b8151811015612b98576001601a6000848481518110612b2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612b9090615a0e565b915050612ae4565b5050565b612ba4612e0c565b73ffffffffffffffffffffffffffffffffffffffff16612bc26120cb565b73ffffffffffffffffffffffffffffffffffffffff1614612c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0f9061551d565b60405180910390fd5b80600d9080519060200190612c2e929190614148565b5050565b612c3a612e0c565b73ffffffffffffffffffffffffffffffffffffffff16612c586120cb565b73ffffffffffffffffffffffffffffffffffffffff1614612cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca59061551d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d159061537d565b60405180910390fd5b612d2781613273565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612df557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e055750612e048261387a565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ef383611958565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612f4482612e14565b612f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7a9061543d565b60405180910390fd5b6000612f8e83611958565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ffd57508373ffffffffffffffffffffffffffffffffffffffff16612fe584610f95565b73ffffffffffffffffffffffffffffffffffffffff16145b8061300e575061300d81856129cb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661303782611958565b73ffffffffffffffffffffffffffffffffffffffff161461308d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130849061555d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f4906153dd565b60405180910390fd5b6131088383836138e4565b613113600082612e80565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461316391906158f2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131ba9190615811565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6133538282604051806020016040528060008152506139f8565b5050565b60155481836133669190615811565b11156133a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339e906153bd565b60405180910390fd5b80600f546133b59190615898565b3410156133f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ee906155dd565b60405180910390fd5b60135481111561343c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134339061541d565b60405180910390fd5b5050565b6000601754421061345657600f5490508061345d565b600e549050805b5061346733611494565b6134a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349d9061565d565b60405180910390fd5b60145483856134b59190615811565b11156134f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ed906155fd565b60405180910390fd5b82816135029190615898565b341015613544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353b906155dd565b60405180910390fd5b601254831115613589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135809061541d565b60405180910390fd5b60115483836135989190615811565b11156135d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d09061557d565b60405180910390fd5b50505050565b6135ea848484613017565b6135f684848484613a53565b613635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362c9061535d565b60405180910390fd5b50505050565b6060600b805461364a906159dc565b80601f0160208091040260200160405190810160405280929190818152602001828054613676906159dc565b80156136c35780601f10613698576101008083540402835291602001916136c3565b820191906000526020600020905b8154815290600101906020018083116136a657829003601f168201915b5050505050905090565b60606000821415613715576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613875565b600082905060005b6000821461374757808061373090615a0e565b915050600a826137409190615867565b915061371d565b60008167ffffffffffffffff811115613789577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137bb5781602001600182028036833780820191505090505b5090505b6000851461386e576001826137d491906158f2565b9150600a856137e39190615a57565b60306137ef9190615811565b60f81b81838151811061382b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138679190615867565b94506137bf565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6138ef838383613bea565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139325761392d81613bef565b613971565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146139705761396f8382613c38565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139b4576139af81613da5565b6139f3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146139f2576139f18282613ee8565b5b5b505050565b613a028383613f67565b613a0f6000848484613a53565b613a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a459061535d565b60405180910390fd5b505050565b6000613a748473ffffffffffffffffffffffffffffffffffffffff16614135565b15613bdd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613a9d612e0c565b8786866040518563ffffffff1660e01b8152600401613abf9493929190615272565b602060405180830381600087803b158015613ad957600080fd5b505af1925050508015613b0a57506040513d601f19601f82011682018060405250810190613b0791906145f4565b60015b613b8d573d8060008114613b3a576040519150601f19603f3d011682016040523d82523d6000602084013e613b3f565b606091505b50600081511415613b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b7c9061535d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613be2565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c4584611b9a565b613c4f91906158f2565b9050600060076000848152602001908152602001600020549050818114613d34576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613db991906158f2565b9050600060096000848152602001908152602001600020549050600060088381548110613e0f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613e57577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613ecc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613ef383611b9a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fce906154dd565b60405180910390fd5b613fe081612e14565b15614020576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140179061539d565b60405180910390fd5b61402c600083836138e4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461407c9190615811565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054614154906159dc565b90600052602060002090601f01602090048101928261417657600085556141bd565b82601f1061418f57805160ff19168380011785556141bd565b828001600101855582156141bd579182015b828111156141bc5782518255916020019190600101906141a1565b5b5090506141ca91906141ce565b5090565b5b808211156141e75760008160009055506001016141cf565b5090565b60006141fe6141f9846156e9565b6156b8565b9050808382526020820190508285602086028201111561421d57600080fd5b60005b8581101561424d578161423388826142d3565b845260208401935060208301925050600181019050614220565b5050509392505050565b600061426a61426584615715565b6156b8565b90508281526020810184848401111561428257600080fd5b61428d84828561599a565b509392505050565b60006142a86142a384615745565b6156b8565b9050828152602081018484840111156142c057600080fd5b6142cb84828561599a565b509392505050565b6000813590506142e281615b55565b92915050565b600082601f8301126142f957600080fd5b81356143098482602086016141eb565b91505092915050565b60008135905061432181615b6c565b92915050565b60008135905061433681615b83565b92915050565b60008151905061434b81615b83565b92915050565b600082601f83011261436257600080fd5b8135614372848260208601614257565b91505092915050565b600082601f83011261438c57600080fd5b813561439c848260208601614295565b91505092915050565b6000813590506143b481615b9a565b92915050565b6000602082840312156143cc57600080fd5b60006143da848285016142d3565b91505092915050565b600080604083850312156143f657600080fd5b6000614404858286016142d3565b9250506020614415858286016142d3565b9150509250929050565b60008060006060848603121561443457600080fd5b6000614442868287016142d3565b9350506020614453868287016142d3565b9250506040614464868287016143a5565b9150509250925092565b6000806000806080858703121561448457600080fd5b6000614492878288016142d3565b94505060206144a3878288016142d3565b93505060406144b4878288016143a5565b925050606085013567ffffffffffffffff8111156144d157600080fd5b6144dd87828801614351565b91505092959194509250565b600080604083850312156144fc57600080fd5b600061450a858286016142d3565b925050602061451b85828601614312565b9150509250929050565b6000806040838503121561453857600080fd5b6000614546858286016142d3565b9250506020614557858286016143a5565b9150509250929050565b60006020828403121561457357600080fd5b600082013567ffffffffffffffff81111561458d57600080fd5b614599848285016142e8565b91505092915050565b6000602082840312156145b457600080fd5b60006145c284828501614312565b91505092915050565b6000602082840312156145dd57600080fd5b60006145eb84828501614327565b91505092915050565b60006020828403121561460657600080fd5b60006146148482850161433c565b91505092915050565b60006020828403121561462f57600080fd5b600082013567ffffffffffffffff81111561464957600080fd5b6146558482850161437b565b91505092915050565b60006020828403121561467057600080fd5b600061467e848285016143a5565b91505092915050565b6000806040838503121561469a57600080fd5b60006146a8858286016143a5565b92505060206146b9858286016142d3565b9150509250929050565b60006146cf83836151f3565b60208301905092915050565b6146e481615926565b82525050565b60006146f58261579a565b6146ff81856157c8565b935061470a83615775565b8060005b8381101561473b57815161472288826146c3565b975061472d836157bb565b92505060018101905061470e565b5085935050505092915050565b61475181615938565b82525050565b6000614762826157a5565b61476c81856157d9565b935061477c8185602086016159a9565b61478581615b44565b840191505092915050565b600061479b826157b0565b6147a581856157f5565b93506147b58185602086016159a9565b6147be81615b44565b840191505092915050565b60006147d4826157b0565b6147de8185615806565b93506147ee8185602086016159a9565b80840191505092915050565b60008154614807816159dc565b6148118186615806565b9450600182166000811461482c576001811461483d57614870565b60ff19831686528186019350614870565b61484685615785565b60005b8381101561486857815481890152600182019150602081019050614849565b838801955050505b50505092915050565b60006148866018836157f5565b91507f53616c6520686173206e6f7420737461727465642079657400000000000000006000830152602082019050919050565b60006148c6602b836157f5565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061492c6032836157f5565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006149926026836157f5565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149f8601c836157f5565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614a38601c836157f5565b91507f6d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b6000614a786024836157f5565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ade6019836157f5565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614b1e6028836157f5565b91507f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008301527f65786365656465640000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b84602c836157f5565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614bea6038836157f5565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614c50602a836157f5565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614cb66029836157f5565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d1c6016836157f5565b91507f6d6178204e4654206c696d6974206578636565646564000000000000000000006000830152602082019050919050565b6000614d5c6020836157f5565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614d9c602c836157f5565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614e026020836157f5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614e426016836157f5565b91507f74686520636f6e747261637420697320706175736564000000000000000000006000830152602082019050919050565b6000614e826029836157f5565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ee8601e836157f5565b91507f6d6178204e46542070726573616c65206c696d697420657863656564656400006000830152602082019050919050565b6000614f28602f836157f5565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614f8e6021836157f5565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ff46000836157ea565b9150600082019050919050565b600061500e6012836157f5565b91507f696e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b600061504e6028836157f5565b91507f6d6178204e465420706572206164647265737320657863656564656420666f7260008301527f2070726573616c650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006150b46031836157f5565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061511a602c836157f5565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006151806017836157f5565b91507f75736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b60006151c0601b836157f5565b91507f6e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b6151fc81615990565b82525050565b61520b81615990565b82525050565b600061521d82866147c9565b915061522982856147c9565b915061523582846147fa565b9150819050949350505050565b600061524d82614fe7565b9150819050919050565b600060208201905061526c60008301846146db565b92915050565b600060808201905061528760008301876146db565b61529460208301866146db565b6152a16040830185615202565b81810360608301526152b38184614757565b905095945050505050565b600060208201905081810360008301526152d881846146ea565b905092915050565b60006020820190506152f56000830184614748565b92915050565b600060208201905081810360008301526153158184614790565b905092915050565b6000602082019050818103600083015261533681614879565b9050919050565b60006020820190508181036000830152615356816148b9565b9050919050565b600060208201905081810360008301526153768161491f565b9050919050565b6000602082019050818103600083015261539681614985565b9050919050565b600060208201905081810360008301526153b6816149eb565b9050919050565b600060208201905081810360008301526153d681614a2b565b9050919050565b600060208201905081810360008301526153f681614a6b565b9050919050565b6000602082019050818103600083015261541681614ad1565b9050919050565b6000602082019050818103600083015261543681614b11565b9050919050565b6000602082019050818103600083015261545681614b77565b9050919050565b6000602082019050818103600083015261547681614bdd565b9050919050565b6000602082019050818103600083015261549681614c43565b9050919050565b600060208201905081810360008301526154b681614ca9565b9050919050565b600060208201905081810360008301526154d681614d0f565b9050919050565b600060208201905081810360008301526154f681614d4f565b9050919050565b6000602082019050818103600083015261551681614d8f565b9050919050565b6000602082019050818103600083015261553681614df5565b9050919050565b6000602082019050818103600083015261555681614e35565b9050919050565b6000602082019050818103600083015261557681614e75565b9050919050565b6000602082019050818103600083015261559681614edb565b9050919050565b600060208201905081810360008301526155b681614f1b565b9050919050565b600060208201905081810360008301526155d681614f81565b9050919050565b600060208201905081810360008301526155f681615001565b9050919050565b6000602082019050818103600083015261561681615041565b9050919050565b60006020820190508181036000830152615636816150a7565b9050919050565b600060208201905081810360008301526156568161510d565b9050919050565b6000602082019050818103600083015261567681615173565b9050919050565b60006020820190508181036000830152615696816151b3565b9050919050565b60006020820190506156b26000830184615202565b92915050565b6000604051905081810181811067ffffffffffffffff821117156156df576156de615b15565b5b8060405250919050565b600067ffffffffffffffff82111561570457615703615b15565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156157305761572f615b15565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156157605761575f615b15565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061581c82615990565b915061582783615990565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561585c5761585b615a88565b5b828201905092915050565b600061587282615990565b915061587d83615990565b92508261588d5761588c615ab7565b5b828204905092915050565b60006158a382615990565b91506158ae83615990565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156158e7576158e6615a88565b5b828202905092915050565b60006158fd82615990565b915061590883615990565b92508282101561591b5761591a615a88565b5b828203905092915050565b600061593182615970565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156159c75780820151818401526020810190506159ac565b838111156159d6576000848401525b50505050565b600060028204905060018216806159f457607f821691505b60208210811415615a0857615a07615ae6565b5b50919050565b6000615a1982615990565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615a4c57615a4b615a88565b5b600182019050919050565b6000615a6282615990565b9150615a6d83615990565b925082615a7d57615a7c615ab7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615b5e81615926565b8114615b6957600080fd5b50565b615b7581615938565b8114615b8057600080fd5b50565b615b8c81615944565b8114615b9757600080fd5b50565b615ba381615990565b8114615bae57600080fd5b5056fea264697066735822122096be81bc2677dd7573a242b842ce6b3a4207216af595d8ac6ef60b03ec7650b164736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d4170657320496e20537061636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000341495300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Apes In Space
Arg [1] : _symbol (string): AIS
Arg [2] : _initNotRevealedUri (string):

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 4170657320496e20537061636500000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4149530000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43239:7416:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34736:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48589:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21637:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23196:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43393:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22719:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49704:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48668:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50166:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43470:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35376:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44012:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43760:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43629:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24086:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43667:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35044:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47058:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50478:174;;;:::i;:::-;;24496:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50046:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47176:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49002:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35566:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43929:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49346:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43898:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21331:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49088:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49838:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48379:111;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21061:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48278:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42533:94;;;;;;;;;;;;;:::i;:::-;;49938:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43804:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43585:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49224:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48075:175;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46635:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41882:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48902:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21806:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45925:704;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43542:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23489:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48520:63;;;;;;;;;;;;;:::i;:::-;;24752:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43716:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43351:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47530:539;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43426:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48792:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43506:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49450:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23855:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43851:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50286:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49578:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42782:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34736:224;34838:4;34877:35;34862:50;;;:11;:50;;;;:90;;;;34916:36;34940:11;34916:23;:36::i;:::-;34862:90;34855:97;;34736:224;;;:::o;48589:73::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48650:6:::1;48641;;:15;;;;;;;;;;;;;;;;;;48589:73:::0;:::o;21637:100::-;21691:13;21724:5;21717:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21637:100;:::o;23196:221::-;23272:7;23300:16;23308:7;23300;:16::i;:::-;23292:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23385:15;:24;23401:7;23385:24;;;;;;;;;;;;;;;;;;;;;23378:31;;23196:221;;;:::o;43393:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22719:411::-;22800:13;22816:23;22831:7;22816:14;:23::i;:::-;22800:39;;22864:5;22858:11;;:2;:11;;;;22850:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22958:5;22942:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22967:37;22984:5;22991:12;:10;:12::i;:::-;22967:16;:37::i;:::-;22942:62;22920:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23101:21;23110:2;23114:7;23101:8;:21::i;:::-;22719:411;;;:::o;49704:128::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49806:20:::1;49787:16;:39;;;;49704:128:::0;:::o;48668:118::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48774:6:::1;48746:25;:34;;;;48668:118:::0;:::o;50166:114::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50259:15:::1;50242:14;:32;;;;50166:114:::0;:::o;43470:31::-;;;;:::o;35376:113::-;35437:7;35464:10;:17;;;;35457:24;;35376:113;:::o;44012:55::-;;;;;;;;;;;;;;;;;:::o;43760:39::-;;;;:::o;43629:33::-;;;;:::o;24086:339::-;24281:41;24300:12;:10;:12::i;:::-;24314:7;24281:18;:41::i;:::-;24273:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24389:28;24399:4;24405:2;24409:7;24389:9;:28::i;:::-;24086:339;;;:::o;43667:44::-;;;;:::o;35044:256::-;35141:7;35177:23;35194:5;35177:16;:23::i;:::-;35169:5;:31;35161:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35266:12;:19;35279:5;35266:19;;;;;;;;;;;;;;;:26;35286:5;35266:26;;;;;;;;;;;;35259:33;;35044:256;;;;:::o;47058:112::-;47117:4;47137:20;:27;47158:5;47137:27;;;;;;;;;;;;;;;;;;;;;;;;;47130:34;;47058:112;;;:::o;50478:174::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50531:12:::1;50557:10;50549:24;;50582:21;50549:74;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50530:93;;;50638:7;50630:16;;;::::0;::::1;;42173:1;50478:174::o:0;24496:185::-;24634:39;24651:4;24657:2;24661:7;24634:39;;;;;;;;;;;;:16;:39::i;:::-;24496:185;;;:::o;50046:114::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50139:15:::1;50122:14;:32;;;;50046:114:::0;:::o;47176:348::-;47251:16;47279:23;47305:17;47315:6;47305:9;:17::i;:::-;47279:43;;47329:25;47371:15;47357:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47329:58;;47399:9;47394:103;47414:15;47410:1;:19;47394:103;;;47459:30;47479:6;47487:1;47459:19;:30::i;:::-;47445:8;47454:1;47445:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;47431:3;;;;;:::i;:::-;;;;47394:103;;;;47510:8;47503:15;;;;47176:348;;;:::o;49002:80::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49068:8:::1;49061:4;:15;;;;49002:80:::0;:::o;35566:233::-;35641:7;35677:30;:28;:30::i;:::-;35669:5;:38;35661:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35774:10;35785:5;35774:17;;;;;;;;;;;;;;;;;;;;;;;;35767:24;;35566:233;;;:::o;43929:28::-;;;;;;;;;;;;;:::o;49346:98::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49427:11:::1;49417:7;:21;;;;;;;;;;;;:::i;:::-;;49346:98:::0;:::o;43898:26::-;;;;;;;;;;;;;:::o;21331:239::-;21403:7;21423:13;21439:7;:16;21447:7;21439:16;;;;;;;;;;;;;;;;;;;;;21423:32;;21491:1;21474:19;;:5;:19;;;;21466:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21557:5;21550:12;;;21331:239;;;:::o;49088:130::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49195:17:::1;49172:20;:40;;;;49088:130:::0;:::o;49838:94::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49916:10:::1;49904:9;:22;;;;49838:94:::0;:::o;48379:111::-;48440:7;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48463:21:::1;48456:28;;48379:111:::0;:::o;21061:208::-;21133:7;21178:1;21161:19;;:5;:19;;;;21153:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21245:9;:16;21255:5;21245:16;;;;;;;;;;;;;;;;21238:23;;21061:208;;;:::o;48278:95::-;48331:13;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48360:7:::1;48353:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48278:95:::0;:::o;42533:94::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42598:21:::1;42616:1;42598:9;:21::i;:::-;42533:94::o:0;49938:102::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50022:12:::1;50008:11;:26;;;;49938:102:::0;:::o;43804:42::-;;;;:::o;43585:39::-;;;;:::o;49224:116::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49317:17:::1;49301:13;:33;;;;49224:116:::0;:::o;48075:175::-;48122:7;48160:14;;48142:15;:32;48138:107;;;48192:11;;48185:18;;;;48138:107;48233:4;;48226:11;;48075:175;;:::o;46635:399::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46737:1:::1;46723:11;:15;46715:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46777:14;46794:13;:11;:13::i;:::-;46777:30;;46846:9;;46831:11;46822:6;:20;;;;:::i;:::-;:33;;46814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46896:9;46908:1;46896:13;;46891:138;46916:11;46911:1;:16;46891:138;;46943:20;:33;46964:11;46943:33;;;;;;;;;;;;;;;;:35;;;;;;;;;:::i;:::-;;;;;;46987:34;46997:11;47019:1;47010:6;:10;;;;:::i;:::-;46987:9;:34::i;:::-;46929:3;;;;;:::i;:::-;;;;46891:138;;;;42173:1;46635:399:::0;;:::o;41882:87::-;41928:7;41955:6;;;;;;;;;;;41948:13;;41882:87;:::o;48902:94::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48982:8:::1;48968:11;:22;;;;48902:94:::0;:::o;21806:104::-;21862:13;21895:7;21888:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21806:104;:::o;45925:704::-;44315:6;;;;;;;;;;;44314:7;44306:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;44423:11:::1;;44404:15;:30;;44396:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;46040:11:::2;44560:1;44546:11;:15;44538:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46063:14:::3;46080:13;:11;:13::i;:::-;46063:30;;46100:24;46127:20;:32;46148:10;46127:32;;;;;;;;;;;;;;;;46100:59;;46259:14;;46241:15;:32;:161;;46350:52;46372:16;46390:11;46350:21;:52::i;:::-;46241:161;;;46283:57;46302:16;46320:11;46333:6;46283:18;:57::i;:::-;46241:161;46443:9;;46428:11;46419:6;:20;;;;:::i;:::-;:33;;46411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46493:9;46505:1;46493:13;;46488:136;46513:11;46508:1;:16;46488:136;;46540:20;:32;46561:10;46540:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;46583:33;46593:10;46614:1;46605:6;:10;;;;:::i;:::-;46583:9;:33::i;:::-;46526:3;;;;;:::i;:::-;;;;46488:136;;;;44600:1;;44470::::2;45925:704:::0;:::o;43542:38::-;;;;:::o;23489:295::-;23604:12;:10;:12::i;:::-;23592:24;;:8;:24;;;;23584:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23704:8;23659:18;:32;23678:12;:10;:12::i;:::-;23659:32;;;;;;;;;;;;;;;:42;23692:8;23659:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23757:8;23728:48;;23743:12;:10;:12::i;:::-;23728:48;;;23767:8;23728:48;;;;;;:::i;:::-;;;;;;;;23489:295;;:::o;48520:63::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48573:4:::1;48562:8;;:15;;;;;;;;;;;;;;;;;;48520:63::o:0;24752:328::-;24927:41;24946:12;:10;:12::i;:::-;24960:7;24927:18;:41::i;:::-;24919:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25033:39;25047:4;25053:2;25057:7;25066:5;25033:13;:39::i;:::-;24752:328;;;;:::o;43716:39::-;;;;:::o;43351:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47530:539::-;47628:13;47669:16;47677:7;47669;:16::i;:::-;47653:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;47764:8;;;;;;;;;;;47759:305;;47790:14;47783:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47759:305;47827:28;47858:10;:8;:10::i;:::-;47827:41;;47924:1;47899:14;47893:28;:32;:163;;;;;;;;;;;;;;;;;47977:14;47993:18;:7;:16;:18::i;:::-;48013:13;47960:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47893:163;47877:179;;;47530:539;;;;:::o;43426:39::-;;;;:::o;48792:104::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48884:6:::1;48863:18;:27;;;;48792:104:::0;:::o;43506:31::-;;;;:::o;49450:122::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49549:17:::1;49533:13;:33;;;;;;;;;;;;:::i;:::-;;49450:122:::0;:::o;23855:164::-;23952:4;23976:18;:25;23995:5;23976:25;;;;;;;;;;;;;;;:35;24002:8;23976:35;;;;;;;;;;;;;;;;;;;;;;;;;23969:42;;23855:164;;;;:::o;43851:42::-;;;;:::o;50286:186::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50367:9:::1;50362:105;50386:9;:16;50382:1;:20;50362:105;;;50455:4;50418:20;:34;50439:9;50449:1;50439:12;;;;;;;;;;;;;;;;;;;;;;50418:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;50404:3;;;;;:::i;:::-;;;;50362:105;;;;50286:186:::0;:::o;49578:120::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49677:15:::1;49660:14;:32;;;;;;;;;;;;:::i;:::-;;49578:120:::0;:::o;42782:192::-;42113:12;:10;:12::i;:::-;42102:23;;:7;:5;:7::i;:::-;:23;;;42094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42891:1:::1;42871:22;;:8;:22;;;;42863:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42947:19;42957:8;42947:9;:19::i;:::-;42782:192:::0;:::o;20692:305::-;20794:4;20846:25;20831:40;;;:11;:40;;;;:105;;;;20903:33;20888:48;;;:11;:48;;;;20831:105;:158;;;;20953:36;20977:11;20953:23;:36::i;:::-;20831:158;20811:178;;20692:305;;;:::o;16114:98::-;16167:7;16194:10;16187:17;;16114:98;:::o;26590:127::-;26655:4;26707:1;26679:30;;:7;:16;26687:7;26679:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26672:37;;26590:127;;;:::o;30572:174::-;30674:2;30647:15;:24;30663:7;30647:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30730:7;30726:2;30692:46;;30701:23;30716:7;30701:14;:23::i;:::-;30692:46;;;;;;;;;;;;30572:174;;:::o;26884:348::-;26977:4;27002:16;27010:7;27002;:16::i;:::-;26994:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27078:13;27094:23;27109:7;27094:14;:23::i;:::-;27078:39;;27147:5;27136:16;;:7;:16;;;:51;;;;27180:7;27156:31;;:20;27168:7;27156:11;:20::i;:::-;:31;;;27136:51;:87;;;;27191:32;27208:5;27215:7;27191:16;:32::i;:::-;27136:87;27128:96;;;26884:348;;;;:::o;29876:578::-;30035:4;30008:31;;:23;30023:7;30008:14;:23::i;:::-;:31;;;30000:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30118:1;30104:16;;:2;:16;;;;30096:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30174:39;30195:4;30201:2;30205:7;30174:20;:39::i;:::-;30278:29;30295:1;30299:7;30278:8;:29::i;:::-;30339:1;30320:9;:15;30330:4;30320:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30368:1;30351:9;:13;30361:2;30351:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30399:2;30380:7;:16;30388:7;30380:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30438:7;30434:2;30419:27;;30428:4;30419:27;;;;;;;;;;;;29876:578;;;:::o;42982:173::-;43038:16;43057:6;;;;;;;;;;;43038:25;;43083:8;43074:6;;:17;;;;;;;;;;;;;;;;;;43138:8;43107:40;;43128:8;43107:40;;;;;;;;;;;;42982:173;;:::o;27574:110::-;27650:26;27660:2;27664:7;27650:26;;;;;;;;;;;;:9;:26::i;:::-;27574:110;;:::o;45507:402::-;45661:18;;45646:11;45626:17;:31;;;;:::i;:::-;:53;;45610:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;45760:11;45753:4;;:18;;;;:::i;:::-;45740:9;:31;;45732:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45832:13;;45817:11;:28;;45801:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;45507:402;;:::o;44736:765::-;44865:18;44908:14;;44890:15;:32;:93;;44979:4;;44966:17;;;44890:93;;;44945:11;;44932:24;;;44890:93;;44998:25;45012:10;44998:13;:25::i;:::-;44990:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45109:25;;45094:11;45074:17;:31;;;;:::i;:::-;:60;;45058:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;45233:11;45220:10;:24;;;;:::i;:::-;45207:9;:37;;45199:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45305:20;;45290:11;:35;;45274:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;45431:16;;45416:11;45406:7;:21;;;;:::i;:::-;:41;;45390:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;44736:765;;;;:::o;25962:315::-;26119:28;26129:4;26135:2;26139:7;26119:9;:28::i;:::-;26166:48;26189:4;26195:2;26199:7;26208:5;26166:22;:48::i;:::-;26158:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25962:315;;;;:::o;44628:102::-;44688:13;44717:7;44710:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44628:102;:::o;16639:723::-;16695:13;16925:1;16916:5;:10;16912:53;;;16943:10;;;;;;;;;;;;;;;;;;;;;16912:53;16975:12;16990:5;16975:20;;17006:14;17031:78;17046:1;17038:4;:9;17031:78;;17064:8;;;;;:::i;:::-;;;;17095:2;17087:10;;;;;:::i;:::-;;;17031:78;;;17119:19;17151:6;17141:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17119:39;;17169:154;17185:1;17176:5;:10;17169:154;;17213:1;17203:11;;;;;:::i;:::-;;;17280:2;17272:5;:10;;;;:::i;:::-;17259:2;:24;;;;:::i;:::-;17246:39;;17229:6;17236;17229:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17309:2;17300:11;;;;;:::i;:::-;;;17169:154;;;17347:6;17333:21;;;;;16639:723;;;;:::o;19196:157::-;19281:4;19320:25;19305:40;;;:11;:40;;;;19298:47;;19196:157;;;:::o;36412:589::-;36556:45;36583:4;36589:2;36593:7;36556:26;:45::i;:::-;36634:1;36618:18;;:4;:18;;;36614:187;;;36653:40;36685:7;36653:31;:40::i;:::-;36614:187;;;36723:2;36715:10;;:4;:10;;;36711:90;;36742:47;36775:4;36781:7;36742:32;:47::i;:::-;36711:90;36614:187;36829:1;36815:16;;:2;:16;;;36811:183;;;36848:45;36885:7;36848:36;:45::i;:::-;36811:183;;;36921:4;36915:10;;:2;:10;;;36911:83;;36942:40;36970:2;36974:7;36942:27;:40::i;:::-;36911:83;36811:183;36412:589;;;:::o;27911:321::-;28041:18;28047:2;28051:7;28041:5;:18::i;:::-;28092:54;28123:1;28127:2;28131:7;28140:5;28092:22;:54::i;:::-;28070:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27911:321;;;:::o;31311:799::-;31466:4;31487:15;:2;:13;;;:15::i;:::-;31483:620;;;31539:2;31523:36;;;31560:12;:10;:12::i;:::-;31574:4;31580:7;31589:5;31523:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31519:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31782:1;31765:6;:13;:18;31761:272;;;31808:60;;;;;;;;;;:::i;:::-;;;;;;;;31761:272;31983:6;31977:13;31968:6;31964:2;31960:15;31953:38;31519:529;31656:41;;;31646:51;;;:6;:51;;;;31639:58;;;;;31483:620;32087:4;32080:11;;31311:799;;;;;;;:::o;32682:126::-;;;;:::o;37724:164::-;37828:10;:17;;;;37801:15;:24;37817:7;37801:24;;;;;;;;;;;:44;;;;37856:10;37872:7;37856:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37724:164;:::o;38515:988::-;38781:22;38831:1;38806:22;38823:4;38806:16;:22::i;:::-;:26;;;;:::i;:::-;38781:51;;38843:18;38864:17;:26;38882:7;38864:26;;;;;;;;;;;;38843:47;;39011:14;38997:10;:28;38993:328;;39042:19;39064:12;:18;39077:4;39064:18;;;;;;;;;;;;;;;:34;39083:14;39064:34;;;;;;;;;;;;39042:56;;39148:11;39115:12;:18;39128:4;39115:18;;;;;;;;;;;;;;;:30;39134:10;39115:30;;;;;;;;;;;:44;;;;39265:10;39232:17;:30;39250:11;39232:30;;;;;;;;;;;:43;;;;38993:328;;39417:17;:26;39435:7;39417:26;;;;;;;;;;;39410:33;;;39461:12;:18;39474:4;39461:18;;;;;;;;;;;;;;;:34;39480:14;39461:34;;;;;;;;;;;39454:41;;;38515:988;;;;:::o;39798:1079::-;40051:22;40096:1;40076:10;:17;;;;:21;;;;:::i;:::-;40051:46;;40108:18;40129:15;:24;40145:7;40129:24;;;;;;;;;;;;40108:45;;40480:19;40502:10;40513:14;40502:26;;;;;;;;;;;;;;;;;;;;;;;;40480:48;;40566:11;40541:10;40552;40541:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40677:10;40646:15;:28;40662:11;40646:28;;;;;;;;;;;:41;;;;40818:15;:24;40834:7;40818:24;;;;;;;;;;;40811:31;;;40853:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39798:1079;;;;:::o;37302:221::-;37387:14;37404:20;37421:2;37404:16;:20::i;:::-;37387:37;;37462:7;37435:12;:16;37448:2;37435:16;;;;;;;;;;;;;;;:24;37452:6;37435:24;;;;;;;;;;;:34;;;;37509:6;37480:17;:26;37498:7;37480:26;;;;;;;;;;;:35;;;;37302:221;;;:::o;28568:382::-;28662:1;28648:16;;:2;:16;;;;28640:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28721:16;28729:7;28721;:16::i;:::-;28720:17;28712:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28783:45;28812:1;28816:2;28820:7;28783:20;:45::i;:::-;28858:1;28841:9;:13;28851:2;28841:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28889:2;28870:7;:16;28878:7;28870:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28934:7;28930:2;28909:33;;28926:1;28909:33;;;;;;;;;;;;28568:382;;:::o;8158:387::-;8218:4;8426:12;8493:7;8481:20;8473:28;;8536:1;8529:4;:8;8522:15;;;8158:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:344::-;;1103:65;1118:49;1160:6;1118:49;:::i;:::-;1103:65;:::i;:::-;1094:74;;1191:6;1184:5;1177:21;1229:4;1222:5;1218:16;1267:3;1258:6;1253:3;1249:16;1246:25;1243:2;;;1284:1;1281;1274:12;1243:2;1297:41;1331:6;1326:3;1321;1297:41;:::i;:::-;1084:260;;;;;;:::o;1350:139::-;;1434:6;1421:20;1412:29;;1450:33;1477:5;1450:33;:::i;:::-;1402:87;;;;:::o;1512:303::-;;1632:3;1625:4;1617:6;1613:17;1609:27;1599:2;;1650:1;1647;1640:12;1599:2;1690:6;1677:20;1715:94;1805:3;1797:6;1790:4;1782:6;1778:17;1715:94;:::i;:::-;1706:103;;1589:226;;;;;:::o;1821:133::-;;1902:6;1889:20;1880:29;;1918:30;1942:5;1918:30;:::i;:::-;1870:84;;;;:::o;1960:137::-;;2043:6;2030:20;2021:29;;2059:32;2085:5;2059:32;:::i;:::-;2011:86;;;;:::o;2103:141::-;;2190:6;2184:13;2175:22;;2206:32;2232:5;2206:32;:::i;:::-;2165:79;;;;:::o;2263:271::-;;2367:3;2360:4;2352:6;2348:17;2344:27;2334:2;;2385:1;2382;2375:12;2334:2;2425:6;2412:20;2450:78;2524:3;2516:6;2509:4;2501:6;2497:17;2450:78;:::i;:::-;2441:87;;2324:210;;;;;:::o;2554:273::-;;2659:3;2652:4;2644:6;2640:17;2636:27;2626:2;;2677:1;2674;2667:12;2626:2;2717:6;2704:20;2742:79;2817:3;2809:6;2802:4;2794:6;2790:17;2742:79;:::i;:::-;2733:88;;2616:211;;;;;:::o;2833:139::-;;2917:6;2904:20;2895:29;;2933:33;2960:5;2933:33;:::i;:::-;2885:87;;;;:::o;2978:262::-;;3086:2;3074:9;3065:7;3061:23;3057:32;3054:2;;;3102:1;3099;3092:12;3054:2;3145:1;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3116:117;3044:196;;;;:::o;3246:407::-;;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3387:1;3384;3377:12;3339:2;3430:1;3455:53;3500:7;3491:6;3480:9;3476:22;3455:53;:::i;:::-;3445:63;;3401:117;3557:2;3583:53;3628:7;3619:6;3608:9;3604:22;3583:53;:::i;:::-;3573:63;;3528:118;3329:324;;;;;:::o;3659:552::-;;;;3801:2;3789:9;3780:7;3776:23;3772:32;3769:2;;;3817:1;3814;3807:12;3769:2;3860:1;3885:53;3930:7;3921:6;3910:9;3906:22;3885:53;:::i;:::-;3875:63;;3831:117;3987:2;4013:53;4058:7;4049:6;4038:9;4034:22;4013:53;:::i;:::-;4003:63;;3958:118;4115:2;4141:53;4186:7;4177:6;4166:9;4162:22;4141:53;:::i;:::-;4131:63;;4086:118;3759:452;;;;;:::o;4217:809::-;;;;;4385:3;4373:9;4364:7;4360:23;4356:33;4353:2;;;4402:1;4399;4392:12;4353:2;4445:1;4470:53;4515:7;4506:6;4495:9;4491:22;4470:53;:::i;:::-;4460:63;;4416:117;4572:2;4598:53;4643:7;4634:6;4623:9;4619:22;4598:53;:::i;:::-;4588:63;;4543:118;4700:2;4726:53;4771:7;4762:6;4751:9;4747:22;4726:53;:::i;:::-;4716:63;;4671:118;4856:2;4845:9;4841:18;4828:32;4887:18;4879:6;4876:30;4873:2;;;4919:1;4916;4909:12;4873:2;4947:62;5001:7;4992:6;4981:9;4977:22;4947:62;:::i;:::-;4937:72;;4799:220;4343:683;;;;;;;:::o;5032:401::-;;;5154:2;5142:9;5133:7;5129:23;5125:32;5122:2;;;5170:1;5167;5160:12;5122:2;5213:1;5238:53;5283:7;5274:6;5263:9;5259:22;5238:53;:::i;:::-;5228:63;;5184:117;5340:2;5366:50;5408:7;5399:6;5388:9;5384:22;5366:50;:::i;:::-;5356:60;;5311:115;5112:321;;;;;:::o;5439:407::-;;;5564:2;5552:9;5543:7;5539:23;5535:32;5532:2;;;5580:1;5577;5570:12;5532:2;5623:1;5648:53;5693:7;5684:6;5673:9;5669:22;5648:53;:::i;:::-;5638:63;;5594:117;5750:2;5776:53;5821:7;5812:6;5801:9;5797:22;5776:53;:::i;:::-;5766:63;;5721:118;5522:324;;;;;:::o;5852:405::-;;5985:2;5973:9;5964:7;5960:23;5956:32;5953:2;;;6001:1;5998;5991:12;5953:2;6072:1;6061:9;6057:17;6044:31;6102:18;6094:6;6091:30;6088:2;;;6134:1;6131;6124:12;6088:2;6162:78;6232:7;6223:6;6212:9;6208:22;6162:78;:::i;:::-;6152:88;;6015:235;5943:314;;;;:::o;6263:256::-;;6368:2;6356:9;6347:7;6343:23;6339:32;6336:2;;;6384:1;6381;6374:12;6336:2;6427:1;6452:50;6494:7;6485:6;6474:9;6470:22;6452:50;:::i;:::-;6442:60;;6398:114;6326:193;;;;:::o;6525:260::-;;6632:2;6620:9;6611:7;6607:23;6603:32;6600:2;;;6648:1;6645;6638:12;6600:2;6691:1;6716:52;6760:7;6751:6;6740:9;6736:22;6716:52;:::i;:::-;6706:62;;6662:116;6590:195;;;;:::o;6791:282::-;;6909:2;6897:9;6888:7;6884:23;6880:32;6877:2;;;6925:1;6922;6915:12;6877:2;6968:1;6993:63;7048:7;7039:6;7028:9;7024:22;6993:63;:::i;:::-;6983:73;;6939:127;6867:206;;;;:::o;7079:375::-;;7197:2;7185:9;7176:7;7172:23;7168:32;7165:2;;;7213:1;7210;7203:12;7165:2;7284:1;7273:9;7269:17;7256:31;7314:18;7306:6;7303:30;7300:2;;;7346:1;7343;7336:12;7300:2;7374:63;7429:7;7420:6;7409:9;7405:22;7374:63;:::i;:::-;7364:73;;7227:220;7155:299;;;;:::o;7460:262::-;;7568:2;7556:9;7547:7;7543:23;7539:32;7536:2;;;7584:1;7581;7574:12;7536:2;7627:1;7652:53;7697:7;7688:6;7677:9;7673:22;7652:53;:::i;:::-;7642:63;;7598:117;7526:196;;;;:::o;7728:407::-;;;7853:2;7841:9;7832:7;7828:23;7824:32;7821:2;;;7869:1;7866;7859:12;7821:2;7912:1;7937:53;7982:7;7973:6;7962:9;7958:22;7937:53;:::i;:::-;7927:63;;7883:117;8039:2;8065:53;8110:7;8101:6;8090:9;8086:22;8065:53;:::i;:::-;8055:63;;8010:118;7811:324;;;;;:::o;8141:179::-;;8231:46;8273:3;8265:6;8231:46;:::i;:::-;8309:4;8304:3;8300:14;8286:28;;8221:99;;;;:::o;8326:118::-;8413:24;8431:5;8413:24;:::i;:::-;8408:3;8401:37;8391:53;;:::o;8480:732::-;;8628:54;8676:5;8628:54;:::i;:::-;8698:86;8777:6;8772:3;8698:86;:::i;:::-;8691:93;;8808:56;8858:5;8808:56;:::i;:::-;8887:7;8918:1;8903:284;8928:6;8925:1;8922:13;8903:284;;;9004:6;8998:13;9031:63;9090:3;9075:13;9031:63;:::i;:::-;9024:70;;9117:60;9170:6;9117:60;:::i;:::-;9107:70;;8963:224;8950:1;8947;8943:9;8938:14;;8903:284;;;8907:14;9203:3;9196:10;;8604:608;;;;;;;:::o;9218:109::-;9299:21;9314:5;9299:21;:::i;:::-;9294:3;9287:34;9277:50;;:::o;9333:360::-;;9447:38;9479:5;9447:38;:::i;:::-;9501:70;9564:6;9559:3;9501:70;:::i;:::-;9494:77;;9580:52;9625:6;9620:3;9613:4;9606:5;9602:16;9580:52;:::i;:::-;9657:29;9679:6;9657:29;:::i;:::-;9652:3;9648:39;9641:46;;9423:270;;;;;:::o;9699:364::-;;9815:39;9848:5;9815:39;:::i;:::-;9870:71;9934:6;9929:3;9870:71;:::i;:::-;9863:78;;9950:52;9995:6;9990:3;9983:4;9976:5;9972:16;9950:52;:::i;:::-;10027:29;10049:6;10027:29;:::i;:::-;10022:3;10018:39;10011:46;;9791:272;;;;;:::o;10069:377::-;;10203:39;10236:5;10203:39;:::i;:::-;10258:89;10340:6;10335:3;10258:89;:::i;:::-;10251:96;;10356:52;10401:6;10396:3;10389:4;10382:5;10378:16;10356:52;:::i;:::-;10433:6;10428:3;10424:16;10417:23;;10179:267;;;;;:::o;10476:845::-;;10616:5;10610:12;10645:36;10671:9;10645:36;:::i;:::-;10697:89;10779:6;10774:3;10697:89;:::i;:::-;10690:96;;10817:1;10806:9;10802:17;10833:1;10828:137;;;;10979:1;10974:341;;;;10795:520;;10828:137;10912:4;10908:9;10897;10893:25;10888:3;10881:38;10948:6;10943:3;10939:16;10932:23;;10828:137;;10974:341;11041:38;11073:5;11041:38;:::i;:::-;11101:1;11115:154;11129:6;11126:1;11123:13;11115:154;;;11203:7;11197:14;11193:1;11188:3;11184:11;11177:35;11253:1;11244:7;11240:15;11229:26;;11151:4;11148:1;11144:12;11139:17;;11115:154;;;11298:6;11293:3;11289:16;11282:23;;10981:334;;10795:520;;10583:738;;;;;;:::o;11327:322::-;;11490:67;11554:2;11549:3;11490:67;:::i;:::-;11483:74;;11587:26;11583:1;11578:3;11574:11;11567:47;11640:2;11635:3;11631:12;11624:19;;11473:176;;;:::o;11655:375::-;;11818:67;11882:2;11877:3;11818:67;:::i;:::-;11811:74;;11915:34;11911:1;11906:3;11902:11;11895:55;11981:13;11976:2;11971:3;11967:12;11960:35;12021:2;12016:3;12012:12;12005:19;;11801:229;;;:::o;12036:382::-;;12199:67;12263:2;12258:3;12199:67;:::i;:::-;12192:74;;12296:34;12292:1;12287:3;12283:11;12276:55;12362:20;12357:2;12352:3;12348:12;12341:42;12409:2;12404:3;12400:12;12393:19;;12182:236;;;:::o;12424:370::-;;12587:67;12651:2;12646:3;12587:67;:::i;:::-;12580:74;;12684:34;12680:1;12675:3;12671:11;12664:55;12750:8;12745:2;12740:3;12736:12;12729:30;12785:2;12780:3;12776:12;12769:19;;12570:224;;;:::o;12800:326::-;;12963:67;13027:2;13022:3;12963:67;:::i;:::-;12956:74;;13060:30;13056:1;13051:3;13047:11;13040:51;13117:2;13112:3;13108:12;13101:19;;12946:180;;;:::o;13132:326::-;;13295:67;13359:2;13354:3;13295:67;:::i;:::-;13288:74;;13392:30;13388:1;13383:3;13379:11;13372:51;13449:2;13444:3;13440:12;13433:19;;13278:180;;;:::o;13464:368::-;;13627:67;13691:2;13686:3;13627:67;:::i;:::-;13620:74;;13724:34;13720:1;13715:3;13711:11;13704:55;13790:6;13785:2;13780:3;13776:12;13769:28;13823:2;13818:3;13814:12;13807:19;;13610:222;;;:::o;13838:323::-;;14001:67;14065:2;14060:3;14001:67;:::i;:::-;13994:74;;14098:27;14094:1;14089:3;14085:11;14078:48;14152:2;14147:3;14143:12;14136:19;;13984:177;;;:::o;14167:372::-;;14330:67;14394:2;14389:3;14330:67;:::i;:::-;14323:74;;14427:34;14423:1;14418:3;14414:11;14407:55;14493:10;14488:2;14483:3;14479:12;14472:32;14530:2;14525:3;14521:12;14514:19;;14313:226;;;:::o;14545:376::-;;14708:67;14772:2;14767:3;14708:67;:::i;:::-;14701:74;;14805:34;14801:1;14796:3;14792:11;14785:55;14871:14;14866:2;14861:3;14857:12;14850:36;14912:2;14907:3;14903:12;14896:19;;14691:230;;;:::o;14927:388::-;;15090:67;15154:2;15149:3;15090:67;:::i;:::-;15083:74;;15187:34;15183:1;15178:3;15174:11;15167:55;15253:26;15248:2;15243:3;15239:12;15232:48;15306:2;15301:3;15297:12;15290:19;;15073:242;;;:::o;15321:374::-;;15484:67;15548:2;15543:3;15484:67;:::i;:::-;15477:74;;15581:34;15577:1;15572:3;15568:11;15561:55;15647:12;15642:2;15637:3;15633:12;15626:34;15686:2;15681:3;15677:12;15670:19;;15467:228;;;:::o;15701:373::-;;15864:67;15928:2;15923:3;15864:67;:::i;:::-;15857:74;;15961:34;15957:1;15952:3;15948:11;15941:55;16027:11;16022:2;16017:3;16013:12;16006:33;16065:2;16060:3;16056:12;16049:19;;15847:227;;;:::o;16080:320::-;;16243:67;16307:2;16302:3;16243:67;:::i;:::-;16236:74;;16340:24;16336:1;16331:3;16327:11;16320:45;16391:2;16386:3;16382:12;16375:19;;16226:174;;;:::o;16406:330::-;;16569:67;16633:2;16628:3;16569:67;:::i;:::-;16562:74;;16666:34;16662:1;16657:3;16653:11;16646:55;16727:2;16722:3;16718:12;16711:19;;16552:184;;;:::o;16742:376::-;;16905:67;16969:2;16964:3;16905:67;:::i;:::-;16898:74;;17002:34;16998:1;16993:3;16989:11;16982:55;17068:14;17063:2;17058:3;17054:12;17047:36;17109:2;17104:3;17100:12;17093:19;;16888:230;;;:::o;17124:330::-;;17287:67;17351:2;17346:3;17287:67;:::i;:::-;17280:74;;17384:34;17380:1;17375:3;17371:11;17364:55;17445:2;17440:3;17436:12;17429:19;;17270:184;;;:::o;17460:320::-;;17623:67;17687:2;17682:3;17623:67;:::i;:::-;17616:74;;17720:24;17716:1;17711:3;17707:11;17700:45;17771:2;17766:3;17762:12;17755:19;;17606:174;;;:::o;17786:373::-;;17949:67;18013:2;18008:3;17949:67;:::i;:::-;17942:74;;18046:34;18042:1;18037:3;18033:11;18026:55;18112:11;18107:2;18102:3;18098:12;18091:33;18150:2;18145:3;18141:12;18134:19;;17932:227;;;:::o;18165:328::-;;18328:67;18392:2;18387:3;18328:67;:::i;:::-;18321:74;;18425:32;18421:1;18416:3;18412:11;18405:53;18484:2;18479:3;18475:12;18468:19;;18311:182;;;:::o;18499:379::-;;18662:67;18726:2;18721:3;18662:67;:::i;:::-;18655:74;;18759:34;18755:1;18750:3;18746:11;18739:55;18825:17;18820:2;18815:3;18811:12;18804:39;18869:2;18864:3;18860:12;18853:19;;18645:233;;;:::o;18884:365::-;;19047:67;19111:2;19106:3;19047:67;:::i;:::-;19040:74;;19144:34;19140:1;19135:3;19131:11;19124:55;19210:3;19205:2;19200:3;19196:12;19189:25;19240:2;19235:3;19231:12;19224:19;;19030:219;;;:::o;19255:297::-;;19435:83;19516:1;19511:3;19435:83;:::i;:::-;19428:90;;19544:1;19539:3;19535:11;19528:18;;19418:134;;;:::o;19558:316::-;;19721:67;19785:2;19780:3;19721:67;:::i;:::-;19714:74;;19818:20;19814:1;19809:3;19805:11;19798:41;19865:2;19860:3;19856:12;19849:19;;19704:170;;;:::o;19880:372::-;;20043:67;20107:2;20102:3;20043:67;:::i;:::-;20036:74;;20140:34;20136:1;20131:3;20127:11;20120:55;20206:10;20201:2;20196:3;20192:12;20185:32;20243:2;20238:3;20234:12;20227:19;;20026:226;;;:::o;20258:381::-;;20421:67;20485:2;20480:3;20421:67;:::i;:::-;20414:74;;20518:34;20514:1;20509:3;20505:11;20498:55;20584:19;20579:2;20574:3;20570:12;20563:41;20630:2;20625:3;20621:12;20614:19;;20404:235;;;:::o;20645:376::-;;20808:67;20872:2;20867:3;20808:67;:::i;:::-;20801:74;;20905:34;20901:1;20896:3;20892:11;20885:55;20971:14;20966:2;20961:3;20957:12;20950:36;21012:2;21007:3;21003:12;20996:19;;20791:230;;;:::o;21027:321::-;;21190:67;21254:2;21249:3;21190:67;:::i;:::-;21183:74;;21287:25;21283:1;21278:3;21274:11;21267:46;21339:2;21334:3;21330:12;21323:19;;21173:175;;;:::o;21354:325::-;;21517:67;21581:2;21576:3;21517:67;:::i;:::-;21510:74;;21614:29;21610:1;21605:3;21601:11;21594:50;21670:2;21665:3;21661:12;21654:19;;21500:179;;;:::o;21685:108::-;21762:24;21780:5;21762:24;:::i;:::-;21757:3;21750:37;21740:53;;:::o;21799:118::-;21886:24;21904:5;21886:24;:::i;:::-;21881:3;21874:37;21864:53;;:::o;21923:589::-;;22170:95;22261:3;22252:6;22170:95;:::i;:::-;22163:102;;22282:95;22373:3;22364:6;22282:95;:::i;:::-;22275:102;;22394:92;22482:3;22473:6;22394:92;:::i;:::-;22387:99;;22503:3;22496:10;;22152:360;;;;;;:::o;22518:379::-;;22724:147;22867:3;22724:147;:::i;:::-;22717:154;;22888:3;22881:10;;22706:191;;;:::o;22903:222::-;;23034:2;23023:9;23019:18;23011:26;;23047:71;23115:1;23104:9;23100:17;23091:6;23047:71;:::i;:::-;23001:124;;;;:::o;23131:640::-;;23364:3;23353:9;23349:19;23341:27;;23378:71;23446:1;23435:9;23431:17;23422:6;23378:71;:::i;:::-;23459:72;23527:2;23516:9;23512:18;23503:6;23459:72;:::i;:::-;23541;23609:2;23598:9;23594:18;23585:6;23541:72;:::i;:::-;23660:9;23654:4;23650:20;23645:2;23634:9;23630:18;23623:48;23688:76;23759:4;23750:6;23688:76;:::i;:::-;23680:84;;23331:440;;;;;;;:::o;23777:373::-;;23958:2;23947:9;23943:18;23935:26;;24007:9;24001:4;23997:20;23993:1;23982:9;23978:17;23971:47;24035:108;24138:4;24129:6;24035:108;:::i;:::-;24027:116;;23925:225;;;;:::o;24156:210::-;;24281:2;24270:9;24266:18;24258:26;;24294:65;24356:1;24345:9;24341:17;24332:6;24294:65;:::i;:::-;24248:118;;;;:::o;24372:313::-;;24523:2;24512:9;24508:18;24500:26;;24572:9;24566:4;24562:20;24558:1;24547:9;24543:17;24536:47;24600:78;24673:4;24664:6;24600:78;:::i;:::-;24592:86;;24490:195;;;;:::o;24691:419::-;;24895:2;24884:9;24880:18;24872:26;;24944:9;24938:4;24934:20;24930:1;24919:9;24915:17;24908:47;24972:131;25098:4;24972:131;:::i;:::-;24964:139;;24862:248;;;:::o;25116:419::-;;25320:2;25309:9;25305:18;25297:26;;25369:9;25363:4;25359:20;25355:1;25344:9;25340:17;25333:47;25397:131;25523:4;25397:131;:::i;:::-;25389:139;;25287:248;;;:::o;25541:419::-;;25745:2;25734:9;25730:18;25722:26;;25794:9;25788:4;25784:20;25780:1;25769:9;25765:17;25758:47;25822:131;25948:4;25822:131;:::i;:::-;25814:139;;25712:248;;;:::o;25966:419::-;;26170:2;26159:9;26155:18;26147:26;;26219:9;26213:4;26209:20;26205:1;26194:9;26190:17;26183:47;26247:131;26373:4;26247:131;:::i;:::-;26239:139;;26137:248;;;:::o;26391:419::-;;26595:2;26584:9;26580:18;26572:26;;26644:9;26638:4;26634:20;26630:1;26619:9;26615:17;26608:47;26672:131;26798:4;26672:131;:::i;:::-;26664:139;;26562:248;;;:::o;26816:419::-;;27020:2;27009:9;27005:18;26997:26;;27069:9;27063:4;27059:20;27055:1;27044:9;27040:17;27033:47;27097:131;27223:4;27097:131;:::i;:::-;27089:139;;26987:248;;;:::o;27241:419::-;;27445:2;27434:9;27430:18;27422:26;;27494:9;27488:4;27484:20;27480:1;27469:9;27465:17;27458:47;27522:131;27648:4;27522:131;:::i;:::-;27514:139;;27412:248;;;:::o;27666:419::-;;27870:2;27859:9;27855:18;27847:26;;27919:9;27913:4;27909:20;27905:1;27894:9;27890:17;27883:47;27947:131;28073:4;27947:131;:::i;:::-;27939:139;;27837:248;;;:::o;28091:419::-;;28295:2;28284:9;28280:18;28272:26;;28344:9;28338:4;28334:20;28330:1;28319:9;28315:17;28308:47;28372:131;28498:4;28372:131;:::i;:::-;28364:139;;28262:248;;;:::o;28516:419::-;;28720:2;28709:9;28705:18;28697:26;;28769:9;28763:4;28759:20;28755:1;28744:9;28740:17;28733:47;28797:131;28923:4;28797:131;:::i;:::-;28789:139;;28687:248;;;:::o;28941:419::-;;29145:2;29134:9;29130:18;29122:26;;29194:9;29188:4;29184:20;29180:1;29169:9;29165:17;29158:47;29222:131;29348:4;29222:131;:::i;:::-;29214:139;;29112:248;;;:::o;29366:419::-;;29570:2;29559:9;29555:18;29547:26;;29619:9;29613:4;29609:20;29605:1;29594:9;29590:17;29583:47;29647:131;29773:4;29647:131;:::i;:::-;29639:139;;29537:248;;;:::o;29791:419::-;;29995:2;29984:9;29980:18;29972:26;;30044:9;30038:4;30034:20;30030:1;30019:9;30015:17;30008:47;30072:131;30198:4;30072:131;:::i;:::-;30064:139;;29962:248;;;:::o;30216:419::-;;30420:2;30409:9;30405:18;30397:26;;30469:9;30463:4;30459:20;30455:1;30444:9;30440:17;30433:47;30497:131;30623:4;30497:131;:::i;:::-;30489:139;;30387:248;;;:::o;30641:419::-;;30845:2;30834:9;30830:18;30822:26;;30894:9;30888:4;30884:20;30880:1;30869:9;30865:17;30858:47;30922:131;31048:4;30922:131;:::i;:::-;30914:139;;30812:248;;;:::o;31066:419::-;;31270:2;31259:9;31255:18;31247:26;;31319:9;31313:4;31309:20;31305:1;31294:9;31290:17;31283:47;31347:131;31473:4;31347:131;:::i;:::-;31339:139;;31237:248;;;:::o;31491:419::-;;31695:2;31684:9;31680:18;31672:26;;31744:9;31738:4;31734:20;31730:1;31719:9;31715:17;31708:47;31772:131;31898:4;31772:131;:::i;:::-;31764:139;;31662:248;;;:::o;31916:419::-;;32120:2;32109:9;32105:18;32097:26;;32169:9;32163:4;32159:20;32155:1;32144:9;32140:17;32133:47;32197:131;32323:4;32197:131;:::i;:::-;32189:139;;32087:248;;;:::o;32341:419::-;;32545:2;32534:9;32530:18;32522:26;;32594:9;32588:4;32584:20;32580:1;32569:9;32565:17;32558:47;32622:131;32748:4;32622:131;:::i;:::-;32614:139;;32512:248;;;:::o;32766:419::-;;32970:2;32959:9;32955:18;32947:26;;33019:9;33013:4;33009:20;33005:1;32994:9;32990:17;32983:47;33047:131;33173:4;33047:131;:::i;:::-;33039:139;;32937:248;;;:::o;33191:419::-;;33395:2;33384:9;33380:18;33372:26;;33444:9;33438:4;33434:20;33430:1;33419:9;33415:17;33408:47;33472:131;33598:4;33472:131;:::i;:::-;33464:139;;33362:248;;;:::o;33616:419::-;;33820:2;33809:9;33805:18;33797:26;;33869:9;33863:4;33859:20;33855:1;33844:9;33840:17;33833:47;33897:131;34023:4;33897:131;:::i;:::-;33889:139;;33787:248;;;:::o;34041:419::-;;34245:2;34234:9;34230:18;34222:26;;34294:9;34288:4;34284:20;34280:1;34269:9;34265:17;34258:47;34322:131;34448:4;34322:131;:::i;:::-;34314:139;;34212:248;;;:::o;34466:419::-;;34670:2;34659:9;34655:18;34647:26;;34719:9;34713:4;34709:20;34705:1;34694:9;34690:17;34683:47;34747:131;34873:4;34747:131;:::i;:::-;34739:139;;34637:248;;;:::o;34891:419::-;;35095:2;35084:9;35080:18;35072:26;;35144:9;35138:4;35134:20;35130:1;35119:9;35115:17;35108:47;35172:131;35298:4;35172:131;:::i;:::-;35164:139;;35062:248;;;:::o;35316:419::-;;35520:2;35509:9;35505:18;35497:26;;35569:9;35563:4;35559:20;35555:1;35544:9;35540:17;35533:47;35597:131;35723:4;35597:131;:::i;:::-;35589:139;;35487:248;;;:::o;35741:419::-;;35945:2;35934:9;35930:18;35922:26;;35994:9;35988:4;35984:20;35980:1;35969:9;35965:17;35958:47;36022:131;36148:4;36022:131;:::i;:::-;36014:139;;35912:248;;;:::o;36166:419::-;;36370:2;36359:9;36355:18;36347:26;;36419:9;36413:4;36409:20;36405:1;36394:9;36390:17;36383:47;36447:131;36573:4;36447:131;:::i;:::-;36439:139;;36337:248;;;:::o;36591:222::-;;36722:2;36711:9;36707:18;36699:26;;36735:71;36803:1;36792:9;36788:17;36779:6;36735:71;:::i;:::-;36689:124;;;;:::o;36819:283::-;;36885:2;36879:9;36869:19;;36927:4;36919:6;36915:17;37034:6;37022:10;37019:22;36998:18;36986:10;36983:34;36980:62;36977:2;;;37045:18;;:::i;:::-;36977:2;37085:10;37081:2;37074:22;36859:243;;;;:::o;37108:311::-;;37275:18;37267:6;37264:30;37261:2;;;37297:18;;:::i;:::-;37261:2;37347:4;37339:6;37335:17;37327:25;;37407:4;37401;37397:15;37389:23;;37190:229;;;:::o;37425:331::-;;37576:18;37568:6;37565:30;37562:2;;;37598:18;;:::i;:::-;37562:2;37683:4;37679:9;37672:4;37664:6;37660:17;37656:33;37648:41;;37744:4;37738;37734:15;37726:23;;37491:265;;;:::o;37762:332::-;;37914:18;37906:6;37903:30;37900:2;;;37936:18;;:::i;:::-;37900:2;38021:4;38017:9;38010:4;38002:6;37998:17;37994:33;37986:41;;38082:4;38076;38072:15;38064:23;;37829:265;;;:::o;38100:132::-;;38190:3;38182:11;;38220:4;38215:3;38211:14;38203:22;;38172:60;;;:::o;38238:141::-;;38310:3;38302:11;;38333:3;38330:1;38323:14;38367:4;38364:1;38354:18;38346:26;;38292:87;;;:::o;38385:114::-;;38486:5;38480:12;38470:22;;38459:40;;;:::o;38505:98::-;;38590:5;38584:12;38574:22;;38563:40;;;:::o;38609:99::-;;38695:5;38689:12;38679:22;;38668:40;;;:::o;38714:113::-;;38816:4;38811:3;38807:14;38799:22;;38789:38;;;:::o;38833:184::-;;38966:6;38961:3;38954:19;39006:4;39001:3;38997:14;38982:29;;38944:73;;;;:::o;39023:168::-;;39140:6;39135:3;39128:19;39180:4;39175:3;39171:14;39156:29;;39118:73;;;;:::o;39197:147::-;;39335:3;39320:18;;39310:34;;;;:::o;39350:169::-;;39468:6;39463:3;39456:19;39508:4;39503:3;39499:14;39484:29;;39446:73;;;;:::o;39525:148::-;;39664:3;39649:18;;39639:34;;;;:::o;39679:305::-;;39738:20;39756:1;39738:20;:::i;:::-;39733:25;;39772:20;39790:1;39772:20;:::i;:::-;39767:25;;39926:1;39858:66;39854:74;39851:1;39848:81;39845:2;;;39932:18;;:::i;:::-;39845:2;39976:1;39973;39969:9;39962:16;;39723:261;;;;:::o;39990:185::-;;40047:20;40065:1;40047:20;:::i;:::-;40042:25;;40081:20;40099:1;40081:20;:::i;:::-;40076:25;;40120:1;40110:2;;40125:18;;:::i;:::-;40110:2;40167:1;40164;40160:9;40155:14;;40032:143;;;;:::o;40181:348::-;;40244:20;40262:1;40244:20;:::i;:::-;40239:25;;40278:20;40296:1;40278:20;:::i;:::-;40273:25;;40466:1;40398:66;40394:74;40391:1;40388:81;40383:1;40376:9;40369:17;40365:105;40362:2;;;40473:18;;:::i;:::-;40362:2;40521:1;40518;40514:9;40503:20;;40229:300;;;;:::o;40535:191::-;;40595:20;40613:1;40595:20;:::i;:::-;40590:25;;40629:20;40647:1;40629:20;:::i;:::-;40624:25;;40668:1;40665;40662:8;40659:2;;;40673:18;;:::i;:::-;40659:2;40718:1;40715;40711:9;40703:17;;40580:146;;;;:::o;40732:96::-;;40798:24;40816:5;40798:24;:::i;:::-;40787:35;;40777:51;;;:::o;40834:90::-;;40911:5;40904:13;40897:21;40886:32;;40876:48;;;:::o;40930:149::-;;41006:66;40999:5;40995:78;40984:89;;40974:105;;;:::o;41085:126::-;;41162:42;41155:5;41151:54;41140:65;;41130:81;;;:::o;41217:77::-;;41283:5;41272:16;;41262:32;;;:::o;41300:154::-;41384:6;41379:3;41374;41361:30;41446:1;41437:6;41432:3;41428:16;41421:27;41351:103;;;:::o;41460:307::-;41528:1;41538:113;41552:6;41549:1;41546:13;41538:113;;;41637:1;41632:3;41628:11;41622:18;41618:1;41613:3;41609:11;41602:39;41574:2;41571:1;41567:10;41562:15;;41538:113;;;41669:6;41666:1;41663:13;41660:2;;;41749:1;41740:6;41735:3;41731:16;41724:27;41660:2;41509:258;;;;:::o;41773:320::-;;41854:1;41848:4;41844:12;41834:22;;41901:1;41895:4;41891:12;41922:18;41912:2;;41978:4;41970:6;41966:17;41956:27;;41912:2;42040;42032:6;42029:14;42009:18;42006:38;42003:2;;;42059:18;;:::i;:::-;42003:2;41824:269;;;;:::o;42099:233::-;;42161:24;42179:5;42161:24;:::i;:::-;42152:33;;42207:66;42200:5;42197:77;42194:2;;;42277:18;;:::i;:::-;42194:2;42324:1;42317:5;42313:13;42306:20;;42142:190;;;:::o;42338:176::-;;42387:20;42405:1;42387:20;:::i;:::-;42382:25;;42421:20;42439:1;42421:20;:::i;:::-;42416:25;;42460:1;42450:2;;42465:18;;:::i;:::-;42450:2;42506:1;42503;42499:9;42494:14;;42372:142;;;;:::o;42520:180::-;42568:77;42565:1;42558:88;42665:4;42662:1;42655:15;42689:4;42686:1;42679:15;42706:180;42754:77;42751:1;42744:88;42851:4;42848:1;42841:15;42875:4;42872:1;42865:15;42892:180;42940:77;42937:1;42930:88;43037:4;43034:1;43027:15;43061:4;43058:1;43051:15;43078:180;43126:77;43123:1;43116:88;43223:4;43220:1;43213:15;43247:4;43244:1;43237:15;43264:102;;43356:2;43352:7;43347:2;43340:5;43336:14;43332:28;43322:38;;43312:54;;;:::o;43372:122::-;43445:24;43463:5;43445:24;:::i;:::-;43438:5;43435:35;43425:2;;43484:1;43481;43474:12;43425:2;43415:79;:::o;43500:116::-;43570:21;43585:5;43570:21;:::i;:::-;43563:5;43560:32;43550:2;;43606:1;43603;43596:12;43550:2;43540:76;:::o;43622:120::-;43694:23;43711:5;43694:23;:::i;:::-;43687:5;43684:34;43674:2;;43732:1;43729;43722:12;43674:2;43664:78;:::o;43748:122::-;43821:24;43839:5;43821:24;:::i;:::-;43814:5;43811:35;43801:2;;43860:1;43857;43850:12;43801:2;43791:79;:::o

Swarm Source

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