ERC-721
Overview
Max Total Supply
2,922 TU8YEARS
Holders
1,583
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TU8YEARSLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
QuixoticLaunchpadERC721
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at optimistic.etherscan.io on 2022-10-23 */ // Sources flattened with hardhat v2.8.4 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (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 { _setApprovalForAll(_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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (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); /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (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/security/[email protected] // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File Contracts/LaunchpadNFT.sol pragma solidity ^0.8.1; contract QuixoticLaunchpadERC721 is ERC721("Just Tu", "TU8YEARS"), ERC721Enumerable, Ownable, ReentrancyGuard { string private _baseURIextended; string private _baseURISuffix = ""; bool public frozenMetadata = false; uint256 public MAX_TOKENS = 2922; bool public saleIsActive = false; bool public greenListSaleIsActive = false; mapping(address => uint256) addressToGreenListNumberMinted; mapping(address => uint256) addressToNumberMinted; address private bouncer = 0xd47257ee6cD0a80Ed1ba7bDdC722Ef8eE44a8d7d; bool private _baseUriIncludeTokenId = true; function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function flipGreenListSaleState() public onlyOwner { greenListSaleIsActive = !greenListSaleIsActive; } function setBaseURI(string memory baseURI_, bool includeTokenId, string memory suffix) external onlyOwner() { require(!frozenMetadata, "The metadata URI is frozen. You can no longer set the baseURI"); _baseUriIncludeTokenId = includeTokenId; _baseURIextended = baseURI_; _baseURISuffix = suffix; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function freezeMetadata() external onlyOwner { frozenMetadata = true; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); if (_baseUriIncludeTokenId) { return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(tokenId), _baseURISuffix)) : ""; } else { return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI)) : ""; } } function mintToken(uint numberOfTokens) public payable nonReentrant { require(tx.origin == _msgSender(), "This function is only callable from an EOA."); require(saleIsActive, "Sale must be active to mint Tokens"); require(numberOfTokens + addressToNumberMinted[_msgSender()] <= 2, "Exceeded max token purchase"); require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply of tokens"); require(0 * numberOfTokens <= msg.value, "Ether value sent is not correct"); for (uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_TOKENS) { addressToNumberMinted[_msgSender()] += 1; _safeMint(_msgSender(), mintIndex); } } } function greenListMintToken(uint numberOfTokens, bytes memory signature) public payable nonReentrant { require(tx.origin == _msgSender(), "This function is only callable from an EOA."); require(greenListSaleIsActive, "Sale must be active to mint Tokens"); require(numberOfTokens + addressToGreenListNumberMinted[_msgSender()] <= 1, "Exceeded max token purchase"); require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply of tokens"); require(0 * numberOfTokens <= msg.value, "Ether value sent is not correct"); bytes32 hashedMinter = ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(_msgSender()))); address recoveredBouncer = ECDSA.recover(hashedMinter, signature); require(recoveredBouncer == bouncer, "The signature for the greenlist is invalid"); for (uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_TOKENS) { addressToGreenListNumberMinted[_msgSender()] += 1; _safeMint(_msgSender(), mintIndex); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","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":"flipGreenListSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozenMetadata","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"greenListMintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"greenListSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"bool","name":"includeTokenId","type":"bool"},{"internalType":"string","name":"suffix","type":"string"}],"name":"setBaseURI","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"}]
Contract Creation Code
608060405260405180602001604052806000815250600d90805190602001906200002b9291906200029d565b506000600e60006101000a81548160ff021916908315150217905550610b6a600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff02191690831515021790555073d47257ee6cd0a80ed1ba7bddc722ef8ee44a8d7d601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601360146101000a81548160ff0219169083151502179055503480156200010057600080fd5b506040518060400160405280600781526020017f4a757374205475000000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f54553859454152530000000000000000000000000000000000000000000000008152508160009080519060200190620001859291906200029d565b5080600190805190602001906200019e9291906200029d565b505050620001c1620001b5620001cf60201b60201c565b620001d760201b60201c565b6001600b81905550620003b2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ab906200034d565b90600052602060002090601f016020900481019282620002cf57600085556200031b565b82601f10620002ea57805160ff19168380011785556200031b565b828001600101855582156200031b579182015b828111156200031a578251825591602001919060010190620002fd565b5b5090506200032a91906200032e565b5090565b5b80821115620003495760008160009055506001016200032f565b5090565b600060028204905060018216806200036657607f821691505b602082108114156200037d576200037c62000383565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614fc380620003c26000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063c634d03211610095578063eb8d244411610064578063eb8d24441461061f578063f2fde38b1461064a578063f47c84c514610673578063f7f7bf7b1461069e576101c2565b8063c634d03214610572578063c87b56dd1461058e578063d111515d146105cb578063e985e9c5146105e2576101c2565b806393b15295116100d157806393b15295146104cc57806395d89b41146104f5578063a22cb46514610520578063b88d4fde14610549576101c2565b8063715018a61461045f5780638529ccad146104765780638da5cb5b146104a1576101c2565b80632da435f71161016457806342842e0e1161013e57806342842e0e1461037f5780634f6ccce7146103a85780636352211e146103e557806370a0823114610422576101c2565b80632da435f7146103145780632f745c591461032b57806334918dfd14610368576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632541865c146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190613542565b6106ba565b6040516101fb9190613d78565b60405180910390f35b34801561021057600080fd5b506102196106cc565b6040516102269190613dd8565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190613627565b61075e565b6040516102639190613d11565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190613502565b6107e3565b005b3480156102a157600080fd5b506102aa6108fb565b6040516102b791906141ba565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906133ec565b610908565b005b3480156102f557600080fd5b506102fe610968565b60405161030b9190613d78565b60405180910390f35b34801561032057600080fd5b5061032961097b565b005b34801561033757600080fd5b50610352600480360381019061034d9190613502565b610a23565b60405161035f91906141ba565b60405180910390f35b34801561037457600080fd5b5061037d610ac8565b005b34801561038b57600080fd5b506103a660048036038101906103a191906133ec565b610b70565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190613627565b610b90565b6040516103dc91906141ba565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190613627565b610c01565b6040516104199190613d11565b60405180910390f35b34801561042e57600080fd5b506104496004803603810190610444919061337f565b610cb3565b60405161045691906141ba565b60405180910390f35b34801561046b57600080fd5b50610474610d6b565b005b34801561048257600080fd5b5061048b610df3565b6040516104989190613d78565b60405180910390f35b3480156104ad57600080fd5b506104b6610e06565b6040516104c39190613d11565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee919061359c565b610e30565b005b34801561050157600080fd5b5061050a610f49565b6040516105179190613dd8565b60405180910390f35b34801561052c57600080fd5b50610547600480360381019061054291906134c2565b610fdb565b005b34801561055557600080fd5b50610570600480360381019061056b919061343f565b610ff1565b005b61058c60048036038101906105879190613627565b611053565b005b34801561059a57600080fd5b506105b560048036038101906105b09190613627565b611358565b6040516105c29190613dd8565b60405180910390f35b3480156105d757600080fd5b506105e061145f565b005b3480156105ee57600080fd5b50610609600480360381019061060491906133ac565b6114f8565b6040516106169190613d78565b60405180910390f35b34801561062b57600080fd5b5061063461158c565b6040516106419190613d78565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c919061337f565b61159f565b005b34801561067f57600080fd5b50610688611697565b60405161069591906141ba565b60405180910390f35b6106b860048036038101906106b39190613654565b61169d565b005b60006106c582611a7d565b9050919050565b6060600080546106db90614496565b80601f016020809104026020016040519081016040528092919081815260200182805461070790614496565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b5050505050905090565b600061076982611af7565b6107a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079f9061409a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ee82610c01565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561085f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610856906140fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661087e611b63565b73ffffffffffffffffffffffffffffffffffffffff1614806108ad57506108ac816108a7611b63565b6114f8565b5b6108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e390613fba565b60405180910390fd5b6108f68383611b6b565b505050565b6000600880549050905090565b610919610913611b63565b82611c24565b610958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094f9061413a565b60405180910390fd5b610963838383611d02565b505050565b601060019054906101000a900460ff1681565b610983611b63565b73ffffffffffffffffffffffffffffffffffffffff166109a1610e06565b73ffffffffffffffffffffffffffffffffffffffff16146109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee906140ba565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000610a2e83610cb3565b8210610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690613e5a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ad0611b63565b73ffffffffffffffffffffffffffffffffffffffff16610aee610e06565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b906140ba565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610b8b83838360405180602001604052806000815250610ff1565b505050565b6000610b9a6108fb565b8210610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd29061415a565b60405180910390fd5b60088281548110610bef57610bee61468c565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190613ffa565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613fda565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d73611b63565b73ffffffffffffffffffffffffffffffffffffffff16610d91610e06565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906140ba565b60405180910390fd5b610df16000611f69565b565b600e60009054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e38611b63565b73ffffffffffffffffffffffffffffffffffffffff16610e56610e06565b73ffffffffffffffffffffffffffffffffffffffff1614610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906140ba565b60405180910390fd5b600e60009054906101000a900460ff1615610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef39061407a565b60405180910390fd5b81601360146101000a81548160ff02191690831515021790555082600c9080519060200190610f2c929190613193565b5080600d9080519060200190610f43929190613193565b50505050565b606060018054610f5890614496565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8490614496565b8015610fd15780601f10610fa657610100808354040283529160200191610fd1565b820191906000526020600020905b815481529060010190602001808311610fb457829003601f168201915b5050505050905090565b610fed610fe6611b63565b838361202f565b5050565b611002610ffc611b63565b83611c24565b611041576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110389061413a565b60405180910390fd5b61104d8484848461219c565b50505050565b6002600b541415611099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110909061419a565b60405180910390fd5b6002600b819055506110a9611b63565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90613e3a565b60405180910390fd5b601060009054906101000a900460ff16611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90613f5a565b60405180910390fd5b600260126000611173611b63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826111b991906142b4565b11156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f19061411a565b60405180910390fd5b600f54816112066108fb565b61121091906142b4565b1115611251576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112489061401a565b60405180910390fd5b3481600061125f919061433b565b11156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790613f3a565b60405180910390fd5b60005b8181101561134c5760006112b56108fb565b9050600f546112c26108fb565b1015611338576001601260006112d6611b63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461131f91906142b4565b92505081905550611337611331611b63565b826121f8565b5b508080611344906144f9565b9150506112a3565b506001600b8190555050565b606061136382611af7565b6113a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611399906140da565b60405180910390fd5b60006113ac612216565b9050601360149054906101000a900460ff16156114175760008151116113e1576040518060200160405280600081525061140f565b806113eb846122a8565b600d6040516020016113ff93929190613cba565b6040516020818303038152906040525b91505061145a565b60008151116114355760405180602001604052806000815250611456565b806040516020016114469190613ca3565b6040516020818303038152906040525b9150505b919050565b611467611b63565b73ffffffffffffffffffffffffffffffffffffffff16611485610e06565b73ffffffffffffffffffffffffffffffffffffffff16146114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d2906140ba565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b6115a7611b63565b73ffffffffffffffffffffffffffffffffffffffff166115c5610e06565b73ffffffffffffffffffffffffffffffffffffffff161461161b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611612906140ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561168b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168290613e9a565b60405180910390fd5b61169481611f69565b50565b600f5481565b6002600b5414156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da9061419a565b60405180910390fd5b6002600b819055506116f3611b63565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613e3a565b60405180910390fd5b601060019054906101000a900460ff166117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613f5a565b60405180910390fd5b6001601160006117bd611b63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361180391906142b4565b1115611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b9061411a565b60405180910390fd5b600f54826118506108fb565b61185a91906142b4565b111561189b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118929061401a565b60405180910390fd5b348260006118a9919061433b565b11156118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613f3a565b60405180910390fd5b60006119226118f7611b63565b6040516020016119079190613c88565b60405160208183030381529060405280519060200120612409565b905060006119308284612439565b9050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b99061417a565b60405180910390fd5b60005b84811015611a6e5760006119d76108fb565b9050600f546119e46108fb565b1015611a5a576001601160006119f8611b63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4191906142b4565b92505081905550611a59611a53611b63565b826121f8565b5b508080611a66906144f9565b9150506119c5565b5050506001600b819055505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611af05750611aef82612460565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bde83610c01565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c2f82611af7565b611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590613f9a565b60405180910390fd5b6000611c7983610c01565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ce857508373ffffffffffffffffffffffffffffffffffffffff16611cd08461075e565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cf95750611cf881856114f8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d2282610c01565b73ffffffffffffffffffffffffffffffffffffffff1614611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90613eba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf90613efa565b60405180910390fd5b611df3838383612542565b611dfe600082611b6b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4e9190614395565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ea591906142b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f64838383612552565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590613f1a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161218f9190613d78565b60405180910390a3505050565b6121a7848484611d02565b6121b384848484612557565b6121f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e990613e7a565b60405180910390fd5b50505050565b6122128282604051806020016040528060008152506126ee565b5050565b6060600c805461222590614496565b80601f016020809104026020016040519081016040528092919081815260200182805461225190614496565b801561229e5780601f106122735761010080835404028352916020019161229e565b820191906000526020600020905b81548152906001019060200180831161228157829003601f168201915b5050505050905090565b606060008214156122f0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612404565b600082905060005b6000821461232257808061230b906144f9565b915050600a8261231b919061430a565b91506122f8565b60008167ffffffffffffffff81111561233e5761233d6146bb565b5b6040519080825280601f01601f1916602001820160405280156123705781602001600182028036833780820191505090505b5090505b600085146123fd576001826123899190614395565b9150600a856123989190614570565b60306123a491906142b4565b60f81b8183815181106123ba576123b961468c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123f6919061430a565b9450612374565b8093505050505b919050565b60008160405160200161241c9190613ceb565b604051602081830303815290604052805190602001209050919050565b60008060006124488585612749565b91509150612455816127cc565b819250505092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061252b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061253b575061253a826129a1565b5b9050919050565b61254d838383612a0b565b505050565b505050565b60006125788473ffffffffffffffffffffffffffffffffffffffff16612b1f565b156126e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125a1611b63565b8786866040518563ffffffff1660e01b81526004016125c39493929190613d2c565b602060405180830381600087803b1580156125dd57600080fd5b505af192505050801561260e57506040513d601f19601f8201168201806040525081019061260b919061356f565b60015b612691573d806000811461263e576040519150601f19603f3d011682016040523d82523d6000602084013e612643565b606091505b50600081511415612689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268090613e7a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126e6565b600190505b949350505050565b6126f88383612b42565b6127056000848484612557565b612744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273b90613e7a565b60405180910390fd5b505050565b60008060418351141561278b5760008060006020860151925060408601519150606086015160001a905061277f87828585612d1c565b945094505050506127c5565b6040835114156127bc5760008060208501519150604085015190506127b1868383612e29565b9350935050506127c5565b60006002915091505b9250929050565b600060048111156127e0576127df6145ff565b5b8160048111156127f3576127f26145ff565b5b14156127fe5761299e565b60016004811115612812576128116145ff565b5b816004811115612825576128246145ff565b5b1415612866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285d90613dfa565b60405180910390fd5b6002600481111561287a576128796145ff565b5b81600481111561288d5761288c6145ff565b5b14156128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c590613e1a565b60405180910390fd5b600360048111156128e2576128e16145ff565b5b8160048111156128f5576128f46145ff565b5b1415612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d90613f7a565b60405180910390fd5b600480811115612949576129486145ff565b5b81600481111561295c5761295b6145ff565b5b141561299d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129949061403a565b60405180910390fd5b5b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a16838383612e88565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a5957612a5481612e8d565b612a98565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a9757612a968382612ed6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612adb57612ad681613043565b612b1a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b1957612b188282613114565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba99061405a565b60405180910390fd5b612bbb81611af7565b15612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf290613eda565b60405180910390fd5b612c0760008383612542565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c5791906142b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d1860008383612552565b5050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612d57576000600391509150612e20565b601b8560ff1614158015612d6f5750601c8560ff1614155b15612d81576000600491509150612e20565b600060018787878760405160008152602001604052604051612da69493929190613d93565b6020604051602081039080840390855afa158015612dc8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e1757600060019250925050612e20565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c612e6c91906142b4565b9050612e7a87828885612d1c565b935093505050935093915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ee384610cb3565b612eed9190614395565b9050600060076000848152602001908152602001600020549050818114612fd2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130579190614395565b90506000600960008481526020019081526020016000205490506000600883815481106130875761308661468c565b5b9060005260206000200154905080600883815481106130a9576130a861468c565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806130f8576130f761465d565b5b6001900381819060005260206000200160009055905550505050565b600061311f83610cb3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461319f90614496565b90600052602060002090601f0160209004810192826131c15760008555613208565b82601f106131da57805160ff1916838001178555613208565b82800160010185558215613208579182015b828111156132075782518255916020019190600101906131ec565b5b5090506132159190613219565b5090565b5b8082111561323257600081600090555060010161321a565b5090565b6000613249613244846141fa565b6141d5565b905082815260208101848484011115613265576132646146ef565b5b613270848285614454565b509392505050565b600061328b6132868461422b565b6141d5565b9050828152602081018484840111156132a7576132a66146ef565b5b6132b2848285614454565b509392505050565b6000813590506132c981614f31565b92915050565b6000813590506132de81614f48565b92915050565b6000813590506132f381614f5f565b92915050565b60008151905061330881614f5f565b92915050565b600082601f830112613323576133226146ea565b5b8135613333848260208601613236565b91505092915050565b600082601f830112613351576133506146ea565b5b8135613361848260208601613278565b91505092915050565b60008135905061337981614f76565b92915050565b600060208284031215613395576133946146f9565b5b60006133a3848285016132ba565b91505092915050565b600080604083850312156133c3576133c26146f9565b5b60006133d1858286016132ba565b92505060206133e2858286016132ba565b9150509250929050565b600080600060608486031215613405576134046146f9565b5b6000613413868287016132ba565b9350506020613424868287016132ba565b92505060406134358682870161336a565b9150509250925092565b60008060008060808587031215613459576134586146f9565b5b6000613467878288016132ba565b9450506020613478878288016132ba565b93505060406134898782880161336a565b925050606085013567ffffffffffffffff8111156134aa576134a96146f4565b5b6134b68782880161330e565b91505092959194509250565b600080604083850312156134d9576134d86146f9565b5b60006134e7858286016132ba565b92505060206134f8858286016132cf565b9150509250929050565b60008060408385031215613519576135186146f9565b5b6000613527858286016132ba565b92505060206135388582860161336a565b9150509250929050565b600060208284031215613558576135576146f9565b5b6000613566848285016132e4565b91505092915050565b600060208284031215613585576135846146f9565b5b6000613593848285016132f9565b91505092915050565b6000806000606084860312156135b5576135b46146f9565b5b600084013567ffffffffffffffff8111156135d3576135d26146f4565b5b6135df8682870161333c565b93505060206135f0868287016132cf565b925050604084013567ffffffffffffffff811115613611576136106146f4565b5b61361d8682870161333c565b9150509250925092565b60006020828403121561363d5761363c6146f9565b5b600061364b8482850161336a565b91505092915050565b6000806040838503121561366b5761366a6146f9565b5b60006136798582860161336a565b925050602083013567ffffffffffffffff81111561369a576136996146f4565b5b6136a68582860161330e565b9150509250929050565b6136b9816143c9565b82525050565b6136d06136cb826143c9565b614542565b82525050565b6136df816143db565b82525050565b6136ee816143e7565b82525050565b613705613700826143e7565b614554565b82525050565b600061371682614271565b6137208185614287565b9350613730818560208601614463565b613739816146fe565b840191505092915050565b600061374f8261427c565b6137598185614298565b9350613769818560208601614463565b613772816146fe565b840191505092915050565b60006137888261427c565b61379281856142a9565b93506137a2818560208601614463565b80840191505092915050565b600081546137bb81614496565b6137c581866142a9565b945060018216600081146137e057600181146137f157613824565b60ff19831686528186019350613824565b6137fa8561425c565b60005b8381101561381c578154818901526001820191506020810190506137fd565b838801955050505b50505092915050565b600061383a601883614298565b91506138458261471c565b602082019050919050565b600061385d601f83614298565b915061386882614745565b602082019050919050565b6000613880602b83614298565b915061388b8261476e565b604082019050919050565b60006138a3601c836142a9565b91506138ae826147bd565b601c82019050919050565b60006138c6602b83614298565b91506138d1826147e6565b604082019050919050565b60006138e9603283614298565b91506138f482614835565b604082019050919050565b600061390c602683614298565b915061391782614884565b604082019050919050565b600061392f602583614298565b915061393a826148d3565b604082019050919050565b6000613952601c83614298565b915061395d82614922565b602082019050919050565b6000613975602483614298565b91506139808261494b565b604082019050919050565b6000613998601983614298565b91506139a38261499a565b602082019050919050565b60006139bb601f83614298565b91506139c6826149c3565b602082019050919050565b60006139de602283614298565b91506139e9826149ec565b604082019050919050565b6000613a01602283614298565b9150613a0c82614a3b565b604082019050919050565b6000613a24602c83614298565b9150613a2f82614a8a565b604082019050919050565b6000613a47603883614298565b9150613a5282614ad9565b604082019050919050565b6000613a6a602a83614298565b9150613a7582614b28565b604082019050919050565b6000613a8d602983614298565b9150613a9882614b77565b604082019050919050565b6000613ab0602a83614298565b9150613abb82614bc6565b604082019050919050565b6000613ad3602283614298565b9150613ade82614c15565b604082019050919050565b6000613af6602083614298565b9150613b0182614c64565b602082019050919050565b6000613b19603d83614298565b9150613b2482614c8d565b604082019050919050565b6000613b3c602c83614298565b9150613b4782614cdc565b604082019050919050565b6000613b5f602083614298565b9150613b6a82614d2b565b602082019050919050565b6000613b82602f83614298565b9150613b8d82614d54565b604082019050919050565b6000613ba5602183614298565b9150613bb082614da3565b604082019050919050565b6000613bc8601b83614298565b9150613bd382614df2565b602082019050919050565b6000613beb603183614298565b9150613bf682614e1b565b604082019050919050565b6000613c0e602c83614298565b9150613c1982614e6a565b604082019050919050565b6000613c31602a83614298565b9150613c3c82614eb9565b604082019050919050565b6000613c54601f83614298565b9150613c5f82614f08565b602082019050919050565b613c738161443d565b82525050565b613c8281614447565b82525050565b6000613c9482846136bf565b60148201915081905092915050565b6000613caf828461377d565b915081905092915050565b6000613cc6828661377d565b9150613cd2828561377d565b9150613cde82846137ae565b9150819050949350505050565b6000613cf682613896565b9150613d0282846136f4565b60208201915081905092915050565b6000602082019050613d2660008301846136b0565b92915050565b6000608082019050613d4160008301876136b0565b613d4e60208301866136b0565b613d5b6040830185613c6a565b8181036060830152613d6d818461370b565b905095945050505050565b6000602082019050613d8d60008301846136d6565b92915050565b6000608082019050613da860008301876136e5565b613db56020830186613c79565b613dc260408301856136e5565b613dcf60608301846136e5565b95945050505050565b60006020820190508181036000830152613df28184613744565b905092915050565b60006020820190508181036000830152613e138161382d565b9050919050565b60006020820190508181036000830152613e3381613850565b9050919050565b60006020820190508181036000830152613e5381613873565b9050919050565b60006020820190508181036000830152613e73816138b9565b9050919050565b60006020820190508181036000830152613e93816138dc565b9050919050565b60006020820190508181036000830152613eb3816138ff565b9050919050565b60006020820190508181036000830152613ed381613922565b9050919050565b60006020820190508181036000830152613ef381613945565b9050919050565b60006020820190508181036000830152613f1381613968565b9050919050565b60006020820190508181036000830152613f338161398b565b9050919050565b60006020820190508181036000830152613f53816139ae565b9050919050565b60006020820190508181036000830152613f73816139d1565b9050919050565b60006020820190508181036000830152613f93816139f4565b9050919050565b60006020820190508181036000830152613fb381613a17565b9050919050565b60006020820190508181036000830152613fd381613a3a565b9050919050565b60006020820190508181036000830152613ff381613a5d565b9050919050565b6000602082019050818103600083015261401381613a80565b9050919050565b6000602082019050818103600083015261403381613aa3565b9050919050565b6000602082019050818103600083015261405381613ac6565b9050919050565b6000602082019050818103600083015261407381613ae9565b9050919050565b6000602082019050818103600083015261409381613b0c565b9050919050565b600060208201905081810360008301526140b381613b2f565b9050919050565b600060208201905081810360008301526140d381613b52565b9050919050565b600060208201905081810360008301526140f381613b75565b9050919050565b6000602082019050818103600083015261411381613b98565b9050919050565b6000602082019050818103600083015261413381613bbb565b9050919050565b6000602082019050818103600083015261415381613bde565b9050919050565b6000602082019050818103600083015261417381613c01565b9050919050565b6000602082019050818103600083015261419381613c24565b9050919050565b600060208201905081810360008301526141b381613c47565b9050919050565b60006020820190506141cf6000830184613c6a565b92915050565b60006141df6141f0565b90506141eb82826144c8565b919050565b6000604051905090565b600067ffffffffffffffff821115614215576142146146bb565b5b61421e826146fe565b9050602081019050919050565b600067ffffffffffffffff821115614246576142456146bb565b5b61424f826146fe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142bf8261443d565b91506142ca8361443d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142ff576142fe6145a1565b5b828201905092915050565b60006143158261443d565b91506143208361443d565b9250826143305761432f6145d0565b5b828204905092915050565b60006143468261443d565b91506143518361443d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561438a576143896145a1565b5b828202905092915050565b60006143a08261443d565b91506143ab8361443d565b9250828210156143be576143bd6145a1565b5b828203905092915050565b60006143d48261441d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614481578082015181840152602081019050614466565b83811115614490576000848401525b50505050565b600060028204905060018216806144ae57607f821691505b602082108114156144c2576144c161462e565b5b50919050565b6144d1826146fe565b810181811067ffffffffffffffff821117156144f0576144ef6146bb565b5b80604052505050565b60006145048261443d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614537576145366145a1565b5b600182019050919050565b600061454d8261455e565b9050919050565b6000819050919050565b60006145698261470f565b9050919050565b600061457b8261443d565b91506145868361443d565b925082614596576145956145d0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f546869732066756e6374696f6e206973206f6e6c792063616c6c61626c65206660008201527f726f6d20616e20454f412e000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f546865206d65746164617461205552492069732066726f7a656e2e20596f752060008201527f63616e206e6f206c6f6e67657220736574207468652062617365555249000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f546865207369676e617475726520666f722074686520677265656e6c6973742060008201527f697320696e76616c696400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614f3a816143c9565b8114614f4557600080fd5b50565b614f51816143db565b8114614f5c57600080fd5b50565b614f68816143f1565b8114614f7357600080fd5b50565b614f7f8161443d565b8114614f8a57600080fd5b5056fea2646970667358221220b9c6f1fa0d317a54083ddc480f3f0509e53fd8b9ba7c074c4e1991dc2959981664736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063c634d03211610095578063eb8d244411610064578063eb8d24441461061f578063f2fde38b1461064a578063f47c84c514610673578063f7f7bf7b1461069e576101c2565b8063c634d03214610572578063c87b56dd1461058e578063d111515d146105cb578063e985e9c5146105e2576101c2565b806393b15295116100d157806393b15295146104cc57806395d89b41146104f5578063a22cb46514610520578063b88d4fde14610549576101c2565b8063715018a61461045f5780638529ccad146104765780638da5cb5b146104a1576101c2565b80632da435f71161016457806342842e0e1161013e57806342842e0e1461037f5780634f6ccce7146103a85780636352211e146103e557806370a0823114610422576101c2565b80632da435f7146103145780632f745c591461032b57806334918dfd14610368576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632541865c146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190613542565b6106ba565b6040516101fb9190613d78565b60405180910390f35b34801561021057600080fd5b506102196106cc565b6040516102269190613dd8565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190613627565b61075e565b6040516102639190613d11565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190613502565b6107e3565b005b3480156102a157600080fd5b506102aa6108fb565b6040516102b791906141ba565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906133ec565b610908565b005b3480156102f557600080fd5b506102fe610968565b60405161030b9190613d78565b60405180910390f35b34801561032057600080fd5b5061032961097b565b005b34801561033757600080fd5b50610352600480360381019061034d9190613502565b610a23565b60405161035f91906141ba565b60405180910390f35b34801561037457600080fd5b5061037d610ac8565b005b34801561038b57600080fd5b506103a660048036038101906103a191906133ec565b610b70565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190613627565b610b90565b6040516103dc91906141ba565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190613627565b610c01565b6040516104199190613d11565b60405180910390f35b34801561042e57600080fd5b506104496004803603810190610444919061337f565b610cb3565b60405161045691906141ba565b60405180910390f35b34801561046b57600080fd5b50610474610d6b565b005b34801561048257600080fd5b5061048b610df3565b6040516104989190613d78565b60405180910390f35b3480156104ad57600080fd5b506104b6610e06565b6040516104c39190613d11565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee919061359c565b610e30565b005b34801561050157600080fd5b5061050a610f49565b6040516105179190613dd8565b60405180910390f35b34801561052c57600080fd5b50610547600480360381019061054291906134c2565b610fdb565b005b34801561055557600080fd5b50610570600480360381019061056b919061343f565b610ff1565b005b61058c60048036038101906105879190613627565b611053565b005b34801561059a57600080fd5b506105b560048036038101906105b09190613627565b611358565b6040516105c29190613dd8565b60405180910390f35b3480156105d757600080fd5b506105e061145f565b005b3480156105ee57600080fd5b50610609600480360381019061060491906133ac565b6114f8565b6040516106169190613d78565b60405180910390f35b34801561062b57600080fd5b5061063461158c565b6040516106419190613d78565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c919061337f565b61159f565b005b34801561067f57600080fd5b50610688611697565b60405161069591906141ba565b60405180910390f35b6106b860048036038101906106b39190613654565b61169d565b005b60006106c582611a7d565b9050919050565b6060600080546106db90614496565b80601f016020809104026020016040519081016040528092919081815260200182805461070790614496565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b5050505050905090565b600061076982611af7565b6107a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079f9061409a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ee82610c01565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561085f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610856906140fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661087e611b63565b73ffffffffffffffffffffffffffffffffffffffff1614806108ad57506108ac816108a7611b63565b6114f8565b5b6108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e390613fba565b60405180910390fd5b6108f68383611b6b565b505050565b6000600880549050905090565b610919610913611b63565b82611c24565b610958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094f9061413a565b60405180910390fd5b610963838383611d02565b505050565b601060019054906101000a900460ff1681565b610983611b63565b73ffffffffffffffffffffffffffffffffffffffff166109a1610e06565b73ffffffffffffffffffffffffffffffffffffffff16146109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee906140ba565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000610a2e83610cb3565b8210610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690613e5a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ad0611b63565b73ffffffffffffffffffffffffffffffffffffffff16610aee610e06565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b906140ba565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610b8b83838360405180602001604052806000815250610ff1565b505050565b6000610b9a6108fb565b8210610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd29061415a565b60405180910390fd5b60088281548110610bef57610bee61468c565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190613ffa565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613fda565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d73611b63565b73ffffffffffffffffffffffffffffffffffffffff16610d91610e06565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906140ba565b60405180910390fd5b610df16000611f69565b565b600e60009054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e38611b63565b73ffffffffffffffffffffffffffffffffffffffff16610e56610e06565b73ffffffffffffffffffffffffffffffffffffffff1614610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906140ba565b60405180910390fd5b600e60009054906101000a900460ff1615610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef39061407a565b60405180910390fd5b81601360146101000a81548160ff02191690831515021790555082600c9080519060200190610f2c929190613193565b5080600d9080519060200190610f43929190613193565b50505050565b606060018054610f5890614496565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8490614496565b8015610fd15780601f10610fa657610100808354040283529160200191610fd1565b820191906000526020600020905b815481529060010190602001808311610fb457829003601f168201915b5050505050905090565b610fed610fe6611b63565b838361202f565b5050565b611002610ffc611b63565b83611c24565b611041576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110389061413a565b60405180910390fd5b61104d8484848461219c565b50505050565b6002600b541415611099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110909061419a565b60405180910390fd5b6002600b819055506110a9611b63565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90613e3a565b60405180910390fd5b601060009054906101000a900460ff16611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90613f5a565b60405180910390fd5b600260126000611173611b63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826111b991906142b4565b11156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f19061411a565b60405180910390fd5b600f54816112066108fb565b61121091906142b4565b1115611251576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112489061401a565b60405180910390fd5b3481600061125f919061433b565b11156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790613f3a565b60405180910390fd5b60005b8181101561134c5760006112b56108fb565b9050600f546112c26108fb565b1015611338576001601260006112d6611b63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461131f91906142b4565b92505081905550611337611331611b63565b826121f8565b5b508080611344906144f9565b9150506112a3565b506001600b8190555050565b606061136382611af7565b6113a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611399906140da565b60405180910390fd5b60006113ac612216565b9050601360149054906101000a900460ff16156114175760008151116113e1576040518060200160405280600081525061140f565b806113eb846122a8565b600d6040516020016113ff93929190613cba565b6040516020818303038152906040525b91505061145a565b60008151116114355760405180602001604052806000815250611456565b806040516020016114469190613ca3565b6040516020818303038152906040525b9150505b919050565b611467611b63565b73ffffffffffffffffffffffffffffffffffffffff16611485610e06565b73ffffffffffffffffffffffffffffffffffffffff16146114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d2906140ba565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b6115a7611b63565b73ffffffffffffffffffffffffffffffffffffffff166115c5610e06565b73ffffffffffffffffffffffffffffffffffffffff161461161b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611612906140ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561168b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168290613e9a565b60405180910390fd5b61169481611f69565b50565b600f5481565b6002600b5414156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da9061419a565b60405180910390fd5b6002600b819055506116f3611b63565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613e3a565b60405180910390fd5b601060019054906101000a900460ff166117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613f5a565b60405180910390fd5b6001601160006117bd611b63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361180391906142b4565b1115611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b9061411a565b60405180910390fd5b600f54826118506108fb565b61185a91906142b4565b111561189b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118929061401a565b60405180910390fd5b348260006118a9919061433b565b11156118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613f3a565b60405180910390fd5b60006119226118f7611b63565b6040516020016119079190613c88565b60405160208183030381529060405280519060200120612409565b905060006119308284612439565b9050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b99061417a565b60405180910390fd5b60005b84811015611a6e5760006119d76108fb565b9050600f546119e46108fb565b1015611a5a576001601160006119f8611b63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4191906142b4565b92505081905550611a59611a53611b63565b826121f8565b5b508080611a66906144f9565b9150506119c5565b5050506001600b819055505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611af05750611aef82612460565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bde83610c01565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c2f82611af7565b611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590613f9a565b60405180910390fd5b6000611c7983610c01565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ce857508373ffffffffffffffffffffffffffffffffffffffff16611cd08461075e565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cf95750611cf881856114f8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d2282610c01565b73ffffffffffffffffffffffffffffffffffffffff1614611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90613eba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf90613efa565b60405180910390fd5b611df3838383612542565b611dfe600082611b6b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4e9190614395565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ea591906142b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f64838383612552565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590613f1a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161218f9190613d78565b60405180910390a3505050565b6121a7848484611d02565b6121b384848484612557565b6121f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e990613e7a565b60405180910390fd5b50505050565b6122128282604051806020016040528060008152506126ee565b5050565b6060600c805461222590614496565b80601f016020809104026020016040519081016040528092919081815260200182805461225190614496565b801561229e5780601f106122735761010080835404028352916020019161229e565b820191906000526020600020905b81548152906001019060200180831161228157829003601f168201915b5050505050905090565b606060008214156122f0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612404565b600082905060005b6000821461232257808061230b906144f9565b915050600a8261231b919061430a565b91506122f8565b60008167ffffffffffffffff81111561233e5761233d6146bb565b5b6040519080825280601f01601f1916602001820160405280156123705781602001600182028036833780820191505090505b5090505b600085146123fd576001826123899190614395565b9150600a856123989190614570565b60306123a491906142b4565b60f81b8183815181106123ba576123b961468c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123f6919061430a565b9450612374565b8093505050505b919050565b60008160405160200161241c9190613ceb565b604051602081830303815290604052805190602001209050919050565b60008060006124488585612749565b91509150612455816127cc565b819250505092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061252b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061253b575061253a826129a1565b5b9050919050565b61254d838383612a0b565b505050565b505050565b60006125788473ffffffffffffffffffffffffffffffffffffffff16612b1f565b156126e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125a1611b63565b8786866040518563ffffffff1660e01b81526004016125c39493929190613d2c565b602060405180830381600087803b1580156125dd57600080fd5b505af192505050801561260e57506040513d601f19601f8201168201806040525081019061260b919061356f565b60015b612691573d806000811461263e576040519150601f19603f3d011682016040523d82523d6000602084013e612643565b606091505b50600081511415612689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268090613e7a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126e6565b600190505b949350505050565b6126f88383612b42565b6127056000848484612557565b612744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273b90613e7a565b60405180910390fd5b505050565b60008060418351141561278b5760008060006020860151925060408601519150606086015160001a905061277f87828585612d1c565b945094505050506127c5565b6040835114156127bc5760008060208501519150604085015190506127b1868383612e29565b9350935050506127c5565b60006002915091505b9250929050565b600060048111156127e0576127df6145ff565b5b8160048111156127f3576127f26145ff565b5b14156127fe5761299e565b60016004811115612812576128116145ff565b5b816004811115612825576128246145ff565b5b1415612866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285d90613dfa565b60405180910390fd5b6002600481111561287a576128796145ff565b5b81600481111561288d5761288c6145ff565b5b14156128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c590613e1a565b60405180910390fd5b600360048111156128e2576128e16145ff565b5b8160048111156128f5576128f46145ff565b5b1415612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d90613f7a565b60405180910390fd5b600480811115612949576129486145ff565b5b81600481111561295c5761295b6145ff565b5b141561299d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129949061403a565b60405180910390fd5b5b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a16838383612e88565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a5957612a5481612e8d565b612a98565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a9757612a968382612ed6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612adb57612ad681613043565b612b1a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b1957612b188282613114565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba99061405a565b60405180910390fd5b612bbb81611af7565b15612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf290613eda565b60405180910390fd5b612c0760008383612542565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c5791906142b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d1860008383612552565b5050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612d57576000600391509150612e20565b601b8560ff1614158015612d6f5750601c8560ff1614155b15612d81576000600491509150612e20565b600060018787878760405160008152602001604052604051612da69493929190613d93565b6020604051602081039080840390855afa158015612dc8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e1757600060019250925050612e20565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c612e6c91906142b4565b9050612e7a87828885612d1c565b935093505050935093915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ee384610cb3565b612eed9190614395565b9050600060076000848152602001908152602001600020549050818114612fd2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130579190614395565b90506000600960008481526020019081526020016000205490506000600883815481106130875761308661468c565b5b9060005260206000200154905080600883815481106130a9576130a861468c565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806130f8576130f761465d565b5b6001900381819060005260206000200160009055905550505050565b600061311f83610cb3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461319f90614496565b90600052602060002090601f0160209004810192826131c15760008555613208565b82601f106131da57805160ff1916838001178555613208565b82800160010185558215613208579182015b828111156132075782518255916020019190600101906131ec565b5b5090506132159190613219565b5090565b5b8082111561323257600081600090555060010161321a565b5090565b6000613249613244846141fa565b6141d5565b905082815260208101848484011115613265576132646146ef565b5b613270848285614454565b509392505050565b600061328b6132868461422b565b6141d5565b9050828152602081018484840111156132a7576132a66146ef565b5b6132b2848285614454565b509392505050565b6000813590506132c981614f31565b92915050565b6000813590506132de81614f48565b92915050565b6000813590506132f381614f5f565b92915050565b60008151905061330881614f5f565b92915050565b600082601f830112613323576133226146ea565b5b8135613333848260208601613236565b91505092915050565b600082601f830112613351576133506146ea565b5b8135613361848260208601613278565b91505092915050565b60008135905061337981614f76565b92915050565b600060208284031215613395576133946146f9565b5b60006133a3848285016132ba565b91505092915050565b600080604083850312156133c3576133c26146f9565b5b60006133d1858286016132ba565b92505060206133e2858286016132ba565b9150509250929050565b600080600060608486031215613405576134046146f9565b5b6000613413868287016132ba565b9350506020613424868287016132ba565b92505060406134358682870161336a565b9150509250925092565b60008060008060808587031215613459576134586146f9565b5b6000613467878288016132ba565b9450506020613478878288016132ba565b93505060406134898782880161336a565b925050606085013567ffffffffffffffff8111156134aa576134a96146f4565b5b6134b68782880161330e565b91505092959194509250565b600080604083850312156134d9576134d86146f9565b5b60006134e7858286016132ba565b92505060206134f8858286016132cf565b9150509250929050565b60008060408385031215613519576135186146f9565b5b6000613527858286016132ba565b92505060206135388582860161336a565b9150509250929050565b600060208284031215613558576135576146f9565b5b6000613566848285016132e4565b91505092915050565b600060208284031215613585576135846146f9565b5b6000613593848285016132f9565b91505092915050565b6000806000606084860312156135b5576135b46146f9565b5b600084013567ffffffffffffffff8111156135d3576135d26146f4565b5b6135df8682870161333c565b93505060206135f0868287016132cf565b925050604084013567ffffffffffffffff811115613611576136106146f4565b5b61361d8682870161333c565b9150509250925092565b60006020828403121561363d5761363c6146f9565b5b600061364b8482850161336a565b91505092915050565b6000806040838503121561366b5761366a6146f9565b5b60006136798582860161336a565b925050602083013567ffffffffffffffff81111561369a576136996146f4565b5b6136a68582860161330e565b9150509250929050565b6136b9816143c9565b82525050565b6136d06136cb826143c9565b614542565b82525050565b6136df816143db565b82525050565b6136ee816143e7565b82525050565b613705613700826143e7565b614554565b82525050565b600061371682614271565b6137208185614287565b9350613730818560208601614463565b613739816146fe565b840191505092915050565b600061374f8261427c565b6137598185614298565b9350613769818560208601614463565b613772816146fe565b840191505092915050565b60006137888261427c565b61379281856142a9565b93506137a2818560208601614463565b80840191505092915050565b600081546137bb81614496565b6137c581866142a9565b945060018216600081146137e057600181146137f157613824565b60ff19831686528186019350613824565b6137fa8561425c565b60005b8381101561381c578154818901526001820191506020810190506137fd565b838801955050505b50505092915050565b600061383a601883614298565b91506138458261471c565b602082019050919050565b600061385d601f83614298565b915061386882614745565b602082019050919050565b6000613880602b83614298565b915061388b8261476e565b604082019050919050565b60006138a3601c836142a9565b91506138ae826147bd565b601c82019050919050565b60006138c6602b83614298565b91506138d1826147e6565b604082019050919050565b60006138e9603283614298565b91506138f482614835565b604082019050919050565b600061390c602683614298565b915061391782614884565b604082019050919050565b600061392f602583614298565b915061393a826148d3565b604082019050919050565b6000613952601c83614298565b915061395d82614922565b602082019050919050565b6000613975602483614298565b91506139808261494b565b604082019050919050565b6000613998601983614298565b91506139a38261499a565b602082019050919050565b60006139bb601f83614298565b91506139c6826149c3565b602082019050919050565b60006139de602283614298565b91506139e9826149ec565b604082019050919050565b6000613a01602283614298565b9150613a0c82614a3b565b604082019050919050565b6000613a24602c83614298565b9150613a2f82614a8a565b604082019050919050565b6000613a47603883614298565b9150613a5282614ad9565b604082019050919050565b6000613a6a602a83614298565b9150613a7582614b28565b604082019050919050565b6000613a8d602983614298565b9150613a9882614b77565b604082019050919050565b6000613ab0602a83614298565b9150613abb82614bc6565b604082019050919050565b6000613ad3602283614298565b9150613ade82614c15565b604082019050919050565b6000613af6602083614298565b9150613b0182614c64565b602082019050919050565b6000613b19603d83614298565b9150613b2482614c8d565b604082019050919050565b6000613b3c602c83614298565b9150613b4782614cdc565b604082019050919050565b6000613b5f602083614298565b9150613b6a82614d2b565b602082019050919050565b6000613b82602f83614298565b9150613b8d82614d54565b604082019050919050565b6000613ba5602183614298565b9150613bb082614da3565b604082019050919050565b6000613bc8601b83614298565b9150613bd382614df2565b602082019050919050565b6000613beb603183614298565b9150613bf682614e1b565b604082019050919050565b6000613c0e602c83614298565b9150613c1982614e6a565b604082019050919050565b6000613c31602a83614298565b9150613c3c82614eb9565b604082019050919050565b6000613c54601f83614298565b9150613c5f82614f08565b602082019050919050565b613c738161443d565b82525050565b613c8281614447565b82525050565b6000613c9482846136bf565b60148201915081905092915050565b6000613caf828461377d565b915081905092915050565b6000613cc6828661377d565b9150613cd2828561377d565b9150613cde82846137ae565b9150819050949350505050565b6000613cf682613896565b9150613d0282846136f4565b60208201915081905092915050565b6000602082019050613d2660008301846136b0565b92915050565b6000608082019050613d4160008301876136b0565b613d4e60208301866136b0565b613d5b6040830185613c6a565b8181036060830152613d6d818461370b565b905095945050505050565b6000602082019050613d8d60008301846136d6565b92915050565b6000608082019050613da860008301876136e5565b613db56020830186613c79565b613dc260408301856136e5565b613dcf60608301846136e5565b95945050505050565b60006020820190508181036000830152613df28184613744565b905092915050565b60006020820190508181036000830152613e138161382d565b9050919050565b60006020820190508181036000830152613e3381613850565b9050919050565b60006020820190508181036000830152613e5381613873565b9050919050565b60006020820190508181036000830152613e73816138b9565b9050919050565b60006020820190508181036000830152613e93816138dc565b9050919050565b60006020820190508181036000830152613eb3816138ff565b9050919050565b60006020820190508181036000830152613ed381613922565b9050919050565b60006020820190508181036000830152613ef381613945565b9050919050565b60006020820190508181036000830152613f1381613968565b9050919050565b60006020820190508181036000830152613f338161398b565b9050919050565b60006020820190508181036000830152613f53816139ae565b9050919050565b60006020820190508181036000830152613f73816139d1565b9050919050565b60006020820190508181036000830152613f93816139f4565b9050919050565b60006020820190508181036000830152613fb381613a17565b9050919050565b60006020820190508181036000830152613fd381613a3a565b9050919050565b60006020820190508181036000830152613ff381613a5d565b9050919050565b6000602082019050818103600083015261401381613a80565b9050919050565b6000602082019050818103600083015261403381613aa3565b9050919050565b6000602082019050818103600083015261405381613ac6565b9050919050565b6000602082019050818103600083015261407381613ae9565b9050919050565b6000602082019050818103600083015261409381613b0c565b9050919050565b600060208201905081810360008301526140b381613b2f565b9050919050565b600060208201905081810360008301526140d381613b52565b9050919050565b600060208201905081810360008301526140f381613b75565b9050919050565b6000602082019050818103600083015261411381613b98565b9050919050565b6000602082019050818103600083015261413381613bbb565b9050919050565b6000602082019050818103600083015261415381613bde565b9050919050565b6000602082019050818103600083015261417381613c01565b9050919050565b6000602082019050818103600083015261419381613c24565b9050919050565b600060208201905081810360008301526141b381613c47565b9050919050565b60006020820190506141cf6000830184613c6a565b92915050565b60006141df6141f0565b90506141eb82826144c8565b919050565b6000604051905090565b600067ffffffffffffffff821115614215576142146146bb565b5b61421e826146fe565b9050602081019050919050565b600067ffffffffffffffff821115614246576142456146bb565b5b61424f826146fe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142bf8261443d565b91506142ca8361443d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142ff576142fe6145a1565b5b828201905092915050565b60006143158261443d565b91506143208361443d565b9250826143305761432f6145d0565b5b828204905092915050565b60006143468261443d565b91506143518361443d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561438a576143896145a1565b5b828202905092915050565b60006143a08261443d565b91506143ab8361443d565b9250828210156143be576143bd6145a1565b5b828203905092915050565b60006143d48261441d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614481578082015181840152602081019050614466565b83811115614490576000848401525b50505050565b600060028204905060018216806144ae57607f821691505b602082108114156144c2576144c161462e565b5b50919050565b6144d1826146fe565b810181811067ffffffffffffffff821117156144f0576144ef6146bb565b5b80604052505050565b60006145048261443d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614537576145366145a1565b5b600182019050919050565b600061454d8261455e565b9050919050565b6000819050919050565b60006145698261470f565b9050919050565b600061457b8261443d565b91506145868361443d565b925082614596576145956145d0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f546869732066756e6374696f6e206973206f6e6c792063616c6c61626c65206660008201527f726f6d20616e20454f412e000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f546865206d65746164617461205552492069732066726f7a656e2e20596f752060008201527f63616e206e6f206c6f6e67657220736574207468652062617365555249000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f546865207369676e617475726520666f722074686520677265656e6c6973742060008201527f697320696e76616c696400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614f3a816143c9565b8114614f4557600080fd5b50565b614f51816143db565b8114614f5c57600080fd5b50565b614f68816143f1565b8114614f7357600080fd5b50565b614f7f8161443d565b8114614f8a57600080fd5b5056fea2646970667358221220b9c6f1fa0d317a54083ddc480f3f0509e53fd8b9ba7c074c4e1991dc2959981664736f6c63430008070033
Deployed Bytecode Sourcemap
57985:4365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58788:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22665:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24224:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23747:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40107:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24974:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58302:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59090:120;;;;;;;;;;;;;:::i;:::-;;39775:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58981:93;;;;;;;;;;;;;:::i;:::-;;25384:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40297:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22359:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22089:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36551:103;;;;;;;;;;;;;:::i;:::-;;58183:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35900:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59220:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22834:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24517:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25640:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60323:829;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59784:525;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59691:85;;;;;;;;;;;;;:::i;:::-;;24743:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58263:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36809:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58224:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61168:1163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58788:179;58899:4;58923:36;58947:11;58923:23;:36::i;:::-;58916:43;;58788:179;;;:::o;22665:100::-;22719:13;22752:5;22745:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22665:100;:::o;24224:221::-;24300:7;24328:16;24336:7;24328;:16::i;:::-;24320:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24413:15;:24;24429:7;24413:24;;;;;;;;;;;;;;;;;;;;;24406:31;;24224:221;;;:::o;23747:411::-;23828:13;23844:23;23859:7;23844:14;:23::i;:::-;23828:39;;23892:5;23886:11;;:2;:11;;;;23878:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23986:5;23970:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23995:37;24012:5;24019:12;:10;:12::i;:::-;23995:16;:37::i;:::-;23970:62;23948:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24129:21;24138:2;24142:7;24129:8;:21::i;:::-;23817:341;23747:411;;:::o;40107:113::-;40168:7;40195:10;:17;;;;40188:24;;40107:113;:::o;24974:339::-;25169:41;25188:12;:10;:12::i;:::-;25202:7;25169:18;:41::i;:::-;25161:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25277:28;25287:4;25293:2;25297:7;25277:9;:28::i;:::-;24974:339;;;:::o;58302:41::-;;;;;;;;;;;;;:::o;59090:120::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59181:21:::1;;;;;;;;;;;59180:22;59156:21;;:46;;;;;;;;;;;;;;;;;;59090:120::o:0;39775:256::-;39872:7;39908:23;39925:5;39908:16;:23::i;:::-;39900:5;:31;39892:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39997:12;:19;40010:5;39997:19;;;;;;;;;;;;;;;:26;40017:5;39997:26;;;;;;;;;;;;39990:33;;39775:256;;;;:::o;58981:93::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59054:12:::1;;;;;;;;;;;59053:13;59038:12;;:28;;;;;;;;;;;;;;;;;;58981:93::o:0;25384:185::-;25522:39;25539:4;25545:2;25549:7;25522:39;;;;;;;;;;;;:16;:39::i;:::-;25384:185;;;:::o;40297:233::-;40372:7;40408:30;:28;:30::i;:::-;40400:5;:38;40392:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40505:10;40516:5;40505:17;;;;;;;;:::i;:::-;;;;;;;;;;40498:24;;40297:233;;;:::o;22359:239::-;22431:7;22451:13;22467:7;:16;22475:7;22467:16;;;;;;;;;;;;;;;;;;;;;22451:32;;22519:1;22502:19;;:5;:19;;;;22494:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22585:5;22578:12;;;22359:239;;;:::o;22089:208::-;22161:7;22206:1;22189:19;;:5;:19;;;;22181:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22273:9;:16;22283:5;22273:16;;;;;;;;;;;;;;;;22266:23;;22089:208;;;:::o;36551:103::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36616:30:::1;36643:1;36616:18;:30::i;:::-;36551:103::o:0;58183:34::-;;;;;;;;;;;;;:::o;35900:87::-;35946:7;35973:6;;;;;;;;;;;35966:13;;35900:87;:::o;59220:338::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59348:14:::1;;;;;;;;;;;59347:15;59339:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;59464:14;59439:22;;:39;;;;;;;;;;;;;;;;;;59508:8;59489:16;:27;;;;;;;;;;;;:::i;:::-;;59544:6;59527:14;:23;;;;;;;;;;;;:::i;:::-;;59220:338:::0;;;:::o;22834:104::-;22890:13;22923:7;22916:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22834:104;:::o;24517:155::-;24612:52;24631:12;:10;:12::i;:::-;24645:8;24655;24612:18;:52::i;:::-;24517:155;;:::o;25640:328::-;25815:41;25834:12;:10;:12::i;:::-;25848:7;25815:18;:41::i;:::-;25807:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25921:39;25935:4;25941:2;25945:7;25954:5;25921:13;:39::i;:::-;25640:328;;;;:::o;60323:829::-;47431:1;48029:7;;:19;;48021:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47431:1;48162:7;:18;;;;60423:12:::1;:10;:12::i;:::-;60410:25;;:9;:25;;;60402:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;60502:12;;;;;;;;;;;60494:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;60628:1;60589:21;:35;60611:12;:10;:12::i;:::-;60589:35;;;;;;;;;;;;;;;;60572:14;:52;;;;:::i;:::-;:57;;60564:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;60716:10;;60698:14;60682:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;60674:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;60814:9;60796:14;60792:1;:18;;;;:::i;:::-;:31;;60784:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;60877:6;60872:273;60893:14;60889:1;:18;60872:273;;;60929:14;60946:13;:11;:13::i;:::-;60929:30;;60994:10;;60978:13;:11;:13::i;:::-;:26;60974:160;;;61064:1;61025:21;:35;61047:12;:10;:12::i;:::-;61025:35;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;61084:34;61094:12;:10;:12::i;:::-;61108:9;61084;:34::i;:::-;60974:160;60914:231;60909:3;;;;;:::i;:::-;;;;60872:273;;;;47387:1:::0;48341:7;:22;;;;60323:829;:::o;59784:525::-;59857:13;59891:16;59899:7;59891;:16::i;:::-;59883:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;59972:21;59996:10;:8;:10::i;:::-;59972:34;;60021:22;;;;;;;;;;;60017:285;;;60091:1;60073:7;60067:21;:25;:109;;;;;;;;;;;;;;;;;60119:7;60128:25;60145:7;60128:16;:25::i;:::-;60155:14;60102:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60067:109;60060:116;;;;;60017:285;60248:1;60230:7;60224:21;:25;:66;;;;;;;;;;;;;;;;;60276:7;60259:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;60224:66;60217:73;;;59784:525;;;;:::o;59691:85::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59764:4:::1;59747:14;;:21;;;;;;;;;;;;;;;;;;59691:85::o:0;24743:164::-;24840:4;24864:18;:25;24883:5;24864:25;;;;;;;;;;;;;;;:35;24890:8;24864:35;;;;;;;;;;;;;;;;;;;;;;;;;24857:42;;24743:164;;;;:::o;58263:32::-;;;;;;;;;;;;;:::o;36809:201::-;36131:12;:10;:12::i;:::-;36120:23;;:7;:5;:7::i;:::-;:23;;;36112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36918:1:::1;36898:22;;:8;:22;;;;36890:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36974:28;36993:8;36974:18;:28::i;:::-;36809:201:::0;:::o;58224:32::-;;;;:::o;61168:1163::-;47431:1;48029:7;;:19;;48021:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47431:1;48162:7;:18;;;;61301:12:::1;:10;:12::i;:::-;61288:25;;:9;:25;;;61280:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;61380:21;;;;;;;;;;;61372:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61524:1;61476:30;:44;61507:12;:10;:12::i;:::-;61476:44;;;;;;;;;;;;;;;;61459:14;:61;;;;:::i;:::-;:66;;61451:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;61610:10;;61592:14;61576:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;61568:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;61708:9;61690:14;61686:1;:18;;;;:::i;:::-;:31;;61678:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;61766:20;61789:71;61845:12;:10;:12::i;:::-;61828:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;61818:41;;;;;;61789:28;:71::i;:::-;61766:94;;61871:24;61898:38;61912:12;61926:9;61898:13;:38::i;:::-;61871:65;;61975:7;;;;;;;;;;;61955:27;;:16;:27;;;61947:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;62047:6;62042:282;62063:14;62059:1;:18;62042:282;;;62099:14;62116:13;:11;:13::i;:::-;62099:30;;62164:10;;62148:13;:11;:13::i;:::-;:26;62144:169;;;62243:1;62195:30;:44;62226:12;:10;:12::i;:::-;62195:44;;;;;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;;62263:34;62273:12;:10;:12::i;:::-;62287:9;62263;:34::i;:::-;62144:169;62084:240;62079:3;;;;;:::i;:::-;;;;62042:282;;;;61269:1062;;47387:1:::0;48341:7;:22;;;;61168:1163;;:::o;39467:224::-;39569:4;39608:35;39593:50;;;:11;:50;;;;:90;;;;39647:36;39671:11;39647:23;:36::i;:::-;39593:90;39586:97;;39467:224;;;:::o;27478:127::-;27543:4;27595:1;27567:30;;:7;:16;27575:7;27567:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27560:37;;27478:127;;;:::o;16932:98::-;16985:7;17012:10;17005:17;;16932:98;:::o;31624:174::-;31726:2;31699:15;:24;31715:7;31699:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31782:7;31778:2;31744:46;;31753:23;31768:7;31753:14;:23::i;:::-;31744:46;;;;;;;;;;;;31624:174;;:::o;27772:348::-;27865:4;27890:16;27898:7;27890;:16::i;:::-;27882:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27966:13;27982:23;27997:7;27982:14;:23::i;:::-;27966:39;;28035:5;28024:16;;:7;:16;;;:51;;;;28068:7;28044:31;;:20;28056:7;28044:11;:20::i;:::-;:31;;;28024:51;:87;;;;28079:32;28096:5;28103:7;28079:16;:32::i;:::-;28024:87;28016:96;;;27772:348;;;;:::o;30881:625::-;31040:4;31013:31;;:23;31028:7;31013:14;:23::i;:::-;:31;;;31005:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31119:1;31105:16;;:2;:16;;;;31097:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31175:39;31196:4;31202:2;31206:7;31175:20;:39::i;:::-;31279:29;31296:1;31300:7;31279:8;:29::i;:::-;31340:1;31321:9;:15;31331:4;31321:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31369:1;31352:9;:13;31362:2;31352:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31400:2;31381:7;:16;31389:7;31381:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31439:7;31435:2;31420:27;;31429:4;31420:27;;;;;;;;;;;;31460:38;31480:4;31486:2;31490:7;31460:19;:38::i;:::-;30881:625;;;:::o;37170:191::-;37244:16;37263:6;;;;;;;;;;;37244:25;;37289:8;37280:6;;:17;;;;;;;;;;;;;;;;;;37344:8;37313:40;;37334:8;37313:40;;;;;;;;;;;;37233:128;37170:191;:::o;31940:315::-;32095:8;32086:17;;:5;:17;;;;32078:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32182:8;32144:18;:25;32163:5;32144:25;;;;;;;;;;;;;;;:35;32170:8;32144:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32228:8;32206:41;;32221:5;32206:41;;;32238:8;32206:41;;;;;;:::i;:::-;;;;;;;;31940:315;;;:::o;26850:::-;27007:28;27017:4;27023:2;27027:7;27007:9;:28::i;:::-;27054:48;27077:4;27083:2;27087:7;27096:5;27054:22;:48::i;:::-;27046:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26850:315;;;;:::o;28462:110::-;28538:26;28548:2;28552:7;28538:26;;;;;;;;;;;;:9;:26::i;:::-;28462:110;;:::o;59566:117::-;59626:13;59659:16;59652:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59566:117;:::o;17517:723::-;17573:13;17803:1;17794:5;:10;17790:53;;;17821:10;;;;;;;;;;;;;;;;;;;;;17790:53;17853:12;17868:5;17853:20;;17884:14;17909:78;17924:1;17916:4;:9;17909:78;;17942:8;;;;;:::i;:::-;;;;17973:2;17965:10;;;;;:::i;:::-;;;17909:78;;;17997:19;18029:6;18019:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17997:39;;18047:154;18063:1;18054:5;:10;18047:154;;18091:1;18081:11;;;;;:::i;:::-;;;18158:2;18150:5;:10;;;;:::i;:::-;18137:2;:24;;;;:::i;:::-;18124:39;;18107:6;18114;18107:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18187:2;18178:11;;;;;:::i;:::-;;;18047:154;;;18225:6;18211:21;;;;;17517:723;;;;:::o;56601:269::-;56670:7;56856:4;56803:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;56793:69;;;;;;56786:76;;56601:269;;;:::o;52799:231::-;52877:7;52898:17;52917:18;52939:27;52950:4;52956:9;52939:10;:27::i;:::-;52897:69;;;;52977:18;52989:5;52977:11;:18::i;:::-;53013:9;53006:16;;;;52799:231;;;;:::o;21720:305::-;21822:4;21874:25;21859:40;;;:11;:40;;;;:105;;;;21931:33;21916:48;;;:11;:48;;;;21859:105;:158;;;;21981:36;22005:11;21981:23;:36::i;:::-;21859:158;21839:178;;21720:305;;;:::o;58599:181::-;58727:45;58754:4;58760:2;58764:7;58727:26;:45::i;:::-;58599:181;;;:::o;34702:125::-;;;;:::o;32820:799::-;32975:4;32996:15;:2;:13;;;:15::i;:::-;32992:620;;;33048:2;33032:36;;;33069:12;:10;:12::i;:::-;33083:4;33089:7;33098:5;33032:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33028:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33291:1;33274:6;:13;:18;33270:272;;;33317:60;;;;;;;;;;:::i;:::-;;;;;;;;33270:272;33492:6;33486:13;33477:6;33473:2;33469:15;33462:38;33028:529;33165:41;;;33155:51;;;:6;:51;;;;33148:58;;;;;32992:620;33596:4;33589:11;;32820:799;;;;;;;:::o;28799:321::-;28929:18;28935:2;28939:7;28929:5;:18::i;:::-;28980:54;29011:1;29015:2;29019:7;29028:5;28980:22;:54::i;:::-;28958:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28799:321;;;:::o;50689:1308::-;50770:7;50779:12;51024:2;51004:9;:16;:22;51000:990;;;51043:9;51067;51091:7;51300:4;51289:9;51285:20;51279:27;51274:32;;51350:4;51339:9;51335:20;51329:27;51324:32;;51408:4;51397:9;51393:20;51387:27;51384:1;51379:36;51374:41;;51451:25;51462:4;51468:1;51471;51474;51451:10;:25::i;:::-;51444:32;;;;;;;;;51000:990;51518:2;51498:9;:16;:22;51494:496;;;51537:9;51561:10;51773:4;51762:9;51758:20;51752:27;51747:32;;51824:4;51813:9;51809:20;51803:27;51797:33;;51866:23;51877:4;51883:1;51886:2;51866:10;:23::i;:::-;51859:30;;;;;;;;51494:496;51938:1;51942:35;51922:56;;;;50689:1308;;;;;;:::o;48960:643::-;49038:20;49029:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;49025:571;;;49075:7;;49025:571;49136:29;49127:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;49123:473;;;49182:34;;;;;;;;;;:::i;:::-;;;;;;;;49123:473;49247:35;49238:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;49234:362;;;49299:41;;;;;;;;;;:::i;:::-;;;;;;;;49234:362;49371:30;49362:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;49358:238;;;49418:44;;;;;;;;;;:::i;:::-;;;;;;;;49358:238;49493:30;49484:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;49480:116;;;49540:44;;;;;;;;;;:::i;:::-;;;;;;;;49480:116;48960:643;;:::o;20145:157::-;20230:4;20269:25;20254:40;;;:11;:40;;;;20247:47;;20145:157;;;:::o;41143:589::-;41287:45;41314:4;41320:2;41324:7;41287:26;:45::i;:::-;41365:1;41349:18;;:4;:18;;;41345:187;;;41384:40;41416:7;41384:31;:40::i;:::-;41345:187;;;41454:2;41446:10;;:4;:10;;;41442:90;;41473:47;41506:4;41512:7;41473:32;:47::i;:::-;41442:90;41345:187;41560:1;41546:16;;:2;:16;;;41542:183;;;41579:45;41616:7;41579:36;:45::i;:::-;41542:183;;;41652:4;41646:10;;:2;:10;;;41642:83;;41673:40;41701:2;41705:7;41673:27;:40::i;:::-;41642:83;41542:183;41143:589;;;:::o;8977:326::-;9037:4;9294:1;9272:7;:19;;;:23;9265:30;;8977:326;;;:::o;29456:439::-;29550:1;29536:16;;:2;:16;;;;29528:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29609:16;29617:7;29609;:16::i;:::-;29608:17;29600:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29671:45;29700:1;29704:2;29708:7;29671:20;:45::i;:::-;29746:1;29729:9;:13;29739:2;29729:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29777:2;29758:7;:16;29766:7;29758:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29822:7;29818:2;29797:33;;29814:1;29797:33;;;;;;;;;;;;29843:44;29871:1;29875:2;29879:7;29843:19;:44::i;:::-;29456:439;;:::o;54251:1632::-;54382:7;54391:12;55316:66;55311:1;55303:10;;:79;55299:163;;;55415:1;55419:30;55399:51;;;;;;55299:163;55481:2;55476:1;:7;;;;:18;;;;;55492:2;55487:1;:7;;;;55476:18;55472:102;;;55527:1;55531:30;55511:51;;;;;;55472:102;55671:14;55688:24;55698:4;55704:1;55707;55710;55688:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55671:41;;55745:1;55727:20;;:6;:20;;;55723:103;;;55780:1;55784:29;55764:50;;;;;;;55723:103;55846:6;55854:20;55838:37;;;;;54251:1632;;;;;;;;:::o;53293:344::-;53407:7;53416:12;53441:9;53466:66;53458:75;;53453:2;:80;53441:92;;53544:7;53583:2;53576:3;53569:2;53561:11;;:18;;53560:25;;;;:::i;:::-;53544:42;;53604:25;53615:4;53621:1;53624;53627;53604:10;:25::i;:::-;53597:32;;;;;;53293:344;;;;;;:::o;34191:126::-;;;;:::o;42455:164::-;42559:10;:17;;;;42532:15;:24;42548:7;42532:24;;;;;;;;;;;:44;;;;42587:10;42603:7;42587:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42455:164;:::o;43246:988::-;43512:22;43562:1;43537:22;43554:4;43537:16;:22::i;:::-;:26;;;;:::i;:::-;43512:51;;43574:18;43595:17;:26;43613:7;43595:26;;;;;;;;;;;;43574:47;;43742:14;43728:10;:28;43724:328;;43773:19;43795:12;:18;43808:4;43795:18;;;;;;;;;;;;;;;:34;43814:14;43795:34;;;;;;;;;;;;43773:56;;43879:11;43846:12;:18;43859:4;43846:18;;;;;;;;;;;;;;;:30;43865:10;43846:30;;;;;;;;;;;:44;;;;43996:10;43963:17;:30;43981:11;43963:30;;;;;;;;;;;:43;;;;43758:294;43724:328;44148:17;:26;44166:7;44148:26;;;;;;;;;;;44141:33;;;44192:12;:18;44205:4;44192:18;;;;;;;;;;;;;;;:34;44211:14;44192:34;;;;;;;;;;;44185:41;;;43327:907;;43246:988;;:::o;44529:1079::-;44782:22;44827:1;44807:10;:17;;;;:21;;;;:::i;:::-;44782:46;;44839:18;44860:15;:24;44876:7;44860:24;;;;;;;;;;;;44839:45;;45211:19;45233:10;45244:14;45233:26;;;;;;;;:::i;:::-;;;;;;;;;;45211:48;;45297:11;45272:10;45283;45272:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45408:10;45377:15;:28;45393:11;45377:28;;;;;;;;;;;:41;;;;45549:15;:24;45565:7;45549:24;;;;;;;;;;;45542:31;;;45584:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44600:1008;;;44529:1079;:::o;42033:221::-;42118:14;42135:20;42152:2;42135:16;:20::i;:::-;42118:37;;42193:7;42166:12;:16;42179:2;42166:16;;;;;;;;;;;;;;;:24;42183:6;42166:24;;;;;;;;;;;:34;;;;42240:6;42211:17;:26;42229:7;42211:26;;;;;;;;;;;:35;;;;42107:147;42033:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:973::-;6402:6;6410;6418;6467:2;6455:9;6446:7;6442:23;6438:32;6435:119;;;6473:79;;:::i;:::-;6435:119;6621:1;6610:9;6606:17;6593:31;6651:18;6643:6;6640:30;6637:117;;;6673:79;;:::i;:::-;6637:117;6778:63;6833:7;6824:6;6813:9;6809:22;6778:63;:::i;:::-;6768:73;;6564:287;6890:2;6916:50;6958:7;6949:6;6938:9;6934:22;6916:50;:::i;:::-;6906:60;;6861:115;7043:2;7032:9;7028:18;7015:32;7074:18;7066:6;7063:30;7060:117;;;7096:79;;:::i;:::-;7060:117;7201:63;7256:7;7247:6;7236:9;7232:22;7201:63;:::i;:::-;7191:73;;6986:288;6308:973;;;;;:::o;7287:329::-;7346:6;7395:2;7383:9;7374:7;7370:23;7366:32;7363:119;;;7401:79;;:::i;:::-;7363:119;7521:1;7546:53;7591:7;7582:6;7571:9;7567:22;7546:53;:::i;:::-;7536:63;;7492:117;7287:329;;;;:::o;7622:652::-;7699:6;7707;7756:2;7744:9;7735:7;7731:23;7727:32;7724:119;;;7762:79;;:::i;:::-;7724:119;7882:1;7907:53;7952:7;7943:6;7932:9;7928:22;7907:53;:::i;:::-;7897:63;;7853:117;8037:2;8026:9;8022:18;8009:32;8068:18;8060:6;8057:30;8054:117;;;8090:79;;:::i;:::-;8054:117;8195:62;8249:7;8240:6;8229:9;8225:22;8195:62;:::i;:::-;8185:72;;7980:287;7622:652;;;;;:::o;8280:118::-;8367:24;8385:5;8367:24;:::i;:::-;8362:3;8355:37;8280:118;;:::o;8404:157::-;8509:45;8529:24;8547:5;8529:24;:::i;:::-;8509:45;:::i;:::-;8504:3;8497:58;8404:157;;:::o;8567:109::-;8648:21;8663:5;8648:21;:::i;:::-;8643:3;8636:34;8567:109;;:::o;8682:118::-;8769:24;8787:5;8769:24;:::i;:::-;8764:3;8757:37;8682:118;;:::o;8806:157::-;8911:45;8931:24;8949:5;8931:24;:::i;:::-;8911:45;:::i;:::-;8906:3;8899:58;8806:157;;:::o;8969:360::-;9055:3;9083:38;9115:5;9083:38;:::i;:::-;9137:70;9200:6;9195:3;9137:70;:::i;:::-;9130:77;;9216:52;9261:6;9256:3;9249:4;9242:5;9238:16;9216:52;:::i;:::-;9293:29;9315:6;9293:29;:::i;:::-;9288:3;9284:39;9277:46;;9059:270;8969:360;;;;:::o;9335:364::-;9423:3;9451:39;9484:5;9451:39;:::i;:::-;9506:71;9570:6;9565:3;9506:71;:::i;:::-;9499:78;;9586:52;9631:6;9626:3;9619:4;9612:5;9608:16;9586:52;:::i;:::-;9663:29;9685:6;9663:29;:::i;:::-;9658:3;9654:39;9647:46;;9427:272;9335:364;;;;:::o;9705:377::-;9811:3;9839:39;9872:5;9839:39;:::i;:::-;9894:89;9976:6;9971:3;9894:89;:::i;:::-;9887:96;;9992:52;10037:6;10032:3;10025:4;10018:5;10014:16;9992:52;:::i;:::-;10069:6;10064:3;10060:16;10053:23;;9815:267;9705:377;;;;:::o;10112:845::-;10215:3;10252:5;10246:12;10281:36;10307:9;10281:36;:::i;:::-;10333:89;10415:6;10410:3;10333:89;:::i;:::-;10326:96;;10453:1;10442:9;10438:17;10469:1;10464:137;;;;10615:1;10610:341;;;;10431:520;;10464:137;10548:4;10544:9;10533;10529:25;10524:3;10517:38;10584:6;10579:3;10575:16;10568:23;;10464:137;;10610:341;10677:38;10709:5;10677:38;:::i;:::-;10737:1;10751:154;10765:6;10762:1;10759:13;10751:154;;;10839:7;10833:14;10829:1;10824:3;10820:11;10813:35;10889:1;10880:7;10876:15;10865:26;;10787:4;10784:1;10780:12;10775:17;;10751:154;;;10934:6;10929:3;10925:16;10918:23;;10617:334;;10431:520;;10219:738;;10112:845;;;;:::o;10963:366::-;11105:3;11126:67;11190:2;11185:3;11126:67;:::i;:::-;11119:74;;11202:93;11291:3;11202:93;:::i;:::-;11320:2;11315:3;11311:12;11304:19;;10963:366;;;:::o;11335:::-;11477:3;11498:67;11562:2;11557:3;11498:67;:::i;:::-;11491:74;;11574:93;11663:3;11574:93;:::i;:::-;11692:2;11687:3;11683:12;11676:19;;11335:366;;;:::o;11707:::-;11849:3;11870:67;11934:2;11929:3;11870:67;:::i;:::-;11863:74;;11946:93;12035:3;11946:93;:::i;:::-;12064:2;12059:3;12055:12;12048:19;;11707:366;;;:::o;12079:402::-;12239:3;12260:85;12342:2;12337:3;12260:85;:::i;:::-;12253:92;;12354:93;12443:3;12354:93;:::i;:::-;12472:2;12467:3;12463:12;12456:19;;12079:402;;;:::o;12487:366::-;12629:3;12650:67;12714:2;12709:3;12650:67;:::i;:::-;12643:74;;12726:93;12815:3;12726:93;:::i;:::-;12844:2;12839:3;12835:12;12828:19;;12487:366;;;:::o;12859:::-;13001:3;13022:67;13086:2;13081:3;13022:67;:::i;:::-;13015:74;;13098:93;13187:3;13098:93;:::i;:::-;13216:2;13211:3;13207:12;13200:19;;12859:366;;;:::o;13231:::-;13373:3;13394:67;13458:2;13453:3;13394:67;:::i;:::-;13387:74;;13470:93;13559:3;13470:93;:::i;:::-;13588:2;13583:3;13579:12;13572:19;;13231:366;;;:::o;13603:::-;13745:3;13766:67;13830:2;13825:3;13766:67;:::i;:::-;13759:74;;13842:93;13931:3;13842:93;:::i;:::-;13960:2;13955:3;13951:12;13944:19;;13603:366;;;:::o;13975:::-;14117:3;14138:67;14202:2;14197:3;14138:67;:::i;:::-;14131:74;;14214:93;14303:3;14214:93;:::i;:::-;14332:2;14327:3;14323:12;14316:19;;13975:366;;;:::o;14347:::-;14489:3;14510:67;14574:2;14569:3;14510:67;:::i;:::-;14503:74;;14586:93;14675:3;14586:93;:::i;:::-;14704:2;14699:3;14695:12;14688:19;;14347:366;;;:::o;14719:::-;14861:3;14882:67;14946:2;14941:3;14882:67;:::i;:::-;14875:74;;14958:93;15047:3;14958:93;:::i;:::-;15076:2;15071:3;15067:12;15060:19;;14719:366;;;:::o;15091:::-;15233:3;15254:67;15318:2;15313:3;15254:67;:::i;:::-;15247:74;;15330:93;15419:3;15330:93;:::i;:::-;15448:2;15443:3;15439:12;15432:19;;15091:366;;;:::o;15463:::-;15605:3;15626:67;15690:2;15685:3;15626:67;:::i;:::-;15619:74;;15702:93;15791:3;15702:93;:::i;:::-;15820:2;15815:3;15811:12;15804:19;;15463:366;;;:::o;15835:::-;15977:3;15998:67;16062:2;16057:3;15998:67;:::i;:::-;15991:74;;16074:93;16163:3;16074:93;:::i;:::-;16192:2;16187:3;16183:12;16176:19;;15835:366;;;:::o;16207:::-;16349:3;16370:67;16434:2;16429:3;16370:67;:::i;:::-;16363:74;;16446:93;16535:3;16446:93;:::i;:::-;16564:2;16559:3;16555:12;16548:19;;16207:366;;;:::o;16579:::-;16721:3;16742:67;16806:2;16801:3;16742:67;:::i;:::-;16735:74;;16818:93;16907:3;16818:93;:::i;:::-;16936:2;16931:3;16927:12;16920:19;;16579:366;;;:::o;16951:::-;17093:3;17114:67;17178:2;17173:3;17114:67;:::i;:::-;17107:74;;17190:93;17279:3;17190:93;:::i;:::-;17308:2;17303:3;17299:12;17292:19;;16951:366;;;:::o;17323:::-;17465:3;17486:67;17550:2;17545:3;17486:67;:::i;:::-;17479:74;;17562:93;17651:3;17562:93;:::i;:::-;17680:2;17675:3;17671:12;17664:19;;17323:366;;;:::o;17695:::-;17837:3;17858:67;17922:2;17917:3;17858:67;:::i;:::-;17851:74;;17934:93;18023:3;17934:93;:::i;:::-;18052:2;18047:3;18043:12;18036:19;;17695:366;;;:::o;18067:::-;18209:3;18230:67;18294:2;18289:3;18230:67;:::i;:::-;18223:74;;18306:93;18395:3;18306:93;:::i;:::-;18424:2;18419:3;18415:12;18408:19;;18067:366;;;:::o;18439:::-;18581:3;18602:67;18666:2;18661:3;18602:67;:::i;:::-;18595:74;;18678:93;18767:3;18678:93;:::i;:::-;18796:2;18791:3;18787:12;18780:19;;18439:366;;;:::o;18811:::-;18953:3;18974:67;19038:2;19033:3;18974:67;:::i;:::-;18967:74;;19050:93;19139:3;19050:93;:::i;:::-;19168:2;19163:3;19159:12;19152:19;;18811:366;;;:::o;19183:::-;19325:3;19346:67;19410:2;19405:3;19346:67;:::i;:::-;19339:74;;19422:93;19511:3;19422:93;:::i;:::-;19540:2;19535:3;19531:12;19524:19;;19183:366;;;:::o;19555:::-;19697:3;19718:67;19782:2;19777:3;19718:67;:::i;:::-;19711:74;;19794:93;19883:3;19794:93;:::i;:::-;19912:2;19907:3;19903:12;19896:19;;19555:366;;;:::o;19927:::-;20069:3;20090:67;20154:2;20149:3;20090:67;:::i;:::-;20083:74;;20166:93;20255:3;20166:93;:::i;:::-;20284:2;20279:3;20275:12;20268:19;;19927:366;;;:::o;20299:::-;20441:3;20462:67;20526:2;20521:3;20462:67;:::i;:::-;20455:74;;20538:93;20627:3;20538:93;:::i;:::-;20656:2;20651:3;20647:12;20640:19;;20299:366;;;:::o;20671:::-;20813:3;20834:67;20898:2;20893:3;20834:67;:::i;:::-;20827:74;;20910:93;20999:3;20910:93;:::i;:::-;21028:2;21023:3;21019:12;21012:19;;20671:366;;;:::o;21043:::-;21185:3;21206:67;21270:2;21265:3;21206:67;:::i;:::-;21199:74;;21282:93;21371:3;21282:93;:::i;:::-;21400:2;21395:3;21391:12;21384:19;;21043:366;;;:::o;21415:::-;21557:3;21578:67;21642:2;21637:3;21578:67;:::i;:::-;21571:74;;21654:93;21743:3;21654:93;:::i;:::-;21772:2;21767:3;21763:12;21756:19;;21415:366;;;:::o;21787:::-;21929:3;21950:67;22014:2;22009:3;21950:67;:::i;:::-;21943:74;;22026:93;22115:3;22026:93;:::i;:::-;22144:2;22139:3;22135:12;22128:19;;21787:366;;;:::o;22159:::-;22301:3;22322:67;22386:2;22381:3;22322:67;:::i;:::-;22315:74;;22398:93;22487:3;22398:93;:::i;:::-;22516:2;22511:3;22507:12;22500:19;;22159:366;;;:::o;22531:118::-;22618:24;22636:5;22618:24;:::i;:::-;22613:3;22606:37;22531:118;;:::o;22655:112::-;22738:22;22754:5;22738:22;:::i;:::-;22733:3;22726:35;22655:112;;:::o;22773:256::-;22885:3;22900:75;22971:3;22962:6;22900:75;:::i;:::-;23000:2;22995:3;22991:12;22984:19;;23020:3;23013:10;;22773:256;;;;:::o;23035:275::-;23167:3;23189:95;23280:3;23271:6;23189:95;:::i;:::-;23182:102;;23301:3;23294:10;;23035:275;;;;:::o;23316:589::-;23541:3;23563:95;23654:3;23645:6;23563:95;:::i;:::-;23556:102;;23675:95;23766:3;23757:6;23675:95;:::i;:::-;23668:102;;23787:92;23875:3;23866:6;23787:92;:::i;:::-;23780:99;;23896:3;23889:10;;23316:589;;;;;;:::o;23911:522::-;24124:3;24146:148;24290:3;24146:148;:::i;:::-;24139:155;;24304:75;24375:3;24366:6;24304:75;:::i;:::-;24404:2;24399:3;24395:12;24388:19;;24424:3;24417:10;;23911:522;;;;:::o;24439:222::-;24532:4;24570:2;24559:9;24555:18;24547:26;;24583:71;24651:1;24640:9;24636:17;24627:6;24583:71;:::i;:::-;24439:222;;;;:::o;24667:640::-;24862:4;24900:3;24889:9;24885:19;24877:27;;24914:71;24982:1;24971:9;24967:17;24958:6;24914:71;:::i;:::-;24995:72;25063:2;25052:9;25048:18;25039:6;24995:72;:::i;:::-;25077;25145:2;25134:9;25130:18;25121:6;25077:72;:::i;:::-;25196:9;25190:4;25186:20;25181:2;25170:9;25166:18;25159:48;25224:76;25295:4;25286:6;25224:76;:::i;:::-;25216:84;;24667:640;;;;;;;:::o;25313:210::-;25400:4;25438:2;25427:9;25423:18;25415:26;;25451:65;25513:1;25502:9;25498:17;25489:6;25451:65;:::i;:::-;25313:210;;;;:::o;25529:545::-;25702:4;25740:3;25729:9;25725:19;25717:27;;25754:71;25822:1;25811:9;25807:17;25798:6;25754:71;:::i;:::-;25835:68;25899:2;25888:9;25884:18;25875:6;25835:68;:::i;:::-;25913:72;25981:2;25970:9;25966:18;25957:6;25913:72;:::i;:::-;25995;26063:2;26052:9;26048:18;26039:6;25995:72;:::i;:::-;25529:545;;;;;;;:::o;26080:313::-;26193:4;26231:2;26220:9;26216:18;26208:26;;26280:9;26274:4;26270:20;26266:1;26255:9;26251:17;26244:47;26308:78;26381:4;26372:6;26308:78;:::i;:::-;26300:86;;26080:313;;;;:::o;26399:419::-;26565:4;26603:2;26592:9;26588:18;26580:26;;26652:9;26646:4;26642:20;26638:1;26627:9;26623:17;26616:47;26680:131;26806:4;26680:131;:::i;:::-;26672:139;;26399:419;;;:::o;26824:::-;26990:4;27028:2;27017:9;27013:18;27005:26;;27077:9;27071:4;27067:20;27063:1;27052:9;27048:17;27041:47;27105:131;27231:4;27105:131;:::i;:::-;27097:139;;26824:419;;;:::o;27249:::-;27415:4;27453:2;27442:9;27438:18;27430:26;;27502:9;27496:4;27492:20;27488:1;27477:9;27473:17;27466:47;27530:131;27656:4;27530:131;:::i;:::-;27522:139;;27249:419;;;:::o;27674:::-;27840:4;27878:2;27867:9;27863:18;27855:26;;27927:9;27921:4;27917:20;27913:1;27902:9;27898:17;27891:47;27955:131;28081:4;27955:131;:::i;:::-;27947:139;;27674:419;;;:::o;28099:::-;28265:4;28303:2;28292:9;28288:18;28280:26;;28352:9;28346:4;28342:20;28338:1;28327:9;28323:17;28316:47;28380:131;28506:4;28380:131;:::i;:::-;28372:139;;28099:419;;;:::o;28524:::-;28690:4;28728:2;28717:9;28713:18;28705:26;;28777:9;28771:4;28767:20;28763:1;28752:9;28748:17;28741:47;28805:131;28931:4;28805:131;:::i;:::-;28797:139;;28524:419;;;:::o;28949:::-;29115:4;29153:2;29142:9;29138:18;29130:26;;29202:9;29196:4;29192:20;29188:1;29177:9;29173:17;29166:47;29230:131;29356:4;29230:131;:::i;:::-;29222:139;;28949:419;;;:::o;29374:::-;29540:4;29578:2;29567:9;29563:18;29555:26;;29627:9;29621:4;29617:20;29613:1;29602:9;29598:17;29591:47;29655:131;29781:4;29655:131;:::i;:::-;29647:139;;29374:419;;;:::o;29799:::-;29965:4;30003:2;29992:9;29988:18;29980:26;;30052:9;30046:4;30042:20;30038:1;30027:9;30023:17;30016:47;30080:131;30206:4;30080:131;:::i;:::-;30072:139;;29799:419;;;:::o;30224:::-;30390:4;30428:2;30417:9;30413:18;30405:26;;30477:9;30471:4;30467:20;30463:1;30452:9;30448:17;30441:47;30505:131;30631:4;30505:131;:::i;:::-;30497:139;;30224:419;;;:::o;30649:::-;30815:4;30853:2;30842:9;30838:18;30830:26;;30902:9;30896:4;30892:20;30888:1;30877:9;30873:17;30866:47;30930:131;31056:4;30930:131;:::i;:::-;30922:139;;30649:419;;;:::o;31074:::-;31240:4;31278:2;31267:9;31263:18;31255:26;;31327:9;31321:4;31317:20;31313:1;31302:9;31298:17;31291:47;31355:131;31481:4;31355:131;:::i;:::-;31347:139;;31074:419;;;:::o;31499:::-;31665:4;31703:2;31692:9;31688:18;31680:26;;31752:9;31746:4;31742:20;31738:1;31727:9;31723:17;31716:47;31780:131;31906:4;31780:131;:::i;:::-;31772:139;;31499:419;;;:::o;31924:::-;32090:4;32128:2;32117:9;32113:18;32105:26;;32177:9;32171:4;32167:20;32163:1;32152:9;32148:17;32141:47;32205:131;32331:4;32205:131;:::i;:::-;32197:139;;31924:419;;;:::o;32349:::-;32515:4;32553:2;32542:9;32538:18;32530:26;;32602:9;32596:4;32592:20;32588:1;32577:9;32573:17;32566:47;32630:131;32756:4;32630:131;:::i;:::-;32622:139;;32349:419;;;:::o;32774:::-;32940:4;32978:2;32967:9;32963:18;32955:26;;33027:9;33021:4;33017:20;33013:1;33002:9;32998:17;32991:47;33055:131;33181:4;33055:131;:::i;:::-;33047:139;;32774:419;;;:::o;33199:::-;33365:4;33403:2;33392:9;33388:18;33380:26;;33452:9;33446:4;33442:20;33438:1;33427:9;33423:17;33416:47;33480:131;33606:4;33480:131;:::i;:::-;33472:139;;33199:419;;;:::o;33624:::-;33790:4;33828:2;33817:9;33813:18;33805:26;;33877:9;33871:4;33867:20;33863:1;33852:9;33848:17;33841:47;33905:131;34031:4;33905:131;:::i;:::-;33897:139;;33624:419;;;:::o;34049:::-;34215:4;34253:2;34242:9;34238:18;34230:26;;34302:9;34296:4;34292:20;34288:1;34277:9;34273:17;34266:47;34330:131;34456:4;34330:131;:::i;:::-;34322:139;;34049:419;;;:::o;34474:::-;34640:4;34678:2;34667:9;34663:18;34655:26;;34727:9;34721:4;34717:20;34713:1;34702:9;34698:17;34691:47;34755:131;34881:4;34755:131;:::i;:::-;34747:139;;34474:419;;;:::o;34899:::-;35065:4;35103:2;35092:9;35088:18;35080:26;;35152:9;35146:4;35142:20;35138:1;35127:9;35123:17;35116:47;35180:131;35306:4;35180:131;:::i;:::-;35172:139;;34899:419;;;:::o;35324:::-;35490:4;35528:2;35517:9;35513:18;35505:26;;35577:9;35571:4;35567:20;35563:1;35552:9;35548:17;35541:47;35605:131;35731:4;35605:131;:::i;:::-;35597:139;;35324:419;;;:::o;35749:::-;35915:4;35953:2;35942:9;35938:18;35930:26;;36002:9;35996:4;35992:20;35988:1;35977:9;35973:17;35966:47;36030:131;36156:4;36030:131;:::i;:::-;36022:139;;35749:419;;;:::o;36174:::-;36340:4;36378:2;36367:9;36363:18;36355:26;;36427:9;36421:4;36417:20;36413:1;36402:9;36398:17;36391:47;36455:131;36581:4;36455:131;:::i;:::-;36447:139;;36174:419;;;:::o;36599:::-;36765:4;36803:2;36792:9;36788:18;36780:26;;36852:9;36846:4;36842:20;36838:1;36827:9;36823:17;36816:47;36880:131;37006:4;36880:131;:::i;:::-;36872:139;;36599:419;;;:::o;37024:::-;37190:4;37228:2;37217:9;37213:18;37205:26;;37277:9;37271:4;37267:20;37263:1;37252:9;37248:17;37241:47;37305:131;37431:4;37305:131;:::i;:::-;37297:139;;37024:419;;;:::o;37449:::-;37615:4;37653:2;37642:9;37638:18;37630:26;;37702:9;37696:4;37692:20;37688:1;37677:9;37673:17;37666:47;37730:131;37856:4;37730:131;:::i;:::-;37722:139;;37449:419;;;:::o;37874:::-;38040:4;38078:2;38067:9;38063:18;38055:26;;38127:9;38121:4;38117:20;38113:1;38102:9;38098:17;38091:47;38155:131;38281:4;38155:131;:::i;:::-;38147:139;;37874:419;;;:::o;38299:::-;38465:4;38503:2;38492:9;38488:18;38480:26;;38552:9;38546:4;38542:20;38538:1;38527:9;38523:17;38516:47;38580:131;38706:4;38580:131;:::i;:::-;38572:139;;38299:419;;;:::o;38724:::-;38890:4;38928:2;38917:9;38913:18;38905:26;;38977:9;38971:4;38967:20;38963:1;38952:9;38948:17;38941:47;39005:131;39131:4;39005:131;:::i;:::-;38997:139;;38724:419;;;:::o;39149:222::-;39242:4;39280:2;39269:9;39265:18;39257:26;;39293:71;39361:1;39350:9;39346:17;39337:6;39293:71;:::i;:::-;39149:222;;;;:::o;39377:129::-;39411:6;39438:20;;:::i;:::-;39428:30;;39467:33;39495:4;39487:6;39467:33;:::i;:::-;39377:129;;;:::o;39512:75::-;39545:6;39578:2;39572:9;39562:19;;39512:75;:::o;39593:307::-;39654:4;39744:18;39736:6;39733:30;39730:56;;;39766:18;;:::i;:::-;39730:56;39804:29;39826:6;39804:29;:::i;:::-;39796:37;;39888:4;39882;39878:15;39870:23;;39593:307;;;:::o;39906:308::-;39968:4;40058:18;40050:6;40047:30;40044:56;;;40080:18;;:::i;:::-;40044:56;40118:29;40140:6;40118:29;:::i;:::-;40110:37;;40202:4;40196;40192:15;40184:23;;39906:308;;;:::o;40220:141::-;40269:4;40292:3;40284:11;;40315:3;40312:1;40305:14;40349:4;40346:1;40336:18;40328:26;;40220:141;;;:::o;40367:98::-;40418:6;40452:5;40446:12;40436:22;;40367:98;;;:::o;40471:99::-;40523:6;40557:5;40551:12;40541:22;;40471:99;;;:::o;40576:168::-;40659:11;40693:6;40688:3;40681:19;40733:4;40728:3;40724:14;40709:29;;40576:168;;;;:::o;40750:169::-;40834:11;40868:6;40863:3;40856:19;40908:4;40903:3;40899:14;40884:29;;40750:169;;;;:::o;40925:148::-;41027:11;41064:3;41049:18;;40925:148;;;;:::o;41079:305::-;41119:3;41138:20;41156:1;41138:20;:::i;:::-;41133:25;;41172:20;41190:1;41172:20;:::i;:::-;41167:25;;41326:1;41258:66;41254:74;41251:1;41248:81;41245:107;;;41332:18;;:::i;:::-;41245:107;41376:1;41373;41369:9;41362:16;;41079:305;;;;:::o;41390:185::-;41430:1;41447:20;41465:1;41447:20;:::i;:::-;41442:25;;41481:20;41499:1;41481:20;:::i;:::-;41476:25;;41520:1;41510:35;;41525:18;;:::i;:::-;41510:35;41567:1;41564;41560:9;41555:14;;41390:185;;;;:::o;41581:348::-;41621:7;41644:20;41662:1;41644:20;:::i;:::-;41639:25;;41678:20;41696:1;41678:20;:::i;:::-;41673:25;;41866:1;41798:66;41794:74;41791:1;41788:81;41783:1;41776:9;41769:17;41765:105;41762:131;;;41873:18;;:::i;:::-;41762:131;41921:1;41918;41914:9;41903:20;;41581:348;;;;:::o;41935:191::-;41975:4;41995:20;42013:1;41995:20;:::i;:::-;41990:25;;42029:20;42047:1;42029:20;:::i;:::-;42024:25;;42068:1;42065;42062:8;42059:34;;;42073:18;;:::i;:::-;42059:34;42118:1;42115;42111:9;42103:17;;41935:191;;;;:::o;42132:96::-;42169:7;42198:24;42216:5;42198:24;:::i;:::-;42187:35;;42132:96;;;:::o;42234:90::-;42268:7;42311:5;42304:13;42297:21;42286:32;;42234:90;;;:::o;42330:77::-;42367:7;42396:5;42385:16;;42330:77;;;:::o;42413:149::-;42449:7;42489:66;42482:5;42478:78;42467:89;;42413:149;;;:::o;42568:126::-;42605:7;42645:42;42638:5;42634:54;42623:65;;42568:126;;;:::o;42700:77::-;42737:7;42766:5;42755:16;;42700:77;;;:::o;42783:86::-;42818:7;42858:4;42851:5;42847:16;42836:27;;42783:86;;;:::o;42875:154::-;42959:6;42954:3;42949;42936:30;43021:1;43012:6;43007:3;43003:16;42996:27;42875:154;;;:::o;43035:307::-;43103:1;43113:113;43127:6;43124:1;43121:13;43113:113;;;43212:1;43207:3;43203:11;43197:18;43193:1;43188:3;43184:11;43177:39;43149:2;43146:1;43142:10;43137:15;;43113:113;;;43244:6;43241:1;43238:13;43235:101;;;43324:1;43315:6;43310:3;43306:16;43299:27;43235:101;43084:258;43035:307;;;:::o;43348:320::-;43392:6;43429:1;43423:4;43419:12;43409:22;;43476:1;43470:4;43466:12;43497:18;43487:81;;43553:4;43545:6;43541:17;43531:27;;43487:81;43615:2;43607:6;43604:14;43584:18;43581:38;43578:84;;;43634:18;;:::i;:::-;43578:84;43399:269;43348:320;;;:::o;43674:281::-;43757:27;43779:4;43757:27;:::i;:::-;43749:6;43745:40;43887:6;43875:10;43872:22;43851:18;43839:10;43836:34;43833:62;43830:88;;;43898:18;;:::i;:::-;43830:88;43938:10;43934:2;43927:22;43717:238;43674:281;;:::o;43961:233::-;44000:3;44023:24;44041:5;44023:24;:::i;:::-;44014:33;;44069:66;44062:5;44059:77;44056:103;;;44139:18;;:::i;:::-;44056:103;44186:1;44179:5;44175:13;44168:20;;43961:233;;;:::o;44200:100::-;44239:7;44268:26;44288:5;44268:26;:::i;:::-;44257:37;;44200:100;;;:::o;44306:79::-;44345:7;44374:5;44363:16;;44306:79;;;:::o;44391:94::-;44430:7;44459:20;44473:5;44459:20;:::i;:::-;44448:31;;44391:94;;;:::o;44491:176::-;44523:1;44540:20;44558:1;44540:20;:::i;:::-;44535:25;;44574:20;44592:1;44574:20;:::i;:::-;44569:25;;44613:1;44603:35;;44618:18;;:::i;:::-;44603:35;44659:1;44656;44652:9;44647:14;;44491:176;;;;:::o;44673:180::-;44721:77;44718:1;44711:88;44818:4;44815:1;44808:15;44842:4;44839:1;44832:15;44859:180;44907:77;44904:1;44897:88;45004:4;45001:1;44994:15;45028:4;45025:1;45018:15;45045:180;45093:77;45090:1;45083:88;45190:4;45187:1;45180:15;45214:4;45211:1;45204:15;45231:180;45279:77;45276:1;45269:88;45376:4;45373:1;45366:15;45400:4;45397:1;45390:15;45417:180;45465:77;45462:1;45455:88;45562:4;45559:1;45552:15;45586:4;45583:1;45576:15;45603:180;45651:77;45648:1;45641:88;45748:4;45745:1;45738:15;45772:4;45769:1;45762:15;45789:180;45837:77;45834:1;45827:88;45934:4;45931:1;45924:15;45958:4;45955:1;45948:15;45975:117;46084:1;46081;46074:12;46098:117;46207:1;46204;46197:12;46221:117;46330:1;46327;46320:12;46344:117;46453:1;46450;46443:12;46467:102;46508:6;46559:2;46555:7;46550:2;46543:5;46539:14;46535:28;46525:38;;46467:102;;;:::o;46575:94::-;46608:8;46656:5;46652:2;46648:14;46627:35;;46575:94;;;:::o;46675:174::-;46815:26;46811:1;46803:6;46799:14;46792:50;46675:174;:::o;46855:181::-;46995:33;46991:1;46983:6;46979:14;46972:57;46855:181;:::o;47042:230::-;47182:34;47178:1;47170:6;47166:14;47159:58;47251:13;47246:2;47238:6;47234:15;47227:38;47042:230;:::o;47278:214::-;47418:66;47414:1;47406:6;47402:14;47395:90;47278:214;:::o;47498:230::-;47638:34;47634:1;47626:6;47622:14;47615:58;47707:13;47702:2;47694:6;47690:15;47683:38;47498:230;:::o;47734:237::-;47874:34;47870:1;47862:6;47858:14;47851:58;47943:20;47938:2;47930:6;47926:15;47919:45;47734:237;:::o;47977:225::-;48117:34;48113:1;48105:6;48101:14;48094:58;48186:8;48181:2;48173:6;48169:15;48162:33;47977:225;:::o;48208:224::-;48348:34;48344:1;48336:6;48332:14;48325:58;48417:7;48412:2;48404:6;48400:15;48393:32;48208:224;:::o;48438:178::-;48578:30;48574:1;48566:6;48562:14;48555:54;48438:178;:::o;48622:223::-;48762:34;48758:1;48750:6;48746:14;48739:58;48831:6;48826:2;48818:6;48814:15;48807:31;48622:223;:::o;48851:175::-;48991:27;48987:1;48979:6;48975:14;48968:51;48851:175;:::o;49032:181::-;49172:33;49168:1;49160:6;49156:14;49149:57;49032:181;:::o;49219:221::-;49359:34;49355:1;49347:6;49343:14;49336:58;49428:4;49423:2;49415:6;49411:15;49404:29;49219:221;:::o;49446:::-;49586:34;49582:1;49574:6;49570:14;49563:58;49655:4;49650:2;49642:6;49638:15;49631:29;49446:221;:::o;49673:231::-;49813:34;49809:1;49801:6;49797:14;49790:58;49882:14;49877:2;49869:6;49865:15;49858:39;49673:231;:::o;49910:243::-;50050:34;50046:1;50038:6;50034:14;50027:58;50119:26;50114:2;50106:6;50102:15;50095:51;49910:243;:::o;50159:229::-;50299:34;50295:1;50287:6;50283:14;50276:58;50368:12;50363:2;50355:6;50351:15;50344:37;50159:229;:::o;50394:228::-;50534:34;50530:1;50522:6;50518:14;50511:58;50603:11;50598:2;50590:6;50586:15;50579:36;50394:228;:::o;50628:229::-;50768:34;50764:1;50756:6;50752:14;50745:58;50837:12;50832:2;50824:6;50820:15;50813:37;50628:229;:::o;50863:221::-;51003:34;50999:1;50991:6;50987:14;50980:58;51072:4;51067:2;51059:6;51055:15;51048:29;50863:221;:::o;51090:182::-;51230:34;51226:1;51218:6;51214:14;51207:58;51090:182;:::o;51278:248::-;51418:34;51414:1;51406:6;51402:14;51395:58;51487:31;51482:2;51474:6;51470:15;51463:56;51278:248;:::o;51532:231::-;51672:34;51668:1;51660:6;51656:14;51649:58;51741:14;51736:2;51728:6;51724:15;51717:39;51532:231;:::o;51769:182::-;51909:34;51905:1;51897:6;51893:14;51886:58;51769:182;:::o;51957:234::-;52097:34;52093:1;52085:6;52081:14;52074:58;52166:17;52161:2;52153:6;52149:15;52142:42;51957:234;:::o;52197:220::-;52337:34;52333:1;52325:6;52321:14;52314:58;52406:3;52401:2;52393:6;52389:15;52382:28;52197:220;:::o;52423:177::-;52563:29;52559:1;52551:6;52547:14;52540:53;52423:177;:::o;52606:236::-;52746:34;52742:1;52734:6;52730:14;52723:58;52815:19;52810:2;52802:6;52798:15;52791:44;52606:236;:::o;52848:231::-;52988:34;52984:1;52976:6;52972:14;52965:58;53057:14;53052:2;53044:6;53040:15;53033:39;52848:231;:::o;53085:229::-;53225:34;53221:1;53213:6;53209:14;53202:58;53294:12;53289:2;53281:6;53277:15;53270:37;53085:229;:::o;53320:181::-;53460:33;53456:1;53448:6;53444:14;53437:57;53320:181;:::o;53507:122::-;53580:24;53598:5;53580:24;:::i;:::-;53573:5;53570:35;53560:63;;53619:1;53616;53609:12;53560:63;53507:122;:::o;53635:116::-;53705:21;53720:5;53705:21;:::i;:::-;53698:5;53695:32;53685:60;;53741:1;53738;53731:12;53685:60;53635:116;:::o;53757:120::-;53829:23;53846:5;53829:23;:::i;:::-;53822:5;53819:34;53809:62;;53867:1;53864;53857:12;53809:62;53757:120;:::o;53883:122::-;53956:24;53974:5;53956:24;:::i;:::-;53949:5;53946:35;53936:63;;53995:1;53992;53985:12;53936:63;53883:122;:::o
Swarm Source
ipfs://b9c6f1fa0d317a54083ddc480f3f0509e53fd8b9ba7c074c4e1991dc29599816
[ 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.