Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
8,888 CROAK
Holders
3,952
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CROAKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CreatureToadz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-21 */ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Address.sol // License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Context.sol // License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Strings.sol // License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol // License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/CreatureToadz.sol /** SPDX-License-Identifier: GPL-3.0 Artist: skirano.eth Developer: jabeo.eth HypeMan: yeastydough.eth CREATURETOADZ ............. .................. .......... .................... ............... ..................... ................. ..................... ... ...................................... ............ .................................................... ................................................... ............................................... ....................................................... ........................*,....*......................... ...................%####@&#%#@@###@@@##%%&@%#@@......... .................@@@# .&@######(####&####(##@............ ...............@### *((( @%## ,#(####@###@............ .........(%#### ,(( %@# *(((, (####%%#%#&@,............ .,@%@@@&########. (@@%(## .(#######(#%@@@%@@,....... .@&%@@ @@#######%&&###@@@@@@@%#(##%&&###(######@. @@@...... .@ @ @#############(@@@@@@@@@@@#############(&@ # ,@.... .@(,@. @ %@####(##########%%%%%%%&###########(####@ @ #@. *@ @&###############(########@########&#&@ ,( @@ @@* @*& @######(#%%(####@####@###(######@@@ # @ @# (@#######@###%&###@&##%@@..@@, @ (@ @ *#.@@#@@@&@@@# @###%&###@@@@ @, @@ @#@%(%@#####%&&&####@%&%###@####(&#@@##%@@@###%###@%@(% ,#@@@,...........@(@#@@(%@ @#@&@@,........... ..................... ............... ................. ...... ..... */ pragma solidity ^0.8.0; contract CreatureToadz is ERC721Enumerable, Ownable { using Strings for uint256; // --- Constants --- address cryptoadz_addr = 0x1CB1A5e65610AEFF2551A50f76a87a7d3fB649C6; address creature_addr = 0xc92cedDfb8dd984A89fb494c376f9A48b999aAFc; // --- Variables --- uint256 public constant publicPrice = 0.1 ether; uint256 public constant holderPrice = 0.088 ether; uint256 public constant maxSupply = 8888; uint256 public constant maxMintAmount = 1; uint256 public constant devReserve = 150; uint256 public constant holderReserve = 4444; // 0 = DEV, 1 = PRESALE, 2 = PUBLIC, 3 = CLOSED uint32 public mintPhase = 0; string public baseURI; mapping(address => bool) public mintlist; // --- Intialization --- constructor(string memory _initBaseURI) ERC721("CreatureToadz", "CROAK") { setBaseURI(_initBaseURI); } // --- Internal --- function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // --- Public --- function isHolder(address _wallet) public view returns (bool holder, uint256 cryptoadzBalance, uint256 creatureBalance) { ERC721Enumerable cryptoadzToken = ERC721Enumerable(cryptoadz_addr); uint256 _cryptoadzBalance = cryptoadzToken.balanceOf(_wallet); ERC721Enumerable creatureToken = ERC721Enumerable(creature_addr); uint256 _creatureBalance = creatureToken.balanceOf(_wallet); return (_cryptoadzBalance + _creatureBalance > 0, _cryptoadzBalance, _creatureBalance); } function mintPrice(address _wallet) public view returns (uint256 price) { (bool _holder, , ) = isHolder(_wallet); return (_holder == true && mintPhase < 2) ? holderPrice : publicPrice; } function devMint(address _wallet, uint256 _mintAmount) external onlyOwner { require(mintPhase == 0, "Dev minting phase is over."); uint256 supply = totalSupply(); require(_mintAmount + supply <= devReserve, "Must mint less than the allocated dev reserve!"); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_wallet, supply + i); } } function mint(address _wallet, uint256 _mintAmount) public payable { require(mintPhase == 1 || mintPhase == 2, "Minting is not open."); uint256 supply = totalSupply(); uint256 senderBalance = balanceOf(_wallet); require(_mintAmount > 0, "Must mint at least one CreatureToad!"); require(mintlist[_wallet] != true, "You've already minted CreatureToadz! Don't be greedy!"); if (mintPhase == 1) { // Holder Mint (bool _holder, , ) = isHolder(_wallet); require(_holder, "Must own at least one Creature or CryptoToadz to mint in the presale!"); require(supply + _mintAmount <= holderReserve + devReserve, "Presale has already sold out!"); require(msg.value >= holderPrice * _mintAmount, "Not enough ETH supplied for transaction!"); } else { // Public Mint require(msg.value >= publicPrice * _mintAmount, "Not enough ETH supplied for transaction!"); require(supply + _mintAmount <= maxSupply, "Max supply of CreatureToadz already minted!"); } if (senderBalance > 0) { require(_mintAmount + senderBalance <= maxMintAmount, "You can only mint one CreatureToadz!"); } else { require(_mintAmount <= maxMintAmount, "You can only mint one CreatureToadz!"); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_wallet, supply + i); } mintlist[_wallet] = true; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function changeMintPhase(uint32 _mintPhase) public onlyOwner { require(_mintPhase > mintPhase, "No back-stepping!"); require(_mintPhase <= 3, "Final phase is CLOSED"); mintPhase = _mintPhase; } function withdraw(address _wallet) public payable onlyOwner { require(payable(_wallet).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_mintPhase","type":"uint32"}],"name":"changeMintPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holderPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holderReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_wallet","type":"address"}],"name":"isHolder","outputs":[{"internalType":"bool","name":"holder","type":"bool"},{"internalType":"uint256","name":"cryptoadzBalance","type":"uint256"},{"internalType":"uint256","name":"creatureBalance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPhase","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","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"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052731cb1a5e65610aeff2551a50f76a87a7d3fb649c6600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c92ceddfb8dd984a89fb494c376f9a48b999aafc600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c60146101000a81548163ffffffff021916908363ffffffff160217905550348015620000dd57600080fd5b506040516200550c3803806200550c8339818101604052810190620001039190620004ac565b6040518060400160405280600d81526020017f4372656174757265546f61647a000000000000000000000000000000000000008152506040518060400160405280600581526020017f43524f414b0000000000000000000000000000000000000000000000000000008152508160009080519060200190620001879291906200037e565b508060019080519060200190620001a09291906200037e565b505050620001c3620001b7620001db60201b60201c565b620001e360201b60201c565b620001d481620002a960201b60201c565b5062000704565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b9620001db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002df6200035460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000338576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032f9062000524565b60405180910390fd5b80600d9080519060200190620003509291906200037e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200038c90620005ec565b90600052602060002090601f016020900481019282620003b05760008555620003fc565b82601f10620003cb57805160ff1916838001178555620003fc565b82800160010185558215620003fc579182015b82811115620003fb578251825591602001919060010190620003de565b5b5090506200040b91906200040f565b5090565b5b808211156200042a57600081600090555060010162000410565b5090565b6000620004456200043f846200056f565b62000546565b905082815260208101848484011115620004645762000463620006bb565b5b62000471848285620005b6565b509392505050565b600082601f830112620004915762000490620006b6565b5b8151620004a38482602086016200042e565b91505092915050565b600060208284031215620004c557620004c4620006c5565b5b600082015167ffffffffffffffff811115620004e657620004e5620006c0565b5b620004f48482850162000479565b91505092915050565b60006200050c602083620005a5565b91506200051982620006db565b602082019050919050565b600060208201905081810360008301526200053f81620004fd565b9050919050565b60006200055262000565565b905062000560828262000622565b919050565b6000604051905090565b600067ffffffffffffffff8211156200058d576200058c62000687565b5b6200059882620006ca565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005d6578082015181840152602081019050620005b9565b83811115620005e6576000848401525b50505050565b600060028204905060018216806200060557607f821691505b602082108114156200061c576200061b62000658565b5b50919050565b6200062d82620006ca565b810181811067ffffffffffffffff821117156200064f576200064e62000687565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614df880620007146000396000f3fe60806040526004361061020f5760003560e01c80635c47c08811610118578063a22cb465116100a0578063d4d7b19a1161006f578063d4d7b19a146107bb578063d5abeb01146107fa578063e985e9c514610825578063f2fde38b14610862578063fcd2a4271461088b5761020f565b8063a22cb46514610701578063a945bf801461072a578063b88d4fde14610755578063c87b56dd1461077e5761020f565b80636fc6cbc5116100e75780636fc6cbc51461061a57806370a0823114610657578063715018a6146106945780638da5cb5b146106ab57806395d89b41146106d65761020f565b80635c47c0881461055e578063627804af146105895780636352211e146105b25780636c0360eb146105ef5761020f565b806323b872dd1161019b578063438b63001161016a578063438b6300146104745780634f6ccce7146104b157806351cff8d9146104ee57806355ea73281461050a57806355f804b3146105355761020f565b806323b872dd146103c95780632f745c59146103f257806340c10f191461042f57806342842e0e1461044b5761020f565b8063103ae988116101e2578063103ae988146102e257806317881cbf1461030b57806318160ddd146103365780632142aa2c14610361578063239c70ae1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613484565b6108b6565b6040516102489190613bd9565b60405180910390f35b34801561025d57600080fd5b50610266610930565b6040516102739190613c2b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613527565b6109c2565b6040516102b09190613b50565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613444565b610a47565b005b3480156102ee57600080fd5b5061030960048036038101906103049190613581565b610b5f565b005b34801561031757600080fd5b50610320610ca9565b60405161032d9190614028565b60405180910390f35b34801561034257600080fd5b5061034b610cbf565b604051610358919061400d565b60405180910390f35b34801561036d57600080fd5b50610388600480360381019061038391906132c1565b610ccc565b604051610395919061400d565b60405180910390f35b3480156103aa57600080fd5b506103b3610d2c565b6040516103c0919061400d565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb919061332e565b610d31565b005b3480156103fe57600080fd5b5061041960048036038101906104149190613444565b610d91565b604051610426919061400d565b60405180910390f35b61044960048036038101906104449190613444565b610e36565b005b34801561045757600080fd5b50610472600480360381019061046d919061332e565b6112aa565b005b34801561048057600080fd5b5061049b600480360381019061049691906132c1565b6112ca565b6040516104a89190613bb7565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190613527565b611378565b6040516104e5919061400d565b60405180910390f35b610508600480360381019061050391906132c1565b6113e9565b005b34801561051657600080fd5b5061051f6114a6565b60405161052c919061400d565b60405180910390f35b34801561054157600080fd5b5061055c600480360381019061055791906134de565b6114b2565b005b34801561056a57600080fd5b50610573611548565b604051610580919061400d565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190613444565b61154e565b005b3480156105be57600080fd5b506105d960048036038101906105d49190613527565b6116bc565b6040516105e69190613b50565b60405180910390f35b3480156105fb57600080fd5b5061060461176e565b6040516106119190613c2b565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c91906132c1565b6117fc565b60405161064e9190613bd9565b60405180910390f35b34801561066357600080fd5b5061067e600480360381019061067991906132c1565b61181c565b60405161068b919061400d565b60405180910390f35b3480156106a057600080fd5b506106a96118d4565b005b3480156106b757600080fd5b506106c061195c565b6040516106cd9190613b50565b60405180910390f35b3480156106e257600080fd5b506106eb611986565b6040516106f89190613c2b565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190613404565b611a18565b005b34801561073657600080fd5b5061073f611b99565b60405161074c919061400d565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190613381565b611ba5565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613527565b611c07565b6040516107b29190613c2b565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd91906132c1565b611cae565b6040516107f193929190613bf4565b60405180910390f35b34801561080657600080fd5b5061080f611e3c565b60405161081c919061400d565b60405180910390f35b34801561083157600080fd5b5061084c600480360381019061084791906132ee565b611e42565b6040516108599190613bd9565b60405180910390f35b34801561086e57600080fd5b50610889600480360381019061088491906132c1565b611ed6565b005b34801561089757600080fd5b506108a0611fce565b6040516108ad919061400d565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610929575061092882611fd3565b5b9050919050565b60606000805461093f90614321565b80601f016020809104026020016040519081016040528092919081815260200182805461096b90614321565b80156109b85780601f1061098d576101008083540402835291602001916109b8565b820191906000526020600020905b81548152906001019060200180831161099b57829003601f168201915b5050505050905090565b60006109cd826120b5565b610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390613ead565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a52826116bc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90613f4d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae2612121565b73ffffffffffffffffffffffffffffffffffffffff161480610b115750610b1081610b0b612121565b611e42565b5b610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4790613ded565b60405180910390fd5b610b5a8383612129565b505050565b610b67612121565b73ffffffffffffffffffffffffffffffffffffffff16610b8561195c565b73ffffffffffffffffffffffffffffffffffffffff1614610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290613eed565b60405180910390fd5b600c60149054906101000a900463ffffffff1663ffffffff168163ffffffff1611610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290613fed565b60405180910390fd5b60038163ffffffff161115610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90613fcd565b60405180910390fd5b80600c60146101000a81548163ffffffff021916908363ffffffff16021790555050565b600c60149054906101000a900463ffffffff1681565b6000600880549050905090565b600080610cd883611cae565b5050905060011515811515148015610d0857506002600c60149054906101000a900463ffffffff1663ffffffff16105b610d1a5767016345785d8a0000610d24565b670138a388a43c00005b915050919050565b600181565b610d42610d3c612121565b826121e2565b610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613f6d565b60405180910390fd5b610d8c8383836122c0565b505050565b6000610d9c8361181c565b8210610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613cad565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6001600c60149054906101000a900463ffffffff1663ffffffff161480610e7557506002600c60149054906101000a900463ffffffff1663ffffffff16145b610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90613f8d565b60405180910390fd5b6000610ebe610cbf565b90506000610ecb8461181c565b905060008311610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790613c4d565b60405180910390fd5b60011515600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90613c6d565b60405180910390fd5b6001600c60149054906101000a900463ffffffff1663ffffffff1614156110cc576000610fd085611cae565b5050905080611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90613d8d565b60405180910390fd5b609661115c6110239190614146565b848461102f9190614146565b1115611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790613c8d565b60405180910390fd5b83670138a388a43c000061108491906141cd565b3410156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613ecd565b60405180910390fd5b50611173565b8267016345785d8a00006110e091906141cd565b341015611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990613ecd565b60405180910390fd5b6122b883836111319190614146565b1115611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990613d2d565b60405180910390fd5b5b60008111156111d0576001818461118a9190614146565b11156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613e6d565b60405180910390fd5b611215565b6001831115611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90613e6d565b60405180910390fd5b5b6000600190505b83811161124b576112388582856112339190614146565b61251c565b808061124390614384565b91505061121c565b506001600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6112c583838360405180602001604052806000815250611ba5565b505050565b606060006112d78361181c565b905060008167ffffffffffffffff8111156112f5576112f46144e9565b5b6040519080825280602002602001820160405280156113235781602001602082028036833780820191505090505b50905060005b8281101561136d5761133b8582610d91565b82828151811061134e5761134d6144ba565b5b602002602001018181525050808061136590614384565b915050611329565b508092505050919050565b6000611382610cbf565b82106113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613fad565b60405180910390fd5b600882815481106113d7576113d66144ba565b5b90600052602060002001549050919050565b6113f1612121565b73ffffffffffffffffffffffffffffffffffffffff1661140f61195c565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90613eed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506114a357600080fd5b50565b670138a388a43c000081565b6114ba612121565b73ffffffffffffffffffffffffffffffffffffffff166114d861195c565b73ffffffffffffffffffffffffffffffffffffffff161461152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590613eed565b60405180910390fd5b80600d90805190602001906115449291906130ab565b5050565b61115c81565b611556612121565b73ffffffffffffffffffffffffffffffffffffffff1661157461195c565b73ffffffffffffffffffffffffffffffffffffffff16146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613eed565b60405180910390fd5b6000600c60149054906101000a900463ffffffff1663ffffffff1614611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613e0d565b60405180910390fd5b600061162f610cbf565b90506096818361163f9190614146565b1115611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613dad565b60405180910390fd5b6000600190505b8281116116b6576116a384828461169e9190614146565b61251c565b80806116ae90614384565b915050611687565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90613e4d565b60405180910390fd5b80915050919050565b600d805461177b90614321565b80601f01602080910402602001604051908101604052809291908181526020018280546117a790614321565b80156117f45780601f106117c9576101008083540402835291602001916117f4565b820191906000526020600020905b8154815290600101906020018083116117d757829003601f168201915b505050505081565b600e6020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561188d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188490613e2d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118dc612121565b73ffffffffffffffffffffffffffffffffffffffff166118fa61195c565b73ffffffffffffffffffffffffffffffffffffffff1614611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790613eed565b60405180910390fd5b61195a600061253a565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461199590614321565b80601f01602080910402602001604051908101604052809291908181526020018280546119c190614321565b8015611a0e5780601f106119e357610100808354040283529160200191611a0e565b820191906000526020600020905b8154815290600101906020018083116119f157829003601f168201915b5050505050905090565b611a20612121565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8590613d6d565b60405180910390fd5b8060056000611a9b612121565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b48612121565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b8d9190613bd9565b60405180910390a35050565b67016345785d8a000081565b611bb6611bb0612121565b836121e2565b611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90613f6d565b60405180910390fd5b611c0184848484612600565b50505050565b6060611c12826120b5565b611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890613f2d565b60405180910390fd5b6000611c5b61265c565b90506000815111611c7b5760405180602001604052806000815250611ca6565b80611c85846126ee565b604051602001611c96929190613b2c565b6040516020818303038152906040525b915050919050565b600080600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401611d149190613b50565b60206040518083038186803b158015611d2c57600080fd5b505afa158015611d40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d649190613554565b90506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401611dc89190613b50565b60206040518083038186803b158015611de057600080fd5b505afa158015611df4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e189190613554565b905060008184611e289190614146565b118382965096509650505050509193909250565b6122b881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ede612121565b73ffffffffffffffffffffffffffffffffffffffff16611efc61195c565b73ffffffffffffffffffffffffffffffffffffffff1614611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4990613eed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb990613ced565b60405180910390fd5b611fcb8161253a565b50565b609681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061209e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120ae57506120ad8261284f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661219c836116bc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121ed826120b5565b61222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390613dcd565b60405180910390fd5b6000612237836116bc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122a657508373ffffffffffffffffffffffffffffffffffffffff1661228e846109c2565b73ffffffffffffffffffffffffffffffffffffffff16145b806122b757506122b68185611e42565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122e0826116bc565b73ffffffffffffffffffffffffffffffffffffffff1614612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90613f0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d90613d4d565b60405180910390fd5b6123b18383836128b9565b6123bc600082612129565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461240c9190614227565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124639190614146565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125368282604051806020016040528060008152506129cd565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61260b8484846122c0565b61261784848484612a28565b612656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264d90613ccd565b60405180910390fd5b50505050565b6060600d805461266b90614321565b80601f016020809104026020016040519081016040528092919081815260200182805461269790614321565b80156126e45780601f106126b9576101008083540402835291602001916126e4565b820191906000526020600020905b8154815290600101906020018083116126c757829003601f168201915b5050505050905090565b60606000821415612736576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061284a565b600082905060005b6000821461276857808061275190614384565b915050600a82612761919061419c565b915061273e565b60008167ffffffffffffffff811115612784576127836144e9565b5b6040519080825280601f01601f1916602001820160405280156127b65781602001600182028036833780820191505090505b5090505b60008514612843576001826127cf9190614227565b9150600a856127de91906143cd565b60306127ea9190614146565b60f81b818381518110612800576127ff6144ba565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561283c919061419c565b94506127ba565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128c4838383612bbf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129075761290281612bc4565b612946565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612945576129448382612c0d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129895761298481612d7a565b6129c8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129c7576129c68282612e4b565b5b5b505050565b6129d78383612eca565b6129e46000848484612a28565b612a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1a90613ccd565b60405180910390fd5b505050565b6000612a498473ffffffffffffffffffffffffffffffffffffffff16613098565b15612bb2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a72612121565b8786866040518563ffffffff1660e01b8152600401612a949493929190613b6b565b602060405180830381600087803b158015612aae57600080fd5b505af1925050508015612adf57506040513d601f19601f82011682018060405250810190612adc91906134b1565b60015b612b62573d8060008114612b0f576040519150601f19603f3d011682016040523d82523d6000602084013e612b14565b606091505b50600081511415612b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5190613ccd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bb7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c1a8461181c565b612c249190614227565b9050600060076000848152602001908152602001600020549050818114612d09576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d8e9190614227565b9050600060096000848152602001908152602001600020549050600060088381548110612dbe57612dbd6144ba565b5b906000526020600020015490508060088381548110612de057612ddf6144ba565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e2f57612e2e61448b565b5b6001900381819060005260206000200160009055905550505050565b6000612e568361181c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3190613e8d565b60405180910390fd5b612f43816120b5565b15612f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7a90613d0d565b60405180910390fd5b612f8f600083836128b9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fdf9190614146565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546130b790614321565b90600052602060002090601f0160209004810192826130d95760008555613120565b82601f106130f257805160ff1916838001178555613120565b82800160010185558215613120579182015b8281111561311f578251825591602001919060010190613104565b5b50905061312d9190613131565b5090565b5b8082111561314a576000816000905550600101613132565b5090565b600061316161315c84614068565b614043565b90508281526020810184848401111561317d5761317c61451d565b5b6131888482856142df565b509392505050565b60006131a361319e84614099565b614043565b9050828152602081018484840111156131bf576131be61451d565b5b6131ca8482856142df565b509392505050565b6000813590506131e181614d4f565b92915050565b6000813590506131f681614d66565b92915050565b60008135905061320b81614d7d565b92915050565b60008151905061322081614d7d565b92915050565b600082601f83011261323b5761323a614518565b5b813561324b84826020860161314e565b91505092915050565b600082601f83011261326957613268614518565b5b8135613279848260208601613190565b91505092915050565b60008135905061329181614d94565b92915050565b6000815190506132a681614d94565b92915050565b6000813590506132bb81614dab565b92915050565b6000602082840312156132d7576132d6614527565b5b60006132e5848285016131d2565b91505092915050565b6000806040838503121561330557613304614527565b5b6000613313858286016131d2565b9250506020613324858286016131d2565b9150509250929050565b60008060006060848603121561334757613346614527565b5b6000613355868287016131d2565b9350506020613366868287016131d2565b925050604061337786828701613282565b9150509250925092565b6000806000806080858703121561339b5761339a614527565b5b60006133a9878288016131d2565b94505060206133ba878288016131d2565b93505060406133cb87828801613282565b925050606085013567ffffffffffffffff8111156133ec576133eb614522565b5b6133f887828801613226565b91505092959194509250565b6000806040838503121561341b5761341a614527565b5b6000613429858286016131d2565b925050602061343a858286016131e7565b9150509250929050565b6000806040838503121561345b5761345a614527565b5b6000613469858286016131d2565b925050602061347a85828601613282565b9150509250929050565b60006020828403121561349a57613499614527565b5b60006134a8848285016131fc565b91505092915050565b6000602082840312156134c7576134c6614527565b5b60006134d584828501613211565b91505092915050565b6000602082840312156134f4576134f3614527565b5b600082013567ffffffffffffffff81111561351257613511614522565b5b61351e84828501613254565b91505092915050565b60006020828403121561353d5761353c614527565b5b600061354b84828501613282565b91505092915050565b60006020828403121561356a57613569614527565b5b600061357884828501613297565b91505092915050565b60006020828403121561359757613596614527565b5b60006135a5848285016132ac565b91505092915050565b60006135ba8383613aff565b60208301905092915050565b6135cf8161425b565b82525050565b60006135e0826140da565b6135ea8185614108565b93506135f5836140ca565b8060005b8381101561362657815161360d88826135ae565b9750613618836140fb565b9250506001810190506135f9565b5085935050505092915050565b61363c8161426d565b82525050565b600061364d826140e5565b6136578185614119565b93506136678185602086016142ee565b6136708161452c565b840191505092915050565b6000613686826140f0565b613690818561412a565b93506136a08185602086016142ee565b6136a98161452c565b840191505092915050565b60006136bf826140f0565b6136c9818561413b565b93506136d98185602086016142ee565b80840191505092915050565b60006136f260248361412a565b91506136fd8261453d565b604082019050919050565b600061371560358361412a565b91506137208261458c565b604082019050919050565b6000613738601d8361412a565b9150613743826145db565b602082019050919050565b600061375b602b8361412a565b915061376682614604565b604082019050919050565b600061377e60328361412a565b915061378982614653565b604082019050919050565b60006137a160268361412a565b91506137ac826146a2565b604082019050919050565b60006137c4601c8361412a565b91506137cf826146f1565b602082019050919050565b60006137e7602b8361412a565b91506137f28261471a565b604082019050919050565b600061380a60248361412a565b915061381582614769565b604082019050919050565b600061382d60198361412a565b9150613838826147b8565b602082019050919050565b600061385060458361412a565b915061385b826147e1565b606082019050919050565b6000613873602e8361412a565b915061387e82614856565b604082019050919050565b6000613896602c8361412a565b91506138a1826148a5565b604082019050919050565b60006138b960388361412a565b91506138c4826148f4565b604082019050919050565b60006138dc601a8361412a565b91506138e782614943565b602082019050919050565b60006138ff602a8361412a565b915061390a8261496c565b604082019050919050565b600061392260298361412a565b915061392d826149bb565b604082019050919050565b600061394560248361412a565b915061395082614a0a565b604082019050919050565b600061396860208361412a565b915061397382614a59565b602082019050919050565b600061398b602c8361412a565b915061399682614a82565b604082019050919050565b60006139ae60288361412a565b91506139b982614ad1565b604082019050919050565b60006139d160208361412a565b91506139dc82614b20565b602082019050919050565b60006139f460298361412a565b91506139ff82614b49565b604082019050919050565b6000613a17602f8361412a565b9150613a2282614b98565b604082019050919050565b6000613a3a60218361412a565b9150613a4582614be7565b604082019050919050565b6000613a5d60318361412a565b9150613a6882614c36565b604082019050919050565b6000613a8060148361412a565b9150613a8b82614c85565b602082019050919050565b6000613aa3602c8361412a565b9150613aae82614cae565b604082019050919050565b6000613ac660158361412a565b9150613ad182614cfd565b602082019050919050565b6000613ae960118361412a565b9150613af482614d26565b602082019050919050565b613b08816142c5565b82525050565b613b17816142c5565b82525050565b613b26816142cf565b82525050565b6000613b3882856136b4565b9150613b4482846136b4565b91508190509392505050565b6000602082019050613b6560008301846135c6565b92915050565b6000608082019050613b8060008301876135c6565b613b8d60208301866135c6565b613b9a6040830185613b0e565b8181036060830152613bac8184613642565b905095945050505050565b60006020820190508181036000830152613bd181846135d5565b905092915050565b6000602082019050613bee6000830184613633565b92915050565b6000606082019050613c096000830186613633565b613c166020830185613b0e565b613c236040830184613b0e565b949350505050565b60006020820190508181036000830152613c45818461367b565b905092915050565b60006020820190508181036000830152613c66816136e5565b9050919050565b60006020820190508181036000830152613c8681613708565b9050919050565b60006020820190508181036000830152613ca68161372b565b9050919050565b60006020820190508181036000830152613cc68161374e565b9050919050565b60006020820190508181036000830152613ce681613771565b9050919050565b60006020820190508181036000830152613d0681613794565b9050919050565b60006020820190508181036000830152613d26816137b7565b9050919050565b60006020820190508181036000830152613d46816137da565b9050919050565b60006020820190508181036000830152613d66816137fd565b9050919050565b60006020820190508181036000830152613d8681613820565b9050919050565b60006020820190508181036000830152613da681613843565b9050919050565b60006020820190508181036000830152613dc681613866565b9050919050565b60006020820190508181036000830152613de681613889565b9050919050565b60006020820190508181036000830152613e06816138ac565b9050919050565b60006020820190508181036000830152613e26816138cf565b9050919050565b60006020820190508181036000830152613e46816138f2565b9050919050565b60006020820190508181036000830152613e6681613915565b9050919050565b60006020820190508181036000830152613e8681613938565b9050919050565b60006020820190508181036000830152613ea68161395b565b9050919050565b60006020820190508181036000830152613ec68161397e565b9050919050565b60006020820190508181036000830152613ee6816139a1565b9050919050565b60006020820190508181036000830152613f06816139c4565b9050919050565b60006020820190508181036000830152613f26816139e7565b9050919050565b60006020820190508181036000830152613f4681613a0a565b9050919050565b60006020820190508181036000830152613f6681613a2d565b9050919050565b60006020820190508181036000830152613f8681613a50565b9050919050565b60006020820190508181036000830152613fa681613a73565b9050919050565b60006020820190508181036000830152613fc681613a96565b9050919050565b60006020820190508181036000830152613fe681613ab9565b9050919050565b6000602082019050818103600083015261400681613adc565b9050919050565b60006020820190506140226000830184613b0e565b92915050565b600060208201905061403d6000830184613b1d565b92915050565b600061404d61405e565b90506140598282614353565b919050565b6000604051905090565b600067ffffffffffffffff821115614083576140826144e9565b5b61408c8261452c565b9050602081019050919050565b600067ffffffffffffffff8211156140b4576140b36144e9565b5b6140bd8261452c565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614151826142c5565b915061415c836142c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614191576141906143fe565b5b828201905092915050565b60006141a7826142c5565b91506141b2836142c5565b9250826141c2576141c161442d565b5b828204905092915050565b60006141d8826142c5565b91506141e3836142c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421c5761421b6143fe565b5b828202905092915050565b6000614232826142c5565b915061423d836142c5565b9250828210156142505761424f6143fe565b5b828203905092915050565b6000614266826142a5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b8381101561430c5780820151818401526020810190506142f1565b8381111561431b576000848401525b50505050565b6000600282049050600182168061433957607f821691505b6020821081141561434d5761434c61445c565b5b50919050565b61435c8261452c565b810181811067ffffffffffffffff8211171561437b5761437a6144e9565b5b80604052505050565b600061438f826142c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143c2576143c16143fe565b5b600182019050919050565b60006143d8826142c5565b91506143e3836142c5565b9250826143f3576143f261442d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d757374206d696e74206174206c65617374206f6e652043726561747572655460008201527f6f61642100000000000000000000000000000000000000000000000000000000602082015250565b7f596f7527766520616c7265616479206d696e746564204372656174757265546f60008201527f61647a2120446f6e277420626520677265656479210000000000000000000000602082015250565b7f50726573616c652068617320616c726561647920736f6c64206f757421000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d617820737570706c79206f66204372656174757265546f61647a20616c726560008201527f616479206d696e74656421000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d757374206f776e206174206c65617374206f6e65204372656174757265206f60008201527f722043727970746f546f61647a20746f206d696e7420696e207468652070726560208201527f73616c6521000000000000000000000000000000000000000000000000000000604082015250565b7f4d757374206d696e74206c657373207468616e2074686520616c6c6f6361746560008201527f6420646576207265736572766521000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f446576206d696e74696e67207068617365206973206f7665722e000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e74206f6e65204372656174757265546f60008201527f61647a2100000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682045544820737570706c69656420666f72207472616e60008201527f73616374696f6e21000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206f70656e2e000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f46696e616c20706861736520697320434c4f5345440000000000000000000000600082015250565b7f4e6f206261636b2d7374657070696e6721000000000000000000000000000000600082015250565b614d588161425b565b8114614d6357600080fd5b50565b614d6f8161426d565b8114614d7a57600080fd5b50565b614d8681614279565b8114614d9157600080fd5b50565b614d9d816142c5565b8114614da857600080fd5b50565b614db4816142cf565b8114614dbf57600080fd5b5056fea2646970667358221220f7a7d129cd0f36efd3efd767f6ec42d03e5260df13f989fcddb07d6f682c9eb764736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f6170692e6372656174757265746f61647a2e636f6d2f0000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80635c47c08811610118578063a22cb465116100a0578063d4d7b19a1161006f578063d4d7b19a146107bb578063d5abeb01146107fa578063e985e9c514610825578063f2fde38b14610862578063fcd2a4271461088b5761020f565b8063a22cb46514610701578063a945bf801461072a578063b88d4fde14610755578063c87b56dd1461077e5761020f565b80636fc6cbc5116100e75780636fc6cbc51461061a57806370a0823114610657578063715018a6146106945780638da5cb5b146106ab57806395d89b41146106d65761020f565b80635c47c0881461055e578063627804af146105895780636352211e146105b25780636c0360eb146105ef5761020f565b806323b872dd1161019b578063438b63001161016a578063438b6300146104745780634f6ccce7146104b157806351cff8d9146104ee57806355ea73281461050a57806355f804b3146105355761020f565b806323b872dd146103c95780632f745c59146103f257806340c10f191461042f57806342842e0e1461044b5761020f565b8063103ae988116101e2578063103ae988146102e257806317881cbf1461030b57806318160ddd146103365780632142aa2c14610361578063239c70ae1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613484565b6108b6565b6040516102489190613bd9565b60405180910390f35b34801561025d57600080fd5b50610266610930565b6040516102739190613c2b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613527565b6109c2565b6040516102b09190613b50565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613444565b610a47565b005b3480156102ee57600080fd5b5061030960048036038101906103049190613581565b610b5f565b005b34801561031757600080fd5b50610320610ca9565b60405161032d9190614028565b60405180910390f35b34801561034257600080fd5b5061034b610cbf565b604051610358919061400d565b60405180910390f35b34801561036d57600080fd5b50610388600480360381019061038391906132c1565b610ccc565b604051610395919061400d565b60405180910390f35b3480156103aa57600080fd5b506103b3610d2c565b6040516103c0919061400d565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb919061332e565b610d31565b005b3480156103fe57600080fd5b5061041960048036038101906104149190613444565b610d91565b604051610426919061400d565b60405180910390f35b61044960048036038101906104449190613444565b610e36565b005b34801561045757600080fd5b50610472600480360381019061046d919061332e565b6112aa565b005b34801561048057600080fd5b5061049b600480360381019061049691906132c1565b6112ca565b6040516104a89190613bb7565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190613527565b611378565b6040516104e5919061400d565b60405180910390f35b610508600480360381019061050391906132c1565b6113e9565b005b34801561051657600080fd5b5061051f6114a6565b60405161052c919061400d565b60405180910390f35b34801561054157600080fd5b5061055c600480360381019061055791906134de565b6114b2565b005b34801561056a57600080fd5b50610573611548565b604051610580919061400d565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190613444565b61154e565b005b3480156105be57600080fd5b506105d960048036038101906105d49190613527565b6116bc565b6040516105e69190613b50565b60405180910390f35b3480156105fb57600080fd5b5061060461176e565b6040516106119190613c2b565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c91906132c1565b6117fc565b60405161064e9190613bd9565b60405180910390f35b34801561066357600080fd5b5061067e600480360381019061067991906132c1565b61181c565b60405161068b919061400d565b60405180910390f35b3480156106a057600080fd5b506106a96118d4565b005b3480156106b757600080fd5b506106c061195c565b6040516106cd9190613b50565b60405180910390f35b3480156106e257600080fd5b506106eb611986565b6040516106f89190613c2b565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190613404565b611a18565b005b34801561073657600080fd5b5061073f611b99565b60405161074c919061400d565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190613381565b611ba5565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613527565b611c07565b6040516107b29190613c2b565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd91906132c1565b611cae565b6040516107f193929190613bf4565b60405180910390f35b34801561080657600080fd5b5061080f611e3c565b60405161081c919061400d565b60405180910390f35b34801561083157600080fd5b5061084c600480360381019061084791906132ee565b611e42565b6040516108599190613bd9565b60405180910390f35b34801561086e57600080fd5b50610889600480360381019061088491906132c1565b611ed6565b005b34801561089757600080fd5b506108a0611fce565b6040516108ad919061400d565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610929575061092882611fd3565b5b9050919050565b60606000805461093f90614321565b80601f016020809104026020016040519081016040528092919081815260200182805461096b90614321565b80156109b85780601f1061098d576101008083540402835291602001916109b8565b820191906000526020600020905b81548152906001019060200180831161099b57829003601f168201915b5050505050905090565b60006109cd826120b5565b610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390613ead565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a52826116bc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90613f4d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae2612121565b73ffffffffffffffffffffffffffffffffffffffff161480610b115750610b1081610b0b612121565b611e42565b5b610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4790613ded565b60405180910390fd5b610b5a8383612129565b505050565b610b67612121565b73ffffffffffffffffffffffffffffffffffffffff16610b8561195c565b73ffffffffffffffffffffffffffffffffffffffff1614610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290613eed565b60405180910390fd5b600c60149054906101000a900463ffffffff1663ffffffff168163ffffffff1611610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290613fed565b60405180910390fd5b60038163ffffffff161115610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90613fcd565b60405180910390fd5b80600c60146101000a81548163ffffffff021916908363ffffffff16021790555050565b600c60149054906101000a900463ffffffff1681565b6000600880549050905090565b600080610cd883611cae565b5050905060011515811515148015610d0857506002600c60149054906101000a900463ffffffff1663ffffffff16105b610d1a5767016345785d8a0000610d24565b670138a388a43c00005b915050919050565b600181565b610d42610d3c612121565b826121e2565b610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613f6d565b60405180910390fd5b610d8c8383836122c0565b505050565b6000610d9c8361181c565b8210610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613cad565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6001600c60149054906101000a900463ffffffff1663ffffffff161480610e7557506002600c60149054906101000a900463ffffffff1663ffffffff16145b610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90613f8d565b60405180910390fd5b6000610ebe610cbf565b90506000610ecb8461181c565b905060008311610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790613c4d565b60405180910390fd5b60011515600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90613c6d565b60405180910390fd5b6001600c60149054906101000a900463ffffffff1663ffffffff1614156110cc576000610fd085611cae565b5050905080611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90613d8d565b60405180910390fd5b609661115c6110239190614146565b848461102f9190614146565b1115611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790613c8d565b60405180910390fd5b83670138a388a43c000061108491906141cd565b3410156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613ecd565b60405180910390fd5b50611173565b8267016345785d8a00006110e091906141cd565b341015611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990613ecd565b60405180910390fd5b6122b883836111319190614146565b1115611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990613d2d565b60405180910390fd5b5b60008111156111d0576001818461118a9190614146565b11156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613e6d565b60405180910390fd5b611215565b6001831115611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90613e6d565b60405180910390fd5b5b6000600190505b83811161124b576112388582856112339190614146565b61251c565b808061124390614384565b91505061121c565b506001600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6112c583838360405180602001604052806000815250611ba5565b505050565b606060006112d78361181c565b905060008167ffffffffffffffff8111156112f5576112f46144e9565b5b6040519080825280602002602001820160405280156113235781602001602082028036833780820191505090505b50905060005b8281101561136d5761133b8582610d91565b82828151811061134e5761134d6144ba565b5b602002602001018181525050808061136590614384565b915050611329565b508092505050919050565b6000611382610cbf565b82106113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613fad565b60405180910390fd5b600882815481106113d7576113d66144ba565b5b90600052602060002001549050919050565b6113f1612121565b73ffffffffffffffffffffffffffffffffffffffff1661140f61195c565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90613eed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506114a357600080fd5b50565b670138a388a43c000081565b6114ba612121565b73ffffffffffffffffffffffffffffffffffffffff166114d861195c565b73ffffffffffffffffffffffffffffffffffffffff161461152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590613eed565b60405180910390fd5b80600d90805190602001906115449291906130ab565b5050565b61115c81565b611556612121565b73ffffffffffffffffffffffffffffffffffffffff1661157461195c565b73ffffffffffffffffffffffffffffffffffffffff16146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613eed565b60405180910390fd5b6000600c60149054906101000a900463ffffffff1663ffffffff1614611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613e0d565b60405180910390fd5b600061162f610cbf565b90506096818361163f9190614146565b1115611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613dad565b60405180910390fd5b6000600190505b8281116116b6576116a384828461169e9190614146565b61251c565b80806116ae90614384565b915050611687565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90613e4d565b60405180910390fd5b80915050919050565b600d805461177b90614321565b80601f01602080910402602001604051908101604052809291908181526020018280546117a790614321565b80156117f45780601f106117c9576101008083540402835291602001916117f4565b820191906000526020600020905b8154815290600101906020018083116117d757829003601f168201915b505050505081565b600e6020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561188d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188490613e2d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118dc612121565b73ffffffffffffffffffffffffffffffffffffffff166118fa61195c565b73ffffffffffffffffffffffffffffffffffffffff1614611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790613eed565b60405180910390fd5b61195a600061253a565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461199590614321565b80601f01602080910402602001604051908101604052809291908181526020018280546119c190614321565b8015611a0e5780601f106119e357610100808354040283529160200191611a0e565b820191906000526020600020905b8154815290600101906020018083116119f157829003601f168201915b5050505050905090565b611a20612121565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8590613d6d565b60405180910390fd5b8060056000611a9b612121565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b48612121565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b8d9190613bd9565b60405180910390a35050565b67016345785d8a000081565b611bb6611bb0612121565b836121e2565b611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90613f6d565b60405180910390fd5b611c0184848484612600565b50505050565b6060611c12826120b5565b611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890613f2d565b60405180910390fd5b6000611c5b61265c565b90506000815111611c7b5760405180602001604052806000815250611ca6565b80611c85846126ee565b604051602001611c96929190613b2c565b6040516020818303038152906040525b915050919050565b600080600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401611d149190613b50565b60206040518083038186803b158015611d2c57600080fd5b505afa158015611d40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d649190613554565b90506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401611dc89190613b50565b60206040518083038186803b158015611de057600080fd5b505afa158015611df4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e189190613554565b905060008184611e289190614146565b118382965096509650505050509193909250565b6122b881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ede612121565b73ffffffffffffffffffffffffffffffffffffffff16611efc61195c565b73ffffffffffffffffffffffffffffffffffffffff1614611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4990613eed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb990613ced565b60405180910390fd5b611fcb8161253a565b50565b609681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061209e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120ae57506120ad8261284f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661219c836116bc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121ed826120b5565b61222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390613dcd565b60405180910390fd5b6000612237836116bc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122a657508373ffffffffffffffffffffffffffffffffffffffff1661228e846109c2565b73ffffffffffffffffffffffffffffffffffffffff16145b806122b757506122b68185611e42565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122e0826116bc565b73ffffffffffffffffffffffffffffffffffffffff1614612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90613f0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d90613d4d565b60405180910390fd5b6123b18383836128b9565b6123bc600082612129565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461240c9190614227565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124639190614146565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125368282604051806020016040528060008152506129cd565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61260b8484846122c0565b61261784848484612a28565b612656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264d90613ccd565b60405180910390fd5b50505050565b6060600d805461266b90614321565b80601f016020809104026020016040519081016040528092919081815260200182805461269790614321565b80156126e45780601f106126b9576101008083540402835291602001916126e4565b820191906000526020600020905b8154815290600101906020018083116126c757829003601f168201915b5050505050905090565b60606000821415612736576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061284a565b600082905060005b6000821461276857808061275190614384565b915050600a82612761919061419c565b915061273e565b60008167ffffffffffffffff811115612784576127836144e9565b5b6040519080825280601f01601f1916602001820160405280156127b65781602001600182028036833780820191505090505b5090505b60008514612843576001826127cf9190614227565b9150600a856127de91906143cd565b60306127ea9190614146565b60f81b818381518110612800576127ff6144ba565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561283c919061419c565b94506127ba565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128c4838383612bbf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129075761290281612bc4565b612946565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612945576129448382612c0d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129895761298481612d7a565b6129c8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129c7576129c68282612e4b565b5b5b505050565b6129d78383612eca565b6129e46000848484612a28565b612a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1a90613ccd565b60405180910390fd5b505050565b6000612a498473ffffffffffffffffffffffffffffffffffffffff16613098565b15612bb2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a72612121565b8786866040518563ffffffff1660e01b8152600401612a949493929190613b6b565b602060405180830381600087803b158015612aae57600080fd5b505af1925050508015612adf57506040513d601f19601f82011682018060405250810190612adc91906134b1565b60015b612b62573d8060008114612b0f576040519150601f19603f3d011682016040523d82523d6000602084013e612b14565b606091505b50600081511415612b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5190613ccd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bb7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c1a8461181c565b612c249190614227565b9050600060076000848152602001908152602001600020549050818114612d09576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d8e9190614227565b9050600060096000848152602001908152602001600020549050600060088381548110612dbe57612dbd6144ba565b5b906000526020600020015490508060088381548110612de057612ddf6144ba565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e2f57612e2e61448b565b5b6001900381819060005260206000200160009055905550505050565b6000612e568361181c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3190613e8d565b60405180910390fd5b612f43816120b5565b15612f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7a90613d0d565b60405180910390fd5b612f8f600083836128b9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fdf9190614146565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546130b790614321565b90600052602060002090601f0160209004810192826130d95760008555613120565b82601f106130f257805160ff1916838001178555613120565b82800160010185558215613120579182015b8281111561311f578251825591602001919060010190613104565b5b50905061312d9190613131565b5090565b5b8082111561314a576000816000905550600101613132565b5090565b600061316161315c84614068565b614043565b90508281526020810184848401111561317d5761317c61451d565b5b6131888482856142df565b509392505050565b60006131a361319e84614099565b614043565b9050828152602081018484840111156131bf576131be61451d565b5b6131ca8482856142df565b509392505050565b6000813590506131e181614d4f565b92915050565b6000813590506131f681614d66565b92915050565b60008135905061320b81614d7d565b92915050565b60008151905061322081614d7d565b92915050565b600082601f83011261323b5761323a614518565b5b813561324b84826020860161314e565b91505092915050565b600082601f83011261326957613268614518565b5b8135613279848260208601613190565b91505092915050565b60008135905061329181614d94565b92915050565b6000815190506132a681614d94565b92915050565b6000813590506132bb81614dab565b92915050565b6000602082840312156132d7576132d6614527565b5b60006132e5848285016131d2565b91505092915050565b6000806040838503121561330557613304614527565b5b6000613313858286016131d2565b9250506020613324858286016131d2565b9150509250929050565b60008060006060848603121561334757613346614527565b5b6000613355868287016131d2565b9350506020613366868287016131d2565b925050604061337786828701613282565b9150509250925092565b6000806000806080858703121561339b5761339a614527565b5b60006133a9878288016131d2565b94505060206133ba878288016131d2565b93505060406133cb87828801613282565b925050606085013567ffffffffffffffff8111156133ec576133eb614522565b5b6133f887828801613226565b91505092959194509250565b6000806040838503121561341b5761341a614527565b5b6000613429858286016131d2565b925050602061343a858286016131e7565b9150509250929050565b6000806040838503121561345b5761345a614527565b5b6000613469858286016131d2565b925050602061347a85828601613282565b9150509250929050565b60006020828403121561349a57613499614527565b5b60006134a8848285016131fc565b91505092915050565b6000602082840312156134c7576134c6614527565b5b60006134d584828501613211565b91505092915050565b6000602082840312156134f4576134f3614527565b5b600082013567ffffffffffffffff81111561351257613511614522565b5b61351e84828501613254565b91505092915050565b60006020828403121561353d5761353c614527565b5b600061354b84828501613282565b91505092915050565b60006020828403121561356a57613569614527565b5b600061357884828501613297565b91505092915050565b60006020828403121561359757613596614527565b5b60006135a5848285016132ac565b91505092915050565b60006135ba8383613aff565b60208301905092915050565b6135cf8161425b565b82525050565b60006135e0826140da565b6135ea8185614108565b93506135f5836140ca565b8060005b8381101561362657815161360d88826135ae565b9750613618836140fb565b9250506001810190506135f9565b5085935050505092915050565b61363c8161426d565b82525050565b600061364d826140e5565b6136578185614119565b93506136678185602086016142ee565b6136708161452c565b840191505092915050565b6000613686826140f0565b613690818561412a565b93506136a08185602086016142ee565b6136a98161452c565b840191505092915050565b60006136bf826140f0565b6136c9818561413b565b93506136d98185602086016142ee565b80840191505092915050565b60006136f260248361412a565b91506136fd8261453d565b604082019050919050565b600061371560358361412a565b91506137208261458c565b604082019050919050565b6000613738601d8361412a565b9150613743826145db565b602082019050919050565b600061375b602b8361412a565b915061376682614604565b604082019050919050565b600061377e60328361412a565b915061378982614653565b604082019050919050565b60006137a160268361412a565b91506137ac826146a2565b604082019050919050565b60006137c4601c8361412a565b91506137cf826146f1565b602082019050919050565b60006137e7602b8361412a565b91506137f28261471a565b604082019050919050565b600061380a60248361412a565b915061381582614769565b604082019050919050565b600061382d60198361412a565b9150613838826147b8565b602082019050919050565b600061385060458361412a565b915061385b826147e1565b606082019050919050565b6000613873602e8361412a565b915061387e82614856565b604082019050919050565b6000613896602c8361412a565b91506138a1826148a5565b604082019050919050565b60006138b960388361412a565b91506138c4826148f4565b604082019050919050565b60006138dc601a8361412a565b91506138e782614943565b602082019050919050565b60006138ff602a8361412a565b915061390a8261496c565b604082019050919050565b600061392260298361412a565b915061392d826149bb565b604082019050919050565b600061394560248361412a565b915061395082614a0a565b604082019050919050565b600061396860208361412a565b915061397382614a59565b602082019050919050565b600061398b602c8361412a565b915061399682614a82565b604082019050919050565b60006139ae60288361412a565b91506139b982614ad1565b604082019050919050565b60006139d160208361412a565b91506139dc82614b20565b602082019050919050565b60006139f460298361412a565b91506139ff82614b49565b604082019050919050565b6000613a17602f8361412a565b9150613a2282614b98565b604082019050919050565b6000613a3a60218361412a565b9150613a4582614be7565b604082019050919050565b6000613a5d60318361412a565b9150613a6882614c36565b604082019050919050565b6000613a8060148361412a565b9150613a8b82614c85565b602082019050919050565b6000613aa3602c8361412a565b9150613aae82614cae565b604082019050919050565b6000613ac660158361412a565b9150613ad182614cfd565b602082019050919050565b6000613ae960118361412a565b9150613af482614d26565b602082019050919050565b613b08816142c5565b82525050565b613b17816142c5565b82525050565b613b26816142cf565b82525050565b6000613b3882856136b4565b9150613b4482846136b4565b91508190509392505050565b6000602082019050613b6560008301846135c6565b92915050565b6000608082019050613b8060008301876135c6565b613b8d60208301866135c6565b613b9a6040830185613b0e565b8181036060830152613bac8184613642565b905095945050505050565b60006020820190508181036000830152613bd181846135d5565b905092915050565b6000602082019050613bee6000830184613633565b92915050565b6000606082019050613c096000830186613633565b613c166020830185613b0e565b613c236040830184613b0e565b949350505050565b60006020820190508181036000830152613c45818461367b565b905092915050565b60006020820190508181036000830152613c66816136e5565b9050919050565b60006020820190508181036000830152613c8681613708565b9050919050565b60006020820190508181036000830152613ca68161372b565b9050919050565b60006020820190508181036000830152613cc68161374e565b9050919050565b60006020820190508181036000830152613ce681613771565b9050919050565b60006020820190508181036000830152613d0681613794565b9050919050565b60006020820190508181036000830152613d26816137b7565b9050919050565b60006020820190508181036000830152613d46816137da565b9050919050565b60006020820190508181036000830152613d66816137fd565b9050919050565b60006020820190508181036000830152613d8681613820565b9050919050565b60006020820190508181036000830152613da681613843565b9050919050565b60006020820190508181036000830152613dc681613866565b9050919050565b60006020820190508181036000830152613de681613889565b9050919050565b60006020820190508181036000830152613e06816138ac565b9050919050565b60006020820190508181036000830152613e26816138cf565b9050919050565b60006020820190508181036000830152613e46816138f2565b9050919050565b60006020820190508181036000830152613e6681613915565b9050919050565b60006020820190508181036000830152613e8681613938565b9050919050565b60006020820190508181036000830152613ea68161395b565b9050919050565b60006020820190508181036000830152613ec68161397e565b9050919050565b60006020820190508181036000830152613ee6816139a1565b9050919050565b60006020820190508181036000830152613f06816139c4565b9050919050565b60006020820190508181036000830152613f26816139e7565b9050919050565b60006020820190508181036000830152613f4681613a0a565b9050919050565b60006020820190508181036000830152613f6681613a2d565b9050919050565b60006020820190508181036000830152613f8681613a50565b9050919050565b60006020820190508181036000830152613fa681613a73565b9050919050565b60006020820190508181036000830152613fc681613a96565b9050919050565b60006020820190508181036000830152613fe681613ab9565b9050919050565b6000602082019050818103600083015261400681613adc565b9050919050565b60006020820190506140226000830184613b0e565b92915050565b600060208201905061403d6000830184613b1d565b92915050565b600061404d61405e565b90506140598282614353565b919050565b6000604051905090565b600067ffffffffffffffff821115614083576140826144e9565b5b61408c8261452c565b9050602081019050919050565b600067ffffffffffffffff8211156140b4576140b36144e9565b5b6140bd8261452c565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614151826142c5565b915061415c836142c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614191576141906143fe565b5b828201905092915050565b60006141a7826142c5565b91506141b2836142c5565b9250826141c2576141c161442d565b5b828204905092915050565b60006141d8826142c5565b91506141e3836142c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421c5761421b6143fe565b5b828202905092915050565b6000614232826142c5565b915061423d836142c5565b9250828210156142505761424f6143fe565b5b828203905092915050565b6000614266826142a5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b8381101561430c5780820151818401526020810190506142f1565b8381111561431b576000848401525b50505050565b6000600282049050600182168061433957607f821691505b6020821081141561434d5761434c61445c565b5b50919050565b61435c8261452c565b810181811067ffffffffffffffff8211171561437b5761437a6144e9565b5b80604052505050565b600061438f826142c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143c2576143c16143fe565b5b600182019050919050565b60006143d8826142c5565b91506143e3836142c5565b9250826143f3576143f261442d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d757374206d696e74206174206c65617374206f6e652043726561747572655460008201527f6f61642100000000000000000000000000000000000000000000000000000000602082015250565b7f596f7527766520616c7265616479206d696e746564204372656174757265546f60008201527f61647a2120446f6e277420626520677265656479210000000000000000000000602082015250565b7f50726573616c652068617320616c726561647920736f6c64206f757421000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d617820737570706c79206f66204372656174757265546f61647a20616c726560008201527f616479206d696e74656421000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d757374206f776e206174206c65617374206f6e65204372656174757265206f60008201527f722043727970746f546f61647a20746f206d696e7420696e207468652070726560208201527f73616c6521000000000000000000000000000000000000000000000000000000604082015250565b7f4d757374206d696e74206c657373207468616e2074686520616c6c6f6361746560008201527f6420646576207265736572766521000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f446576206d696e74696e67207068617365206973206f7665722e000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e74206f6e65204372656174757265546f60008201527f61647a2100000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682045544820737570706c69656420666f72207472616e60008201527f73616374696f6e21000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206f70656e2e000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f46696e616c20706861736520697320434c4f5345440000000000000000000000600082015250565b7f4e6f206261636b2d7374657070696e6721000000000000000000000000000000600082015250565b614d588161425b565b8114614d6357600080fd5b50565b614d6f8161426d565b8114614d7a57600080fd5b50565b614d8681614279565b8114614d9157600080fd5b50565b614d9d816142c5565b8114614da857600080fd5b50565b614db4816142cf565b8114614dbf57600080fd5b5056fea2646970667358221220f7a7d129cd0f36efd3efd767f6ec42d03e5260df13f989fcddb07d6f682c9eb764736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f6170692e6372656174757265746f61647a2e636f6d2f0000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://api.creaturetoadz.com/
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [2] : 68747470733a2f2f6170692e6372656174757265746f61647a2e636f6d2f0000
Deployed Bytecode Sourcemap
45907:4357:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34975:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21824:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23383:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22906:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49916:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46540:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35615:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47462:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46345:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24273:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35283:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48052:1400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24683:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49458:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35805:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50133:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46246:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49812:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46437:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47667:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21518:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46574:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46602:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21248:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42798:94;;;;;;;;;;;;;:::i;:::-;;42147:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21993:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23676:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46194:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24939:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22168:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46951:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;46300:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24042:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43047:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46391:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34975:224;35077:4;35116:35;35101:50;;;:11;:50;;;;:90;;;;35155:36;35179:11;35155:23;:36::i;:::-;35101:90;35094:97;;34975:224;;;:::o;21824:100::-;21878:13;21911:5;21904:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21824:100;:::o;23383:221::-;23459:7;23487:16;23495:7;23487;:16::i;:::-;23479:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23572:15;:24;23588:7;23572:24;;;;;;;;;;;;;;;;;;;;;23565:31;;23383:221;;;:::o;22906:411::-;22987:13;23003:23;23018:7;23003:14;:23::i;:::-;22987:39;;23051:5;23045:11;;:2;:11;;;;23037:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23145:5;23129:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23154:37;23171:5;23178:12;:10;:12::i;:::-;23154:16;:37::i;:::-;23129:62;23107:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23288:21;23297:2;23301:7;23288:8;:21::i;:::-;22976:341;22906:411;;:::o;49916:211::-;42378:12;:10;:12::i;:::-;42367:23;;:7;:5;:7::i;:::-;:23;;;42359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50005:9:::1;;;;;;;;;;;49992:22;;:10;:22;;;49984:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;50065:1;50051:10;:15;;;;50043:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;50111:10;50099:9;;:22;;;;;;;;;;;;;;;;;;49916:211:::0;:::o;46540:27::-;;;;;;;;;;;;;:::o;35615:113::-;35676:7;35703:10;:17;;;;35696:24;;35615:113;:::o;47462:199::-;47519:13;47542:12;47562:17;47571:7;47562:8;:17::i;:::-;47541:38;;;;47605:4;47594:15;;:7;:15;;;:32;;;;;47625:1;47613:9;;;;;;;;;;;:13;;;47594:32;47593:62;;46232:9;47593:62;;;46284:11;47593:62;47586:69;;;47462:199;;;:::o;46345:41::-;46385:1;46345:41;:::o;24273:339::-;24468:41;24487:12;:10;:12::i;:::-;24501:7;24468:18;:41::i;:::-;24460:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24576:28;24586:4;24592:2;24596:7;24576:9;:28::i;:::-;24273:339;;;:::o;35283:256::-;35380:7;35416:23;35433:5;35416:16;:23::i;:::-;35408:5;:31;35400:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35505:12;:19;35518:5;35505:19;;;;;;;;;;;;;;;:26;35525:5;35505:26;;;;;;;;;;;;35498:33;;35283:256;;;;:::o;48052:1400::-;48147:1;48134:9;;;;;;;;;;;:14;;;:32;;;;48165:1;48152:9;;;;;;;;;;;:14;;;48134:32;48126:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48200:14;48217:13;:11;:13::i;:::-;48200:30;;48237:21;48261:18;48271:7;48261:9;:18::i;:::-;48237:42;;48310:1;48296:11;:15;48288:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48388:4;48367:25;;:8;:17;48376:7;48367:17;;;;;;;;;;;;;;;;;;;;;;;;;:25;;;;48359:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;48476:1;48463:9;;;;;;;;;;;:14;;;48459:616;;;48504:12;48524:17;48533:7;48524:8;:17::i;:::-;48503:38;;;;48558:7;48550:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;46428:3;46477:4;48680:26;;;;:::i;:::-;48665:11;48656:6;:20;;;;:::i;:::-;:50;;48648:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;48784:11;46284;48770:25;;;;:::i;:::-;48757:9;:38;;48749:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;48479:369;48459:616;;;48913:11;46232:9;48899:25;;;;:::i;:::-;48886:9;:38;;48878:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;46336:4;48995:11;48986:6;:20;;;;:::i;:::-;:33;;48978:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;48459:616;49103:1;49087:13;:17;49083:233;;;46385:1;49137:13;49123:11;:27;;;;:::i;:::-;:44;;49115:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;49083:233;;;46385:1;49239:11;:28;;49231:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49083:233;49329:9;49341:1;49329:13;;49324:90;49349:11;49344:1;:16;49324:90;;49376:30;49386:7;49404:1;49395:6;:10;;;;:::i;:::-;49376:9;:30::i;:::-;49362:3;;;;;:::i;:::-;;;;49324:90;;;;49442:4;49422:8;:17;49431:7;49422:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;48119:1333;;48052:1400;;:::o;24683:185::-;24821:39;24838:4;24844:2;24848:7;24821:39;;;;;;;;;;;;:16;:39::i;:::-;24683:185;;;:::o;49458:348::-;49533:16;49561:23;49587:17;49597:6;49587:9;:17::i;:::-;49561:43;;49611:25;49653:15;49639:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49611:58;;49681:9;49676:103;49696:15;49692:1;:19;49676:103;;;49741:30;49761:6;49769:1;49741:19;:30::i;:::-;49727:8;49736:1;49727:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;49713:3;;;;;:::i;:::-;;;;49676:103;;;;49792:8;49785:15;;;;49458:348;;;:::o;35805:233::-;35880:7;35916:30;:28;:30::i;:::-;35908:5;:38;35900:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36013:10;36024:5;36013:17;;;;;;;;:::i;:::-;;;;;;;;;;36006:24;;35805:233;;;:::o;50133:126::-;42378:12;:10;:12::i;:::-;42367:23;;:7;:5;:7::i;:::-;:23;;;42359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50216:7:::1;50208:21;;:44;50230:21;50208:44;;;;;;;;;;;;;;;;;;;;;;;50200:53;;;::::0;::::1;;50133:126:::0;:::o;46246:49::-;46284:11;46246:49;:::o;49812:98::-;42378:12;:10;:12::i;:::-;42367:23;;:7;:5;:7::i;:::-;:23;;;42359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49893:11:::1;49883:7;:21;;;;;;;;;;;;:::i;:::-;;49812:98:::0;:::o;46437:44::-;46477:4;46437:44;:::o;47667:379::-;42378:12;:10;:12::i;:::-;42367:23;;:7;:5;:7::i;:::-;:23;;;42359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47769:1:::1;47756:9;;;;;;;;;;;:14;;;47748:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;47810:14;47827:13;:11;:13::i;:::-;47810:30;;46428:3;47871:6;47857:11;:20;;;;:::i;:::-;:34;;47849:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;47956:9;47968:1;47956:13;;47951:90;47976:11;47971:1;:16;47951:90;;48003:30;48013:7;48031:1;48022:6;:10;;;;:::i;:::-;48003:9;:30::i;:::-;47989:3;;;;;:::i;:::-;;;;47951:90;;;;47741:305;47667:379:::0;;:::o;21518:239::-;21590:7;21610:13;21626:7;:16;21634:7;21626:16;;;;;;;;;;;;;;;;;;;;;21610:32;;21678:1;21661:19;;:5;:19;;;;21653:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21744:5;21737:12;;;21518:239;;;:::o;46574:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46602:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;21248:208::-;21320:7;21365:1;21348:19;;:5;:19;;;;21340:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21432:9;:16;21442:5;21432:16;;;;;;;;;;;;;;;;21425:23;;21248:208;;;:::o;42798:94::-;42378:12;:10;:12::i;:::-;42367:23;;:7;:5;:7::i;:::-;:23;;;42359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42863:21:::1;42881:1;42863:9;:21::i;:::-;42798:94::o:0;42147:87::-;42193:7;42220:6;;;;;;;;;;;42213:13;;42147:87;:::o;21993:104::-;22049:13;22082:7;22075:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21993:104;:::o;23676:295::-;23791:12;:10;:12::i;:::-;23779:24;;:8;:24;;;;23771:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23891:8;23846:18;:32;23865:12;:10;:12::i;:::-;23846:32;;;;;;;;;;;;;;;:42;23879:8;23846:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23944:8;23915:48;;23930:12;:10;:12::i;:::-;23915:48;;;23954:8;23915:48;;;;;;:::i;:::-;;;;;;;;23676:295;;:::o;46194:47::-;46232:9;46194:47;:::o;24939:328::-;25114:41;25133:12;:10;:12::i;:::-;25147:7;25114:18;:41::i;:::-;25106:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25220:39;25234:4;25240:2;25244:7;25253:5;25220:13;:39::i;:::-;24939:328;;;;:::o;22168:334::-;22241:13;22275:16;22283:7;22275;:16::i;:::-;22267:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22356:21;22380:10;:8;:10::i;:::-;22356:34;;22432:1;22414:7;22408:21;:25;:86;;;;;;;;;;;;;;;;;22460:7;22469:18;:7;:16;:18::i;:::-;22443:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22408:86;22401:93;;;22168:334;;;:::o;46951:505::-;47007:11;47020:24;47046:23;47078:31;47129:14;;;;;;;;;;;47078:66;;47151:25;47179:14;:24;;;47204:7;47179:33;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47151:61;;47225:30;47275:13;;;;;;;;;;;47225:64;;47296:24;47323:13;:23;;;47347:7;47323:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47296:59;;47411:1;47392:16;47372:17;:36;;;;:::i;:::-;:40;47414:17;47433:16;47364:86;;;;;;;;;;46951:505;;;;;:::o;46300:40::-;46336:4;46300:40;:::o;24042:164::-;24139:4;24163:18;:25;24182:5;24163:25;;;;;;;;;;;;;;;:35;24189:8;24163:35;;;;;;;;;;;;;;;;;;;;;;;;;24156:42;;24042:164;;;;:::o;43047:192::-;42378:12;:10;:12::i;:::-;42367:23;;:7;:5;:7::i;:::-;:23;;;42359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43156:1:::1;43136:22;;:8;:22;;;;43128:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43212:19;43222:8;43212:9;:19::i;:::-;43047:192:::0;:::o;46391:40::-;46428:3;46391:40;:::o;20879:305::-;20981:4;21033:25;21018:40;;;:11;:40;;;;:105;;;;21090:33;21075:48;;;:11;:48;;;;21018:105;:158;;;;21140:36;21164:11;21140:23;:36::i;:::-;21018:158;20998:178;;20879:305;;;:::o;26777:127::-;26842:4;26894:1;26866:30;;:7;:16;26874:7;26866:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26859:37;;26777:127;;;:::o;16223:98::-;16276:7;16303:10;16296:17;;16223:98;:::o;30759:174::-;30861:2;30834:15;:24;30850:7;30834:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30917:7;30913:2;30879:46;;30888:23;30903:7;30888:14;:23::i;:::-;30879:46;;;;;;;;;;;;30759:174;;:::o;27071:348::-;27164:4;27189:16;27197:7;27189;:16::i;:::-;27181:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27265:13;27281:23;27296:7;27281:14;:23::i;:::-;27265:39;;27334:5;27323:16;;:7;:16;;;:51;;;;27367:7;27343:31;;:20;27355:7;27343:11;:20::i;:::-;:31;;;27323:51;:87;;;;27378:32;27395:5;27402:7;27378:16;:32::i;:::-;27323:87;27315:96;;;27071:348;;;;:::o;30063:578::-;30222:4;30195:31;;:23;30210:7;30195:14;:23::i;:::-;:31;;;30187:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30305:1;30291:16;;:2;:16;;;;30283:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30361:39;30382:4;30388:2;30392:7;30361:20;:39::i;:::-;30465:29;30482:1;30486:7;30465:8;:29::i;:::-;30526:1;30507:9;:15;30517:4;30507:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30555:1;30538:9;:13;30548:2;30538:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30586:2;30567:7;:16;30575:7;30567:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30625:7;30621:2;30606:27;;30615:4;30606:27;;;;;;;;;;;;30063:578;;;:::o;27761:110::-;27837:26;27847:2;27851:7;27837:26;;;;;;;;;;;;:9;:26::i;:::-;27761:110;;:::o;43247:173::-;43303:16;43322:6;;;;;;;;;;;43303:25;;43348:8;43339:6;;:17;;;;;;;;;;;;;;;;;;43403:8;43372:40;;43393:8;43372:40;;;;;;;;;;;;43292:128;43247:173;:::o;26149:315::-;26306:28;26316:4;26322:2;26326:7;26306:9;:28::i;:::-;26353:48;26376:4;26382:2;26386:7;26395:5;26353:22;:48::i;:::-;26345:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26149:315;;;;:::o;46820:102::-;46880:13;46909:7;46902:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46820:102;:::o;16774:723::-;16830:13;17060:1;17051:5;:10;17047:53;;;17078:10;;;;;;;;;;;;;;;;;;;;;17047:53;17110:12;17125:5;17110:20;;17141:14;17166:78;17181:1;17173:4;:9;17166:78;;17199:8;;;;;:::i;:::-;;;;17230:2;17222:10;;;;;:::i;:::-;;;17166:78;;;17254:19;17286:6;17276:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17254:39;;17304:154;17320:1;17311:5;:10;17304:154;;17348:1;17338:11;;;;;:::i;:::-;;;17415:2;17407:5;:10;;;;:::i;:::-;17394:2;:24;;;;:::i;:::-;17381:39;;17364:6;17371;17364:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17444:2;17435:11;;;;;:::i;:::-;;;17304:154;;;17482:6;17468:21;;;;;16774:723;;;;:::o;19357:157::-;19442:4;19481:25;19466:40;;;:11;:40;;;;19459:47;;19357:157;;;:::o;36651:589::-;36795:45;36822:4;36828:2;36832:7;36795:26;:45::i;:::-;36873:1;36857:18;;:4;:18;;;36853:187;;;36892:40;36924:7;36892:31;:40::i;:::-;36853:187;;;36962:2;36954:10;;:4;:10;;;36950:90;;36981:47;37014:4;37020:7;36981:32;:47::i;:::-;36950:90;36853:187;37068:1;37054:16;;:2;:16;;;37050:183;;;37087:45;37124:7;37087:36;:45::i;:::-;37050:183;;;37160:4;37154:10;;:2;:10;;;37150:83;;37181:40;37209:2;37213:7;37181:27;:40::i;:::-;37150:83;37050:183;36651:589;;;:::o;28098:321::-;28228:18;28234:2;28238:7;28228:5;:18::i;:::-;28279:54;28310:1;28314:2;28318:7;28327:5;28279:22;:54::i;:::-;28257:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28098:321;;;:::o;31498:799::-;31653:4;31674:15;:2;:13;;;:15::i;:::-;31670:620;;;31726:2;31710:36;;;31747:12;:10;:12::i;:::-;31761:4;31767:7;31776:5;31710:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31706:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31969:1;31952:6;:13;:18;31948:272;;;31995:60;;;;;;;;;;:::i;:::-;;;;;;;;31948:272;32170:6;32164:13;32155:6;32151:2;32147:15;32140:38;31706:529;31843:41;;;31833:51;;;:6;:51;;;;31826:58;;;;;31670:620;32274:4;32267:11;;31498:799;;;;;;;:::o;32869:126::-;;;;:::o;37963:164::-;38067:10;:17;;;;38040:15;:24;38056:7;38040:24;;;;;;;;;;;:44;;;;38095:10;38111:7;38095:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37963:164;:::o;38754:988::-;39020:22;39070:1;39045:22;39062:4;39045:16;:22::i;:::-;:26;;;;:::i;:::-;39020:51;;39082:18;39103:17;:26;39121:7;39103:26;;;;;;;;;;;;39082:47;;39250:14;39236:10;:28;39232:328;;39281:19;39303:12;:18;39316:4;39303:18;;;;;;;;;;;;;;;:34;39322:14;39303:34;;;;;;;;;;;;39281:56;;39387:11;39354:12;:18;39367:4;39354:18;;;;;;;;;;;;;;;:30;39373:10;39354:30;;;;;;;;;;;:44;;;;39504:10;39471:17;:30;39489:11;39471:30;;;;;;;;;;;:43;;;;39266:294;39232:328;39656:17;:26;39674:7;39656:26;;;;;;;;;;;39649:33;;;39700:12;:18;39713:4;39700:18;;;;;;;;;;;;;;;:34;39719:14;39700:34;;;;;;;;;;;39693:41;;;38835:907;;38754:988;;:::o;40037:1079::-;40290:22;40335:1;40315:10;:17;;;;:21;;;;:::i;:::-;40290:46;;40347:18;40368:15;:24;40384:7;40368:24;;;;;;;;;;;;40347:45;;40719:19;40741:10;40752:14;40741:26;;;;;;;;:::i;:::-;;;;;;;;;;40719:48;;40805:11;40780:10;40791;40780:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40916:10;40885:15;:28;40901:11;40885:28;;;;;;;;;;;:41;;;;41057:15;:24;41073:7;41057:24;;;;;;;;;;;41050:31;;;41092:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40108:1008;;;40037:1079;:::o;37541:221::-;37626:14;37643:20;37660:2;37643:16;:20::i;:::-;37626:37;;37701:7;37674:12;:16;37687:2;37674:16;;;;;;;;;;;;;;;:24;37691:6;37674:24;;;;;;;;;;;:34;;;;37748:6;37719:17;:26;37737:7;37719:26;;;;;;;;;;;:35;;;;37615:147;37541:221;;:::o;28755:382::-;28849:1;28835:16;;:2;:16;;;;28827:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28908:16;28916:7;28908;:16::i;:::-;28907:17;28899:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28970:45;28999:1;29003:2;29007:7;28970:20;:45::i;:::-;29045:1;29028:9;:13;29038:2;29028:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29076:2;29057:7;:16;29065:7;29057:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29121:7;29117:2;29096:33;;29113:1;29096:33;;;;;;;;;;;;28755:382;;:::o;8241:387::-;8301:4;8509:12;8576:7;8564:20;8556:28;;8619:1;8612:4;:8;8605:15;;;8241:387;;;:::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:143::-;2334:5;2365:6;2359:13;2350:22;;2381:33;2408:5;2381:33;:::i;:::-;2277:143;;;;:::o;2426:137::-;2471:5;2509:6;2496:20;2487:29;;2525:32;2551:5;2525:32;:::i;:::-;2426:137;;;;:::o;2569:329::-;2628:6;2677:2;2665:9;2656:7;2652:23;2648:32;2645:119;;;2683:79;;:::i;:::-;2645:119;2803:1;2828:53;2873:7;2864:6;2853:9;2849:22;2828:53;:::i;:::-;2818:63;;2774:117;2569:329;;;;:::o;2904:474::-;2972:6;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;2904:474;;;;;:::o;3384:619::-;3461:6;3469;3477;3526:2;3514:9;3505:7;3501:23;3497:32;3494:119;;;3532:79;;:::i;:::-;3494:119;3652:1;3677:53;3722:7;3713:6;3702:9;3698:22;3677:53;:::i;:::-;3667:63;;3623:117;3779:2;3805:53;3850:7;3841:6;3830:9;3826:22;3805:53;:::i;:::-;3795:63;;3750:118;3907:2;3933:53;3978:7;3969:6;3958:9;3954:22;3933:53;:::i;:::-;3923:63;;3878:118;3384:619;;;;;:::o;4009:943::-;4104:6;4112;4120;4128;4177:3;4165:9;4156:7;4152:23;4148:33;4145:120;;;4184:79;;:::i;:::-;4145:120;4304:1;4329:53;4374:7;4365:6;4354:9;4350:22;4329:53;:::i;:::-;4319:63;;4275:117;4431:2;4457:53;4502:7;4493:6;4482:9;4478:22;4457:53;:::i;:::-;4447:63;;4402:118;4559:2;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4530:118;4715:2;4704:9;4700:18;4687:32;4746:18;4738:6;4735:30;4732:117;;;4768:79;;:::i;:::-;4732:117;4873:62;4927:7;4918:6;4907:9;4903:22;4873:62;:::i;:::-;4863:72;;4658:287;4009:943;;;;;;;:::o;4958:468::-;5023:6;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:50;5401:7;5392:6;5381:9;5377:22;5359:50;:::i;:::-;5349:60;;5304:115;4958:468;;;;;:::o;5432:474::-;5500:6;5508;5557:2;5545:9;5536:7;5532:23;5528:32;5525:119;;;5563:79;;:::i;:::-;5525:119;5683:1;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5654:117;5810:2;5836:53;5881:7;5872:6;5861:9;5857:22;5836:53;:::i;:::-;5826:63;;5781:118;5432:474;;;;;:::o;5912:327::-;5970:6;6019:2;6007:9;5998:7;5994:23;5990:32;5987:119;;;6025:79;;:::i;:::-;5987:119;6145:1;6170:52;6214:7;6205:6;6194:9;6190:22;6170:52;:::i;:::-;6160:62;;6116:116;5912:327;;;;:::o;6245:349::-;6314:6;6363:2;6351:9;6342:7;6338:23;6334:32;6331:119;;;6369:79;;:::i;:::-;6331:119;6489:1;6514:63;6569:7;6560:6;6549:9;6545:22;6514:63;:::i;:::-;6504:73;;6460:127;6245:349;;;;:::o;6600:509::-;6669:6;6718:2;6706:9;6697:7;6693:23;6689:32;6686:119;;;6724:79;;:::i;:::-;6686:119;6872:1;6861:9;6857:17;6844:31;6902:18;6894:6;6891:30;6888:117;;;6924:79;;:::i;:::-;6888:117;7029:63;7084:7;7075:6;7064:9;7060:22;7029:63;:::i;:::-;7019:73;;6815:287;6600:509;;;;:::o;7115:329::-;7174:6;7223:2;7211:9;7202:7;7198:23;7194:32;7191:119;;;7229:79;;:::i;:::-;7191:119;7349:1;7374:53;7419:7;7410:6;7399:9;7395:22;7374:53;:::i;:::-;7364:63;;7320:117;7115:329;;;;:::o;7450:351::-;7520:6;7569:2;7557:9;7548:7;7544:23;7540:32;7537:119;;;7575:79;;:::i;:::-;7537:119;7695:1;7720:64;7776:7;7767:6;7756:9;7752:22;7720:64;:::i;:::-;7710:74;;7666:128;7450:351;;;;:::o;7807:327::-;7865:6;7914:2;7902:9;7893:7;7889:23;7885:32;7882:119;;;7920:79;;:::i;:::-;7882:119;8040:1;8065:52;8109:7;8100:6;8089:9;8085:22;8065:52;:::i;:::-;8055:62;;8011:116;7807:327;;;;:::o;8140:179::-;8209:10;8230:46;8272:3;8264:6;8230:46;:::i;:::-;8308:4;8303:3;8299:14;8285:28;;8140:179;;;;:::o;8325:118::-;8412:24;8430:5;8412:24;:::i;:::-;8407:3;8400:37;8325:118;;:::o;8479:732::-;8598:3;8627:54;8675:5;8627:54;:::i;:::-;8697:86;8776:6;8771:3;8697:86;:::i;:::-;8690:93;;8807:56;8857:5;8807:56;:::i;:::-;8886:7;8917:1;8902:284;8927:6;8924:1;8921:13;8902:284;;;9003:6;8997:13;9030:63;9089:3;9074:13;9030:63;:::i;:::-;9023:70;;9116:60;9169:6;9116:60;:::i;:::-;9106:70;;8962:224;8949:1;8946;8942:9;8937:14;;8902:284;;;8906:14;9202:3;9195:10;;8603:608;;;8479:732;;;;:::o;9217:109::-;9298:21;9313:5;9298:21;:::i;:::-;9293:3;9286:34;9217:109;;:::o;9332:360::-;9418:3;9446:38;9478:5;9446:38;:::i;:::-;9500:70;9563:6;9558:3;9500:70;:::i;:::-;9493:77;;9579:52;9624:6;9619:3;9612:4;9605:5;9601:16;9579:52;:::i;:::-;9656:29;9678:6;9656:29;:::i;:::-;9651:3;9647:39;9640:46;;9422:270;9332:360;;;;:::o;9698:364::-;9786:3;9814:39;9847:5;9814:39;:::i;:::-;9869:71;9933:6;9928:3;9869:71;:::i;:::-;9862:78;;9949:52;9994:6;9989:3;9982:4;9975:5;9971:16;9949:52;:::i;:::-;10026:29;10048:6;10026:29;:::i;:::-;10021:3;10017:39;10010:46;;9790:272;9698:364;;;;:::o;10068:377::-;10174:3;10202:39;10235:5;10202:39;:::i;:::-;10257:89;10339:6;10334:3;10257:89;:::i;:::-;10250:96;;10355:52;10400:6;10395:3;10388:4;10381:5;10377:16;10355:52;:::i;:::-;10432:6;10427:3;10423:16;10416:23;;10178:267;10068:377;;;;:::o;10451:366::-;10593:3;10614:67;10678:2;10673:3;10614:67;:::i;:::-;10607:74;;10690:93;10779:3;10690:93;:::i;:::-;10808:2;10803:3;10799:12;10792:19;;10451:366;;;:::o;10823:::-;10965:3;10986:67;11050:2;11045:3;10986:67;:::i;:::-;10979:74;;11062:93;11151:3;11062:93;:::i;:::-;11180:2;11175:3;11171:12;11164:19;;10823:366;;;:::o;11195:::-;11337:3;11358:67;11422:2;11417:3;11358:67;:::i;:::-;11351:74;;11434:93;11523:3;11434:93;:::i;:::-;11552:2;11547:3;11543:12;11536:19;;11195:366;;;:::o;11567:::-;11709:3;11730:67;11794:2;11789:3;11730:67;:::i;:::-;11723:74;;11806:93;11895:3;11806:93;:::i;:::-;11924:2;11919:3;11915:12;11908:19;;11567:366;;;:::o;11939:::-;12081:3;12102:67;12166:2;12161:3;12102:67;:::i;:::-;12095:74;;12178:93;12267:3;12178:93;:::i;:::-;12296:2;12291:3;12287:12;12280:19;;11939:366;;;:::o;12311:::-;12453:3;12474:67;12538:2;12533:3;12474:67;:::i;:::-;12467:74;;12550:93;12639:3;12550:93;:::i;:::-;12668:2;12663:3;12659:12;12652:19;;12311:366;;;:::o;12683:::-;12825:3;12846:67;12910:2;12905:3;12846:67;:::i;:::-;12839:74;;12922:93;13011:3;12922:93;:::i;:::-;13040:2;13035:3;13031:12;13024:19;;12683:366;;;:::o;13055:::-;13197:3;13218:67;13282:2;13277:3;13218:67;:::i;:::-;13211:74;;13294:93;13383:3;13294:93;:::i;:::-;13412:2;13407:3;13403:12;13396:19;;13055:366;;;:::o;13427:::-;13569:3;13590:67;13654:2;13649:3;13590:67;:::i;:::-;13583:74;;13666:93;13755:3;13666:93;:::i;:::-;13784:2;13779:3;13775:12;13768:19;;13427:366;;;:::o;13799:::-;13941:3;13962:67;14026:2;14021:3;13962:67;:::i;:::-;13955:74;;14038:93;14127:3;14038:93;:::i;:::-;14156:2;14151:3;14147:12;14140:19;;13799:366;;;:::o;14171:::-;14313:3;14334:67;14398:2;14393:3;14334:67;:::i;:::-;14327:74;;14410:93;14499:3;14410:93;:::i;:::-;14528:2;14523:3;14519:12;14512:19;;14171:366;;;:::o;14543:::-;14685:3;14706:67;14770:2;14765:3;14706:67;:::i;:::-;14699:74;;14782:93;14871:3;14782:93;:::i;:::-;14900:2;14895:3;14891:12;14884:19;;14543:366;;;:::o;14915:::-;15057:3;15078:67;15142:2;15137:3;15078:67;:::i;:::-;15071:74;;15154:93;15243:3;15154:93;:::i;:::-;15272:2;15267:3;15263:12;15256:19;;14915:366;;;:::o;15287:::-;15429:3;15450:67;15514:2;15509:3;15450:67;:::i;:::-;15443:74;;15526:93;15615:3;15526:93;:::i;:::-;15644:2;15639:3;15635:12;15628:19;;15287:366;;;:::o;15659:::-;15801:3;15822:67;15886:2;15881:3;15822:67;:::i;:::-;15815:74;;15898:93;15987:3;15898:93;:::i;:::-;16016:2;16011:3;16007:12;16000:19;;15659:366;;;:::o;16031:::-;16173:3;16194:67;16258:2;16253:3;16194:67;:::i;:::-;16187:74;;16270:93;16359:3;16270:93;:::i;:::-;16388:2;16383:3;16379:12;16372:19;;16031:366;;;:::o;16403:::-;16545:3;16566:67;16630:2;16625:3;16566:67;:::i;:::-;16559:74;;16642:93;16731:3;16642:93;:::i;:::-;16760:2;16755:3;16751:12;16744:19;;16403:366;;;:::o;16775:::-;16917:3;16938:67;17002:2;16997:3;16938:67;:::i;:::-;16931:74;;17014:93;17103:3;17014:93;:::i;:::-;17132:2;17127:3;17123:12;17116:19;;16775:366;;;:::o;17147:::-;17289:3;17310:67;17374:2;17369:3;17310:67;:::i;:::-;17303:74;;17386:93;17475:3;17386:93;:::i;:::-;17504:2;17499:3;17495:12;17488:19;;17147:366;;;:::o;17519:::-;17661:3;17682:67;17746:2;17741:3;17682:67;:::i;:::-;17675:74;;17758:93;17847:3;17758:93;:::i;:::-;17876:2;17871:3;17867:12;17860:19;;17519:366;;;:::o;17891:::-;18033:3;18054:67;18118:2;18113:3;18054:67;:::i;:::-;18047:74;;18130:93;18219:3;18130:93;:::i;:::-;18248:2;18243:3;18239:12;18232:19;;17891:366;;;:::o;18263:::-;18405:3;18426:67;18490:2;18485:3;18426:67;:::i;:::-;18419:74;;18502:93;18591:3;18502:93;:::i;:::-;18620:2;18615:3;18611:12;18604:19;;18263:366;;;:::o;18635:::-;18777:3;18798:67;18862:2;18857:3;18798:67;:::i;:::-;18791:74;;18874:93;18963:3;18874:93;:::i;:::-;18992:2;18987:3;18983:12;18976:19;;18635:366;;;:::o;19007:::-;19149:3;19170:67;19234:2;19229:3;19170:67;:::i;:::-;19163:74;;19246:93;19335:3;19246:93;:::i;:::-;19364:2;19359:3;19355:12;19348:19;;19007:366;;;:::o;19379:::-;19521:3;19542:67;19606:2;19601:3;19542:67;:::i;:::-;19535:74;;19618:93;19707:3;19618:93;:::i;:::-;19736:2;19731:3;19727:12;19720:19;;19379:366;;;:::o;19751:::-;19893:3;19914:67;19978:2;19973:3;19914:67;:::i;:::-;19907:74;;19990:93;20079:3;19990:93;:::i;:::-;20108:2;20103:3;20099:12;20092:19;;19751:366;;;:::o;20123:::-;20265:3;20286:67;20350:2;20345:3;20286:67;:::i;:::-;20279:74;;20362:93;20451:3;20362:93;:::i;:::-;20480:2;20475:3;20471:12;20464:19;;20123:366;;;:::o;20495:::-;20637:3;20658:67;20722:2;20717:3;20658:67;:::i;:::-;20651:74;;20734:93;20823:3;20734:93;:::i;:::-;20852:2;20847:3;20843:12;20836:19;;20495:366;;;:::o;20867:::-;21009:3;21030:67;21094:2;21089:3;21030:67;:::i;:::-;21023:74;;21106:93;21195:3;21106:93;:::i;:::-;21224:2;21219:3;21215:12;21208:19;;20867:366;;;:::o;21239:::-;21381:3;21402:67;21466:2;21461:3;21402:67;:::i;:::-;21395:74;;21478:93;21567:3;21478:93;:::i;:::-;21596:2;21591:3;21587:12;21580:19;;21239:366;;;:::o;21611:108::-;21688:24;21706:5;21688:24;:::i;:::-;21683:3;21676:37;21611:108;;:::o;21725:118::-;21812:24;21830:5;21812:24;:::i;:::-;21807:3;21800:37;21725:118;;:::o;21849:115::-;21934:23;21951:5;21934:23;:::i;:::-;21929:3;21922:36;21849:115;;:::o;21970:435::-;22150:3;22172:95;22263:3;22254:6;22172:95;:::i;:::-;22165:102;;22284:95;22375:3;22366:6;22284:95;:::i;:::-;22277:102;;22396:3;22389:10;;21970:435;;;;;:::o;22411:222::-;22504:4;22542:2;22531:9;22527:18;22519:26;;22555:71;22623:1;22612:9;22608:17;22599:6;22555:71;:::i;:::-;22411:222;;;;:::o;22639:640::-;22834:4;22872:3;22861:9;22857:19;22849:27;;22886:71;22954:1;22943:9;22939:17;22930:6;22886:71;:::i;:::-;22967:72;23035:2;23024:9;23020:18;23011:6;22967:72;:::i;:::-;23049;23117:2;23106:9;23102:18;23093:6;23049:72;:::i;:::-;23168:9;23162:4;23158:20;23153:2;23142:9;23138:18;23131:48;23196:76;23267:4;23258:6;23196:76;:::i;:::-;23188:84;;22639:640;;;;;;;:::o;23285:373::-;23428:4;23466:2;23455:9;23451:18;23443:26;;23515:9;23509:4;23505:20;23501:1;23490:9;23486:17;23479:47;23543:108;23646:4;23637:6;23543:108;:::i;:::-;23535:116;;23285:373;;;;:::o;23664:210::-;23751:4;23789:2;23778:9;23774:18;23766:26;;23802:65;23864:1;23853:9;23849:17;23840:6;23802:65;:::i;:::-;23664:210;;;;:::o;23880:430::-;24023:4;24061:2;24050:9;24046:18;24038:26;;24074:65;24136:1;24125:9;24121:17;24112:6;24074:65;:::i;:::-;24149:72;24217:2;24206:9;24202:18;24193:6;24149:72;:::i;:::-;24231;24299:2;24288:9;24284:18;24275:6;24231:72;:::i;:::-;23880:430;;;;;;:::o;24316:313::-;24429:4;24467:2;24456:9;24452:18;24444:26;;24516:9;24510:4;24506:20;24502:1;24491:9;24487:17;24480:47;24544:78;24617:4;24608:6;24544:78;:::i;:::-;24536:86;;24316:313;;;;:::o;24635:419::-;24801:4;24839:2;24828:9;24824:18;24816:26;;24888:9;24882:4;24878:20;24874:1;24863:9;24859:17;24852:47;24916:131;25042:4;24916:131;:::i;:::-;24908:139;;24635:419;;;:::o;25060:::-;25226:4;25264:2;25253:9;25249:18;25241:26;;25313:9;25307:4;25303:20;25299:1;25288:9;25284:17;25277:47;25341:131;25467:4;25341:131;:::i;:::-;25333:139;;25060:419;;;:::o;25485:::-;25651:4;25689:2;25678:9;25674:18;25666:26;;25738:9;25732:4;25728:20;25724:1;25713:9;25709:17;25702:47;25766:131;25892:4;25766:131;:::i;:::-;25758:139;;25485:419;;;:::o;25910:::-;26076:4;26114:2;26103:9;26099:18;26091:26;;26163:9;26157:4;26153:20;26149:1;26138:9;26134:17;26127:47;26191:131;26317:4;26191:131;:::i;:::-;26183:139;;25910:419;;;:::o;26335:::-;26501:4;26539:2;26528:9;26524:18;26516:26;;26588:9;26582:4;26578:20;26574:1;26563:9;26559:17;26552:47;26616:131;26742:4;26616:131;:::i;:::-;26608:139;;26335:419;;;:::o;26760:::-;26926:4;26964:2;26953:9;26949:18;26941:26;;27013:9;27007:4;27003:20;26999:1;26988:9;26984:17;26977:47;27041:131;27167:4;27041:131;:::i;:::-;27033:139;;26760:419;;;:::o;27185:::-;27351:4;27389:2;27378:9;27374:18;27366:26;;27438:9;27432:4;27428:20;27424:1;27413:9;27409:17;27402:47;27466:131;27592:4;27466:131;:::i;:::-;27458:139;;27185:419;;;:::o;27610:::-;27776:4;27814:2;27803:9;27799:18;27791:26;;27863:9;27857:4;27853:20;27849:1;27838:9;27834:17;27827:47;27891:131;28017:4;27891:131;:::i;:::-;27883:139;;27610:419;;;:::o;28035:::-;28201:4;28239:2;28228:9;28224:18;28216:26;;28288:9;28282:4;28278:20;28274:1;28263:9;28259:17;28252:47;28316:131;28442:4;28316:131;:::i;:::-;28308:139;;28035:419;;;:::o;28460:::-;28626:4;28664:2;28653:9;28649:18;28641:26;;28713:9;28707:4;28703:20;28699:1;28688:9;28684:17;28677:47;28741:131;28867:4;28741:131;:::i;:::-;28733:139;;28460:419;;;:::o;28885:::-;29051:4;29089:2;29078:9;29074:18;29066:26;;29138:9;29132:4;29128:20;29124:1;29113:9;29109:17;29102:47;29166:131;29292:4;29166:131;:::i;:::-;29158:139;;28885:419;;;:::o;29310:::-;29476:4;29514:2;29503:9;29499:18;29491:26;;29563:9;29557:4;29553:20;29549:1;29538:9;29534:17;29527:47;29591:131;29717:4;29591:131;:::i;:::-;29583:139;;29310:419;;;:::o;29735:::-;29901:4;29939:2;29928:9;29924:18;29916:26;;29988:9;29982:4;29978:20;29974:1;29963:9;29959:17;29952:47;30016:131;30142:4;30016:131;:::i;:::-;30008:139;;29735:419;;;:::o;30160:::-;30326:4;30364:2;30353:9;30349:18;30341:26;;30413:9;30407:4;30403:20;30399:1;30388:9;30384:17;30377:47;30441:131;30567:4;30441:131;:::i;:::-;30433:139;;30160:419;;;:::o;30585:::-;30751:4;30789:2;30778:9;30774:18;30766:26;;30838:9;30832:4;30828:20;30824:1;30813:9;30809:17;30802:47;30866:131;30992:4;30866:131;:::i;:::-;30858:139;;30585:419;;;:::o;31010:::-;31176:4;31214:2;31203:9;31199:18;31191:26;;31263:9;31257:4;31253:20;31249:1;31238:9;31234:17;31227:47;31291:131;31417:4;31291:131;:::i;:::-;31283:139;;31010:419;;;:::o;31435:::-;31601:4;31639:2;31628:9;31624:18;31616:26;;31688:9;31682:4;31678:20;31674:1;31663:9;31659:17;31652:47;31716:131;31842:4;31716:131;:::i;:::-;31708:139;;31435:419;;;:::o;31860:::-;32026:4;32064:2;32053:9;32049:18;32041:26;;32113:9;32107:4;32103:20;32099:1;32088:9;32084:17;32077:47;32141:131;32267:4;32141:131;:::i;:::-;32133:139;;31860:419;;;:::o;32285:::-;32451:4;32489:2;32478:9;32474:18;32466:26;;32538:9;32532:4;32528:20;32524:1;32513:9;32509:17;32502:47;32566:131;32692:4;32566:131;:::i;:::-;32558:139;;32285:419;;;:::o;32710:::-;32876:4;32914:2;32903:9;32899:18;32891:26;;32963:9;32957:4;32953:20;32949:1;32938:9;32934:17;32927:47;32991:131;33117:4;32991:131;:::i;:::-;32983:139;;32710:419;;;:::o;33135:::-;33301:4;33339:2;33328:9;33324:18;33316:26;;33388:9;33382:4;33378:20;33374:1;33363:9;33359:17;33352:47;33416:131;33542:4;33416:131;:::i;:::-;33408:139;;33135:419;;;:::o;33560:::-;33726:4;33764:2;33753:9;33749:18;33741:26;;33813:9;33807:4;33803:20;33799:1;33788:9;33784:17;33777:47;33841:131;33967:4;33841:131;:::i;:::-;33833:139;;33560:419;;;:::o;33985:::-;34151:4;34189:2;34178:9;34174:18;34166:26;;34238:9;34232:4;34228:20;34224:1;34213:9;34209:17;34202:47;34266:131;34392:4;34266:131;:::i;:::-;34258:139;;33985:419;;;:::o;34410:::-;34576:4;34614:2;34603:9;34599:18;34591:26;;34663:9;34657:4;34653:20;34649:1;34638:9;34634:17;34627:47;34691:131;34817:4;34691:131;:::i;:::-;34683:139;;34410:419;;;:::o;34835:::-;35001:4;35039:2;35028:9;35024:18;35016:26;;35088:9;35082:4;35078:20;35074:1;35063:9;35059:17;35052:47;35116:131;35242:4;35116:131;:::i;:::-;35108:139;;34835:419;;;:::o;35260:::-;35426:4;35464:2;35453:9;35449:18;35441:26;;35513:9;35507:4;35503:20;35499:1;35488:9;35484:17;35477:47;35541:131;35667:4;35541:131;:::i;:::-;35533:139;;35260:419;;;:::o;35685:::-;35851:4;35889:2;35878:9;35874:18;35866:26;;35938:9;35932:4;35928:20;35924:1;35913:9;35909:17;35902:47;35966:131;36092:4;35966:131;:::i;:::-;35958:139;;35685:419;;;:::o;36110:::-;36276:4;36314:2;36303:9;36299:18;36291:26;;36363:9;36357:4;36353:20;36349:1;36338:9;36334:17;36327:47;36391:131;36517:4;36391:131;:::i;:::-;36383:139;;36110:419;;;:::o;36535:::-;36701:4;36739:2;36728:9;36724:18;36716:26;;36788:9;36782:4;36778:20;36774:1;36763:9;36759:17;36752:47;36816:131;36942:4;36816:131;:::i;:::-;36808:139;;36535:419;;;:::o;36960:::-;37126:4;37164:2;37153:9;37149:18;37141:26;;37213:9;37207:4;37203:20;37199:1;37188:9;37184:17;37177:47;37241:131;37367:4;37241:131;:::i;:::-;37233:139;;36960:419;;;:::o;37385:222::-;37478:4;37516:2;37505:9;37501:18;37493:26;;37529:71;37597:1;37586:9;37582:17;37573:6;37529:71;:::i;:::-;37385:222;;;;:::o;37613:218::-;37704:4;37742:2;37731:9;37727:18;37719:26;;37755:69;37821:1;37810:9;37806:17;37797:6;37755:69;:::i;:::-;37613:218;;;;:::o;37837:129::-;37871:6;37898:20;;:::i;:::-;37888:30;;37927:33;37955:4;37947:6;37927:33;:::i;:::-;37837:129;;;:::o;37972:75::-;38005:6;38038:2;38032:9;38022:19;;37972:75;:::o;38053:307::-;38114:4;38204:18;38196:6;38193:30;38190:56;;;38226:18;;:::i;:::-;38190:56;38264:29;38286:6;38264:29;:::i;:::-;38256:37;;38348:4;38342;38338:15;38330:23;;38053:307;;;:::o;38366:308::-;38428:4;38518:18;38510:6;38507:30;38504:56;;;38540:18;;:::i;:::-;38504:56;38578:29;38600:6;38578:29;:::i;:::-;38570:37;;38662:4;38656;38652:15;38644:23;;38366:308;;;:::o;38680:132::-;38747:4;38770:3;38762:11;;38800:4;38795:3;38791:14;38783:22;;38680:132;;;:::o;38818:114::-;38885:6;38919:5;38913:12;38903:22;;38818:114;;;:::o;38938:98::-;38989:6;39023:5;39017:12;39007:22;;38938:98;;;:::o;39042:99::-;39094:6;39128:5;39122:12;39112:22;;39042:99;;;:::o;39147:113::-;39217:4;39249;39244:3;39240:14;39232:22;;39147:113;;;:::o;39266:184::-;39365:11;39399:6;39394:3;39387:19;39439:4;39434:3;39430:14;39415:29;;39266:184;;;;:::o;39456:168::-;39539:11;39573:6;39568:3;39561:19;39613:4;39608:3;39604:14;39589:29;;39456:168;;;;:::o;39630:169::-;39714:11;39748:6;39743:3;39736:19;39788:4;39783:3;39779:14;39764:29;;39630:169;;;;:::o;39805:148::-;39907:11;39944:3;39929:18;;39805:148;;;;:::o;39959:305::-;39999:3;40018:20;40036:1;40018:20;:::i;:::-;40013:25;;40052:20;40070:1;40052:20;:::i;:::-;40047:25;;40206:1;40138:66;40134:74;40131:1;40128:81;40125:107;;;40212:18;;:::i;:::-;40125:107;40256:1;40253;40249:9;40242:16;;39959:305;;;;:::o;40270:185::-;40310:1;40327:20;40345:1;40327:20;:::i;:::-;40322:25;;40361:20;40379:1;40361:20;:::i;:::-;40356:25;;40400:1;40390:35;;40405:18;;:::i;:::-;40390:35;40447:1;40444;40440:9;40435:14;;40270:185;;;;:::o;40461:348::-;40501:7;40524:20;40542:1;40524:20;:::i;:::-;40519:25;;40558:20;40576:1;40558:20;:::i;:::-;40553:25;;40746:1;40678:66;40674:74;40671:1;40668:81;40663:1;40656:9;40649:17;40645:105;40642:131;;;40753:18;;:::i;:::-;40642:131;40801:1;40798;40794:9;40783:20;;40461:348;;;;:::o;40815:191::-;40855:4;40875:20;40893:1;40875:20;:::i;:::-;40870:25;;40909:20;40927:1;40909:20;:::i;:::-;40904:25;;40948:1;40945;40942:8;40939:34;;;40953:18;;:::i;:::-;40939:34;40998:1;40995;40991:9;40983:17;;40815:191;;;;:::o;41012:96::-;41049:7;41078:24;41096:5;41078:24;:::i;:::-;41067:35;;41012:96;;;:::o;41114:90::-;41148:7;41191:5;41184:13;41177:21;41166:32;;41114:90;;;:::o;41210:149::-;41246:7;41286:66;41279:5;41275:78;41264:89;;41210:149;;;:::o;41365:126::-;41402:7;41442:42;41435:5;41431:54;41420:65;;41365:126;;;:::o;41497:77::-;41534:7;41563:5;41552:16;;41497:77;;;:::o;41580:93::-;41616:7;41656:10;41649:5;41645:22;41634:33;;41580:93;;;:::o;41679:154::-;41763:6;41758:3;41753;41740:30;41825:1;41816:6;41811:3;41807:16;41800:27;41679:154;;;:::o;41839:307::-;41907:1;41917:113;41931:6;41928:1;41925:13;41917:113;;;42016:1;42011:3;42007:11;42001:18;41997:1;41992:3;41988:11;41981:39;41953:2;41950:1;41946:10;41941:15;;41917:113;;;42048:6;42045:1;42042:13;42039:101;;;42128:1;42119:6;42114:3;42110:16;42103:27;42039:101;41888:258;41839:307;;;:::o;42152:320::-;42196:6;42233:1;42227:4;42223:12;42213:22;;42280:1;42274:4;42270:12;42301:18;42291:81;;42357:4;42349:6;42345:17;42335:27;;42291:81;42419:2;42411:6;42408:14;42388:18;42385:38;42382:84;;;42438:18;;:::i;:::-;42382:84;42203:269;42152:320;;;:::o;42478:281::-;42561:27;42583:4;42561:27;:::i;:::-;42553:6;42549:40;42691:6;42679:10;42676:22;42655:18;42643:10;42640:34;42637:62;42634:88;;;42702:18;;:::i;:::-;42634:88;42742:10;42738:2;42731:22;42521:238;42478:281;;:::o;42765:233::-;42804:3;42827:24;42845:5;42827:24;:::i;:::-;42818:33;;42873:66;42866:5;42863:77;42860:103;;;42943:18;;:::i;:::-;42860:103;42990:1;42983:5;42979:13;42972:20;;42765:233;;;:::o;43004:176::-;43036:1;43053:20;43071:1;43053:20;:::i;:::-;43048:25;;43087:20;43105:1;43087:20;:::i;:::-;43082:25;;43126:1;43116:35;;43131:18;;:::i;:::-;43116:35;43172:1;43169;43165:9;43160:14;;43004:176;;;;:::o;43186:180::-;43234:77;43231:1;43224:88;43331:4;43328:1;43321:15;43355:4;43352:1;43345:15;43372:180;43420:77;43417:1;43410:88;43517:4;43514:1;43507:15;43541:4;43538:1;43531:15;43558:180;43606:77;43603:1;43596:88;43703:4;43700:1;43693:15;43727:4;43724:1;43717:15;43744:180;43792:77;43789:1;43782:88;43889:4;43886:1;43879:15;43913:4;43910:1;43903:15;43930:180;43978:77;43975:1;43968:88;44075:4;44072:1;44065:15;44099:4;44096:1;44089:15;44116:180;44164:77;44161:1;44154:88;44261:4;44258:1;44251:15;44285:4;44282:1;44275:15;44302:117;44411:1;44408;44401:12;44425:117;44534:1;44531;44524:12;44548:117;44657:1;44654;44647:12;44671:117;44780:1;44777;44770:12;44794:102;44835:6;44886:2;44882:7;44877:2;44870:5;44866:14;44862:28;44852:38;;44794:102;;;:::o;44902:223::-;45042:34;45038:1;45030:6;45026:14;45019:58;45111:6;45106:2;45098:6;45094:15;45087:31;44902:223;:::o;45131:240::-;45271:34;45267:1;45259:6;45255:14;45248:58;45340:23;45335:2;45327:6;45323:15;45316:48;45131:240;:::o;45377:179::-;45517:31;45513:1;45505:6;45501:14;45494:55;45377:179;:::o;45562:230::-;45702:34;45698:1;45690:6;45686:14;45679:58;45771:13;45766:2;45758:6;45754:15;45747:38;45562:230;:::o;45798:237::-;45938:34;45934:1;45926:6;45922:14;45915:58;46007:20;46002:2;45994:6;45990:15;45983:45;45798:237;:::o;46041:225::-;46181:34;46177:1;46169:6;46165:14;46158:58;46250:8;46245:2;46237:6;46233:15;46226:33;46041:225;:::o;46272:178::-;46412:30;46408:1;46400:6;46396:14;46389:54;46272:178;:::o;46456:230::-;46596:34;46592:1;46584:6;46580:14;46573:58;46665:13;46660:2;46652:6;46648:15;46641:38;46456:230;:::o;46692:223::-;46832:34;46828:1;46820:6;46816:14;46809:58;46901:6;46896:2;46888:6;46884:15;46877:31;46692:223;:::o;46921:175::-;47061:27;47057:1;47049:6;47045:14;47038:51;46921:175;:::o;47102:293::-;47242:34;47238:1;47230:6;47226:14;47219:58;47311:34;47306:2;47298:6;47294:15;47287:59;47380:7;47375:2;47367:6;47363:15;47356:32;47102:293;:::o;47401:233::-;47541:34;47537:1;47529:6;47525:14;47518:58;47610:16;47605:2;47597:6;47593:15;47586:41;47401:233;:::o;47640:231::-;47780:34;47776:1;47768:6;47764:14;47757:58;47849:14;47844:2;47836:6;47832:15;47825:39;47640:231;:::o;47877:243::-;48017:34;48013:1;48005:6;48001:14;47994:58;48086:26;48081:2;48073:6;48069:15;48062:51;47877:243;:::o;48126:176::-;48266:28;48262:1;48254:6;48250:14;48243:52;48126:176;:::o;48308:229::-;48448:34;48444:1;48436:6;48432:14;48425:58;48517:12;48512:2;48504:6;48500:15;48493:37;48308:229;:::o;48543:228::-;48683:34;48679:1;48671:6;48667:14;48660:58;48752:11;48747:2;48739:6;48735:15;48728:36;48543:228;:::o;48777:223::-;48917:34;48913:1;48905:6;48901:14;48894:58;48986:6;48981:2;48973:6;48969:15;48962:31;48777:223;:::o;49006:182::-;49146:34;49142:1;49134:6;49130:14;49123:58;49006:182;:::o;49194:231::-;49334:34;49330:1;49322:6;49318:14;49311:58;49403:14;49398:2;49390:6;49386:15;49379:39;49194:231;:::o;49431:227::-;49571:34;49567:1;49559:6;49555:14;49548:58;49640:10;49635:2;49627:6;49623:15;49616:35;49431:227;:::o;49664:182::-;49804:34;49800:1;49792:6;49788:14;49781:58;49664:182;:::o;49852:228::-;49992:34;49988:1;49980:6;49976:14;49969:58;50061:11;50056:2;50048:6;50044:15;50037:36;49852:228;:::o;50086:234::-;50226:34;50222:1;50214:6;50210:14;50203:58;50295:17;50290:2;50282:6;50278:15;50271:42;50086:234;:::o;50326:220::-;50466:34;50462:1;50454:6;50450:14;50443:58;50535:3;50530:2;50522:6;50518:15;50511:28;50326:220;:::o;50552:236::-;50692:34;50688:1;50680:6;50676:14;50669:58;50761:19;50756:2;50748:6;50744:15;50737:44;50552:236;:::o;50794:170::-;50934:22;50930:1;50922:6;50918:14;50911:46;50794:170;:::o;50970:231::-;51110:34;51106:1;51098:6;51094:14;51087:58;51179:14;51174:2;51166:6;51162:15;51155:39;50970:231;:::o;51207:171::-;51347:23;51343:1;51335:6;51331:14;51324:47;51207:171;:::o;51384:167::-;51524:19;51520:1;51512:6;51508:14;51501:43;51384:167;:::o;51557:122::-;51630:24;51648:5;51630:24;:::i;:::-;51623:5;51620:35;51610:63;;51669:1;51666;51659:12;51610:63;51557:122;:::o;51685:116::-;51755:21;51770:5;51755:21;:::i;:::-;51748:5;51745:32;51735:60;;51791:1;51788;51781:12;51735:60;51685:116;:::o;51807:120::-;51879:23;51896:5;51879:23;:::i;:::-;51872:5;51869:34;51859:62;;51917:1;51914;51907:12;51859:62;51807:120;:::o;51933:122::-;52006:24;52024:5;52006:24;:::i;:::-;51999:5;51996:35;51986:63;;52045:1;52042;52035:12;51986:63;51933:122;:::o;52061:120::-;52133:23;52150:5;52133:23;:::i;:::-;52126:5;52123:34;52113:62;;52171:1;52168;52161:12;52113:62;52061:120;:::o
Swarm Source
ipfs://f7a7d129cd0f36efd3efd767f6ec42d03e5260df13f989fcddb07d6f682c9eb7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.