Contract Overview
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
CYBERPUNKS_EVOLVED
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-04-30 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; 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/CyberPunksEVOLVED.sol // Created by NEOTECNO // CyberPunks EVOLVED pragma solidity >=0.7.0 <0.9.0; contract CYBERPUNKS_EVOLVED is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; string evolvedURI; string public notRevealedURI; string public baseExtension = ".json"; uint256 public cost = 1.0 ether; uint256 public extraSupply = 5001; uint256 public maxSupply = 10000; uint256 public nftPerAddressLimit = 10; bool public paused = false; bool public evolution = false; bool public revealed = true; address public parentAddress; mapping(address => uint256) public addressMintedBalance; mapping(uint256 => bool) public evolved; constructor ( string memory _initBaseURI, string memory _initEvolvedURI, string memory _initNotRevealedURI ) ERC721 ("CyberPunks EVOLVED", "CPE") { setBaseURI(_initBaseURI); setEvolvedURI(_initEvolvedURI); setNotRevealedURI(_initNotRevealedURI); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _evolvedURI() internal view virtual returns (string memory) { return evolvedURI; } // public MINT function mint(uint256 _mintAmount) public payable { uint256 supply = totalSupply(); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(_mintAmount == 1, "can't mint more than 1 NFT at a time."); require(ownerMintedCount + 1 <= nftPerAddressLimit, "max NFT per address exceeded."); require(extraSupply + 1 <= maxSupply, "max NFT limit exceeded."); address payable refundAddress = payable(msg.sender); uint256 refundValue = 0; refundAddress = payable(msg.sender); refundValue = supply + 1 == maxSupply ? address(this).balance : msg.value; if (msg.sender != owner()) { require(!paused, "The contract is paused."); require(msg.value >= cost, "insufficient funds."); } addressMintedBalance[msg.sender]++; _safeMint(msg.sender, extraSupply); extraSupply++; supply++; if (supply > 0) { (bool success, ) = payable(refundAddress).call{value : refundValue}(""); require(success); } } // Claim TokenID function mintTokenId(uint256 _tokenId) public payable { uint256 supply = totalSupply(); ERC721 token = ERC721(parentAddress); address ownerAddress = token.ownerOf(_tokenId); if (msg.sender != owner()) { require(ownerAddress == msg.sender, "You are not the owner of this NFT."); } require(!_exists(_tokenId), "This TokenID already exists."); require(_tokenId > 0, "You can't claim that tokenID."); require(_tokenId < 5001, "You can't claim that tokenID."); addressMintedBalance[msg.sender]++; _safeMint(msg.sender, _tokenId); supply++; } // onlyOwner MINT function mintForAddress(address _to, uint256 _mintAmount) public onlyOwner { uint256 supply = totalSupply(); require(_mintAmount > 0); require(extraSupply + _mintAmount <= maxSupply, "max NFT limit exceeded."); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, extraSupply); extraSupply++; supply++; } } // Check wallet tokens 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; } // TOKEN URI - TOKEN URI - TOKEN URI <= If you are reading this you are awesome!! function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token."); if (revealed == false) { return notRevealedURI; } else if (evolved[_tokenId] == true) { string memory currentEvolvedURI = _evolvedURI(); return bytes(currentEvolvedURI).length > 0 ? string(abi.encodePacked(currentEvolvedURI, _tokenId.toString(), baseExtension)) : ""; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), baseExtension)) : ""; } // Here you can evolve or devolve your NFTs function evolveNFT(uint256 _tokenId) public payable { require(evolved[_tokenId] == false, "This NFT is already evolved."); if (msg.sender != owner()) { require(!paused, "The contract is paused."); require(evolution, "Evolution is not active yet."); require(msg.sender == ownerOf(_tokenId), "You are not the owner of this NFT."); require(msg.value >= cost, "Insufficient funds, evolve cost 2 MATIC."); } evolved[_tokenId] = true; } // Devolve NFT function devolveNFT(uint256 _tokenId) public { require(evolved[_tokenId] == true, "This NFT isn't evolved."); if (msg.sender != owner()) { require(!paused, "The contract is paused."); require(msg.sender == ownerOf(_tokenId), "You are not the owner of this NFT."); } evolved[_tokenId] = false; } // Only owner function reveal() public onlyOwner { if (revealed == true) { revealed = false; } else { revealed = true; } } // Switch evolution state function setEvolution() public onlyOwner { if (evolution == true) { evolution = false; } else { evolution = true; } } function setParentAddress(address _newAddress) public onlyOwner { parentAddress = _newAddress; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } // URIs function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setEvolvedURI(string memory _newEvolvedURI) public onlyOwner { evolvedURI = _newEvolvedURI; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedURI = _notRevealedURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause() public onlyOwner { if (paused == true) { paused = false; } else { paused = true; } } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initEvolvedURI","type":"string"},{"internalType":"string","name":"_initNotRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"devolveNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"evolution","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"evolveNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"evolved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extraSupply","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mintTokenId","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"parentAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setEvolution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newEvolvedURI","type":"string"}],"name":"setEvolvedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setParentAddress","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e908051906020019062000051929190620004e8565b50670de0b6b3a7640000600f55611389601055612710601155600a6012556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff021916908315150217905550348015620000cd57600080fd5b50604051620062aa380380620062aa8339818101604052810190620000f3919062000616565b6040518060400160405280601281526020017f437962657250756e6b732045564f4c56454400000000000000000000000000008152506040518060400160405280600381526020017f4350450000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000177929190620004e8565b50806001908051906020019062000190929190620004e8565b505050620001b3620001a7620001ef60201b60201c565b620001f760201b60201c565b620001c483620002bd60201b60201c565b620001d5826200036860201b60201c565b620001e6816200041360201b60201c565b505050620008d6565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002cd620001ef60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f3620004be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200034c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034390620006f6565b60405180910390fd5b80600b908051906020019062000364929190620004e8565b5050565b62000378620001ef60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200039e620004be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ee90620006f6565b60405180910390fd5b80600c90805190602001906200040f929190620004e8565b5050565b62000423620001ef60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000449620004be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049990620006f6565b60405180910390fd5b80600d9080519060200190620004ba929190620004e8565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004f690620007be565b90600052602060002090601f0160209004810192826200051a576000855562000566565b82601f106200053557805160ff191683800117855562000566565b8280016001018555821562000566579182015b828111156200056557825182559160200191906001019062000548565b5b50905062000575919062000579565b5090565b5b80821115620005945760008160009055506001016200057a565b5090565b6000620005af620005a98462000741565b62000718565b905082815260208101848484011115620005ce57620005cd6200088d565b5b620005db84828562000788565b509392505050565b600082601f830112620005fb57620005fa62000888565b5b81516200060d84826020860162000598565b91505092915050565b60008060006060848603121562000632576200063162000897565b5b600084015167ffffffffffffffff81111562000653576200065262000892565b5b6200066186828701620005e3565b935050602084015167ffffffffffffffff81111562000685576200068462000892565b5b6200069386828701620005e3565b925050604084015167ffffffffffffffff811115620006b757620006b662000892565b5b620006c586828701620005e3565b9150509250925092565b6000620006de60208362000777565b9150620006eb82620008ad565b602082019050919050565b600060208201905081810360008301526200071181620006cf565b9050919050565b60006200072462000737565b9050620007328282620007f4565b919050565b6000604051905090565b600067ffffffffffffffff8211156200075f576200075e62000859565b5b6200076a826200089c565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620007a85780820151818401526020810190506200078b565b83811115620007b8576000848401525b50505050565b60006002820490506001821680620007d757607f821691505b60208210811415620007ee57620007ed6200082a565b5b50919050565b620007ff826200089c565b810181811067ffffffffffffffff8211171562000821576200082062000859565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6159c480620008e66000396000f3fe6080604052600436106102925760003560e01c8063722503801161015a578063c6682862116100c1578063e985e9c51161007a578063e985e9c5146109a5578063ed19e3e7146109e2578063f254933d14610a0d578063f2c4ce1e14610a36578063f2fde38b14610a5f578063fa5afe4014610a8857610292565b8063c668286214610897578063c87b56dd146108c2578063d0eb26b0146108ff578063d5abeb0114610928578063da3ef23f14610953578063dc1270c71461097c57610292565b8063a0712d6811610113578063a0712d68146107bc578063a22cb465146107d8578063a475b5dd14610801578063ad35bdb014610818578063b88d4fde14610843578063ba7d2c761461086c57610292565b806372250380146106e45780637b6f77681461070f5780637dd40d27146107385780638456cb591461074f5780638da5cb5b1461076657806395d89b411461079157610292565b806342842e0e116101fe57806355f804b3116101b757806355f804b3146105c25780635c975abb146105eb5780635fa964d6146106165780636352211e1461065357806370a0823114610690578063715018a6146106cd57610292565b806342842e0e146104af578063438b6300146104d857806344a0d68a1461051557806346abdccf1461053e5780634f6ccce71461055a578063518302271461059757610292565b806318160ddd1161025057806318160ddd146103bb57806318cae269146103e657806323b872dd146104235780632429467b1461044c5780632f745c59146104685780633ccfd60b146104a557610292565b8062821de31461029757806301ffc9a7146102c257806306fdde03146102ff578063081812fc1461032a578063095ea7b31461036757806313faede614610390575b600080fd5b3480156102a357600080fd5b506102ac610ab1565b6040516102b9919061488a565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190614163565b610ad7565b6040516102f69190614913565b60405180910390f35b34801561030b57600080fd5b50610314610b51565b604051610321919061492e565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190614206565b610be3565b60405161035e919061488a565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190614123565b610c68565b005b34801561039c57600080fd5b506103a5610d80565b6040516103b29190614d10565b60405180910390f35b3480156103c757600080fd5b506103d0610d86565b6040516103dd9190614d10565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190613f73565b610d93565b60405161041a9190614d10565b60405180910390f35b34801561042f57600080fd5b5061044a6004803603810190610445919061400d565b610dab565b005b61046660048036038101906104619190614206565b610e0b565b005b34801561047457600080fd5b5061048f600480360381019061048a9190614123565b6110b7565b60405161049c9190614d10565b60405180910390f35b6104ad61115c565b005b3480156104bb57600080fd5b506104d660048036038101906104d1919061400d565b611258565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190613f73565b611278565b60405161050c91906148f1565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190614206565b611326565b005b61055860048036038101906105539190614206565b6113ac565b005b34801561056657600080fd5b50610581600480360381019061057c9190614206565b6115d7565b60405161058e9190614d10565b60405180910390f35b3480156105a357600080fd5b506105ac611648565b6040516105b99190614913565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e491906141bd565b61165b565b005b3480156105f757600080fd5b506106006116f1565b60405161060d9190614913565b60405180910390f35b34801561062257600080fd5b5061063d60048036038101906106389190614206565b611704565b60405161064a9190614913565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190614206565b611724565b604051610687919061488a565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190613f73565b6117d6565b6040516106c49190614d10565b60405180910390f35b3480156106d957600080fd5b506106e261188e565b005b3480156106f057600080fd5b506106f9611916565b604051610706919061492e565b60405180910390f35b34801561071b57600080fd5b50610736600480360381019061073191906141bd565b6119a4565b005b34801561074457600080fd5b5061074d611a3a565b005b34801561075b57600080fd5b50610764611b10565b005b34801561077257600080fd5b5061077b611be6565b604051610788919061488a565b60405180910390f35b34801561079d57600080fd5b506107a6611c10565b6040516107b3919061492e565b60405180910390f35b6107d660048036038101906107d19190614206565b611ca2565b005b3480156107e457600080fd5b506107ff60048036038101906107fa91906140e3565b611fe1565b005b34801561080d57600080fd5b50610816612162565b005b34801561082457600080fd5b5061082d612238565b60405161083a9190614d10565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190614060565b61223e565b005b34801561087857600080fd5b506108816122a0565b60405161088e9190614d10565b60405180910390f35b3480156108a357600080fd5b506108ac6122a6565b6040516108b9919061492e565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e49190614206565b612334565b6040516108f6919061492e565b60405180910390f35b34801561090b57600080fd5b5061092660048036038101906109219190614206565b61251a565b005b34801561093457600080fd5b5061093d6125a0565b60405161094a9190614d10565b60405180910390f35b34801561095f57600080fd5b5061097a600480360381019061097591906141bd565b6125a6565b005b34801561098857600080fd5b506109a3600480360381019061099e9190614206565b61263c565b005b3480156109b157600080fd5b506109cc60048036038101906109c79190613fcd565b6127d3565b6040516109d99190614913565b60405180910390f35b3480156109ee57600080fd5b506109f7612867565b604051610a049190614913565b60405180910390f35b348015610a1957600080fd5b50610a346004803603810190610a2f9190614123565b61287a565b005b348015610a4257600080fd5b50610a5d6004803603810190610a5891906141bd565b6129ba565b005b348015610a6b57600080fd5b50610a866004803603810190610a819190613f73565b612a50565b005b348015610a9457600080fd5b50610aaf6004803603810190610aaa9190613f73565b612b48565b005b601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4a5750610b4982612c08565b5b9050919050565b606060008054610b6090614fbf565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8c90614fbf565b8015610bd95780601f10610bae57610100808354040283529160200191610bd9565b820191906000526020600020905b815481529060010190602001808311610bbc57829003601f168201915b5050505050905090565b6000610bee82612cea565b610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490614bb0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c7382611724565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90614c70565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d03612d56565b73ffffffffffffffffffffffffffffffffffffffff161480610d325750610d3181610d2c612d56565b6127d3565b5b610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890614ad0565b60405180910390fd5b610d7b8383612d5e565b505050565b600f5481565b6000600880549050905090565b60146020528060005260406000206000915090505481565b610dbc610db6612d56565b82612e17565b610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df290614cb0565b60405180910390fd5b610e06838383612ef5565b505050565b6000610e15610d86565b90506000601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b8152600401610e799190614d10565b60206040518083038186803b158015610e9157600080fd5b505afa158015610ea5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec99190613fa0565b9050610ed3611be6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f74573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a90614c30565b60405180910390fd5b5b610f7d84612cea565b15610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490614b90565b60405180910390fd5b60008411611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790614ab0565b60405180910390fd5b6113898410611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b90614ab0565b60405180910390fd5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061109490615022565b91905055506110a33385613151565b82806110ae90615022565b93505050505050565b60006110c2836117d6565b8210611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90614970565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611164612d56565b73ffffffffffffffffffffffffffffffffffffffff16611182611be6565b73ffffffffffffffffffffffffffffffffffffffff16146111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90614bd0565b60405180910390fd5b60006111e2611be6565b73ffffffffffffffffffffffffffffffffffffffff164760405161120590614875565b60006040518083038185875af1925050503d8060008114611242576040519150601f19603f3d011682016040523d82523d6000602084013e611247565b606091505b505090508061125557600080fd5b50565b6112738383836040518060200160405280600081525061223e565b505050565b60606000611285836117d6565b905060008167ffffffffffffffff8111156112a3576112a2615187565b5b6040519080825280602002602001820160405280156112d15781602001602082028036833780820191505090505b50905060005b8281101561131b576112e985826110b7565b8282815181106112fc576112fb615158565b5b602002602001018181525050808061131390615022565b9150506112d7565b508092505050919050565b61132e612d56565b73ffffffffffffffffffffffffffffffffffffffff1661134c611be6565b73ffffffffffffffffffffffffffffffffffffffff16146113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990614bd0565b60405180910390fd5b80600f8190555050565b600015156015600083815260200190815260200160002060009054906101000a900460ff16151514611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a906149f0565b60405180910390fd5b61141b611be6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115a857601360009054906101000a900460ff161561149d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149490614b70565b60405180910390fd5b601360019054906101000a900460ff166114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390614a90565b60405180910390fd5b6114f581611724565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990614c30565b60405180910390fd5b600f543410156115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90614c90565b60405180910390fd5b5b60016015600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006115e1610d86565b8210611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614cd0565b60405180910390fd5b6008828154811061163657611635615158565b5b90600052602060002001549050919050565b601360029054906101000a900460ff1681565b611663612d56565b73ffffffffffffffffffffffffffffffffffffffff16611681611be6565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90614bd0565b60405180910390fd5b80600b90805190602001906116ed929190613d72565b5050565b601360009054906101000a900460ff1681565b60156020528060005260406000206000915054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c490614b10565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e90614af0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611896612d56565b73ffffffffffffffffffffffffffffffffffffffff166118b4611be6565b73ffffffffffffffffffffffffffffffffffffffff161461190a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190190614bd0565b60405180910390fd5b611914600061316f565b565b600d805461192390614fbf565b80601f016020809104026020016040519081016040528092919081815260200182805461194f90614fbf565b801561199c5780601f106119715761010080835404028352916020019161199c565b820191906000526020600020905b81548152906001019060200180831161197f57829003601f168201915b505050505081565b6119ac612d56565b73ffffffffffffffffffffffffffffffffffffffff166119ca611be6565b73ffffffffffffffffffffffffffffffffffffffff1614611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790614bd0565b60405180910390fd5b80600c9080519060200190611a36929190613d72565b5050565b611a42612d56565b73ffffffffffffffffffffffffffffffffffffffff16611a60611be6565b73ffffffffffffffffffffffffffffffffffffffff1614611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90614bd0565b60405180910390fd5b60011515601360019054906101000a900460ff1615151415611af2576000601360016101000a81548160ff021916908315150217905550611b0e565b6001601360016101000a81548160ff0219169083151502179055505b565b611b18612d56565b73ffffffffffffffffffffffffffffffffffffffff16611b36611be6565b73ffffffffffffffffffffffffffffffffffffffff1614611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390614bd0565b60405180910390fd5b60011515601360009054906101000a900460ff1615151415611bc8576000601360006101000a81548160ff021916908315150217905550611be4565b6001601360006101000a81548160ff0219169083151502179055505b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611c1f90614fbf565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4b90614fbf565b8015611c985780601f10611c6d57610100808354040283529160200191611c98565b820191906000526020600020905b815481529060010190602001808311611c7b57829003601f168201915b5050505050905090565b6000611cac610d86565b90506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060018314611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90614c50565b60405180910390fd5b601254600182611d459190614e4e565b1115611d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7d90614b30565b60405180910390fd5b6011546001601054611d989190614e4e565b1115611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090614950565b60405180910390fd5b60003390506000339150601154600185611df39190614e4e565b14611dfe5734611e00565b475b9050611e0a611be6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ed257601360009054906101000a900460ff1615611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390614b70565b60405180910390fd5b600f54341015611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890614c10565b60405180910390fd5b5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611f2290615022565b9190505550611f3333601054613151565b60106000815480929190611f4690615022565b91905055508380611f5690615022565b9450506000841115611fda5760008273ffffffffffffffffffffffffffffffffffffffff1682604051611f8890614875565b60006040518083038185875af1925050503d8060008114611fc5576040519150601f19603f3d011682016040523d82523d6000602084013e611fca565b606091505b5050905080611fd857600080fd5b505b5050505050565b611fe9612d56565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e90614a30565b60405180910390fd5b8060056000612064612d56565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612111612d56565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121569190614913565b60405180910390a35050565b61216a612d56565b73ffffffffffffffffffffffffffffffffffffffff16612188611be6565b73ffffffffffffffffffffffffffffffffffffffff16146121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590614bd0565b60405180910390fd5b60011515601360029054906101000a900460ff161515141561221a576000601360026101000a81548160ff021916908315150217905550612236565b6001601360026101000a81548160ff0219169083151502179055505b565b60105481565b61224f612249612d56565b83612e17565b61228e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228590614cb0565b60405180910390fd5b61229a84848484613235565b50505050565b60125481565b600e80546122b390614fbf565b80601f01602080910402602001604051908101604052809291908181526020018280546122df90614fbf565b801561232c5780601f106123015761010080835404028352916020019161232c565b820191906000526020600020905b81548152906001019060200180831161230f57829003601f168201915b505050505081565b606061233f82612cea565b61237e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237590614cf0565b60405180910390fd5b60001515601360029054906101000a900460ff161515141561242c57600d80546123a790614fbf565b80601f01602080910402602001604051908101604052809291908181526020018280546123d390614fbf565b80156124205780601f106123f557610100808354040283529160200191612420565b820191906000526020600020905b81548152906001019060200180831161240357829003601f168201915b50505050509050612515565b600115156015600084815260200190815260200160002060009054906101000a900460ff16151514156124b9576000612463613291565b9050600081511161248357604051806020016040528060008152506124b1565b8061248d84613323565b600e6040516020016124a193929190614844565b6040516020818303038152906040525b915050612515565b60006124c3613484565b905060008151116124e35760405180602001604052806000815250612511565b806124ed84613323565b600e60405160200161250193929190614844565b6040516020818303038152906040525b9150505b919050565b612522612d56565b73ffffffffffffffffffffffffffffffffffffffff16612540611be6565b73ffffffffffffffffffffffffffffffffffffffff1614612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d90614bd0565b60405180910390fd5b8060128190555050565b60115481565b6125ae612d56565b73ffffffffffffffffffffffffffffffffffffffff166125cc611be6565b73ffffffffffffffffffffffffffffffffffffffff1614612622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261990614bd0565b60405180910390fd5b80600e9080519060200190612638929190613d72565b5050565b600115156015600083815260200190815260200160002060009054906101000a900460ff161515146126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a90614a50565b60405180910390fd5b6126ab611be6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146127a457601360009054906101000a900460ff161561272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490614b70565b60405180910390fd5b61273681611724565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146127a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279a90614c30565b60405180910390fd5b5b60006015600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601360019054906101000a900460ff1681565b612882612d56565b73ffffffffffffffffffffffffffffffffffffffff166128a0611be6565b73ffffffffffffffffffffffffffffffffffffffff16146128f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ed90614bd0565b60405180910390fd5b6000612900610d86565b90506000821161290f57600080fd5b601154826010546129209190614e4e565b1115612961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295890614950565b60405180910390fd5b6000600190505b8281116129b45761297b84601054613151565b6010600081548092919061298e90615022565b9190505550818061299e90615022565b92505080806129ac90615022565b915050612968565b50505050565b6129c2612d56565b73ffffffffffffffffffffffffffffffffffffffff166129e0611be6565b73ffffffffffffffffffffffffffffffffffffffff1614612a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2d90614bd0565b60405180910390fd5b80600d9080519060200190612a4c929190613d72565b5050565b612a58612d56565b73ffffffffffffffffffffffffffffffffffffffff16612a76611be6565b73ffffffffffffffffffffffffffffffffffffffff1614612acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac390614bd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b33906149b0565b60405180910390fd5b612b458161316f565b50565b612b50612d56565b73ffffffffffffffffffffffffffffffffffffffff16612b6e611be6565b73ffffffffffffffffffffffffffffffffffffffff1614612bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbb90614bd0565b60405180910390fd5b80601360036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612cd357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612ce35750612ce282613516565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612dd183611724565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e2282612cea565b612e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5890614a70565b60405180910390fd5b6000612e6c83611724565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612edb57508373ffffffffffffffffffffffffffffffffffffffff16612ec384610be3565b73ffffffffffffffffffffffffffffffffffffffff16145b80612eec5750612eeb81856127d3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f1582611724565b73ffffffffffffffffffffffffffffffffffffffff1614612f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6290614bf0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd290614a10565b60405180910390fd5b612fe6838383613580565b612ff1600082612d5e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130419190614ed5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130989190614e4e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61316b828260405180602001604052806000815250613694565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613240848484612ef5565b61324c848484846136ef565b61328b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328290614990565b60405180910390fd5b50505050565b6060600c80546132a090614fbf565b80601f01602080910402602001604051908101604052809291908181526020018280546132cc90614fbf565b80156133195780601f106132ee57610100808354040283529160200191613319565b820191906000526020600020905b8154815290600101906020018083116132fc57829003601f168201915b5050505050905090565b6060600082141561336b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061347f565b600082905060005b6000821461339d57808061338690615022565b915050600a826133969190614ea4565b9150613373565b60008167ffffffffffffffff8111156133b9576133b8615187565b5b6040519080825280601f01601f1916602001820160405280156133eb5781602001600182028036833780820191505090505b5090505b60008514613478576001826134049190614ed5565b9150600a85613413919061506b565b603061341f9190614e4e565b60f81b81838151811061343557613434615158565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134719190614ea4565b94506133ef565b8093505050505b919050565b6060600b805461349390614fbf565b80601f01602080910402602001604051908101604052809291908181526020018280546134bf90614fbf565b801561350c5780601f106134e15761010080835404028352916020019161350c565b820191906000526020600020905b8154815290600101906020018083116134ef57829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61358b838383613886565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135ce576135c98161388b565b61360d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461360c5761360b83826138d4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136505761364b81613a41565b61368f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461368e5761368d8282613b12565b5b5b505050565b61369e8383613b91565b6136ab60008484846136ef565b6136ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e190614990565b60405180910390fd5b505050565b60006137108473ffffffffffffffffffffffffffffffffffffffff16613d5f565b15613879578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613739612d56565b8786866040518563ffffffff1660e01b815260040161375b94939291906148a5565b602060405180830381600087803b15801561377557600080fd5b505af19250505080156137a657506040513d601f19601f820116820180604052508101906137a39190614190565b60015b613829573d80600081146137d6576040519150601f19603f3d011682016040523d82523d6000602084013e6137db565b606091505b50600081511415613821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161381890614990565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061387e565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138e1846117d6565b6138eb9190614ed5565b90506000600760008481526020019081526020016000205490508181146139d0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a559190614ed5565b9050600060096000848152602001908152602001600020549050600060088381548110613a8557613a84615158565b5b906000526020600020015490508060088381548110613aa757613aa6615158565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613af657613af5615129565b5b6001900381819060005260206000200160009055905550505050565b6000613b1d836117d6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bf890614b50565b60405180910390fd5b613c0a81612cea565b15613c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c41906149d0565b60405180910390fd5b613c5660008383613580565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ca69190614e4e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613d7e90614fbf565b90600052602060002090601f016020900481019282613da05760008555613de7565b82601f10613db957805160ff1916838001178555613de7565b82800160010185558215613de7579182015b82811115613de6578251825591602001919060010190613dcb565b5b509050613df49190613df8565b5090565b5b80821115613e11576000816000905550600101613df9565b5090565b6000613e28613e2384614d50565b614d2b565b905082815260208101848484011115613e4457613e436151bb565b5b613e4f848285614f7d565b509392505050565b6000613e6a613e6584614d81565b614d2b565b905082815260208101848484011115613e8657613e856151bb565b5b613e91848285614f7d565b509392505050565b600081359050613ea881615932565b92915050565b600081519050613ebd81615932565b92915050565b600081359050613ed281615949565b92915050565b600081359050613ee781615960565b92915050565b600081519050613efc81615960565b92915050565b600082601f830112613f1757613f166151b6565b5b8135613f27848260208601613e15565b91505092915050565b600082601f830112613f4557613f446151b6565b5b8135613f55848260208601613e57565b91505092915050565b600081359050613f6d81615977565b92915050565b600060208284031215613f8957613f886151c5565b5b6000613f9784828501613e99565b91505092915050565b600060208284031215613fb657613fb56151c5565b5b6000613fc484828501613eae565b91505092915050565b60008060408385031215613fe457613fe36151c5565b5b6000613ff285828601613e99565b925050602061400385828601613e99565b9150509250929050565b600080600060608486031215614026576140256151c5565b5b600061403486828701613e99565b935050602061404586828701613e99565b925050604061405686828701613f5e565b9150509250925092565b6000806000806080858703121561407a576140796151c5565b5b600061408887828801613e99565b945050602061409987828801613e99565b93505060406140aa87828801613f5e565b925050606085013567ffffffffffffffff8111156140cb576140ca6151c0565b5b6140d787828801613f02565b91505092959194509250565b600080604083850312156140fa576140f96151c5565b5b600061410885828601613e99565b925050602061411985828601613ec3565b9150509250929050565b6000806040838503121561413a576141396151c5565b5b600061414885828601613e99565b925050602061415985828601613f5e565b9150509250929050565b600060208284031215614179576141786151c5565b5b600061418784828501613ed8565b91505092915050565b6000602082840312156141a6576141a56151c5565b5b60006141b484828501613eed565b91505092915050565b6000602082840312156141d3576141d26151c5565b5b600082013567ffffffffffffffff8111156141f1576141f06151c0565b5b6141fd84828501613f30565b91505092915050565b60006020828403121561421c5761421b6151c5565b5b600061422a84828501613f5e565b91505092915050565b600061423f8383614826565b60208301905092915050565b61425481614f09565b82525050565b600061426582614dd7565b61426f8185614e05565b935061427a83614db2565b8060005b838110156142ab5781516142928882614233565b975061429d83614df8565b92505060018101905061427e565b5085935050505092915050565b6142c181614f1b565b82525050565b60006142d282614de2565b6142dc8185614e16565b93506142ec818560208601614f8c565b6142f5816151ca565b840191505092915050565b600061430b82614ded565b6143158185614e32565b9350614325818560208601614f8c565b61432e816151ca565b840191505092915050565b600061434482614ded565b61434e8185614e43565b935061435e818560208601614f8c565b80840191505092915050565b6000815461437781614fbf565b6143818186614e43565b9450600182166000811461439c57600181146143ad576143e0565b60ff198316865281860193506143e0565b6143b685614dc2565b60005b838110156143d8578154818901526001820191506020810190506143b9565b838801955050505b50505092915050565b60006143f6601783614e32565b9150614401826151db565b602082019050919050565b6000614419602b83614e32565b915061442482615204565b604082019050919050565b600061443c603283614e32565b915061444782615253565b604082019050919050565b600061445f602683614e32565b915061446a826152a2565b604082019050919050565b6000614482601c83614e32565b915061448d826152f1565b602082019050919050565b60006144a5601c83614e32565b91506144b08261531a565b602082019050919050565b60006144c8602483614e32565b91506144d382615343565b604082019050919050565b60006144eb601983614e32565b91506144f682615392565b602082019050919050565b600061450e601783614e32565b9150614519826153bb565b602082019050919050565b6000614531602c83614e32565b915061453c826153e4565b604082019050919050565b6000614554601c83614e32565b915061455f82615433565b602082019050919050565b6000614577601d83614e32565b91506145828261545c565b602082019050919050565b600061459a603883614e32565b91506145a582615485565b604082019050919050565b60006145bd602a83614e32565b91506145c8826154d4565b604082019050919050565b60006145e0602983614e32565b91506145eb82615523565b604082019050919050565b6000614603601d83614e32565b915061460e82615572565b602082019050919050565b6000614626602083614e32565b91506146318261559b565b602082019050919050565b6000614649601783614e32565b9150614654826155c4565b602082019050919050565b600061466c601c83614e32565b9150614677826155ed565b602082019050919050565b600061468f602c83614e32565b915061469a82615616565b604082019050919050565b60006146b2602083614e32565b91506146bd82615665565b602082019050919050565b60006146d5602983614e32565b91506146e08261568e565b604082019050919050565b60006146f8601383614e32565b9150614703826156dd565b602082019050919050565b600061471b602283614e32565b915061472682615706565b604082019050919050565b600061473e602583614e32565b915061474982615755565b604082019050919050565b6000614761602183614e32565b915061476c826157a4565b604082019050919050565b6000614784602883614e32565b915061478f826157f3565b604082019050919050565b60006147a7600083614e27565b91506147b282615842565b600082019050919050565b60006147ca603183614e32565b91506147d582615845565b604082019050919050565b60006147ed602c83614e32565b91506147f882615894565b604082019050919050565b6000614810603083614e32565b915061481b826158e3565b604082019050919050565b61482f81614f73565b82525050565b61483e81614f73565b82525050565b60006148508286614339565b915061485c8285614339565b9150614868828461436a565b9150819050949350505050565b60006148808261479a565b9150819050919050565b600060208201905061489f600083018461424b565b92915050565b60006080820190506148ba600083018761424b565b6148c7602083018661424b565b6148d46040830185614835565b81810360608301526148e681846142c7565b905095945050505050565b6000602082019050818103600083015261490b818461425a565b905092915050565b600060208201905061492860008301846142b8565b92915050565b600060208201905081810360008301526149488184614300565b905092915050565b60006020820190508181036000830152614969816143e9565b9050919050565b600060208201905081810360008301526149898161440c565b9050919050565b600060208201905081810360008301526149a98161442f565b9050919050565b600060208201905081810360008301526149c981614452565b9050919050565b600060208201905081810360008301526149e981614475565b9050919050565b60006020820190508181036000830152614a0981614498565b9050919050565b60006020820190508181036000830152614a29816144bb565b9050919050565b60006020820190508181036000830152614a49816144de565b9050919050565b60006020820190508181036000830152614a6981614501565b9050919050565b60006020820190508181036000830152614a8981614524565b9050919050565b60006020820190508181036000830152614aa981614547565b9050919050565b60006020820190508181036000830152614ac98161456a565b9050919050565b60006020820190508181036000830152614ae98161458d565b9050919050565b60006020820190508181036000830152614b09816145b0565b9050919050565b60006020820190508181036000830152614b29816145d3565b9050919050565b60006020820190508181036000830152614b49816145f6565b9050919050565b60006020820190508181036000830152614b6981614619565b9050919050565b60006020820190508181036000830152614b898161463c565b9050919050565b60006020820190508181036000830152614ba98161465f565b9050919050565b60006020820190508181036000830152614bc981614682565b9050919050565b60006020820190508181036000830152614be9816146a5565b9050919050565b60006020820190508181036000830152614c09816146c8565b9050919050565b60006020820190508181036000830152614c29816146eb565b9050919050565b60006020820190508181036000830152614c498161470e565b9050919050565b60006020820190508181036000830152614c6981614731565b9050919050565b60006020820190508181036000830152614c8981614754565b9050919050565b60006020820190508181036000830152614ca981614777565b9050919050565b60006020820190508181036000830152614cc9816147bd565b9050919050565b60006020820190508181036000830152614ce9816147e0565b9050919050565b60006020820190508181036000830152614d0981614803565b9050919050565b6000602082019050614d256000830184614835565b92915050565b6000614d35614d46565b9050614d418282614ff1565b919050565b6000604051905090565b600067ffffffffffffffff821115614d6b57614d6a615187565b5b614d74826151ca565b9050602081019050919050565b600067ffffffffffffffff821115614d9c57614d9b615187565b5b614da5826151ca565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e5982614f73565b9150614e6483614f73565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e9957614e9861509c565b5b828201905092915050565b6000614eaf82614f73565b9150614eba83614f73565b925082614eca57614ec96150cb565b5b828204905092915050565b6000614ee082614f73565b9150614eeb83614f73565b925082821015614efe57614efd61509c565b5b828203905092915050565b6000614f1482614f53565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614faa578082015181840152602081019050614f8f565b83811115614fb9576000848401525b50505050565b60006002820490506001821680614fd757607f821691505b60208210811415614feb57614fea6150fa565b5b50919050565b614ffa826151ca565b810181811067ffffffffffffffff8211171561501957615018615187565b5b80604052505050565b600061502d82614f73565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150605761505f61509c565b5b600182019050919050565b600061507682614f73565b915061508183614f73565b925082615091576150906150cb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6d6178204e4654206c696d69742065786365656465642e000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f54686973204e465420697320616c72656164792065766f6c7665642e00000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f54686973204e46542069736e27742065766f6c7665642e000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45766f6c7574696f6e206973206e6f7420616374697665207965742e00000000600082015250565b7f596f752063616e277420636c61696d207468617420746f6b656e49442e000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e46542070657220616464726573732065786365656465642e000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f54686520636f6e7472616374206973207061757365642e000000000000000000600082015250565b7f5468697320546f6b656e494420616c7265616479206578697374732e00000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b7f596f7520617265206e6f7420746865206f776e6572206f662074686973204e4660008201527f542e000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e2774206d696e74206d6f7265207468616e2031204e465420617420612060008201527f74696d652e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732c2065766f6c766520636f73742060008201527f32204d415449432e000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b61593b81614f09565b811461594657600080fd5b50565b61595281614f1b565b811461595d57600080fd5b50565b61596981614f27565b811461597457600080fd5b50565b61598081614f73565b811461598b57600080fd5b5056fea2646970667358221220c194494cbe6da50b2f17e2e929996c91aa98c4aeb01a64e21cf0ea4af99ac3bb64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d523757414e7333426646776a7a4e395a56744b6f626a777663516a387a776f53664d67587745545648376b652f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5652716637686554344535527041514335666a757042574e44585858646231594b5a4a736655615a676439362f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d524e4e574a77395150516572685237396f4171546d4c416e6d446437705544756f55376437383962685a48432f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d523757414e7333426646776a7a4e395a56744b6f626a777663516a387a776f53664d67587745545648376b652f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5652716637686554344535527041514335666a757042574e44585858646231594b5a4a736655615a676439362f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d524e4e574a77395150516572685237396f4171546d4c416e6d446437705544756f55376437383962685a48432f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmR7WANs3BfFwjzN9ZVtKobjwvcQj8zwoSfMgXwETVH7ke/
Arg [1] : _initEvolvedURI (string): ipfs://QmVRqf7heT4E5RpAQC5fjupBWNDXXXdb1YKZJsfUaZgd96/
Arg [2] : _initNotRevealedURI (string): ipfs://QmRNNWJw9QPQerhR79oAqTmLAnmDd7pUDuoU7d789bhZHC/hidden.json
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d523757414e7333426646776a7a4e395a56744b6f626a77
Arg [5] : 7663516a387a776f53664d67587745545648376b652f00000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [7] : 697066733a2f2f516d5652716637686554344535527041514335666a75704257
Arg [8] : 4e44585858646231594b5a4a736655615a676439362f00000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [10] : 697066733a2f2f516d524e4e574a77395150516572685237396f4171546d4c41
Arg [11] : 6e6d446437705544756f55376437383962685a48432f68696464656e2e6a736f
Arg [12] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
42699:6743:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43160:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34656:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22552:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24111:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23634:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42909:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35296:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43193:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25001:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44901:622;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34964:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49294:145;;;:::i;:::-;;25411:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45962:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48602:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47195:499;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35486:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43128:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48699:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43063:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43253:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22246:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21976:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41940:94;;;;;;;;;;;;;:::i;:::-;;42834:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48803:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48242:130;;;;;;;;;;;;;:::i;:::-;;49173:114;;;;;;;;;;;;;:::i;:::-;;41289:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22721:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43836:1037;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24404:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48084:121;;;;;;;;;;;;;:::i;:::-;;42945:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25667:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43020:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42867:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46393:745;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48490:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42983:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49045:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47718:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24770:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43094:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45552:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48919:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42189:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48380:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43160:28;;;;;;;;;;;;;:::o;34656:224::-;34758:4;34797:35;34782:50;;;:11;:50;;;;:90;;;;34836:36;34860:11;34836:23;:36::i;:::-;34782:90;34775:97;;34656:224;;;:::o;22552:100::-;22606:13;22639:5;22632:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22552:100;:::o;24111:221::-;24187:7;24215:16;24223:7;24215;:16::i;:::-;24207:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24300:15;:24;24316:7;24300:24;;;;;;;;;;;;;;;;;;;;;24293:31;;24111:221;;;:::o;23634:411::-;23715:13;23731:23;23746:7;23731:14;:23::i;:::-;23715:39;;23779:5;23773:11;;:2;:11;;;;23765:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23873:5;23857:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23882:37;23899:5;23906:12;:10;:12::i;:::-;23882:16;:37::i;:::-;23857:62;23835:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24016:21;24025:2;24029:7;24016:8;:21::i;:::-;23704:341;23634:411;;:::o;42909:31::-;;;;:::o;35296:113::-;35357:7;35384:10;:17;;;;35377:24;;35296:113;:::o;43193:55::-;;;;;;;;;;;;;;;;;:::o;25001:339::-;25196:41;25215:12;:10;:12::i;:::-;25229:7;25196:18;:41::i;:::-;25188:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25304:28;25314:4;25320:2;25324:7;25304:9;:28::i;:::-;25001:339;;;:::o;44901:622::-;44962:14;44979:13;:11;:13::i;:::-;44962:30;;44999:12;45021:13;;;;;;;;;;;44999:36;;45042:20;45065:5;:13;;;45079:8;45065:23;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45042:46;;45115:7;:5;:7::i;:::-;45101:21;;:10;:21;;;45097:132;;45168:10;45152:26;;:12;:26;;;45144:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45097:132;45246:17;45254:8;45246:7;:17::i;:::-;45245:18;45237:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;45322:1;45311:8;:12;45303:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;45383:4;45372:8;:15;45364:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45430:20;:32;45451:10;45430:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;45471:31;45481:10;45493:8;45471:9;:31::i;:::-;45509:8;;;;;:::i;:::-;;;;44955:568;;;44901:622;:::o;34964:256::-;35061:7;35097:23;35114:5;35097:16;:23::i;:::-;35089:5;:31;35081:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35186:12;:19;35199:5;35186:19;;;;;;;;;;;;;;;:26;35206:5;35186:26;;;;;;;;;;;;35179:33;;34964:256;;;;:::o;49294:145::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49347:7:::1;49368;:5;:7::i;:::-;49360:21;;49389;49360:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49346:69;;;49430:2;49422:11;;;::::0;::::1;;49339:100;49294:145::o:0;25411:185::-;25549:39;25566:4;25572:2;25576:7;25549:39;;;;;;;;;;;;:16;:39::i;:::-;25411:185;;;:::o;45962:336::-;46022:16;46047:23;46073:17;46083:6;46073:9;:17::i;:::-;46047:43;;46097:25;46139:15;46125:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46097:58;;46167:9;46162:109;46182:15;46178:1;:19;46162:109;;;46229:30;46249:6;46257:1;46229:19;:30::i;:::-;46215:8;46224:1;46215:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;46199:3;;;;;:::i;:::-;;;;46162:109;;;;46284:8;46277:15;;;;45962:336;;;:::o;48602:80::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48668:8:::1;48661:4;:15;;;;48602:80:::0;:::o;47195:499::-;47283:5;47262:26;;:7;:17;47270:8;47262:17;;;;;;;;;;;;;;;;;;;;;:26;;;47254:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;47352:7;:5;:7::i;:::-;47338:21;;:10;:21;;;47334:324;;47381:6;;;;;;;;;;;47380:7;47372:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;47434:9;;;;;;;;;;;47426:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;47509:17;47517:8;47509:7;:17::i;:::-;47495:31;;:10;:31;;;47487:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;47597:4;;47584:9;:17;;47576:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;47334:324;47684:4;47664:7;:17;47672:8;47664:17;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;47195:499;:::o;35486:233::-;35561:7;35597:30;:28;:30::i;:::-;35589:5;:38;35581:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35694:10;35705:5;35694:17;;;;;;;;:::i;:::-;;;;;;;;;;35687:24;;35486:233;;;:::o;43128:27::-;;;;;;;;;;;;;:::o;48699:98::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48780:11:::1;48770:7;:21;;;;;;;;;;;;:::i;:::-;;48699:98:::0;:::o;43063:26::-;;;;;;;;;;;;;:::o;43253:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;22246:239::-;22318:7;22338:13;22354:7;:16;22362:7;22354:16;;;;;;;;;;;;;;;;;;;;;22338:32;;22406:1;22389:19;;:5;:19;;;;22381:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22472:5;22465:12;;;22246:239;;;:::o;21976:208::-;22048:7;22093:1;22076:19;;:5;:19;;;;22068:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22160:9;:16;22170:5;22160:16;;;;;;;;;;;;;;;;22153:23;;21976:208;;;:::o;41940:94::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42005:21:::1;42023:1;42005:9;:21::i;:::-;41940:94::o:0;42834:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48803:110::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48893:14:::1;48880:10;:27;;;;;;;;;;;;:::i;:::-;;48803:110:::0;:::o;48242:130::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48307:4:::1;48294:17;;:9;;;;;;;;;;;:17;;;48290:77;;;48327:5;48315:9;;:17;;;;;;;;;;;;;;;;;;48290:77;;;48360:4;48348:9;;:16;;;;;;;;;;;;;;;;;;48290:77;48242:130::o:0;49173:114::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49228:4:::1;49218:14;;:6;;;;;;;;;;;:14;;;49214:68;;;49245:5;49236:6;;:14;;;;;;;;;;;;;;;;;;49214:68;;;49275:4;49266:6;;:13;;;;;;;;;;;;;;;;;;49214:68;49173:114::o:0;41289:87::-;41335:7;41362:6;;;;;;;;;;;41355:13;;41289:87;:::o;22721:104::-;22777:13;22810:7;22803:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22721:104;:::o;43836:1037::-;43893:14;43910:13;:11;:13::i;:::-;43893:30;;43930:24;43957:20;:32;43978:10;43957:32;;;;;;;;;;;;;;;;43930:59;;44021:1;44006:11;:16;43998:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;44103:18;;44098:1;44079:16;:20;;;;:::i;:::-;:42;;44071:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;44189:9;;44184:1;44170:11;;:15;;;;:::i;:::-;:28;;44162:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44235:29;44275:10;44235:51;;44293:19;44349:10;44325:35;;44395:9;;44390:1;44381:6;:10;;;;:::i;:::-;:23;:59;;44431:9;44381:59;;;44407:21;44381:59;44367:73;;44467:7;:5;:7::i;:::-;44453:21;;:10;:21;;;44449:153;;44496:6;;;;;;;;;;;44495:7;44487:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;44562:4;;44549:9;:17;;44541:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44449:153;44610:20;:32;44631:10;44610:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;44651;44661:10;44673:11;;44651:9;:34::i;:::-;44692:11;;:13;;;;;;;;;:::i;:::-;;;;;;44712:8;;;;;:::i;:::-;;;;44742:1;44733:6;:10;44729:137;;;44757:12;44783:13;44775:27;;44811:11;44775:52;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44756:71;;;44846:7;44838:16;;;;;;44745:121;44729:137;43886:987;;;;43836:1037;:::o;24404:295::-;24519:12;:10;:12::i;:::-;24507:24;;:8;:24;;;;24499:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24619:8;24574:18;:32;24593:12;:10;:12::i;:::-;24574:32;;;;;;;;;;;;;;;:42;24607:8;24574:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24672:8;24643:48;;24658:12;:10;:12::i;:::-;24643:48;;;24682:8;24643:48;;;;;;:::i;:::-;;;;;;;;24404:295;;:::o;48084:121::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48142:4:::1;48130:16;;:8;;;;;;;;;;;:16;;;48126:74;;;48161:5;48150:8;;:16;;;;;;;;;;;;;;;;;;48126:74;;;48193:4;48182:8;;:15;;;;;;;;;;;;;;;;;;48126:74;48084:121::o:0;42945:33::-;;;;:::o;25667:328::-;25842:41;25861:12;:10;:12::i;:::-;25875:7;25842:18;:41::i;:::-;25834:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25948:39;25962:4;25968:2;25972:7;25981:5;25948:13;:39::i;:::-;25667:328;;;;:::o;43020:38::-;;;;:::o;42867:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46393:745::-;46467:13;46503:17;46511:8;46503:7;:17::i;:::-;46495:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;46601:5;46589:17;;:8;;;;;;;;;;;:17;;;46585:356;;;46636:14;46629:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46585:356;46698:4;46677:25;;:7;:17;46685:8;46677:17;;;;;;;;;;;;;;;;;;;;;:25;;;46673:268;;;46724:31;46758:13;:11;:13::i;:::-;46724:47;;46823:1;46795:17;46789:31;:35;:140;;;;;;;;;;;;;;;;;46860:17;46879:19;:8;:17;:19::i;:::-;46900:13;46843:71;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46789:140;46782:147;;;;;46673:268;46949:28;46980:10;:8;:10::i;:::-;46949:41;;47035:1;47010:14;47004:28;:32;:126;;;;;;;;;;;;;;;;;47068:14;47084:19;:8;:17;:19::i;:::-;47105:13;47051:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47004:126;46997:133;;;46393:745;;;;:::o;48490:104::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48582:6:::1;48561:18;:27;;;;48490:104:::0;:::o;42983:32::-;;;;:::o;49045:122::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49144:17:::1;49128:13;:33;;;;;;;;;;;;:::i;:::-;;49045:122:::0;:::o;47718:341::-;47799:4;47778:25;;:7;:17;47786:8;47778:17;;;;;;;;;;;;;;;;;;;;;:25;;;47770:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47858:7;:5;:7::i;:::-;47844:21;;:10;:21;;;47840:182;;47887:6;;;;;;;;;;;47886:7;47878:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;47954:17;47962:8;47954:7;:17::i;:::-;47940:31;;:10;:31;;;47932:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;47840:182;48048:5;48028:7;:17;48036:8;48028:17;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;47718:341;:::o;24770:164::-;24867:4;24891:18;:25;24910:5;24891:25;;;;;;;;;;;;;;;:35;24917:8;24891:35;;;;;;;;;;;;;;;;;;;;;;;;;24884:42;;24770:164;;;;:::o;43094:29::-;;;;;;;;;;;;;:::o;45552:376::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45634:14:::1;45651:13;:11;:13::i;:::-;45634:30;;45693:1;45679:11;:15;45671:24;;;::::0;::::1;;45739:9;;45724:11;45710;;:25;;;;:::i;:::-;:38;;45702:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45790:9;45802:1;45790:13;;45785:136;45810:11;45805:1;:16;45785:136;;45839:27;45849:3;45854:11;;45839:9;:27::i;:::-;45877:11;;:13;;;;;;;;;:::i;:::-;;;;;;45901:8;;;;;:::i;:::-;;;;45823:3;;;;;:::i;:::-;;;;45785:136;;;;45627:301;45552:376:::0;;:::o;48919:120::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49018:15:::1;49001:14;:32;;;;;;;;;;;;:::i;:::-;;48919:120:::0;:::o;42189:192::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42298:1:::1;42278:22;;:8;:22;;;;42270:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42354:19;42364:8;42354:9;:19::i;:::-;42189:192:::0;:::o;48380:104::-;41520:12;:10;:12::i;:::-;41509:23;;:7;:5;:7::i;:::-;:23;;;41501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48467:11:::1;48451:13;;:27;;;;;;;;;;;;;;;;;;48380:104:::0;:::o;21607:305::-;21709:4;21761:25;21746:40;;;:11;:40;;;;:105;;;;21818:33;21803:48;;;:11;:48;;;;21746:105;:158;;;;21868:36;21892:11;21868:23;:36::i;:::-;21746:158;21726:178;;21607:305;;;:::o;27505:127::-;27570:4;27622:1;27594:30;;:7;:16;27602:7;27594:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27587:37;;27505:127;;;:::o;20081:98::-;20134:7;20161:10;20154:17;;20081:98;:::o;31487:174::-;31589:2;31562:15;:24;31578:7;31562:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31645:7;31641:2;31607:46;;31616:23;31631:7;31616:14;:23::i;:::-;31607:46;;;;;;;;;;;;31487:174;;:::o;27799:348::-;27892:4;27917:16;27925:7;27917;:16::i;:::-;27909:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27993:13;28009:23;28024:7;28009:14;:23::i;:::-;27993:39;;28062:5;28051:16;;:7;:16;;;:51;;;;28095:7;28071:31;;:20;28083:7;28071:11;:20::i;:::-;:31;;;28051:51;:87;;;;28106:32;28123:5;28130:7;28106:16;:32::i;:::-;28051:87;28043:96;;;27799:348;;;;:::o;30791:578::-;30950:4;30923:31;;:23;30938:7;30923:14;:23::i;:::-;:31;;;30915:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31033:1;31019:16;;:2;:16;;;;31011:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31089:39;31110:4;31116:2;31120:7;31089:20;:39::i;:::-;31193:29;31210:1;31214:7;31193:8;:29::i;:::-;31254:1;31235:9;:15;31245:4;31235:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31283:1;31266:9;:13;31276:2;31266:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31314:2;31295:7;:16;31303:7;31295:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31353:7;31349:2;31334:27;;31343:4;31334:27;;;;;;;;;;;;30791:578;;;:::o;28489:110::-;28565:26;28575:2;28579:7;28565:26;;;;;;;;;;;;:9;:26::i;:::-;28489:110;;:::o;42389:173::-;42445:16;42464:6;;;;;;;;;;;42445:25;;42490:8;42481:6;;:17;;;;;;;;;;;;;;;;;;42545:8;42514:40;;42535:8;42514:40;;;;;;;;;;;;42434:128;42389:173;:::o;26877:315::-;27034:28;27044:4;27050:2;27054:7;27034:9;:28::i;:::-;27081:48;27104:4;27110:2;27114:7;27123:5;27081:22;:48::i;:::-;27073:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26877:315;;;;:::o;43711:99::-;43765:13;43794:10;43787:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43711:99;:::o;7919:723::-;7975:13;8205:1;8196:5;:10;8192:53;;;8223:10;;;;;;;;;;;;;;;;;;;;;8192:53;8255:12;8270:5;8255:20;;8286:14;8311:78;8326:1;8318:4;:9;8311:78;;8344:8;;;;;:::i;:::-;;;;8375:2;8367:10;;;;;:::i;:::-;;;8311:78;;;8399:19;8431:6;8421:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8399:39;;8449:154;8465:1;8456:5;:10;8449:154;;8493:1;8483:11;;;;;:::i;:::-;;;8560:2;8552:5;:10;;;;:::i;:::-;8539:2;:24;;;;:::i;:::-;8526:39;;8509:6;8516;8509:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8589:2;8580:11;;;;;:::i;:::-;;;8449:154;;;8627:6;8613:21;;;;;7919:723;;;;:::o;43603:102::-;43663:13;43692:7;43685:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43603:102;:::o;7444:157::-;7529:4;7568:25;7553:40;;;:11;:40;;;;7546:47;;7444:157;;;:::o;36332:589::-;36476:45;36503:4;36509:2;36513:7;36476:26;:45::i;:::-;36554:1;36538:18;;:4;:18;;;36534:187;;;36573:40;36605:7;36573:31;:40::i;:::-;36534:187;;;36643:2;36635:10;;:4;:10;;;36631:90;;36662:47;36695:4;36701:7;36662:32;:47::i;:::-;36631:90;36534:187;36749:1;36735:16;;:2;:16;;;36731:183;;;36768:45;36805:7;36768:36;:45::i;:::-;36731:183;;;36841:4;36835:10;;:2;:10;;;36831:83;;36862:40;36890:2;36894:7;36862:27;:40::i;:::-;36831:83;36731:183;36332:589;;;:::o;28826:321::-;28956:18;28962:2;28966:7;28956:5;:18::i;:::-;29007:54;29038:1;29042:2;29046:7;29055:5;29007:22;:54::i;:::-;28985:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28826:321;;;:::o;32226:799::-;32381:4;32402:15;:2;:13;;;:15::i;:::-;32398:620;;;32454:2;32438:36;;;32475:12;:10;:12::i;:::-;32489:4;32495:7;32504:5;32438:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32434:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32697:1;32680:6;:13;:18;32676:272;;;32723:60;;;;;;;;;;:::i;:::-;;;;;;;;32676:272;32898:6;32892:13;32883:6;32879:2;32875:15;32868:38;32434:529;32571:41;;;32561:51;;;:6;:51;;;;32554:58;;;;;32398:620;33002:4;32995:11;;32226:799;;;;;;;:::o;33597:126::-;;;;:::o;37644:164::-;37748:10;:17;;;;37721:15;:24;37737:7;37721:24;;;;;;;;;;;:44;;;;37776:10;37792:7;37776:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37644:164;:::o;38435:988::-;38701:22;38751:1;38726:22;38743:4;38726:16;:22::i;:::-;:26;;;;:::i;:::-;38701:51;;38763:18;38784:17;:26;38802:7;38784:26;;;;;;;;;;;;38763:47;;38931:14;38917:10;:28;38913:328;;38962:19;38984:12;:18;38997:4;38984:18;;;;;;;;;;;;;;;:34;39003:14;38984:34;;;;;;;;;;;;38962:56;;39068:11;39035:12;:18;39048:4;39035:18;;;;;;;;;;;;;;;:30;39054:10;39035:30;;;;;;;;;;;:44;;;;39185:10;39152:17;:30;39170:11;39152:30;;;;;;;;;;;:43;;;;38947:294;38913:328;39337:17;:26;39355:7;39337:26;;;;;;;;;;;39330:33;;;39381:12;:18;39394:4;39381:18;;;;;;;;;;;;;;;:34;39400:14;39381:34;;;;;;;;;;;39374:41;;;38516:907;;38435:988;;:::o;39718:1079::-;39971:22;40016:1;39996:10;:17;;;;:21;;;;:::i;:::-;39971:46;;40028:18;40049:15;:24;40065:7;40049:24;;;;;;;;;;;;40028:45;;40400:19;40422:10;40433:14;40422:26;;;;;;;;:::i;:::-;;;;;;;;;;40400:48;;40486:11;40461:10;40472;40461:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40597:10;40566:15;:28;40582:11;40566:28;;;;;;;;;;;:41;;;;40738:15;:24;40754:7;40738:24;;;;;;;;;;;40731:31;;;40773:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39789:1008;;;39718:1079;:::o;37222:221::-;37307:14;37324:20;37341:2;37324:16;:20::i;:::-;37307:37;;37382:7;37355:12;:16;37368:2;37355:16;;;;;;;;;;;;;;;:24;37372:6;37355:24;;;;;;;;;;;:34;;;;37429:6;37400:17;:26;37418:7;37400:26;;;;;;;;;;;:35;;;;37296:147;37222:221;;:::o;29483:382::-;29577:1;29563:16;;:2;:16;;;;29555:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29636:16;29644:7;29636;:16::i;:::-;29635:17;29627:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29698:45;29727:1;29731:2;29735:7;29698:20;:45::i;:::-;29773:1;29756:9;:13;29766:2;29756:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29804:2;29785:7;:16;29793:7;29785:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29849:7;29845:2;29824:33;;29841:1;29824:33;;;;;;;;;;;;29483:382;;:::o;10442:387::-;10502:4;10710:12;10777:7;10765:20;10757:28;;10820:1;10813:4;:8;10806:15;;;10442: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:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;986:143;;;;:::o;1135:133::-;1178:5;1216:6;1203:20;1194:29;;1232:30;1256:5;1232:30;:::i;:::-;1135:133;;;;:::o;1274:137::-;1319:5;1357:6;1344:20;1335:29;;1373:32;1399:5;1373:32;:::i;:::-;1274:137;;;;:::o;1417:141::-;1473:5;1504:6;1498:13;1489:22;;1520:32;1546:5;1520:32;:::i;:::-;1417:141;;;;:::o;1577:338::-;1632:5;1681:3;1674:4;1666:6;1662:17;1658:27;1648:122;;1689:79;;:::i;:::-;1648:122;1806:6;1793:20;1831:78;1905:3;1897:6;1890:4;1882:6;1878:17;1831:78;:::i;:::-;1822:87;;1638:277;1577:338;;;;:::o;1935:340::-;1991:5;2040:3;2033:4;2025:6;2021:17;2017:27;2007:122;;2048:79;;:::i;:::-;2007:122;2165:6;2152:20;2190:79;2265:3;2257:6;2250:4;2242:6;2238:17;2190:79;:::i;:::-;2181:88;;1997:278;1935:340;;;;:::o;2281:139::-;2327:5;2365:6;2352:20;2343:29;;2381:33;2408:5;2381:33;:::i;:::-;2281:139;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:119;;;2540:79;;:::i;:::-;2502:119;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2426:329;;;;:::o;2761:351::-;2831:6;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:64;3087:7;3078:6;3067:9;3063:22;3031:64;:::i;:::-;3021:74;;2977:128;2761:351;;;;:::o;3118:474::-;3186:6;3194;3243:2;3231:9;3222:7;3218:23;3214:32;3211:119;;;3249:79;;:::i;:::-;3211:119;3369:1;3394:53;3439:7;3430:6;3419:9;3415:22;3394:53;:::i;:::-;3384:63;;3340:117;3496:2;3522:53;3567:7;3558:6;3547:9;3543:22;3522:53;:::i;:::-;3512:63;;3467:118;3118:474;;;;;:::o;3598:619::-;3675:6;3683;3691;3740:2;3728:9;3719:7;3715:23;3711:32;3708:119;;;3746:79;;:::i;:::-;3708:119;3866:1;3891:53;3936:7;3927:6;3916:9;3912:22;3891:53;:::i;:::-;3881:63;;3837:117;3993:2;4019:53;4064:7;4055:6;4044:9;4040:22;4019:53;:::i;:::-;4009:63;;3964:118;4121:2;4147:53;4192:7;4183:6;4172:9;4168:22;4147:53;:::i;:::-;4137:63;;4092:118;3598:619;;;;;:::o;4223:943::-;4318:6;4326;4334;4342;4391:3;4379:9;4370:7;4366:23;4362:33;4359:120;;;4398:79;;:::i;:::-;4359:120;4518:1;4543:53;4588:7;4579:6;4568:9;4564:22;4543:53;:::i;:::-;4533:63;;4489:117;4645:2;4671:53;4716:7;4707:6;4696:9;4692:22;4671:53;:::i;:::-;4661:63;;4616:118;4773:2;4799:53;4844:7;4835:6;4824:9;4820:22;4799:53;:::i;:::-;4789:63;;4744:118;4929:2;4918:9;4914:18;4901:32;4960:18;4952:6;4949:30;4946:117;;;4982:79;;:::i;:::-;4946:117;5087:62;5141:7;5132:6;5121:9;5117:22;5087:62;:::i;:::-;5077:72;;4872:287;4223:943;;;;;;;:::o;5172:468::-;5237:6;5245;5294:2;5282:9;5273:7;5269:23;5265:32;5262:119;;;5300:79;;:::i;:::-;5262:119;5420:1;5445:53;5490:7;5481:6;5470:9;5466:22;5445:53;:::i;:::-;5435:63;;5391:117;5547:2;5573:50;5615:7;5606:6;5595:9;5591:22;5573:50;:::i;:::-;5563:60;;5518:115;5172:468;;;;;:::o;5646:474::-;5714:6;5722;5771:2;5759:9;5750:7;5746:23;5742:32;5739:119;;;5777:79;;:::i;:::-;5739:119;5897:1;5922:53;5967:7;5958:6;5947:9;5943:22;5922:53;:::i;:::-;5912:63;;5868:117;6024:2;6050:53;6095:7;6086:6;6075:9;6071:22;6050:53;:::i;:::-;6040:63;;5995:118;5646:474;;;;;:::o;6126:327::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:52;6428:7;6419:6;6408:9;6404:22;6384:52;:::i;:::-;6374:62;;6330:116;6126:327;;;;:::o;6459:349::-;6528:6;6577:2;6565:9;6556:7;6552:23;6548:32;6545:119;;;6583:79;;:::i;:::-;6545:119;6703:1;6728:63;6783:7;6774:6;6763:9;6759:22;6728:63;:::i;:::-;6718:73;;6674:127;6459:349;;;;:::o;6814:509::-;6883:6;6932:2;6920:9;6911:7;6907:23;6903:32;6900:119;;;6938:79;;:::i;:::-;6900:119;7086:1;7075:9;7071:17;7058:31;7116:18;7108:6;7105:30;7102:117;;;7138:79;;:::i;:::-;7102:117;7243:63;7298:7;7289:6;7278:9;7274:22;7243:63;:::i;:::-;7233:73;;7029:287;6814:509;;;;:::o;7329:329::-;7388:6;7437:2;7425:9;7416:7;7412:23;7408:32;7405:119;;;7443:79;;:::i;:::-;7405:119;7563:1;7588:53;7633:7;7624:6;7613:9;7609:22;7588:53;:::i;:::-;7578:63;;7534:117;7329:329;;;;:::o;7664:179::-;7733:10;7754:46;7796:3;7788:6;7754:46;:::i;:::-;7832:4;7827:3;7823:14;7809:28;;7664:179;;;;:::o;7849:118::-;7936:24;7954:5;7936:24;:::i;:::-;7931:3;7924:37;7849:118;;:::o;8003:732::-;8122:3;8151:54;8199:5;8151:54;:::i;:::-;8221:86;8300:6;8295:3;8221:86;:::i;:::-;8214:93;;8331:56;8381:5;8331:56;:::i;:::-;8410:7;8441:1;8426:284;8451:6;8448:1;8445:13;8426:284;;;8527:6;8521:13;8554:63;8613:3;8598:13;8554:63;:::i;:::-;8547:70;;8640:60;8693:6;8640:60;:::i;:::-;8630:70;;8486:224;8473:1;8470;8466:9;8461:14;;8426:284;;;8430:14;8726:3;8719:10;;8127:608;;;8003:732;;;;:::o;8741:109::-;8822:21;8837:5;8822:21;:::i;:::-;8817:3;8810:34;8741:109;;:::o;8856:360::-;8942:3;8970:38;9002:5;8970:38;:::i;:::-;9024:70;9087:6;9082:3;9024:70;:::i;:::-;9017:77;;9103:52;9148:6;9143:3;9136:4;9129:5;9125:16;9103:52;:::i;:::-;9180:29;9202:6;9180:29;:::i;:::-;9175:3;9171:39;9164:46;;8946:270;8856:360;;;;:::o;9222:364::-;9310:3;9338:39;9371:5;9338:39;:::i;:::-;9393:71;9457:6;9452:3;9393:71;:::i;:::-;9386:78;;9473:52;9518:6;9513:3;9506:4;9499:5;9495:16;9473:52;:::i;:::-;9550:29;9572:6;9550:29;:::i;:::-;9545:3;9541:39;9534:46;;9314:272;9222:364;;;;:::o;9592:377::-;9698:3;9726:39;9759:5;9726:39;:::i;:::-;9781:89;9863:6;9858:3;9781:89;:::i;:::-;9774:96;;9879:52;9924:6;9919:3;9912:4;9905:5;9901:16;9879:52;:::i;:::-;9956:6;9951:3;9947:16;9940:23;;9702:267;9592:377;;;;:::o;9999:845::-;10102:3;10139:5;10133:12;10168:36;10194:9;10168:36;:::i;:::-;10220:89;10302:6;10297:3;10220:89;:::i;:::-;10213:96;;10340:1;10329:9;10325:17;10356:1;10351:137;;;;10502:1;10497:341;;;;10318:520;;10351:137;10435:4;10431:9;10420;10416:25;10411:3;10404:38;10471:6;10466:3;10462:16;10455:23;;10351:137;;10497:341;10564:38;10596:5;10564:38;:::i;:::-;10624:1;10638:154;10652:6;10649:1;10646:13;10638:154;;;10726:7;10720:14;10716:1;10711:3;10707:11;10700:35;10776:1;10767:7;10763:15;10752:26;;10674:4;10671:1;10667:12;10662:17;;10638:154;;;10821:6;10816:3;10812:16;10805:23;;10504:334;;10318:520;;10106:738;;9999:845;;;;:::o;10850:366::-;10992:3;11013:67;11077:2;11072:3;11013:67;:::i;:::-;11006:74;;11089:93;11178:3;11089:93;:::i;:::-;11207:2;11202:3;11198:12;11191:19;;10850:366;;;:::o;11222:::-;11364:3;11385:67;11449:2;11444:3;11385:67;:::i;:::-;11378:74;;11461:93;11550:3;11461:93;:::i;:::-;11579:2;11574:3;11570:12;11563:19;;11222:366;;;:::o;11594:::-;11736:3;11757:67;11821:2;11816:3;11757:67;:::i;:::-;11750:74;;11833:93;11922:3;11833:93;:::i;:::-;11951:2;11946:3;11942:12;11935:19;;11594:366;;;:::o;11966:::-;12108:3;12129:67;12193:2;12188:3;12129:67;:::i;:::-;12122:74;;12205:93;12294:3;12205:93;:::i;:::-;12323:2;12318:3;12314:12;12307:19;;11966:366;;;:::o;12338:::-;12480:3;12501:67;12565:2;12560:3;12501:67;:::i;:::-;12494:74;;12577:93;12666:3;12577:93;:::i;:::-;12695:2;12690:3;12686:12;12679:19;;12338:366;;;:::o;12710:::-;12852:3;12873:67;12937:2;12932:3;12873:67;:::i;:::-;12866:74;;12949:93;13038:3;12949:93;:::i;:::-;13067:2;13062:3;13058:12;13051:19;;12710:366;;;:::o;13082:::-;13224:3;13245:67;13309:2;13304:3;13245:67;:::i;:::-;13238:74;;13321:93;13410:3;13321:93;:::i;:::-;13439:2;13434:3;13430:12;13423:19;;13082:366;;;:::o;13454:::-;13596:3;13617:67;13681:2;13676:3;13617:67;:::i;:::-;13610:74;;13693:93;13782:3;13693:93;:::i;:::-;13811:2;13806:3;13802:12;13795:19;;13454:366;;;:::o;13826:::-;13968:3;13989:67;14053:2;14048:3;13989:67;:::i;:::-;13982:74;;14065:93;14154:3;14065:93;:::i;:::-;14183:2;14178:3;14174:12;14167:19;;13826:366;;;:::o;14198:::-;14340:3;14361:67;14425:2;14420:3;14361:67;:::i;:::-;14354:74;;14437:93;14526:3;14437:93;:::i;:::-;14555:2;14550:3;14546:12;14539:19;;14198:366;;;:::o;14570:::-;14712:3;14733:67;14797:2;14792:3;14733:67;:::i;:::-;14726:74;;14809:93;14898:3;14809:93;:::i;:::-;14927:2;14922:3;14918:12;14911:19;;14570:366;;;:::o;14942:::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:::-;15456:3;15477:67;15541:2;15536:3;15477:67;:::i;:::-;15470:74;;15553:93;15642:3;15553:93;:::i;:::-;15671:2;15666:3;15662:12;15655:19;;15314:366;;;:::o;15686:::-;15828:3;15849:67;15913:2;15908:3;15849:67;:::i;:::-;15842:74;;15925:93;16014:3;15925:93;:::i;:::-;16043:2;16038:3;16034:12;16027:19;;15686:366;;;:::o;16058:::-;16200:3;16221:67;16285:2;16280:3;16221:67;:::i;:::-;16214:74;;16297:93;16386:3;16297:93;:::i;:::-;16415:2;16410:3;16406:12;16399:19;;16058:366;;;:::o;16430:::-;16572:3;16593:67;16657:2;16652:3;16593:67;:::i;:::-;16586:74;;16669:93;16758:3;16669:93;:::i;:::-;16787:2;16782:3;16778:12;16771:19;;16430:366;;;:::o;16802:::-;16944:3;16965:67;17029:2;17024:3;16965:67;:::i;:::-;16958:74;;17041:93;17130:3;17041:93;:::i;:::-;17159:2;17154:3;17150:12;17143:19;;16802:366;;;:::o;17174:::-;17316:3;17337:67;17401:2;17396:3;17337:67;:::i;:::-;17330:74;;17413:93;17502:3;17413:93;:::i;:::-;17531:2;17526:3;17522:12;17515:19;;17174:366;;;:::o;17546:::-;17688:3;17709:67;17773:2;17768:3;17709:67;:::i;:::-;17702:74;;17785:93;17874:3;17785:93;:::i;:::-;17903:2;17898:3;17894:12;17887:19;;17546:366;;;:::o;17918:::-;18060:3;18081:67;18145:2;18140:3;18081:67;:::i;:::-;18074:74;;18157:93;18246:3;18157:93;:::i;:::-;18275:2;18270:3;18266:12;18259:19;;17918:366;;;:::o;18290:::-;18432:3;18453:67;18517:2;18512:3;18453:67;:::i;:::-;18446:74;;18529:93;18618:3;18529:93;:::i;:::-;18647:2;18642:3;18638:12;18631:19;;18290:366;;;:::o;18662:::-;18804:3;18825:67;18889:2;18884:3;18825:67;:::i;:::-;18818:74;;18901:93;18990:3;18901:93;:::i;:::-;19019:2;19014:3;19010:12;19003:19;;18662:366;;;:::o;19034:::-;19176:3;19197:67;19261:2;19256:3;19197:67;:::i;:::-;19190:74;;19273:93;19362:3;19273:93;:::i;:::-;19391:2;19386:3;19382:12;19375:19;;19034:366;;;:::o;19406:::-;19548:3;19569:67;19633:2;19628:3;19569:67;:::i;:::-;19562:74;;19645:93;19734:3;19645:93;:::i;:::-;19763:2;19758:3;19754:12;19747:19;;19406:366;;;:::o;19778:::-;19920:3;19941:67;20005:2;20000:3;19941:67;:::i;:::-;19934:74;;20017:93;20106:3;20017:93;:::i;:::-;20135:2;20130:3;20126:12;20119:19;;19778:366;;;:::o;20150:::-;20292:3;20313:67;20377:2;20372:3;20313:67;:::i;:::-;20306:74;;20389:93;20478:3;20389:93;:::i;:::-;20507:2;20502:3;20498:12;20491:19;;20150:366;;;:::o;20522:::-;20664:3;20685:67;20749:2;20744:3;20685:67;:::i;:::-;20678:74;;20761:93;20850:3;20761:93;:::i;:::-;20879:2;20874:3;20870:12;20863:19;;20522:366;;;:::o;20894:398::-;21053:3;21074:83;21155:1;21150:3;21074:83;:::i;:::-;21067:90;;21166:93;21255:3;21166:93;:::i;:::-;21284:1;21279:3;21275:11;21268:18;;20894:398;;;:::o;21298:366::-;21440:3;21461:67;21525:2;21520:3;21461:67;:::i;:::-;21454:74;;21537:93;21626:3;21537:93;:::i;:::-;21655:2;21650:3;21646:12;21639:19;;21298:366;;;:::o;21670:::-;21812:3;21833:67;21897:2;21892:3;21833:67;:::i;:::-;21826:74;;21909:93;21998:3;21909:93;:::i;:::-;22027:2;22022:3;22018:12;22011:19;;21670:366;;;:::o;22042:::-;22184:3;22205:67;22269:2;22264:3;22205:67;:::i;:::-;22198:74;;22281:93;22370:3;22281:93;:::i;:::-;22399:2;22394:3;22390:12;22383:19;;22042:366;;;:::o;22414:108::-;22491:24;22509:5;22491:24;:::i;:::-;22486:3;22479:37;22414:108;;:::o;22528:118::-;22615:24;22633:5;22615:24;:::i;:::-;22610:3;22603:37;22528:118;;:::o;22652:589::-;22877:3;22899:95;22990:3;22981:6;22899:95;:::i;:::-;22892:102;;23011:95;23102:3;23093:6;23011:95;:::i;:::-;23004:102;;23123:92;23211:3;23202:6;23123:92;:::i;:::-;23116:99;;23232:3;23225:10;;22652:589;;;;;;:::o;23247:379::-;23431:3;23453:147;23596:3;23453:147;:::i;:::-;23446:154;;23617:3;23610:10;;23247:379;;;:::o;23632:222::-;23725:4;23763:2;23752:9;23748:18;23740:26;;23776:71;23844:1;23833:9;23829:17;23820:6;23776:71;:::i;:::-;23632:222;;;;:::o;23860:640::-;24055:4;24093:3;24082:9;24078:19;24070:27;;24107:71;24175:1;24164:9;24160:17;24151:6;24107:71;:::i;:::-;24188:72;24256:2;24245:9;24241:18;24232:6;24188:72;:::i;:::-;24270;24338:2;24327:9;24323:18;24314:6;24270:72;:::i;:::-;24389:9;24383:4;24379:20;24374:2;24363:9;24359:18;24352:48;24417:76;24488:4;24479:6;24417:76;:::i;:::-;24409:84;;23860:640;;;;;;;:::o;24506:373::-;24649:4;24687:2;24676:9;24672:18;24664:26;;24736:9;24730:4;24726:20;24722:1;24711:9;24707:17;24700:47;24764:108;24867:4;24858:6;24764:108;:::i;:::-;24756:116;;24506:373;;;;:::o;24885:210::-;24972:4;25010:2;24999:9;24995:18;24987:26;;25023:65;25085:1;25074:9;25070:17;25061:6;25023:65;:::i;:::-;24885:210;;;;:::o;25101:313::-;25214:4;25252:2;25241:9;25237:18;25229:26;;25301:9;25295:4;25291:20;25287:1;25276:9;25272:17;25265:47;25329:78;25402:4;25393:6;25329:78;:::i;:::-;25321:86;;25101:313;;;;:::o;25420:419::-;25586:4;25624:2;25613:9;25609:18;25601:26;;25673:9;25667:4;25663:20;25659:1;25648:9;25644:17;25637:47;25701:131;25827:4;25701:131;:::i;:::-;25693:139;;25420:419;;;:::o;25845:::-;26011:4;26049:2;26038:9;26034:18;26026:26;;26098:9;26092:4;26088:20;26084:1;26073:9;26069:17;26062:47;26126:131;26252:4;26126:131;:::i;:::-;26118:139;;25845:419;;;:::o;26270:::-;26436:4;26474:2;26463:9;26459:18;26451:26;;26523:9;26517:4;26513:20;26509:1;26498:9;26494:17;26487:47;26551:131;26677:4;26551:131;:::i;:::-;26543:139;;26270:419;;;:::o;26695:::-;26861:4;26899:2;26888:9;26884:18;26876:26;;26948:9;26942:4;26938:20;26934:1;26923:9;26919:17;26912:47;26976:131;27102:4;26976:131;:::i;:::-;26968:139;;26695:419;;;:::o;27120:::-;27286:4;27324:2;27313:9;27309:18;27301:26;;27373:9;27367:4;27363:20;27359:1;27348:9;27344:17;27337:47;27401:131;27527:4;27401:131;:::i;:::-;27393:139;;27120:419;;;:::o;27545:::-;27711:4;27749:2;27738:9;27734:18;27726:26;;27798:9;27792:4;27788:20;27784:1;27773:9;27769:17;27762:47;27826:131;27952:4;27826:131;:::i;:::-;27818:139;;27545:419;;;:::o;27970:::-;28136:4;28174:2;28163:9;28159:18;28151:26;;28223:9;28217:4;28213:20;28209:1;28198:9;28194:17;28187:47;28251:131;28377:4;28251:131;:::i;:::-;28243:139;;27970:419;;;:::o;28395:::-;28561:4;28599:2;28588:9;28584:18;28576:26;;28648:9;28642:4;28638:20;28634:1;28623:9;28619:17;28612:47;28676:131;28802:4;28676:131;:::i;:::-;28668:139;;28395:419;;;:::o;28820:::-;28986:4;29024:2;29013:9;29009:18;29001:26;;29073:9;29067:4;29063:20;29059:1;29048:9;29044:17;29037:47;29101:131;29227:4;29101:131;:::i;:::-;29093:139;;28820:419;;;:::o;29245:::-;29411:4;29449:2;29438:9;29434:18;29426:26;;29498:9;29492:4;29488:20;29484:1;29473:9;29469:17;29462:47;29526:131;29652:4;29526:131;:::i;:::-;29518:139;;29245:419;;;:::o;29670:::-;29836:4;29874:2;29863:9;29859:18;29851:26;;29923:9;29917:4;29913:20;29909:1;29898:9;29894:17;29887:47;29951:131;30077:4;29951:131;:::i;:::-;29943:139;;29670:419;;;:::o;30095:::-;30261:4;30299:2;30288:9;30284:18;30276:26;;30348:9;30342:4;30338:20;30334:1;30323:9;30319:17;30312:47;30376:131;30502:4;30376:131;:::i;:::-;30368:139;;30095:419;;;:::o;30520:::-;30686:4;30724:2;30713:9;30709:18;30701:26;;30773:9;30767:4;30763:20;30759:1;30748:9;30744:17;30737:47;30801:131;30927:4;30801:131;:::i;:::-;30793:139;;30520:419;;;:::o;30945:::-;31111:4;31149:2;31138:9;31134:18;31126:26;;31198:9;31192:4;31188:20;31184:1;31173:9;31169:17;31162:47;31226:131;31352:4;31226:131;:::i;:::-;31218:139;;30945:419;;;:::o;31370:::-;31536:4;31574:2;31563:9;31559:18;31551:26;;31623:9;31617:4;31613:20;31609:1;31598:9;31594:17;31587:47;31651:131;31777:4;31651:131;:::i;:::-;31643:139;;31370:419;;;:::o;31795:::-;31961:4;31999:2;31988:9;31984:18;31976:26;;32048:9;32042:4;32038:20;32034:1;32023:9;32019:17;32012:47;32076:131;32202:4;32076:131;:::i;:::-;32068:139;;31795:419;;;:::o;32220:::-;32386:4;32424:2;32413:9;32409:18;32401:26;;32473:9;32467:4;32463:20;32459:1;32448:9;32444:17;32437:47;32501:131;32627:4;32501:131;:::i;:::-;32493:139;;32220:419;;;:::o;32645:::-;32811:4;32849:2;32838:9;32834:18;32826:26;;32898:9;32892:4;32888:20;32884:1;32873:9;32869:17;32862:47;32926:131;33052:4;32926:131;:::i;:::-;32918:139;;32645:419;;;:::o;33070:::-;33236:4;33274:2;33263:9;33259:18;33251:26;;33323:9;33317:4;33313:20;33309:1;33298:9;33294:17;33287:47;33351:131;33477:4;33351:131;:::i;:::-;33343:139;;33070:419;;;:::o;33495:::-;33661:4;33699:2;33688:9;33684:18;33676:26;;33748:9;33742:4;33738:20;33734:1;33723:9;33719:17;33712:47;33776:131;33902:4;33776:131;:::i;:::-;33768:139;;33495:419;;;:::o;33920:::-;34086:4;34124:2;34113:9;34109:18;34101:26;;34173:9;34167:4;34163:20;34159:1;34148:9;34144:17;34137:47;34201:131;34327:4;34201:131;:::i;:::-;34193:139;;33920:419;;;:::o;34345:::-;34511:4;34549:2;34538:9;34534:18;34526:26;;34598:9;34592:4;34588:20;34584:1;34573:9;34569:17;34562:47;34626:131;34752:4;34626:131;:::i;:::-;34618:139;;34345:419;;;:::o;34770:::-;34936:4;34974:2;34963:9;34959:18;34951:26;;35023:9;35017:4;35013:20;35009:1;34998:9;34994:17;34987:47;35051:131;35177:4;35051:131;:::i;:::-;35043:139;;34770:419;;;:::o;35195:::-;35361:4;35399:2;35388:9;35384:18;35376:26;;35448:9;35442:4;35438:20;35434:1;35423:9;35419:17;35412:47;35476:131;35602:4;35476:131;:::i;:::-;35468:139;;35195:419;;;:::o;35620:::-;35786:4;35824:2;35813:9;35809:18;35801:26;;35873:9;35867:4;35863:20;35859:1;35848:9;35844:17;35837:47;35901:131;36027:4;35901:131;:::i;:::-;35893:139;;35620:419;;;:::o;36045:::-;36211:4;36249:2;36238:9;36234:18;36226:26;;36298:9;36292:4;36288:20;36284:1;36273:9;36269:17;36262:47;36326:131;36452:4;36326:131;:::i;:::-;36318:139;;36045:419;;;:::o;36470:::-;36636:4;36674:2;36663:9;36659:18;36651:26;;36723:9;36717:4;36713:20;36709:1;36698:9;36694:17;36687:47;36751:131;36877:4;36751:131;:::i;:::-;36743:139;;36470:419;;;:::o;36895:::-;37061:4;37099:2;37088:9;37084:18;37076:26;;37148:9;37142:4;37138:20;37134:1;37123:9;37119:17;37112:47;37176:131;37302:4;37176:131;:::i;:::-;37168:139;;36895:419;;;:::o;37320:::-;37486:4;37524:2;37513:9;37509:18;37501:26;;37573:9;37567:4;37563:20;37559:1;37548:9;37544:17;37537:47;37601:131;37727:4;37601:131;:::i;:::-;37593:139;;37320:419;;;:::o;37745:::-;37911:4;37949:2;37938:9;37934:18;37926:26;;37998:9;37992:4;37988:20;37984:1;37973:9;37969:17;37962:47;38026:131;38152:4;38026:131;:::i;:::-;38018:139;;37745:419;;;:::o;38170:222::-;38263:4;38301:2;38290:9;38286:18;38278:26;;38314:71;38382:1;38371:9;38367:17;38358:6;38314:71;:::i;:::-;38170:222;;;;:::o;38398:129::-;38432:6;38459:20;;:::i;:::-;38449:30;;38488:33;38516:4;38508:6;38488:33;:::i;:::-;38398:129;;;:::o;38533:75::-;38566:6;38599:2;38593:9;38583:19;;38533:75;:::o;38614:307::-;38675:4;38765:18;38757:6;38754:30;38751:56;;;38787:18;;:::i;:::-;38751:56;38825:29;38847:6;38825:29;:::i;:::-;38817:37;;38909:4;38903;38899:15;38891:23;;38614:307;;;:::o;38927:308::-;38989:4;39079:18;39071:6;39068:30;39065:56;;;39101:18;;:::i;:::-;39065:56;39139:29;39161:6;39139:29;:::i;:::-;39131:37;;39223:4;39217;39213:15;39205:23;;38927:308;;;:::o;39241:132::-;39308:4;39331:3;39323:11;;39361:4;39356:3;39352:14;39344:22;;39241:132;;;:::o;39379:141::-;39428:4;39451:3;39443:11;;39474:3;39471:1;39464:14;39508:4;39505:1;39495:18;39487:26;;39379:141;;;:::o;39526:114::-;39593:6;39627:5;39621:12;39611:22;;39526:114;;;:::o;39646:98::-;39697:6;39731:5;39725:12;39715:22;;39646:98;;;:::o;39750:99::-;39802:6;39836:5;39830:12;39820:22;;39750:99;;;:::o;39855:113::-;39925:4;39957;39952:3;39948:14;39940:22;;39855:113;;;:::o;39974:184::-;40073:11;40107:6;40102:3;40095:19;40147:4;40142:3;40138:14;40123:29;;39974:184;;;;:::o;40164:168::-;40247:11;40281:6;40276:3;40269:19;40321:4;40316:3;40312:14;40297:29;;40164:168;;;;:::o;40338:147::-;40439:11;40476:3;40461:18;;40338:147;;;;:::o;40491:169::-;40575:11;40609:6;40604:3;40597:19;40649:4;40644:3;40640:14;40625:29;;40491:169;;;;:::o;40666:148::-;40768:11;40805:3;40790:18;;40666:148;;;;:::o;40820:305::-;40860:3;40879:20;40897:1;40879:20;:::i;:::-;40874:25;;40913:20;40931:1;40913:20;:::i;:::-;40908:25;;41067:1;40999:66;40995:74;40992:1;40989:81;40986:107;;;41073:18;;:::i;:::-;40986:107;41117:1;41114;41110:9;41103:16;;40820:305;;;;:::o;41131:185::-;41171:1;41188:20;41206:1;41188:20;:::i;:::-;41183:25;;41222:20;41240:1;41222:20;:::i;:::-;41217:25;;41261:1;41251:35;;41266:18;;:::i;:::-;41251:35;41308:1;41305;41301:9;41296:14;;41131:185;;;;:::o;41322:191::-;41362:4;41382:20;41400:1;41382:20;:::i;:::-;41377:25;;41416:20;41434:1;41416:20;:::i;:::-;41411:25;;41455:1;41452;41449:8;41446:34;;;41460:18;;:::i;:::-;41446:34;41505:1;41502;41498:9;41490:17;;41322:191;;;;:::o;41519:96::-;41556:7;41585:24;41603:5;41585:24;:::i;:::-;41574:35;;41519:96;;;:::o;41621:90::-;41655:7;41698:5;41691:13;41684:21;41673:32;;41621:90;;;:::o;41717:149::-;41753:7;41793:66;41786:5;41782:78;41771:89;;41717:149;;;:::o;41872:126::-;41909:7;41949:42;41942:5;41938:54;41927:65;;41872:126;;;:::o;42004:77::-;42041:7;42070:5;42059:16;;42004:77;;;:::o;42087:154::-;42171:6;42166:3;42161;42148:30;42233:1;42224:6;42219:3;42215:16;42208:27;42087:154;;;:::o;42247:307::-;42315:1;42325:113;42339:6;42336:1;42333:13;42325:113;;;42424:1;42419:3;42415:11;42409:18;42405:1;42400:3;42396:11;42389:39;42361:2;42358:1;42354:10;42349:15;;42325:113;;;42456:6;42453:1;42450:13;42447:101;;;42536:1;42527:6;42522:3;42518:16;42511:27;42447:101;42296:258;42247:307;;;:::o;42560:320::-;42604:6;42641:1;42635:4;42631:12;42621:22;;42688:1;42682:4;42678:12;42709:18;42699:81;;42765:4;42757:6;42753:17;42743:27;;42699:81;42827:2;42819:6;42816:14;42796:18;42793:38;42790:84;;;42846:18;;:::i;:::-;42790:84;42611:269;42560:320;;;:::o;42886:281::-;42969:27;42991:4;42969:27;:::i;:::-;42961:6;42957:40;43099:6;43087:10;43084:22;43063:18;43051:10;43048:34;43045:62;43042:88;;;43110:18;;:::i;:::-;43042:88;43150:10;43146:2;43139:22;42929:238;42886:281;;:::o;43173:233::-;43212:3;43235:24;43253:5;43235:24;:::i;:::-;43226:33;;43281:66;43274:5;43271:77;43268:103;;;43351:18;;:::i;:::-;43268:103;43398:1;43391:5;43387:13;43380:20;;43173:233;;;:::o;43412:176::-;43444:1;43461:20;43479:1;43461:20;:::i;:::-;43456:25;;43495:20;43513:1;43495:20;:::i;:::-;43490:25;;43534:1;43524:35;;43539:18;;:::i;:::-;43524:35;43580:1;43577;43573:9;43568:14;;43412:176;;;;:::o;43594:180::-;43642:77;43639:1;43632:88;43739:4;43736:1;43729:15;43763:4;43760:1;43753:15;43780:180;43828:77;43825:1;43818:88;43925:4;43922:1;43915:15;43949:4;43946:1;43939:15;43966:180;44014:77;44011:1;44004:88;44111:4;44108:1;44101:15;44135:4;44132:1;44125:15;44152:180;44200:77;44197:1;44190:88;44297:4;44294:1;44287:15;44321:4;44318:1;44311:15;44338:180;44386:77;44383:1;44376:88;44483:4;44480:1;44473:15;44507:4;44504:1;44497:15;44524:180;44572:77;44569:1;44562:88;44669:4;44666:1;44659:15;44693:4;44690:1;44683:15;44710:117;44819:1;44816;44809:12;44833:117;44942:1;44939;44932:12;44956:117;45065:1;45062;45055:12;45079:117;45188:1;45185;45178:12;45202:102;45243:6;45294:2;45290:7;45285:2;45278:5;45274:14;45270:28;45260:38;;45202:102;;;:::o;45310:173::-;45450:25;45446:1;45438:6;45434:14;45427:49;45310:173;:::o;45489:230::-;45629:34;45625:1;45617:6;45613:14;45606:58;45698:13;45693:2;45685:6;45681:15;45674:38;45489:230;:::o;45725:237::-;45865:34;45861:1;45853:6;45849:14;45842:58;45934:20;45929:2;45921:6;45917:15;45910:45;45725:237;:::o;45968:225::-;46108:34;46104:1;46096:6;46092:14;46085:58;46177:8;46172:2;46164:6;46160:15;46153:33;45968:225;:::o;46199:178::-;46339:30;46335:1;46327:6;46323:14;46316:54;46199:178;:::o;46383:::-;46523:30;46519:1;46511:6;46507:14;46500:54;46383:178;:::o;46567:223::-;46707:34;46703:1;46695:6;46691:14;46684:58;46776:6;46771:2;46763:6;46759:15;46752:31;46567:223;:::o;46796:175::-;46936:27;46932:1;46924:6;46920:14;46913:51;46796:175;:::o;46977:173::-;47117:25;47113:1;47105:6;47101:14;47094:49;46977:173;:::o;47156:231::-;47296:34;47292:1;47284:6;47280:14;47273:58;47365:14;47360:2;47352:6;47348:15;47341:39;47156:231;:::o;47393:178::-;47533:30;47529:1;47521:6;47517:14;47510:54;47393:178;:::o;47577:179::-;47717:31;47713:1;47705:6;47701:14;47694:55;47577:179;:::o;47762:243::-;47902:34;47898:1;47890:6;47886:14;47879:58;47971:26;47966:2;47958:6;47954:15;47947:51;47762:243;:::o;48011:229::-;48151:34;48147:1;48139:6;48135:14;48128:58;48220:12;48215:2;48207:6;48203:15;48196:37;48011:229;:::o;48246:228::-;48386:34;48382:1;48374:6;48370:14;48363:58;48455:11;48450:2;48442:6;48438:15;48431:36;48246:228;:::o;48480:179::-;48620:31;48616:1;48608:6;48604:14;48597:55;48480:179;:::o;48665:182::-;48805:34;48801:1;48793:6;48789:14;48782:58;48665:182;:::o;48853:173::-;48993:25;48989:1;48981:6;48977:14;48970:49;48853:173;:::o;49032:178::-;49172:30;49168:1;49160:6;49156:14;49149:54;49032:178;:::o;49216:231::-;49356:34;49352:1;49344:6;49340:14;49333:58;49425:14;49420:2;49412:6;49408:15;49401:39;49216:231;:::o;49453:182::-;49593:34;49589:1;49581:6;49577:14;49570:58;49453:182;:::o;49641:228::-;49781:34;49777:1;49769:6;49765:14;49758:58;49850:11;49845:2;49837:6;49833:15;49826:36;49641:228;:::o;49875:169::-;50015:21;50011:1;50003:6;49999:14;49992:45;49875:169;:::o;50050:221::-;50190:34;50186:1;50178:6;50174:14;50167:58;50259:4;50254:2;50246:6;50242:15;50235:29;50050:221;:::o;50277:224::-;50417:34;50413:1;50405:6;50401:14;50394:58;50486:7;50481:2;50473:6;50469:15;50462:32;50277:224;:::o;50507:220::-;50647:34;50643:1;50635:6;50631:14;50624:58;50716:3;50711:2;50703:6;50699:15;50692:28;50507:220;:::o;50733:227::-;50873:34;50869:1;50861:6;50857:14;50850:58;50942:10;50937:2;50929:6;50925:15;50918:35;50733:227;:::o;50966:114::-;;:::o;51086:236::-;51226:34;51222:1;51214:6;51210:14;51203:58;51295:19;51290:2;51282:6;51278:15;51271:44;51086:236;:::o;51328:231::-;51468:34;51464:1;51456:6;51452:14;51445:58;51537:14;51532:2;51524:6;51520:15;51513:39;51328:231;:::o;51565:235::-;51705:34;51701:1;51693:6;51689:14;51682:58;51774:18;51769:2;51761:6;51757:15;51750:43;51565:235;:::o;51806:122::-;51879:24;51897:5;51879:24;:::i;:::-;51872:5;51869:35;51859:63;;51918:1;51915;51908:12;51859:63;51806:122;:::o;51934:116::-;52004:21;52019:5;52004:21;:::i;:::-;51997:5;51994:32;51984:60;;52040:1;52037;52030:12;51984:60;51934:116;:::o;52056:120::-;52128:23;52145:5;52128:23;:::i;:::-;52121:5;52118:34;52108:62;;52166:1;52163;52156:12;52108:62;52056:120;:::o;52182:122::-;52255:24;52273:5;52255:24;:::i;:::-;52248:5;52245:35;52235:63;;52294:1;52291;52284:12;52235:63;52182:122;:::o
Swarm Source
ipfs://c194494cbe6da50b2f17e2e929996c91aa98c4aeb01a64e21cf0ea4af99ac3bb
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.