Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
383
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CypherCityPets
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-17 */ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping (uint256 => address) private _owners; // Mapping owner address to token count mapping (address => uint256) private _balances; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` 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 { } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/CypherCityPets.sol pragma solidity ^0.8.0; contract CypherCity { function ownerOf(uint256) public returns (address) {} } contract CypherCityPets is ERC721Enumerable, Ownable { uint256 public constant MAX_NFT_SUPPLY = 8888; bool public saleStarted = true; mapping(uint256 => bool) public cyphersRedeemed; CypherCity cypherCityContract; constructor(address cypherCityAddress) ERC721("Cypher City Pets", "PETS") { cypherCityContract = CypherCity(cypherCityAddress); } function _baseURI() internal view virtual override returns (string memory) { return "https://api.cyphercity.io/pets/"; } function getTokenURI(uint256 tokenId) public view returns (string memory) { return tokenURI(tokenId); } function mint(uint256[] memory cyphers) public { require(saleStarted == true, "This sale has not started."); require(totalSupply() < MAX_NFT_SUPPLY, "All NFTs have been minted."); require(cyphers.length > 0, "You must mint at least one Cypher."); require(totalSupply() + cyphers.length <= MAX_NFT_SUPPLY, "The amount of Cyphers you are trying to mint exceeds the MAX_NFT_SUPPLY."); for (uint256 i = 0; i < cyphers.length; i++) { uint256 cypher = cyphers[i]; require(cypherCityContract.ownerOf(cypher) == msg.sender, "You are not the owner of this Cypher."); require(cyphersRedeemed[cypher] == false, "Cypher has already been redeemed."); uint256 mintIndex = totalSupply(); _safeMint(msg.sender, mintIndex); cyphersRedeemed[cypher] = true; } } function startSale() public onlyOwner { saleStarted = true; } function pauseSale() public onlyOwner { saleStarted = false; } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"cypherCityAddress","type":"address"}],"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":[],"name":"MAX_NFT_SUPPLY","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cyphersRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"cyphers","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526001600a60146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620042b2380380620042b28339818101604052810190620000529190620002ba565b6040518060400160405280601081526020017f43797068657220436974792050657473000000000000000000000000000000008152506040518060400160405280600481526020017f50455453000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d6929190620001f3565b508060019080519060200190620000ef929190620001f3565b505050600062000104620001eb60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000399565b600033905090565b82805462000201906200031a565b90600052602060002090601f01602090048101928262000225576000855562000271565b82601f106200024057805160ff191683800117855562000271565b8280016001018555821562000271579182015b828111156200027057825182559160200191906001019062000253565b5b50905062000280919062000284565b5090565b5b808211156200029f57600081600090555060010162000285565b5090565b600081519050620002b4816200037f565b92915050565b600060208284031215620002cd57600080fd5b6000620002dd84828501620002a3565b91505092915050565b6000620002f382620002fa565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200033357607f821691505b602082108114156200034a576200034962000350565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200038a81620002e6565b81146200039657600080fd5b50565b613f0980620003a96000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063b5077f441161008a578063c87b56dd11610064578063c87b56dd146105a7578063e985e9c5146105e4578063f2fde38b14610621578063f8e93ef91461064a5761019c565b8063b5077f441461053c578063b66a0e5d14610567578063b88d4fde1461057e5761019c565b8063894d779a116100c6578063894d779a146104805780638da5cb5b146104bd57806395d89b41146104e8578063a22cb465146105135761019c565b80636352211e146103ef57806370a082311461042c578063715018a6146104695761019c565b80632f745c591161015957806342842e0e1161013357806342842e0e146103475780634f6ccce71461037057806355367ba9146103ad5780635c474f9e146103c45761019c565b80632f745c59146102c35780633bb3a24d146103005780633ccfd60b1461033d5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612cbd565b610673565b6040516101d59190613765565b60405180910390f35b3480156101ea57600080fd5b506101f36106ed565b6040516102009190613780565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612d0f565b61077f565b60405161023d91906136fe565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612c40565b610804565b005b34801561027b57600080fd5b5061028461091c565b6040516102919190613aa2565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612b3a565b610929565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612c40565b610989565b6040516102f79190613aa2565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190612d0f565b610a2e565b6040516103349190613780565b60405180910390f35b610345610a40565b005b34801561035357600080fd5b5061036e60048036038101906103699190612b3a565b610afc565b005b34801561037c57600080fd5b5061039760048036038101906103929190612d0f565b610b1c565b6040516103a49190613aa2565b60405180910390f35b3480156103b957600080fd5b506103c2610bb3565b005b3480156103d057600080fd5b506103d9610c4c565b6040516103e69190613765565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612d0f565b610c5f565b60405161042391906136fe565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190612aac565b610d11565b6040516104609190613aa2565b60405180910390f35b34801561047557600080fd5b5061047e610dc9565b005b34801561048c57600080fd5b506104a760048036038101906104a29190612d0f565b610f06565b6040516104b49190613765565b60405180910390f35b3480156104c957600080fd5b506104d2610f26565b6040516104df91906136fe565b60405180910390f35b3480156104f457600080fd5b506104fd610f50565b60405161050a9190613780565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190612c04565b610fe2565b005b34801561054857600080fd5b50610551611163565b60405161055e9190613aa2565b60405180910390f35b34801561057357600080fd5b5061057c611169565b005b34801561058a57600080fd5b506105a560048036038101906105a09190612b89565b611202565b005b3480156105b357600080fd5b506105ce60048036038101906105c99190612d0f565b611264565b6040516105db9190613780565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190612afe565b61130b565b6040516106189190613765565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190612aac565b61139f565b005b34801561065657600080fd5b50610671600480360381019061066c9190612c7c565b61154b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e657506106e5826118b5565b5b9050919050565b6060600080546106fc90613cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461072890613cfe565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078a82611997565b6107c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c090613962565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080f82610c5f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610877906139e2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089f611a03565b73ffffffffffffffffffffffffffffffffffffffff1614806108ce57506108cd816108c8611a03565b61130b565b5b61090d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610904906138e2565b60405180910390fd5b6109178383611a0b565b505050565b6000600880549050905090565b61093a610934611a03565b82611ac4565b610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097090613a02565b60405180910390fd5b610984838383611ba2565b505050565b600061099483610d11565b82106109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc906137c2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610a3982611264565b9050919050565b610a48611a03565b73ffffffffffffffffffffffffffffffffffffffff16610a66610f26565b73ffffffffffffffffffffffffffffffffffffffff1614610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390613982565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610afa57600080fd5b565b610b1783838360405180602001604052806000815250611202565b505050565b6000610b2661091c565b8210610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90613a22565b60405180910390fd5b60088281548110610ba1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610bbb611a03565b73ffffffffffffffffffffffffffffffffffffffff16610bd9610f26565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690613982565b60405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b600a60149054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90613922565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613902565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd1611a03565b73ffffffffffffffffffffffffffffffffffffffff16610def610f26565b73ffffffffffffffffffffffffffffffffffffffff1614610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90613982565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f5f90613cfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8b90613cfe565b8015610fd85780601f10610fad57610100808354040283529160200191610fd8565b820191906000526020600020905b815481529060010190602001808311610fbb57829003601f168201915b5050505050905090565b610fea611a03565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613882565b60405180910390fd5b8060056000611065611a03565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611112611a03565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111579190613765565b60405180910390a35050565b6122b881565b611171611a03565b73ffffffffffffffffffffffffffffffffffffffff1661118f610f26565b73ffffffffffffffffffffffffffffffffffffffff16146111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90613982565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b61121361120d611a03565b83611ac4565b611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990613a02565b60405180910390fd5b61125e84848484611dfe565b50505050565b606061126f82611997565b6112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a5906139c2565b60405180910390fd5b60006112b8611e5a565b905060008151116112d85760405180602001604052806000815250611303565b806112e284611e97565b6040516020016112f39291906136da565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113a7611a03565b73ffffffffffffffffffffffffffffffffffffffff166113c5610f26565b73ffffffffffffffffffffffffffffffffffffffff161461141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290613982565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613802565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60011515600a60149054906101000a900460ff161515146115a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611598906137a2565b60405180910390fd5b6122b86115ac61091c565b106115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e3906138a2565b60405180910390fd5b6000815111611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162790613a62565b60405180910390fd5b6122b8815161163d61091c565b6116479190613b8d565b1115611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90613842565b60405180910390fd5b60005b81518110156118b15760008282815181106116cf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161174b9190613aa2565b602060405180830381600087803b15801561176557600080fd5b505af1158015611779573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179d9190612ad5565b73ffffffffffffffffffffffffffffffffffffffff16146117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90613a42565b60405180910390fd5b60001515600b600083815260200190815260200160002060009054906101000a900460ff1615151461185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190613a82565b60405180910390fd5b600061186461091c565b90506118703382612044565b6001600b600084815260200190815260200160002060006101000a81548160ff021916908315150217905550505080806118a990613d30565b91505061168b565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611990575061198f82612062565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a7e83610c5f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611acf82611997565b611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b05906138c2565b60405180910390fd5b6000611b1983610c5f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b8857508373ffffffffffffffffffffffffffffffffffffffff16611b708461077f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b995750611b98818561130b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bc282610c5f565b73ffffffffffffffffffffffffffffffffffffffff1614611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f906139a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613862565b60405180910390fd5b611c938383836120cc565b611c9e600082611a0b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cee9190613c14565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d459190613b8d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e09848484611ba2565b611e15848484846121e0565b611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b906137e2565b60405180910390fd5b50505050565b60606040518060400160405280601f81526020017f68747470733a2f2f6170692e637970686572636974792e696f2f706574732f00815250905090565b60606000821415611edf576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061203f565b600082905060005b60008214611f11578080611efa90613d30565b915050600a82611f0a9190613be3565b9150611ee7565b60008167ffffffffffffffff811115611f53577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f855781602001600182028036833780820191505090505b5090505b6000851461203857600182611f9e9190613c14565b9150600a85611fad9190613d79565b6030611fb99190613b8d565b60f81b818381518110611ff5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120319190613be3565b9450611f89565b8093505050505b919050565b61205e828260405180602001604052806000815250612377565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120d78383836123d2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561211a57612115816123d7565b612159565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612158576121578382612420565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219c576121978161258d565b6121db565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121da576121d982826126d0565b5b5b505050565b60006122018473ffffffffffffffffffffffffffffffffffffffff1661274f565b1561236a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261222a611a03565b8786866040518563ffffffff1660e01b815260040161224c9493929190613719565b602060405180830381600087803b15801561226657600080fd5b505af192505050801561229757506040513d601f19601f820116820180604052508101906122949190612ce6565b60015b61231a573d80600081146122c7576040519150601f19603f3d011682016040523d82523d6000602084013e6122cc565b606091505b50600081511415612312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612309906137e2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061236f565b600190505b949350505050565b6123818383612762565b61238e60008484846121e0565b6123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c4906137e2565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161242d84610d11565b6124379190613c14565b905060006007600084815260200190815260200160002054905081811461251c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506125a19190613c14565b90506000600960008481526020019081526020016000205490506000600883815481106125f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061263f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806126b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006126db83610d11565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c990613942565b60405180910390fd5b6127db81611997565b1561281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290613822565b60405180910390fd5b612827600083836120cc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128779190613b8d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061294361293e84613aee565b613abd565b9050808382526020820190508285602086028201111561296257600080fd5b60005b8581101561299257816129788882612a97565b845260208401935060208301925050600181019050612965565b5050509392505050565b60006129af6129aa84613b1a565b613abd565b9050828152602081018484840111156129c757600080fd5b6129d2848285613cbc565b509392505050565b6000813590506129e981613e77565b92915050565b6000815190506129fe81613e77565b92915050565b600082601f830112612a1557600080fd5b8135612a25848260208601612930565b91505092915050565b600081359050612a3d81613e8e565b92915050565b600081359050612a5281613ea5565b92915050565b600081519050612a6781613ea5565b92915050565b600082601f830112612a7e57600080fd5b8135612a8e84826020860161299c565b91505092915050565b600081359050612aa681613ebc565b92915050565b600060208284031215612abe57600080fd5b6000612acc848285016129da565b91505092915050565b600060208284031215612ae757600080fd5b6000612af5848285016129ef565b91505092915050565b60008060408385031215612b1157600080fd5b6000612b1f858286016129da565b9250506020612b30858286016129da565b9150509250929050565b600080600060608486031215612b4f57600080fd5b6000612b5d868287016129da565b9350506020612b6e868287016129da565b9250506040612b7f86828701612a97565b9150509250925092565b60008060008060808587031215612b9f57600080fd5b6000612bad878288016129da565b9450506020612bbe878288016129da565b9350506040612bcf87828801612a97565b925050606085013567ffffffffffffffff811115612bec57600080fd5b612bf887828801612a6d565b91505092959194509250565b60008060408385031215612c1757600080fd5b6000612c25858286016129da565b9250506020612c3685828601612a2e565b9150509250929050565b60008060408385031215612c5357600080fd5b6000612c61858286016129da565b9250506020612c7285828601612a97565b9150509250929050565b600060208284031215612c8e57600080fd5b600082013567ffffffffffffffff811115612ca857600080fd5b612cb484828501612a04565b91505092915050565b600060208284031215612ccf57600080fd5b6000612cdd84828501612a43565b91505092915050565b600060208284031215612cf857600080fd5b6000612d0684828501612a58565b91505092915050565b600060208284031215612d2157600080fd5b6000612d2f84828501612a97565b91505092915050565b612d4181613c48565b82525050565b612d5081613c5a565b82525050565b6000612d6182613b4a565b612d6b8185613b60565b9350612d7b818560208601613ccb565b612d8481613e66565b840191505092915050565b6000612d9a82613b55565b612da48185613b71565b9350612db4818560208601613ccb565b612dbd81613e66565b840191505092915050565b6000612dd382613b55565b612ddd8185613b82565b9350612ded818560208601613ccb565b80840191505092915050565b6000612e06601a83613b71565b91507f546869732073616c6520686173206e6f7420737461727465642e0000000000006000830152602082019050919050565b6000612e46602b83613b71565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612eac603283613b71565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612f12602683613b71565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f78601c83613b71565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612fb8604883613b71565b91507f54686520616d6f756e74206f66204379706865727320796f752061726520747260008301527f79696e6720746f206d696e74206578636565647320746865204d41585f4e465460208301527f5f535550504c592e0000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613044602483613b71565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130aa601983613b71565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006130ea601a83613b71565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b600061312a602c83613b71565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613190603883613b71565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006131f6602a83613b71565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061325c602983613b71565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006132c2602083613b71565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613302602c83613b71565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613368602083613b71565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006133a8602983613b71565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061340e602f83613b71565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613474602183613b71565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134da603183613b71565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613540602c83613b71565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006135a6602583613b71565b91507f596f7520617265206e6f7420746865206f776e6572206f66207468697320437960008301527f706865722e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061360c602283613b71565b91507f596f75206d757374206d696e74206174206c65617374206f6e6520437970686560008301527f722e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613672602183613b71565b91507f4379706865722068617320616c7265616479206265656e2072656465656d656460008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6136d481613cb2565b82525050565b60006136e68285612dc8565b91506136f28284612dc8565b91508190509392505050565b60006020820190506137136000830184612d38565b92915050565b600060808201905061372e6000830187612d38565b61373b6020830186612d38565b61374860408301856136cb565b818103606083015261375a8184612d56565b905095945050505050565b600060208201905061377a6000830184612d47565b92915050565b6000602082019050818103600083015261379a8184612d8f565b905092915050565b600060208201905081810360008301526137bb81612df9565b9050919050565b600060208201905081810360008301526137db81612e39565b9050919050565b600060208201905081810360008301526137fb81612e9f565b9050919050565b6000602082019050818103600083015261381b81612f05565b9050919050565b6000602082019050818103600083015261383b81612f6b565b9050919050565b6000602082019050818103600083015261385b81612fab565b9050919050565b6000602082019050818103600083015261387b81613037565b9050919050565b6000602082019050818103600083015261389b8161309d565b9050919050565b600060208201905081810360008301526138bb816130dd565b9050919050565b600060208201905081810360008301526138db8161311d565b9050919050565b600060208201905081810360008301526138fb81613183565b9050919050565b6000602082019050818103600083015261391b816131e9565b9050919050565b6000602082019050818103600083015261393b8161324f565b9050919050565b6000602082019050818103600083015261395b816132b5565b9050919050565b6000602082019050818103600083015261397b816132f5565b9050919050565b6000602082019050818103600083015261399b8161335b565b9050919050565b600060208201905081810360008301526139bb8161339b565b9050919050565b600060208201905081810360008301526139db81613401565b9050919050565b600060208201905081810360008301526139fb81613467565b9050919050565b60006020820190508181036000830152613a1b816134cd565b9050919050565b60006020820190508181036000830152613a3b81613533565b9050919050565b60006020820190508181036000830152613a5b81613599565b9050919050565b60006020820190508181036000830152613a7b816135ff565b9050919050565b60006020820190508181036000830152613a9b81613665565b9050919050565b6000602082019050613ab760008301846136cb565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613ae457613ae3613e37565b5b8060405250919050565b600067ffffffffffffffff821115613b0957613b08613e37565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b3557613b34613e37565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b9882613cb2565b9150613ba383613cb2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bd857613bd7613daa565b5b828201905092915050565b6000613bee82613cb2565b9150613bf983613cb2565b925082613c0957613c08613dd9565b5b828204905092915050565b6000613c1f82613cb2565b9150613c2a83613cb2565b925082821015613c3d57613c3c613daa565b5b828203905092915050565b6000613c5382613c92565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ce9578082015181840152602081019050613cce565b83811115613cf8576000848401525b50505050565b60006002820490506001821680613d1657607f821691505b60208210811415613d2a57613d29613e08565b5b50919050565b6000613d3b82613cb2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d6e57613d6d613daa565b5b600182019050919050565b6000613d8482613cb2565b9150613d8f83613cb2565b925082613d9f57613d9e613dd9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e8081613c48565b8114613e8b57600080fd5b50565b613e9781613c5a565b8114613ea257600080fd5b50565b613eae81613c66565b8114613eb957600080fd5b50565b613ec581613cb2565b8114613ed057600080fd5b5056fea26469706673582212209b4296553d7f2502fdb17e42515b839e791e19599d0c10ee314c49d80813b2fc64736f6c6343000800003300000000000000000000000000c396383400a1ef2eb401052dbf5d989b2da481
Deployed Bytecode
0x60806040526004361061019c5760003560e01c80636352211e116100ec578063b5077f441161008a578063c87b56dd11610064578063c87b56dd146105a7578063e985e9c5146105e4578063f2fde38b14610621578063f8e93ef91461064a5761019c565b8063b5077f441461053c578063b66a0e5d14610567578063b88d4fde1461057e5761019c565b8063894d779a116100c6578063894d779a146104805780638da5cb5b146104bd57806395d89b41146104e8578063a22cb465146105135761019c565b80636352211e146103ef57806370a082311461042c578063715018a6146104695761019c565b80632f745c591161015957806342842e0e1161013357806342842e0e146103475780634f6ccce71461037057806355367ba9146103ad5780635c474f9e146103c45761019c565b80632f745c59146102c35780633bb3a24d146103005780633ccfd60b1461033d5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612cbd565b610673565b6040516101d59190613765565b60405180910390f35b3480156101ea57600080fd5b506101f36106ed565b6040516102009190613780565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612d0f565b61077f565b60405161023d91906136fe565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612c40565b610804565b005b34801561027b57600080fd5b5061028461091c565b6040516102919190613aa2565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612b3a565b610929565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612c40565b610989565b6040516102f79190613aa2565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190612d0f565b610a2e565b6040516103349190613780565b60405180910390f35b610345610a40565b005b34801561035357600080fd5b5061036e60048036038101906103699190612b3a565b610afc565b005b34801561037c57600080fd5b5061039760048036038101906103929190612d0f565b610b1c565b6040516103a49190613aa2565b60405180910390f35b3480156103b957600080fd5b506103c2610bb3565b005b3480156103d057600080fd5b506103d9610c4c565b6040516103e69190613765565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612d0f565b610c5f565b60405161042391906136fe565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190612aac565b610d11565b6040516104609190613aa2565b60405180910390f35b34801561047557600080fd5b5061047e610dc9565b005b34801561048c57600080fd5b506104a760048036038101906104a29190612d0f565b610f06565b6040516104b49190613765565b60405180910390f35b3480156104c957600080fd5b506104d2610f26565b6040516104df91906136fe565b60405180910390f35b3480156104f457600080fd5b506104fd610f50565b60405161050a9190613780565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190612c04565b610fe2565b005b34801561054857600080fd5b50610551611163565b60405161055e9190613aa2565b60405180910390f35b34801561057357600080fd5b5061057c611169565b005b34801561058a57600080fd5b506105a560048036038101906105a09190612b89565b611202565b005b3480156105b357600080fd5b506105ce60048036038101906105c99190612d0f565b611264565b6040516105db9190613780565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190612afe565b61130b565b6040516106189190613765565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190612aac565b61139f565b005b34801561065657600080fd5b50610671600480360381019061066c9190612c7c565b61154b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e657506106e5826118b5565b5b9050919050565b6060600080546106fc90613cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461072890613cfe565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078a82611997565b6107c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c090613962565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080f82610c5f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610877906139e2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089f611a03565b73ffffffffffffffffffffffffffffffffffffffff1614806108ce57506108cd816108c8611a03565b61130b565b5b61090d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610904906138e2565b60405180910390fd5b6109178383611a0b565b505050565b6000600880549050905090565b61093a610934611a03565b82611ac4565b610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097090613a02565b60405180910390fd5b610984838383611ba2565b505050565b600061099483610d11565b82106109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc906137c2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610a3982611264565b9050919050565b610a48611a03565b73ffffffffffffffffffffffffffffffffffffffff16610a66610f26565b73ffffffffffffffffffffffffffffffffffffffff1614610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390613982565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610afa57600080fd5b565b610b1783838360405180602001604052806000815250611202565b505050565b6000610b2661091c565b8210610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90613a22565b60405180910390fd5b60088281548110610ba1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610bbb611a03565b73ffffffffffffffffffffffffffffffffffffffff16610bd9610f26565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690613982565b60405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b600a60149054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90613922565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613902565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd1611a03565b73ffffffffffffffffffffffffffffffffffffffff16610def610f26565b73ffffffffffffffffffffffffffffffffffffffff1614610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90613982565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f5f90613cfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8b90613cfe565b8015610fd85780601f10610fad57610100808354040283529160200191610fd8565b820191906000526020600020905b815481529060010190602001808311610fbb57829003601f168201915b5050505050905090565b610fea611a03565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613882565b60405180910390fd5b8060056000611065611a03565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611112611a03565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111579190613765565b60405180910390a35050565b6122b881565b611171611a03565b73ffffffffffffffffffffffffffffffffffffffff1661118f610f26565b73ffffffffffffffffffffffffffffffffffffffff16146111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90613982565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b61121361120d611a03565b83611ac4565b611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990613a02565b60405180910390fd5b61125e84848484611dfe565b50505050565b606061126f82611997565b6112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a5906139c2565b60405180910390fd5b60006112b8611e5a565b905060008151116112d85760405180602001604052806000815250611303565b806112e284611e97565b6040516020016112f39291906136da565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113a7611a03565b73ffffffffffffffffffffffffffffffffffffffff166113c5610f26565b73ffffffffffffffffffffffffffffffffffffffff161461141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290613982565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613802565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60011515600a60149054906101000a900460ff161515146115a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611598906137a2565b60405180910390fd5b6122b86115ac61091c565b106115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e3906138a2565b60405180910390fd5b6000815111611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162790613a62565b60405180910390fd5b6122b8815161163d61091c565b6116479190613b8d565b1115611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90613842565b60405180910390fd5b60005b81518110156118b15760008282815181106116cf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161174b9190613aa2565b602060405180830381600087803b15801561176557600080fd5b505af1158015611779573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179d9190612ad5565b73ffffffffffffffffffffffffffffffffffffffff16146117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90613a42565b60405180910390fd5b60001515600b600083815260200190815260200160002060009054906101000a900460ff1615151461185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190613a82565b60405180910390fd5b600061186461091c565b90506118703382612044565b6001600b600084815260200190815260200160002060006101000a81548160ff021916908315150217905550505080806118a990613d30565b91505061168b565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611990575061198f82612062565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a7e83610c5f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611acf82611997565b611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b05906138c2565b60405180910390fd5b6000611b1983610c5f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b8857508373ffffffffffffffffffffffffffffffffffffffff16611b708461077f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b995750611b98818561130b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bc282610c5f565b73ffffffffffffffffffffffffffffffffffffffff1614611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f906139a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613862565b60405180910390fd5b611c938383836120cc565b611c9e600082611a0b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cee9190613c14565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d459190613b8d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e09848484611ba2565b611e15848484846121e0565b611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b906137e2565b60405180910390fd5b50505050565b60606040518060400160405280601f81526020017f68747470733a2f2f6170692e637970686572636974792e696f2f706574732f00815250905090565b60606000821415611edf576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061203f565b600082905060005b60008214611f11578080611efa90613d30565b915050600a82611f0a9190613be3565b9150611ee7565b60008167ffffffffffffffff811115611f53577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f855781602001600182028036833780820191505090505b5090505b6000851461203857600182611f9e9190613c14565b9150600a85611fad9190613d79565b6030611fb99190613b8d565b60f81b818381518110611ff5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120319190613be3565b9450611f89565b8093505050505b919050565b61205e828260405180602001604052806000815250612377565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120d78383836123d2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561211a57612115816123d7565b612159565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612158576121578382612420565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219c576121978161258d565b6121db565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121da576121d982826126d0565b5b5b505050565b60006122018473ffffffffffffffffffffffffffffffffffffffff1661274f565b1561236a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261222a611a03565b8786866040518563ffffffff1660e01b815260040161224c9493929190613719565b602060405180830381600087803b15801561226657600080fd5b505af192505050801561229757506040513d601f19601f820116820180604052508101906122949190612ce6565b60015b61231a573d80600081146122c7576040519150601f19603f3d011682016040523d82523d6000602084013e6122cc565b606091505b50600081511415612312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612309906137e2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061236f565b600190505b949350505050565b6123818383612762565b61238e60008484846121e0565b6123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c4906137e2565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161242d84610d11565b6124379190613c14565b905060006007600084815260200190815260200160002054905081811461251c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506125a19190613c14565b90506000600960008481526020019081526020016000205490506000600883815481106125f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061263f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806126b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006126db83610d11565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c990613942565b60405180910390fd5b6127db81611997565b1561281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290613822565b60405180910390fd5b612827600083836120cc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128779190613b8d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061294361293e84613aee565b613abd565b9050808382526020820190508285602086028201111561296257600080fd5b60005b8581101561299257816129788882612a97565b845260208401935060208301925050600181019050612965565b5050509392505050565b60006129af6129aa84613b1a565b613abd565b9050828152602081018484840111156129c757600080fd5b6129d2848285613cbc565b509392505050565b6000813590506129e981613e77565b92915050565b6000815190506129fe81613e77565b92915050565b600082601f830112612a1557600080fd5b8135612a25848260208601612930565b91505092915050565b600081359050612a3d81613e8e565b92915050565b600081359050612a5281613ea5565b92915050565b600081519050612a6781613ea5565b92915050565b600082601f830112612a7e57600080fd5b8135612a8e84826020860161299c565b91505092915050565b600081359050612aa681613ebc565b92915050565b600060208284031215612abe57600080fd5b6000612acc848285016129da565b91505092915050565b600060208284031215612ae757600080fd5b6000612af5848285016129ef565b91505092915050565b60008060408385031215612b1157600080fd5b6000612b1f858286016129da565b9250506020612b30858286016129da565b9150509250929050565b600080600060608486031215612b4f57600080fd5b6000612b5d868287016129da565b9350506020612b6e868287016129da565b9250506040612b7f86828701612a97565b9150509250925092565b60008060008060808587031215612b9f57600080fd5b6000612bad878288016129da565b9450506020612bbe878288016129da565b9350506040612bcf87828801612a97565b925050606085013567ffffffffffffffff811115612bec57600080fd5b612bf887828801612a6d565b91505092959194509250565b60008060408385031215612c1757600080fd5b6000612c25858286016129da565b9250506020612c3685828601612a2e565b9150509250929050565b60008060408385031215612c5357600080fd5b6000612c61858286016129da565b9250506020612c7285828601612a97565b9150509250929050565b600060208284031215612c8e57600080fd5b600082013567ffffffffffffffff811115612ca857600080fd5b612cb484828501612a04565b91505092915050565b600060208284031215612ccf57600080fd5b6000612cdd84828501612a43565b91505092915050565b600060208284031215612cf857600080fd5b6000612d0684828501612a58565b91505092915050565b600060208284031215612d2157600080fd5b6000612d2f84828501612a97565b91505092915050565b612d4181613c48565b82525050565b612d5081613c5a565b82525050565b6000612d6182613b4a565b612d6b8185613b60565b9350612d7b818560208601613ccb565b612d8481613e66565b840191505092915050565b6000612d9a82613b55565b612da48185613b71565b9350612db4818560208601613ccb565b612dbd81613e66565b840191505092915050565b6000612dd382613b55565b612ddd8185613b82565b9350612ded818560208601613ccb565b80840191505092915050565b6000612e06601a83613b71565b91507f546869732073616c6520686173206e6f7420737461727465642e0000000000006000830152602082019050919050565b6000612e46602b83613b71565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612eac603283613b71565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612f12602683613b71565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f78601c83613b71565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612fb8604883613b71565b91507f54686520616d6f756e74206f66204379706865727320796f752061726520747260008301527f79696e6720746f206d696e74206578636565647320746865204d41585f4e465460208301527f5f535550504c592e0000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613044602483613b71565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130aa601983613b71565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006130ea601a83613b71565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b600061312a602c83613b71565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613190603883613b71565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006131f6602a83613b71565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061325c602983613b71565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006132c2602083613b71565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613302602c83613b71565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613368602083613b71565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006133a8602983613b71565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061340e602f83613b71565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613474602183613b71565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134da603183613b71565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613540602c83613b71565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006135a6602583613b71565b91507f596f7520617265206e6f7420746865206f776e6572206f66207468697320437960008301527f706865722e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061360c602283613b71565b91507f596f75206d757374206d696e74206174206c65617374206f6e6520437970686560008301527f722e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613672602183613b71565b91507f4379706865722068617320616c7265616479206265656e2072656465656d656460008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6136d481613cb2565b82525050565b60006136e68285612dc8565b91506136f28284612dc8565b91508190509392505050565b60006020820190506137136000830184612d38565b92915050565b600060808201905061372e6000830187612d38565b61373b6020830186612d38565b61374860408301856136cb565b818103606083015261375a8184612d56565b905095945050505050565b600060208201905061377a6000830184612d47565b92915050565b6000602082019050818103600083015261379a8184612d8f565b905092915050565b600060208201905081810360008301526137bb81612df9565b9050919050565b600060208201905081810360008301526137db81612e39565b9050919050565b600060208201905081810360008301526137fb81612e9f565b9050919050565b6000602082019050818103600083015261381b81612f05565b9050919050565b6000602082019050818103600083015261383b81612f6b565b9050919050565b6000602082019050818103600083015261385b81612fab565b9050919050565b6000602082019050818103600083015261387b81613037565b9050919050565b6000602082019050818103600083015261389b8161309d565b9050919050565b600060208201905081810360008301526138bb816130dd565b9050919050565b600060208201905081810360008301526138db8161311d565b9050919050565b600060208201905081810360008301526138fb81613183565b9050919050565b6000602082019050818103600083015261391b816131e9565b9050919050565b6000602082019050818103600083015261393b8161324f565b9050919050565b6000602082019050818103600083015261395b816132b5565b9050919050565b6000602082019050818103600083015261397b816132f5565b9050919050565b6000602082019050818103600083015261399b8161335b565b9050919050565b600060208201905081810360008301526139bb8161339b565b9050919050565b600060208201905081810360008301526139db81613401565b9050919050565b600060208201905081810360008301526139fb81613467565b9050919050565b60006020820190508181036000830152613a1b816134cd565b9050919050565b60006020820190508181036000830152613a3b81613533565b9050919050565b60006020820190508181036000830152613a5b81613599565b9050919050565b60006020820190508181036000830152613a7b816135ff565b9050919050565b60006020820190508181036000830152613a9b81613665565b9050919050565b6000602082019050613ab760008301846136cb565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613ae457613ae3613e37565b5b8060405250919050565b600067ffffffffffffffff821115613b0957613b08613e37565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b3557613b34613e37565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b9882613cb2565b9150613ba383613cb2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bd857613bd7613daa565b5b828201905092915050565b6000613bee82613cb2565b9150613bf983613cb2565b925082613c0957613c08613dd9565b5b828204905092915050565b6000613c1f82613cb2565b9150613c2a83613cb2565b925082821015613c3d57613c3c613daa565b5b828203905092915050565b6000613c5382613c92565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ce9578082015181840152602081019050613cce565b83811115613cf8576000848401525b50505050565b60006002820490506001821680613d1657607f821691505b60208210811415613d2a57613d29613e08565b5b50919050565b6000613d3b82613cb2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d6e57613d6d613daa565b5b600182019050919050565b6000613d8482613cb2565b9150613d8f83613cb2565b925082613d9f57613d9e613dd9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e8081613c48565b8114613e8b57600080fd5b50565b613e9781613c5a565b8114613ea257600080fd5b50565b613eae81613c66565b8114613eb957600080fd5b50565b613ec581613cb2565b8114613ed057600080fd5b5056fea26469706673582212209b4296553d7f2502fdb17e42515b839e791e19599d0c10ee314c49d80813b2fc64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000c396383400a1ef2eb401052dbf5d989b2da481
-----Decoded View---------------
Arg [0] : cypherCityAddress (address): 0x00C396383400a1EF2eB401052dBF5d989B2da481
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000c396383400a1ef2eb401052dbf5d989b2da481
Deployed Bytecode Sourcemap
42895:1842:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34316:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21521:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22981:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22518:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34969:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23871:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34637:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43433:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44614:120;;;:::i;:::-;;24247:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35159:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44528:76;;;;;;;;;;;;;:::i;:::-;;43007:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21215:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20945:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42188:148;;;;;;;;;;;;;:::i;:::-;;43046:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41537:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21690:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23274:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42955:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44445:75;;;;;;;;;;;;;:::i;:::-;;24469:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21865:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23640:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42491:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43557:880;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34316:237;34418:4;34457:35;34442:50;;;:11;:50;;;;:103;;;;34509:36;34533:11;34509:23;:36::i;:::-;34442:103;34435:110;;34316:237;;;:::o;21521:100::-;21575:13;21608:5;21601:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21521:100;:::o;22981:221::-;23057:7;23085:16;23093:7;23085;:16::i;:::-;23077:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23170:15;:24;23186:7;23170:24;;;;;;;;;;;;;;;;;;;;;23163:31;;22981:221;;;:::o;22518:397::-;22599:13;22615:23;22630:7;22615:14;:23::i;:::-;22599:39;;22663:5;22657:11;;:2;:11;;;;22649:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22743:5;22727:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22752:37;22769:5;22776:12;:10;:12::i;:::-;22752:16;:37::i;:::-;22727:62;22719:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22886:21;22895:2;22899:7;22886:8;:21::i;:::-;22518:397;;;:::o;34969:113::-;35030:7;35057:10;:17;;;;35050:24;;34969:113;:::o;23871:305::-;24032:41;24051:12;:10;:12::i;:::-;24065:7;24032:18;:41::i;:::-;24024:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24140:28;24150:4;24156:2;24160:7;24140:9;:28::i;:::-;23871:305;;;:::o;34637:256::-;34734:7;34770:23;34787:5;34770:16;:23::i;:::-;34762:5;:31;34754:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34859:12;:19;34872:5;34859:19;;;;;;;;;;;;;;;:26;34879:5;34859:26;;;;;;;;;;;;34852:33;;34637:256;;;;:::o;43433:117::-;43492:13;43525:17;43534:7;43525:8;:17::i;:::-;43518:24;;43433:117;;;:::o;44614:120::-;41768:12;:10;:12::i;:::-;41757:23;;:7;:5;:7::i;:::-;:23;;;41749:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44686:10:::1;44678:24;;:47;44703:21;44678:47;;;;;;;;;;;;;;;;;;;;;;;44670:56;;;::::0;::::1;;44614:120::o:0;24247:151::-;24351:39;24368:4;24374:2;24378:7;24351:39;;;;;;;;;;;;:16;:39::i;:::-;24247:151;;;:::o;35159:233::-;35234:7;35270:30;:28;:30::i;:::-;35262:5;:38;35254:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35367:10;35378:5;35367:17;;;;;;;;;;;;;;;;;;;;;;;;35360:24;;35159:233;;;:::o;44528:76::-;41768:12;:10;:12::i;:::-;41757:23;;:7;:5;:7::i;:::-;:23;;;41749:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44591:5:::1;44577:11;;:19;;;;;;;;;;;;;;;;;;44528:76::o:0;43007:30::-;;;;;;;;;;;;;:::o;21215:239::-;21287:7;21307:13;21323:7;:16;21331:7;21323:16;;;;;;;;;;;;;;;;;;;;;21307:32;;21375:1;21358:19;;:5;:19;;;;21350:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21441:5;21434:12;;;21215:239;;;:::o;20945:208::-;21017:7;21062:1;21045:19;;:5;:19;;;;21037:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21129:9;:16;21139:5;21129:16;;;;;;;;;;;;;;;;21122:23;;20945:208;;;:::o;42188:148::-;41768:12;:10;:12::i;:::-;41757:23;;:7;:5;:7::i;:::-;:23;;;41749:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42295:1:::1;42258:40;;42279:6;;;;;;;;;;;42258:40;;;;;;;;;;;;42326:1;42309:6;;:19;;;;;;;;;;;;;;;;;;42188:148::o:0;43046:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;41537:87::-;41583:7;41610:6;;;;;;;;;;;41603:13;;41537:87;:::o;21690:104::-;21746:13;21779:7;21772:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21690:104;:::o;23274:295::-;23389:12;:10;:12::i;:::-;23377:24;;:8;:24;;;;23369:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23489:8;23444:18;:32;23463:12;:10;:12::i;:::-;23444:32;;;;;;;;;;;;;;;:42;23477:8;23444:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23542:8;23513:48;;23528:12;:10;:12::i;:::-;23513:48;;;23552:8;23513:48;;;;;;:::i;:::-;;;;;;;;23274:295;;:::o;42955:45::-;42996:4;42955:45;:::o;44445:75::-;41768:12;:10;:12::i;:::-;41757:23;;:7;:5;:7::i;:::-;:23;;;41749:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44508:4:::1;44494:11;;:18;;;;;;;;;;;;;;;;;;44445:75::o:0;24469:285::-;24601:41;24620:12;:10;:12::i;:::-;24634:7;24601:18;:41::i;:::-;24593:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24707:39;24721:4;24727:2;24731:7;24740:5;24707:13;:39::i;:::-;24469:285;;;;:::o;21865:360::-;21938:13;21972:16;21980:7;21972;:16::i;:::-;21964:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22053:21;22077:10;:8;:10::i;:::-;22053:34;;22129:1;22111:7;22105:21;:25;:112;;;;;;;;;;;;;;;;;22170:7;22179:18;:7;:16;:18::i;:::-;22153:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22105:112;22098:119;;;21865:360;;;:::o;23640:164::-;23737:4;23761:18;:25;23780:5;23761:25;;;;;;;;;;;;;;;:35;23787:8;23761:35;;;;;;;;;;;;;;;;;;;;;;;;;23754:42;;23640:164;;;;:::o;42491:244::-;41768:12;:10;:12::i;:::-;41757:23;;:7;:5;:7::i;:::-;:23;;;41749:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42600:1:::1;42580:22;;:8;:22;;;;42572:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42690:8;42661:38;;42682:6;;;;;;;;;;;42661:38;;;;;;;;;;;;42719:8;42710:6;;:17;;;;;;;;;;;;;;;;;;42491:244:::0;:::o;43557:880::-;43638:4;43623:19;;:11;;;;;;;;;;;:19;;;43615:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;42996:4;43692:13;:11;:13::i;:::-;:30;43684:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43789:1;43772:7;:14;:18;43764:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;42996:4;43864:7;:14;43848:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:48;;43840:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;43991:9;43986:445;44010:7;:14;44006:1;:18;43986:445;;;44046:14;44063:7;44071:1;44063:10;;;;;;;;;;;;;;;;;;;;;;44046:27;;44134:10;44096:48;;:18;;;;;;;;;;;:26;;;44123:6;44096:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;;44088:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;44236:5;44209:32;;:15;:23;44225:6;44209:23;;;;;;;;;;;;;;;;;;;;;:32;;;44201:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;44294:17;44314:13;:11;:13::i;:::-;44294:33;;44342:32;44352:10;44364:9;44342;:32::i;:::-;44415:4;44389:15;:23;44405:6;44389:23;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;43986:445;;44026:3;;;;;:::i;:::-;;;;43986:445;;;;43557:880;:::o;20589:292::-;20691:4;20730:25;20715:40;;;:11;:40;;;;:105;;;;20787:33;20772:48;;;:11;:48;;;;20715:105;:158;;;;20837:36;20861:11;20837:23;:36::i;:::-;20715:158;20708:165;;20589:292;;;:::o;26221:127::-;26286:4;26338:1;26310:30;;:7;:16;26318:7;26310:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26303:37;;26221:127;;;:::o;15877:98::-;15930:7;15957:10;15950:17;;15877:98;:::o;30098:174::-;30200:2;30173:15;:24;30189:7;30173:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30256:7;30252:2;30218:46;;30227:23;30242:7;30227:14;:23::i;:::-;30218:46;;;;;;;;;;;;30098:174;;:::o;26515:348::-;26608:4;26633:16;26641:7;26633;:16::i;:::-;26625:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26709:13;26725:23;26740:7;26725:14;:23::i;:::-;26709:39;;26778:5;26767:16;;:7;:16;;;:51;;;;26811:7;26787:31;;:20;26799:7;26787:11;:20::i;:::-;:31;;;26767:51;:87;;;;26822:32;26839:5;26846:7;26822:16;:32::i;:::-;26767:87;26759:96;;;26515:348;;;;:::o;29436:544::-;29561:4;29534:31;;:23;29549:7;29534:14;:23::i;:::-;:31;;;29526:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29644:1;29630:16;;:2;:16;;;;29622:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29700:39;29721:4;29727:2;29731:7;29700:20;:39::i;:::-;29804:29;29821:1;29825:7;29804:8;:29::i;:::-;29865:1;29846:9;:15;29856:4;29846:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29894:1;29877:9;:13;29887:2;29877:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29925:2;29906:7;:16;29914:7;29906:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29964:7;29960:2;29945:27;;29954:4;29945:27;;;;;;;;;;;;29436:544;;;:::o;25636:272::-;25750:28;25760:4;25766:2;25770:7;25750:9;:28::i;:::-;25797:48;25820:4;25826:2;25830:7;25839:5;25797:22;:48::i;:::-;25789:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25636:272;;;;:::o;43291:134::-;43351:13;43377:40;;;;;;;;;;;;;;;;;;;43291:134;:::o;16532:723::-;16588:13;16818:1;16809:5;:10;16805:53;;;16836:10;;;;;;;;;;;;;;;;;;;;;16805:53;16868:12;16883:5;16868:20;;16899:14;16924:78;16939:1;16931:4;:9;16924:78;;16957:8;;;;;:::i;:::-;;;;16988:2;16980:10;;;;;:::i;:::-;;;16924:78;;;17012:19;17044:6;17034:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17012:39;;17062:154;17078:1;17069:5;:10;17062:154;;17106:1;17096:11;;;;;:::i;:::-;;;17173:2;17165:5;:10;;;;:::i;:::-;17152:2;:24;;;;:::i;:::-;17139:39;;17122:6;17129;17122:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17202:2;17193:11;;;;;:::i;:::-;;;17062:154;;;17240:6;17226:21;;;;;16532:723;;;;:::o;27205:110::-;27281:26;27291:2;27295:7;27281:26;;;;;;;;;;;;:9;:26::i;:::-;27205:110;;:::o;19087:157::-;19172:4;19211:25;19196:40;;;:11;:40;;;;19189:47;;19087:157;;;:::o;36005:555::-;36115:45;36142:4;36148:2;36152:7;36115:26;:45::i;:::-;36193:1;36177:18;;:4;:18;;;36173:187;;;36212:40;36244:7;36212:31;:40::i;:::-;36173:187;;;36282:2;36274:10;;:4;:10;;;36270:90;;36301:47;36334:4;36340:7;36301:32;:47::i;:::-;36270:90;36173:187;36388:1;36374:16;;:2;:16;;;36370:183;;;36407:45;36444:7;36407:36;:45::i;:::-;36370:183;;;36480:4;36474:10;;:2;:10;;;36470:83;;36501:40;36529:2;36533:7;36501:27;:40::i;:::-;36470:83;36370:183;36005:555;;;:::o;30837:843::-;30958:4;30984:15;:2;:13;;;:15::i;:::-;30980:693;;;31036:2;31020:36;;;31057:12;:10;:12::i;:::-;31071:4;31077:7;31086:5;31020:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31016:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31283:1;31266:6;:13;:18;31262:341;;;31309:60;;;;;;;;;;:::i;:::-;;;;;;;;31262:341;31553:6;31547:13;31538:6;31534:2;31530:15;31523:38;31016:602;31153:45;;;31143:55;;;:6;:55;;;;31136:62;;;;;30980:693;31657:4;31650:11;;30837:843;;;;;;;:::o;27542:250::-;27638:18;27644:2;27648:7;27638:5;:18::i;:::-;27675:54;27706:1;27710:2;27714:7;27723:5;27675:22;:54::i;:::-;27667:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27542:250;;;:::o;32293:93::-;;;;:::o;37283:164::-;37387:10;:17;;;;37360:15;:24;37376:7;37360:24;;;;;;;;;;;:44;;;;37415:10;37431:7;37415:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37283:164;:::o;38074:988::-;38340:22;38390:1;38365:22;38382:4;38365:16;:22::i;:::-;:26;;;;:::i;:::-;38340:51;;38402:18;38423:17;:26;38441:7;38423:26;;;;;;;;;;;;38402:47;;38570:14;38556:10;:28;38552:328;;38601:19;38623:12;:18;38636:4;38623:18;;;;;;;;;;;;;;;:34;38642:14;38623:34;;;;;;;;;;;;38601:56;;38707:11;38674:12;:18;38687:4;38674:18;;;;;;;;;;;;;;;:30;38693:10;38674:30;;;;;;;;;;;:44;;;;38824:10;38791:17;:30;38809:11;38791:30;;;;;;;;;;;:43;;;;38552:328;;38976:17;:26;38994:7;38976:26;;;;;;;;;;;38969:33;;;39020:12;:18;39033:4;39020:18;;;;;;;;;;;;;;;:34;39039:14;39020:34;;;;;;;;;;;39013:41;;;38074:988;;;;:::o;39357:1079::-;39610:22;39655:1;39635:10;:17;;;;:21;;;;:::i;:::-;39610:46;;39667:18;39688:15;:24;39704:7;39688:24;;;;;;;;;;;;39667:45;;40039:19;40061:10;40072:14;40061:26;;;;;;;;;;;;;;;;;;;;;;;;40039:48;;40125:11;40100:10;40111;40100:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40236:10;40205:15;:28;40221:11;40205:28;;;;;;;;;;;:41;;;;40377:15;:24;40393:7;40377:24;;;;;;;;;;;40370:31;;;40412:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39357:1079;;;;:::o;36861:221::-;36946:14;36963:20;36980:2;36963:16;:20::i;:::-;36946:37;;37021:7;36994:12;:16;37007:2;36994:16;;;;;;;;;;;;;;;:24;37011:6;36994:24;;;;;;;;;;;:34;;;;37068:6;37039:17;:26;37057:7;37039:26;;;;;;;;;;;:35;;;;36861:221;;;:::o;7994:422::-;8054:4;8262:12;8373:7;8361:20;8353:28;;8407:1;8400:4;:8;8393:15;;;7994:422;;;:::o;28128:382::-;28222:1;28208:16;;:2;:16;;;;28200:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28281:16;28289:7;28281;:16::i;:::-;28280:17;28272:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28343:45;28372:1;28376:2;28380:7;28343:20;:45::i;:::-;28418:1;28401:9;:13;28411:2;28401:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28449:2;28430:7;:16;28438:7;28430:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28494:7;28490:2;28469:33;;28486:1;28469:33;;;;;;;;;;;;28128:382;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:139::-;;1084:6;1071:20;1062:29;;1100:33;1127:5;1100:33;:::i;:::-;1052:87;;;;:::o;1145:143::-;;1233:6;1227:13;1218:22;;1249:33;1276:5;1249:33;:::i;:::-;1208:80;;;;:::o;1311:303::-;;1431:3;1424:4;1416:6;1412:17;1408:27;1398:2;;1449:1;1446;1439:12;1398:2;1489:6;1476:20;1514:94;1604:3;1596:6;1589:4;1581:6;1577:17;1514:94;:::i;:::-;1505:103;;1388:226;;;;;:::o;1620:133::-;;1701:6;1688:20;1679:29;;1717:30;1741:5;1717:30;:::i;:::-;1669:84;;;;:::o;1759:137::-;;1842:6;1829:20;1820:29;;1858:32;1884:5;1858:32;:::i;:::-;1810:86;;;;:::o;1902:141::-;;1989:6;1983:13;1974:22;;2005:32;2031:5;2005:32;:::i;:::-;1964:79;;;;:::o;2062:271::-;;2166:3;2159:4;2151:6;2147:17;2143:27;2133:2;;2184:1;2181;2174:12;2133:2;2224:6;2211:20;2249:78;2323:3;2315:6;2308:4;2300:6;2296:17;2249:78;:::i;:::-;2240:87;;2123:210;;;;;:::o;2339:139::-;;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2391:87;;;;:::o;2484:262::-;;2592:2;2580:9;2571:7;2567:23;2563:32;2560:2;;;2608:1;2605;2598:12;2560:2;2651:1;2676:53;2721:7;2712:6;2701:9;2697:22;2676:53;:::i;:::-;2666:63;;2622:117;2550:196;;;;:::o;2752:284::-;;2871:2;2859:9;2850:7;2846:23;2842:32;2839:2;;;2887:1;2884;2877:12;2839:2;2930:1;2955:64;3011:7;3002:6;2991:9;2987:22;2955:64;:::i;:::-;2945:74;;2901:128;2829:207;;;;:::o;3042:407::-;;;3167:2;3155:9;3146:7;3142:23;3138:32;3135:2;;;3183:1;3180;3173:12;3135:2;3226:1;3251:53;3296:7;3287:6;3276:9;3272:22;3251:53;:::i;:::-;3241:63;;3197:117;3353:2;3379:53;3424:7;3415:6;3404:9;3400:22;3379:53;:::i;:::-;3369:63;;3324:118;3125:324;;;;;:::o;3455:552::-;;;;3597:2;3585:9;3576:7;3572:23;3568:32;3565:2;;;3613:1;3610;3603:12;3565:2;3656:1;3681:53;3726:7;3717:6;3706:9;3702:22;3681:53;:::i;:::-;3671:63;;3627:117;3783:2;3809:53;3854:7;3845:6;3834:9;3830:22;3809:53;:::i;:::-;3799:63;;3754:118;3911:2;3937:53;3982:7;3973:6;3962:9;3958:22;3937:53;:::i;:::-;3927:63;;3882:118;3555:452;;;;;:::o;4013:809::-;;;;;4181:3;4169:9;4160:7;4156:23;4152:33;4149:2;;;4198:1;4195;4188:12;4149:2;4241:1;4266:53;4311:7;4302:6;4291:9;4287:22;4266:53;:::i;:::-;4256:63;;4212:117;4368:2;4394:53;4439:7;4430:6;4419:9;4415:22;4394:53;:::i;:::-;4384:63;;4339:118;4496:2;4522:53;4567:7;4558:6;4547:9;4543:22;4522:53;:::i;:::-;4512:63;;4467:118;4652:2;4641:9;4637:18;4624:32;4683:18;4675:6;4672:30;4669:2;;;4715:1;4712;4705:12;4669:2;4743:62;4797:7;4788:6;4777:9;4773:22;4743:62;:::i;:::-;4733:72;;4595:220;4139:683;;;;;;;:::o;4828:401::-;;;4950:2;4938:9;4929:7;4925:23;4921:32;4918:2;;;4966:1;4963;4956:12;4918:2;5009:1;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4980:117;5136:2;5162:50;5204:7;5195:6;5184:9;5180:22;5162:50;:::i;:::-;5152:60;;5107:115;4908:321;;;;;:::o;5235:407::-;;;5360:2;5348:9;5339:7;5335:23;5331:32;5328:2;;;5376:1;5373;5366:12;5328:2;5419:1;5444:53;5489:7;5480:6;5469:9;5465:22;5444:53;:::i;:::-;5434:63;;5390:117;5546:2;5572:53;5617:7;5608:6;5597:9;5593:22;5572:53;:::i;:::-;5562:63;;5517:118;5318:324;;;;;:::o;5648:405::-;;5781:2;5769:9;5760:7;5756:23;5752:32;5749:2;;;5797:1;5794;5787:12;5749:2;5868:1;5857:9;5853:17;5840:31;5898:18;5890:6;5887:30;5884:2;;;5930:1;5927;5920:12;5884:2;5958:78;6028:7;6019:6;6008:9;6004:22;5958:78;:::i;:::-;5948:88;;5811:235;5739:314;;;;:::o;6059:260::-;;6166:2;6154:9;6145:7;6141:23;6137:32;6134:2;;;6182:1;6179;6172:12;6134:2;6225:1;6250:52;6294:7;6285:6;6274:9;6270:22;6250:52;:::i;:::-;6240:62;;6196:116;6124:195;;;;:::o;6325:282::-;;6443:2;6431:9;6422:7;6418:23;6414:32;6411:2;;;6459:1;6456;6449:12;6411:2;6502:1;6527:63;6582:7;6573:6;6562:9;6558:22;6527:63;:::i;:::-;6517:73;;6473:127;6401:206;;;;:::o;6613:262::-;;6721:2;6709:9;6700:7;6696:23;6692:32;6689:2;;;6737:1;6734;6727:12;6689:2;6780:1;6805:53;6850:7;6841:6;6830:9;6826:22;6805:53;:::i;:::-;6795:63;;6751:117;6679:196;;;;:::o;6881:118::-;6968:24;6986:5;6968:24;:::i;:::-;6963:3;6956:37;6946:53;;:::o;7005:109::-;7086:21;7101:5;7086:21;:::i;:::-;7081:3;7074:34;7064:50;;:::o;7120:360::-;;7234:38;7266:5;7234:38;:::i;:::-;7288:70;7351:6;7346:3;7288:70;:::i;:::-;7281:77;;7367:52;7412:6;7407:3;7400:4;7393:5;7389:16;7367:52;:::i;:::-;7444:29;7466:6;7444:29;:::i;:::-;7439:3;7435:39;7428:46;;7210:270;;;;;:::o;7486:364::-;;7602:39;7635:5;7602:39;:::i;:::-;7657:71;7721:6;7716:3;7657:71;:::i;:::-;7650:78;;7737:52;7782:6;7777:3;7770:4;7763:5;7759:16;7737:52;:::i;:::-;7814:29;7836:6;7814:29;:::i;:::-;7809:3;7805:39;7798:46;;7578:272;;;;;:::o;7856:377::-;;7990:39;8023:5;7990:39;:::i;:::-;8045:89;8127:6;8122:3;8045:89;:::i;:::-;8038:96;;8143:52;8188:6;8183:3;8176:4;8169:5;8165:16;8143:52;:::i;:::-;8220:6;8215:3;8211:16;8204:23;;7966:267;;;;;:::o;8239:324::-;;8402:67;8466:2;8461:3;8402:67;:::i;:::-;8395:74;;8499:28;8495:1;8490:3;8486:11;8479:49;8554:2;8549:3;8545:12;8538:19;;8385:178;;;:::o;8569:375::-;;8732:67;8796:2;8791:3;8732:67;:::i;:::-;8725:74;;8829:34;8825:1;8820:3;8816:11;8809:55;8895:13;8890:2;8885:3;8881:12;8874:35;8935:2;8930:3;8926:12;8919:19;;8715:229;;;:::o;8950:382::-;;9113:67;9177:2;9172:3;9113:67;:::i;:::-;9106:74;;9210:34;9206:1;9201:3;9197:11;9190:55;9276:20;9271:2;9266:3;9262:12;9255:42;9323:2;9318:3;9314:12;9307:19;;9096:236;;;:::o;9338:370::-;;9501:67;9565:2;9560:3;9501:67;:::i;:::-;9494:74;;9598:34;9594:1;9589:3;9585:11;9578:55;9664:8;9659:2;9654:3;9650:12;9643:30;9699:2;9694:3;9690:12;9683:19;;9484:224;;;:::o;9714:326::-;;9877:67;9941:2;9936:3;9877:67;:::i;:::-;9870:74;;9974:30;9970:1;9965:3;9961:11;9954:51;10031:2;10026:3;10022:12;10015:19;;9860:180;;;:::o;10046:438::-;;10209:67;10273:2;10268:3;10209:67;:::i;:::-;10202:74;;10306:34;10302:1;10297:3;10293:11;10286:55;10372:34;10367:2;10362:3;10358:12;10351:56;10438:10;10433:2;10428:3;10424:12;10417:32;10475:2;10470:3;10466:12;10459:19;;10192:292;;;:::o;10490:368::-;;10653:67;10717:2;10712:3;10653:67;:::i;:::-;10646:74;;10750:34;10746:1;10741:3;10737:11;10730:55;10816:6;10811:2;10806:3;10802:12;10795:28;10849:2;10844:3;10840:12;10833:19;;10636:222;;;:::o;10864:323::-;;11027:67;11091:2;11086:3;11027:67;:::i;:::-;11020:74;;11124:27;11120:1;11115:3;11111:11;11104:48;11178:2;11173:3;11169:12;11162:19;;11010:177;;;:::o;11193:324::-;;11356:67;11420:2;11415:3;11356:67;:::i;:::-;11349:74;;11453:28;11449:1;11444:3;11440:11;11433:49;11508:2;11503:3;11499:12;11492:19;;11339:178;;;:::o;11523:376::-;;11686:67;11750:2;11745:3;11686:67;:::i;:::-;11679:74;;11783:34;11779:1;11774:3;11770:11;11763:55;11849:14;11844:2;11839:3;11835:12;11828:36;11890:2;11885:3;11881:12;11874:19;;11669:230;;;:::o;11905:388::-;;12068:67;12132:2;12127:3;12068:67;:::i;:::-;12061:74;;12165:34;12161:1;12156:3;12152:11;12145:55;12231:26;12226:2;12221:3;12217:12;12210:48;12284:2;12279:3;12275:12;12268:19;;12051:242;;;:::o;12299:374::-;;12462:67;12526:2;12521:3;12462:67;:::i;:::-;12455:74;;12559:34;12555:1;12550:3;12546:11;12539:55;12625:12;12620:2;12615:3;12611:12;12604:34;12664:2;12659:3;12655:12;12648:19;;12445:228;;;:::o;12679:373::-;;12842:67;12906:2;12901:3;12842:67;:::i;:::-;12835:74;;12939:34;12935:1;12930:3;12926:11;12919:55;13005:11;13000:2;12995:3;12991:12;12984:33;13043:2;13038:3;13034:12;13027:19;;12825:227;;;:::o;13058:330::-;;13221:67;13285:2;13280:3;13221:67;:::i;:::-;13214:74;;13318:34;13314:1;13309:3;13305:11;13298:55;13379:2;13374:3;13370:12;13363:19;;13204:184;;;:::o;13394:376::-;;13557:67;13621:2;13616:3;13557:67;:::i;:::-;13550:74;;13654:34;13650:1;13645:3;13641:11;13634:55;13720:14;13715:2;13710:3;13706:12;13699:36;13761:2;13756:3;13752:12;13745:19;;13540:230;;;:::o;13776:330::-;;13939:67;14003:2;13998:3;13939:67;:::i;:::-;13932:74;;14036:34;14032:1;14027:3;14023:11;14016:55;14097:2;14092:3;14088:12;14081:19;;13922:184;;;:::o;14112:373::-;;14275:67;14339:2;14334:3;14275:67;:::i;:::-;14268:74;;14372:34;14368:1;14363:3;14359:11;14352:55;14438:11;14433:2;14428:3;14424:12;14417:33;14476:2;14471:3;14467:12;14460:19;;14258:227;;;:::o;14491:379::-;;14654:67;14718:2;14713:3;14654:67;:::i;:::-;14647:74;;14751:34;14747:1;14742:3;14738:11;14731:55;14817:17;14812:2;14807:3;14803:12;14796:39;14861:2;14856:3;14852:12;14845:19;;14637:233;;;:::o;14876:365::-;;15039:67;15103:2;15098:3;15039:67;:::i;:::-;15032:74;;15136:34;15132:1;15127:3;15123:11;15116:55;15202:3;15197:2;15192:3;15188:12;15181:25;15232:2;15227:3;15223:12;15216:19;;15022:219;;;:::o;15247:381::-;;15410:67;15474:2;15469:3;15410:67;:::i;:::-;15403:74;;15507:34;15503:1;15498:3;15494:11;15487:55;15573:19;15568:2;15563:3;15559:12;15552:41;15619:2;15614:3;15610:12;15603:19;;15393:235;;;:::o;15634:376::-;;15797:67;15861:2;15856:3;15797:67;:::i;:::-;15790:74;;15894:34;15890:1;15885:3;15881:11;15874:55;15960:14;15955:2;15950:3;15946:12;15939:36;16001:2;15996:3;15992:12;15985:19;;15780:230;;;:::o;16016:369::-;;16179:67;16243:2;16238:3;16179:67;:::i;:::-;16172:74;;16276:34;16272:1;16267:3;16263:11;16256:55;16342:7;16337:2;16332:3;16328:12;16321:29;16376:2;16371:3;16367:12;16360:19;;16162:223;;;:::o;16391:366::-;;16554:67;16618:2;16613:3;16554:67;:::i;:::-;16547:74;;16651:34;16647:1;16642:3;16638:11;16631:55;16717:4;16712:2;16707:3;16703:12;16696:26;16748:2;16743:3;16739:12;16732:19;;16537:220;;;:::o;16763:365::-;;16926:67;16990:2;16985:3;16926:67;:::i;:::-;16919:74;;17023:34;17019:1;17014:3;17010:11;17003:55;17089:3;17084:2;17079:3;17075:12;17068:25;17119:2;17114:3;17110:12;17103:19;;16909:219;;;:::o;17134:118::-;17221:24;17239:5;17221:24;:::i;:::-;17216:3;17209:37;17199:53;;:::o;17258:435::-;;17460:95;17551:3;17542:6;17460:95;:::i;:::-;17453:102;;17572:95;17663:3;17654:6;17572:95;:::i;:::-;17565:102;;17684:3;17677:10;;17442:251;;;;;:::o;17699:222::-;;17830:2;17819:9;17815:18;17807:26;;17843:71;17911:1;17900:9;17896:17;17887:6;17843:71;:::i;:::-;17797:124;;;;:::o;17927:640::-;;18160:3;18149:9;18145:19;18137:27;;18174:71;18242:1;18231:9;18227:17;18218:6;18174:71;:::i;:::-;18255:72;18323:2;18312:9;18308:18;18299:6;18255:72;:::i;:::-;18337;18405:2;18394:9;18390:18;18381:6;18337:72;:::i;:::-;18456:9;18450:4;18446:20;18441:2;18430:9;18426:18;18419:48;18484:76;18555:4;18546:6;18484:76;:::i;:::-;18476:84;;18127:440;;;;;;;:::o;18573:210::-;;18698:2;18687:9;18683:18;18675:26;;18711:65;18773:1;18762:9;18758:17;18749:6;18711:65;:::i;:::-;18665:118;;;;:::o;18789:313::-;;18940:2;18929:9;18925:18;18917:26;;18989:9;18983:4;18979:20;18975:1;18964:9;18960:17;18953:47;19017:78;19090:4;19081:6;19017:78;:::i;:::-;19009:86;;18907:195;;;;:::o;19108:419::-;;19312:2;19301:9;19297:18;19289:26;;19361:9;19355:4;19351:20;19347:1;19336:9;19332:17;19325:47;19389:131;19515:4;19389:131;:::i;:::-;19381:139;;19279:248;;;:::o;19533:419::-;;19737:2;19726:9;19722:18;19714:26;;19786:9;19780:4;19776:20;19772:1;19761:9;19757:17;19750:47;19814:131;19940:4;19814:131;:::i;:::-;19806:139;;19704:248;;;:::o;19958:419::-;;20162:2;20151:9;20147:18;20139:26;;20211:9;20205:4;20201:20;20197:1;20186:9;20182:17;20175:47;20239:131;20365:4;20239:131;:::i;:::-;20231:139;;20129:248;;;:::o;20383:419::-;;20587:2;20576:9;20572:18;20564:26;;20636:9;20630:4;20626:20;20622:1;20611:9;20607:17;20600:47;20664:131;20790:4;20664:131;:::i;:::-;20656:139;;20554:248;;;:::o;20808:419::-;;21012:2;21001:9;20997:18;20989:26;;21061:9;21055:4;21051:20;21047:1;21036:9;21032:17;21025:47;21089:131;21215:4;21089:131;:::i;:::-;21081:139;;20979:248;;;:::o;21233:419::-;;21437:2;21426:9;21422:18;21414:26;;21486:9;21480:4;21476:20;21472:1;21461:9;21457:17;21450:47;21514:131;21640:4;21514:131;:::i;:::-;21506:139;;21404:248;;;:::o;21658:419::-;;21862:2;21851:9;21847:18;21839:26;;21911:9;21905:4;21901:20;21897:1;21886:9;21882:17;21875:47;21939:131;22065:4;21939:131;:::i;:::-;21931:139;;21829:248;;;:::o;22083:419::-;;22287:2;22276:9;22272:18;22264:26;;22336:9;22330:4;22326:20;22322:1;22311:9;22307:17;22300:47;22364:131;22490:4;22364:131;:::i;:::-;22356:139;;22254:248;;;:::o;22508:419::-;;22712:2;22701:9;22697:18;22689:26;;22761:9;22755:4;22751:20;22747:1;22736:9;22732:17;22725:47;22789:131;22915:4;22789:131;:::i;:::-;22781:139;;22679:248;;;:::o;22933:419::-;;23137:2;23126:9;23122:18;23114:26;;23186:9;23180:4;23176:20;23172:1;23161:9;23157:17;23150:47;23214:131;23340:4;23214:131;:::i;:::-;23206:139;;23104:248;;;:::o;23358:419::-;;23562:2;23551:9;23547:18;23539:26;;23611:9;23605:4;23601:20;23597:1;23586:9;23582:17;23575:47;23639:131;23765:4;23639:131;:::i;:::-;23631:139;;23529:248;;;:::o;23783:419::-;;23987:2;23976:9;23972:18;23964:26;;24036:9;24030:4;24026:20;24022:1;24011:9;24007:17;24000:47;24064:131;24190:4;24064:131;:::i;:::-;24056:139;;23954:248;;;:::o;24208:419::-;;24412:2;24401:9;24397:18;24389:26;;24461:9;24455:4;24451:20;24447:1;24436:9;24432:17;24425:47;24489:131;24615:4;24489:131;:::i;:::-;24481:139;;24379:248;;;:::o;24633:419::-;;24837:2;24826:9;24822:18;24814:26;;24886:9;24880:4;24876:20;24872:1;24861:9;24857:17;24850:47;24914:131;25040:4;24914:131;:::i;:::-;24906:139;;24804:248;;;:::o;25058:419::-;;25262:2;25251:9;25247:18;25239:26;;25311:9;25305:4;25301:20;25297:1;25286:9;25282:17;25275:47;25339:131;25465:4;25339:131;:::i;:::-;25331:139;;25229:248;;;:::o;25483:419::-;;25687:2;25676:9;25672:18;25664:26;;25736:9;25730:4;25726:20;25722:1;25711:9;25707:17;25700:47;25764:131;25890:4;25764:131;:::i;:::-;25756:139;;25654:248;;;:::o;25908:419::-;;26112:2;26101:9;26097:18;26089:26;;26161:9;26155:4;26151:20;26147:1;26136:9;26132:17;26125:47;26189:131;26315:4;26189:131;:::i;:::-;26181:139;;26079:248;;;:::o;26333:419::-;;26537:2;26526:9;26522:18;26514:26;;26586:9;26580:4;26576:20;26572:1;26561:9;26557:17;26550:47;26614:131;26740:4;26614:131;:::i;:::-;26606:139;;26504:248;;;:::o;26758:419::-;;26962:2;26951:9;26947:18;26939:26;;27011:9;27005:4;27001:20;26997:1;26986:9;26982:17;26975:47;27039:131;27165:4;27039:131;:::i;:::-;27031:139;;26929:248;;;:::o;27183:419::-;;27387:2;27376:9;27372:18;27364:26;;27436:9;27430:4;27426:20;27422:1;27411:9;27407:17;27400:47;27464:131;27590:4;27464:131;:::i;:::-;27456:139;;27354:248;;;:::o;27608:419::-;;27812:2;27801:9;27797:18;27789:26;;27861:9;27855:4;27851:20;27847:1;27836:9;27832:17;27825:47;27889:131;28015:4;27889:131;:::i;:::-;27881:139;;27779:248;;;:::o;28033:419::-;;28237:2;28226:9;28222:18;28214:26;;28286:9;28280:4;28276:20;28272:1;28261:9;28257:17;28250:47;28314:131;28440:4;28314:131;:::i;:::-;28306:139;;28204:248;;;:::o;28458:419::-;;28662:2;28651:9;28647:18;28639:26;;28711:9;28705:4;28701:20;28697:1;28686:9;28682:17;28675:47;28739:131;28865:4;28739:131;:::i;:::-;28731:139;;28629:248;;;:::o;28883:419::-;;29087:2;29076:9;29072:18;29064:26;;29136:9;29130:4;29126:20;29122:1;29111:9;29107:17;29100:47;29164:131;29290:4;29164:131;:::i;:::-;29156:139;;29054:248;;;:::o;29308:222::-;;29439:2;29428:9;29424:18;29416:26;;29452:71;29520:1;29509:9;29505:17;29496:6;29452:71;:::i;:::-;29406:124;;;;:::o;29536:283::-;;29602:2;29596:9;29586:19;;29644:4;29636:6;29632:17;29751:6;29739:10;29736:22;29715:18;29703:10;29700:34;29697:62;29694:2;;;29762:18;;:::i;:::-;29694:2;29802:10;29798:2;29791:22;29576:243;;;;:::o;29825:311::-;;29992:18;29984:6;29981:30;29978:2;;;30014:18;;:::i;:::-;29978:2;30064:4;30056:6;30052:17;30044:25;;30124:4;30118;30114:15;30106:23;;29907:229;;;:::o;30142:331::-;;30293:18;30285:6;30282:30;30279:2;;;30315:18;;:::i;:::-;30279:2;30400:4;30396:9;30389:4;30381:6;30377:17;30373:33;30365:41;;30461:4;30455;30451:15;30443:23;;30208:265;;;:::o;30479:98::-;;30564:5;30558:12;30548:22;;30537:40;;;:::o;30583:99::-;;30669:5;30663:12;30653:22;;30642:40;;;:::o;30688:168::-;;30805:6;30800:3;30793:19;30845:4;30840:3;30836:14;30821:29;;30783:73;;;;:::o;30862:169::-;;30980:6;30975:3;30968:19;31020:4;31015:3;31011:14;30996:29;;30958:73;;;;:::o;31037:148::-;;31176:3;31161:18;;31151:34;;;;:::o;31191:305::-;;31250:20;31268:1;31250:20;:::i;:::-;31245:25;;31284:20;31302:1;31284:20;:::i;:::-;31279:25;;31438:1;31370:66;31366:74;31363:1;31360:81;31357:2;;;31444:18;;:::i;:::-;31357:2;31488:1;31485;31481:9;31474:16;;31235:261;;;;:::o;31502:185::-;;31559:20;31577:1;31559:20;:::i;:::-;31554:25;;31593:20;31611:1;31593:20;:::i;:::-;31588:25;;31632:1;31622:2;;31637:18;;:::i;:::-;31622:2;31679:1;31676;31672:9;31667:14;;31544:143;;;;:::o;31693:191::-;;31753:20;31771:1;31753:20;:::i;:::-;31748:25;;31787:20;31805:1;31787:20;:::i;:::-;31782:25;;31826:1;31823;31820:8;31817:2;;;31831:18;;:::i;:::-;31817:2;31876:1;31873;31869:9;31861:17;;31738:146;;;;:::o;31890:96::-;;31956:24;31974:5;31956:24;:::i;:::-;31945:35;;31935:51;;;:::o;31992:90::-;;32069:5;32062:13;32055:21;32044:32;;32034:48;;;:::o;32088:149::-;;32164:66;32157:5;32153:78;32142:89;;32132:105;;;:::o;32243:126::-;;32320:42;32313:5;32309:54;32298:65;;32288:81;;;:::o;32375:77::-;;32441:5;32430:16;;32420:32;;;:::o;32458:154::-;32542:6;32537:3;32532;32519:30;32604:1;32595:6;32590:3;32586:16;32579:27;32509:103;;;:::o;32618:307::-;32686:1;32696:113;32710:6;32707:1;32704:13;32696:113;;;32795:1;32790:3;32786:11;32780:18;32776:1;32771:3;32767:11;32760:39;32732:2;32729:1;32725:10;32720:15;;32696:113;;;32827:6;32824:1;32821:13;32818:2;;;32907:1;32898:6;32893:3;32889:16;32882:27;32818:2;32667:258;;;;:::o;32931:320::-;;33012:1;33006:4;33002:12;32992:22;;33059:1;33053:4;33049:12;33080:18;33070:2;;33136:4;33128:6;33124:17;33114:27;;33070:2;33198;33190:6;33187:14;33167:18;33164:38;33161:2;;;33217:18;;:::i;:::-;33161:2;32982:269;;;;:::o;33257:233::-;;33319:24;33337:5;33319:24;:::i;:::-;33310:33;;33365:66;33358:5;33355:77;33352:2;;;33435:18;;:::i;:::-;33352:2;33482:1;33475:5;33471:13;33464:20;;33300:190;;;:::o;33496:176::-;;33545:20;33563:1;33545:20;:::i;:::-;33540:25;;33579:20;33597:1;33579:20;:::i;:::-;33574:25;;33618:1;33608:2;;33623:18;;:::i;:::-;33608:2;33664:1;33661;33657:9;33652:14;;33530:142;;;;:::o;33678:180::-;33726:77;33723:1;33716:88;33823:4;33820:1;33813:15;33847:4;33844:1;33837:15;33864:180;33912:77;33909:1;33902:88;34009:4;34006:1;33999:15;34033:4;34030:1;34023:15;34050:180;34098:77;34095:1;34088:88;34195:4;34192:1;34185:15;34219:4;34216:1;34209:15;34236:180;34284:77;34281:1;34274:88;34381:4;34378:1;34371:15;34405:4;34402:1;34395:15;34422:102;;34514:2;34510:7;34505:2;34498:5;34494:14;34490:28;34480:38;;34470:54;;;:::o;34530:122::-;34603:24;34621:5;34603:24;:::i;:::-;34596:5;34593:35;34583:2;;34642:1;34639;34632:12;34583:2;34573:79;:::o;34658:116::-;34728:21;34743:5;34728:21;:::i;:::-;34721:5;34718:32;34708:2;;34764:1;34761;34754:12;34708:2;34698:76;:::o;34780:120::-;34852:23;34869:5;34852:23;:::i;:::-;34845:5;34842:34;34832:2;;34890:1;34887;34880:12;34832:2;34822:78;:::o;34906:122::-;34979:24;34997:5;34979:24;:::i;:::-;34972:5;34969:35;34959:2;;35018:1;35015;35008:12;34959:2;34949:79;:::o
Swarm Source
ipfs://9b4296553d7f2502fdb17e42515b839e791e19599d0c10ee314c49d80813b2fc
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.