Overview
TokenID
664
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 Name:
UreeqaCollectibleNFTv2
Compiler Version
v0.8.3+commit.8d00100c
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-24 */ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // 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 || ERC721.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 || ERC721.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/utils/structs/EnumerableSet.sol pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: contracts/OwnershipAgreementv3.sol pragma solidity >=0.7.0 <0.9.0; /// @title Creates an Ownership Agreement, with an optional Operator role /// @author Dr. Jonathan Shahen at UREEQA /// @notice TODO /// @dev Maximum number of Owners is set to 255 (unit8.MAX_VALUE) contract OwnershipAgreementv3 { /* * Storage */ // ResolutionTypes: uint constant private resTypeNone = 0; // This indicates that the resolution hasn't been set (default value) uint constant private resTypeAddOwner = 1; uint constant private resTypeRemoveOwner = 2; uint constant private resTypeReplaceOwner = 3; uint constant private resTypeAddOperator = 4; uint constant private resTypeRemoveOperator = 5; uint constant private resTypeReplaceOperator = 6; uint constant private resTypeUpdateThreshold = 7; uint constant private resTypeUpdateTransactionLimit = 8; uint constant private resTypePause = 9; uint constant private resTypeUnpause = 10; uint constant private resTypeCustom = 1000; // Custom resoutions for each subclass struct Resolution { // Has the resolution already been passed bool passed; // The type of resolution uint256 resType; // The old address, can be address(0). oldAddress and newAddress cannot both equal address(0). address oldAddress; // The new address, can be address(0). oldAddress and newAddress cannot both equal address(0). address newAddress; // Able to store extra information for custom resolutions bytes32[] extra; } using EnumerableSet for EnumerableSet.AddressSet; // Set of owners // NOTE: we utilize a set, so we can enumerate the owners and so that the list only contains one instance of an account // NOTE: address(0) is not a valid owner EnumerableSet.AddressSet private _owners; // Value to indicate if the smart contract is paused bool private _paused; // An address, usually controlled by a computer, that performs regular/automated operations within the smart contract // NOTE: address(0) is not a valid operator EnumerableSet.AddressSet private _operators; // Limit the number of operators uint256 public operatorLimit = 1; // The number of owners it takes to come to an agreement uint256 public ownerAgreementThreshold = 1; // Limit per Transaction to impose // A limit of zero means no limit imposed uint256 public transactionLimit = 0; // Stores each vote for each resolution number (int) mapping(address => mapping(uint256 => bool)) public ownerVotes; // The next available resolution number uint256 public nextResolution = 1; mapping(address => uint256) lastOwnerResolutionNumber; // Stores the resolutions mapping(uint256 => Resolution) public resolutions; // //////////////////////////////////////////////////// // EVENTS // //////////////////////////////////////////////////// event OwnerAddition(address owner); event OwnerRemoval(address owner); event OwnerReplacement(address oldOwner, address newOwner); event OperatorAddition(address newOperator); event OperatorRemoval(address oldOperator); event OperatorReplacement(address oldOperator, address newOperator); event UpdateThreshold(uint256 newThreshold); event UpdateNumberOfOperators(uint256 newOperators); event UpdateTransactionLimit(uint256 newLimit); /// @dev Emitted when the pause is triggered by `account`. event Paused(address account); /// @dev Emitted when the pause is lifted by `account`. event Unpaused(address account); // //////////////////////////////////////////////////// // MODIFIERS // //////////////////////////////////////////////////// function isValidAddress(address newAddr) public pure { require(newAddr != address(0), "Invaild Address"); } modifier onlyOperators() { isValidAddress(msg.sender); require( EnumerableSet.contains(_operators, msg.sender) == true, "Only the operator can run this function." ); _; } modifier onlyOwners() { isValidAddress(msg.sender); require( EnumerableSet.contains(_owners, msg.sender) == true, "Only an owner can run this function." ); _; } modifier onlyOwnersOrOperator() { isValidAddress(msg.sender); require( EnumerableSet.contains(_operators, msg.sender) == true || EnumerableSet.contains(_owners, msg.sender) == true, "Only an owner or the operator can run this function." ); _; } modifier ownerExists(address thisOwner) { require( EnumerableSet.contains(_owners, thisOwner) == true, "Owner does not exists." ); _; } /** * @dev Modifier to make a function callable only when the contract is not paused. * Requirements: The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Smart Contract is paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * Requirements: The contract must be paused. */ modifier whenPaused() { require(_paused, "Smart Contract is not paused"); _; } /// @dev Modifier to make a function callable only when the amount is within the transaction limit modifier withinLimit(uint256 amount) { require( transactionLimit == 0 || amount <= transactionLimit, "Amount is over the transaction limit" ); _; } // //////////////////////////////////////////////////// // CONSTRUCTOR // //////////////////////////////////////////////////// constructor() { _addOwner(msg.sender); _paused = false; } // //////////////////////////////////////////////////// // VIEW FUNCTIONS // //////////////////////////////////////////////////// /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { if(EnumerableSet.length(_owners) == 0) return address(0); return EnumerableSet.at(_owners, 0); } /// @dev Returns list of owners. /// @return List of owner addresses. function getOwners() public view returns (address[] memory) { uint256 len = EnumerableSet.length(_owners); address[] memory o = new address[](len); for (uint256 i = 0; i < len; i++) { o[i] = EnumerableSet.at(_owners, i); } return o; } /// @dev Returns the number of owners. /// @return Number of owners. function getNumberOfOwners() public view returns (uint) { return EnumerableSet.length(_owners); } /// @dev Returns list of owners. /// @return List of owner addresses. function getOperators() public view returns (address[] memory) { uint256 len = EnumerableSet.length(_operators); address[] memory o = new address[](len); for (uint256 i = 0; i < len; i++) { o[i] = EnumerableSet.at(_operators, i); } return o; } /// @dev Returns the number of operators. /// @return Number of operators. function getNumberOfOperators() public view returns (uint8) { return uint8(EnumerableSet.length(_operators)); } /// @dev How many owners does it take to approve a resolution /// @return minimum number of owner votes function getVoteThreshold() public view returns (uint256) { return ownerAgreementThreshold; } /// @dev Returns the maximum amount a transaction can contain /// @return maximum amount or zero is no limit function getTransactionLimit() public view returns (uint256) { return transactionLimit; } /// @dev Returns the next available resolution. /// @return The next available resolution number function getNextResolutionNumber() public view returns (uint256) { return nextResolution; } /// @dev Returns the next available resolution. /// @return The next available resolution number function getLastOwnerResolutionNumber(address thisOwner) public view returns (uint256) { return lastOwnerResolutionNumber[thisOwner]; } /// @dev Returns true if the contract is paused, and false otherwise. function paused() public view returns (bool) { return _paused; } /// @dev Helper function to fail if resolution number is already in use. function resolutionAlreadyUsed(uint256 resNum) public view { require( // atleast one of the address must not be equal to address(0) !(resolutions[resNum].oldAddress != address(0) || resolutions[resNum].newAddress != address(0)), "Resolution is already in use." ); } function isResolutionPassed(uint256 resNum) public view returns (bool) { return resolutions[resNum].passed; } function canResolutionPass(uint256 resNum) public view returns (bool) { uint256 voteCount = 0; uint256 len = EnumerableSet.length(_owners); for (uint256 i = 0; i < len; i++) { if (ownerVotes[EnumerableSet.at(_owners, i)][resNum] == true) { voteCount++; } } return voteCount >= ownerAgreementThreshold; } // //////////////////////////////////////////////////// // PUBLIC FUNCTIONS // //////////////////////////////////////////////////// /// @notice Vote Yes on a Resolution. /// @dev The owner who tips the agreement threshold will pay the gas for performing the resolution. /// @return TRUE if the resolution passed function voteResolution(uint256 resNum) public onlyOwners() returns (bool) { ownerVotes[msg.sender][resNum] = true; // If the reolution has already passed, then do nothing if (isResolutionPassed(resNum)) { return true; } // If the resolution can now be passed, then do so if (canResolutionPass(resNum)) { _performResolution(resNum); return true; } // The resolution cannot be passed yet return false; } /// @dev Create a resolution to add an owner. Performs addition if threshold is 1 or zero. function createResolutionAddOwner(address newOwner) public onlyOwners() { isValidAddress(newOwner); require( !EnumerableSet.contains(_owners, newOwner), "newOwner already exists." ); createResolution(resTypeAddOwner, address(0), newOwner, new bytes32[](0)); } /// @dev Create a resolution to remove an owner. Performs removal if threshold is 1 or zero. /// @dev Updates the threshold to keep it less than or equal to the number of new owners function createResolutionRemoveOwner(address oldOwner) public onlyOwners() { isValidAddress(oldOwner); require(getNumberOfOwners() > 1, "Must always be one owner"); require( EnumerableSet.contains(_owners, oldOwner), "owner is not an owner." ); createResolution(resTypeRemoveOwner, oldOwner, address(0), new bytes32[](0)); } /// @dev Create a resolution to repalce an owner. Performs replacement if threshold is 1 or zero. function createResolutionReplaceOwner(address oldOwner, address newOwner) public onlyOwners() { isValidAddress(oldOwner); isValidAddress(newOwner); require( EnumerableSet.contains(_owners, oldOwner), "oldOwner is not an owner." ); require( !EnumerableSet.contains(_owners, newOwner), "newOwner already exists." ); createResolution(resTypeReplaceOwner, oldOwner, newOwner, new bytes32[](0)); } /// @dev Create a resolution to add an operator. Performs addition if threshold is 1 or zero. function createResolutionAddOperator(address newOperator) public onlyOwners() { isValidAddress(newOperator); require( !EnumerableSet.contains(_operators, newOperator), "newOperator already exists." ); createResolution(resTypeAddOperator, address(0), newOperator, new bytes32[](0)); } /// @dev Create a resolution to remove the operator. Performs removal if threshold is 1 or zero. function createResolutionRemoveOperator(address operator) public onlyOwners() { require( EnumerableSet.contains(_operators, operator), "operator is not an Operator." ); createResolution(resTypeRemoveOperator, operator, address(0), new bytes32[](0)); } /// @dev Create a resolution to replace the operator account. Performs replacement if threshold is 1 or zero. function createResolutionReplaceOperator( address oldOperator, address newOperator ) public onlyOwners() { isValidAddress(oldOperator); isValidAddress(newOperator); require( EnumerableSet.contains(_operators, oldOperator), "oldOperator is not an Operator." ); require( !EnumerableSet.contains(_operators, newOperator), "newOperator already exists." ); createResolution(resTypeReplaceOperator, oldOperator, newOperator,new bytes32[](0)); } /// @dev Create a resolution to update the transaction limit. Performs update if threshold is 1 or zero. function createResolutionUpdateTransactionLimit(uint160 newLimit) public onlyOwners() { createResolution( resTypeUpdateTransactionLimit, address(0), address(newLimit), new bytes32[](0) ); } /// @dev Create a resolution to update the owner agreement threshold. Performs update if threshold is 1 or zero. function createResolutionUpdateThreshold(uint160 threshold) public onlyOwners() { createResolution( resTypeUpdateThreshold, address(0), address(threshold), new bytes32[](0) ); } /// @dev Pause the contract. Does not require owner agreement. function pause() public onlyOwners() { _pause(); } /// @dev Create a resolution to unpause the contract. Performs update if threshold is 1 or zero. function createResolutionUnpause() public onlyOwners() { createResolution(resTypeUnpause, address(1), address(1), new bytes32[](0)); } // //////////////////////////////////////////////////// // INTERNAL FUNCTIONS // //////////////////////////////////////////////////// /// @dev Create a resolution and check if we can call perofrm the resolution with 1 vote. function createResolution( uint256 resType, address oldAddress, address newAddress, bytes32[] memory extra ) internal { uint256 resNum = nextResolution; nextResolution++; resolutionAlreadyUsed(resNum); resolutions[resNum].resType = resType; resolutions[resNum].oldAddress = oldAddress; resolutions[resNum].newAddress = newAddress; resolutions[resNum].extra = extra; ownerVotes[msg.sender][resNum] = true; lastOwnerResolutionNumber[msg.sender] = resNum; // Check if agreement is already reached if (ownerAgreementThreshold <= 1) { _performResolution(resNum); } } /// @dev Performs the resolution and then marks it as passed. No checks prevent it from performing the resolutions. function _performResolution(uint256 resNum) internal { if (resolutions[resNum].resType == resTypeAddOwner) { _addOwner(resolutions[resNum].newAddress); } else if (resolutions[resNum].resType == resTypeRemoveOwner) { _removeOwner(resolutions[resNum].oldAddress); } else if (resolutions[resNum].resType == resTypeReplaceOwner) { _replaceOwner( resolutions[resNum].oldAddress, resolutions[resNum].newAddress ); } else if (resolutions[resNum].resType == resTypeAddOperator) { _addOperator(resolutions[resNum].newAddress); } else if (resolutions[resNum].resType == resTypeRemoveOperator) { _removeOperator(resolutions[resNum].oldAddress); } else if (resolutions[resNum].resType == resTypeReplaceOperator) { _replaceOperator( resolutions[resNum].oldAddress, resolutions[resNum].newAddress ); } else if ( resolutions[resNum].resType == resTypeUpdateTransactionLimit ) { _updateTransactionLimit(uint160(resolutions[resNum].newAddress)); } else if (resolutions[resNum].resType == resTypeUpdateThreshold) { _updateThreshold(uint160(resolutions[resNum].newAddress)); } else if (resolutions[resNum].resType == resTypePause) { _pause(); } else if (resolutions[resNum].resType == resTypeUnpause) { _unpause(); } else { _customResolutions(resNum); return; } resolutions[resNum].passed = true; } /** * @dev Able to handle Custom Resolutions. * * Requirements: * * - Must set the resolution passed: resolutions[resNum].passed = true; * - You should check the resolutions[resNum].resType to know what to perform */ function _customResolutions(uint256 resNum) internal virtual {} /// @dev function _addOwner(address newOwner) internal { EnumerableSet.add(_owners, newOwner); emit OwnerAddition(newOwner); } /// @dev function _removeOwner(address newOwner) internal { EnumerableSet.remove(_owners, newOwner); emit OwnerRemoval(newOwner); uint numOwners = getNumberOfOwners(); if (ownerAgreementThreshold > numOwners) { _updateThreshold(numOwners); } } /// @dev function _replaceOwner(address oldOwner, address newOwner) internal { EnumerableSet.remove(_owners, oldOwner); EnumerableSet.add(_owners, newOwner); emit OwnerReplacement(oldOwner, newOwner); } /// @dev function _addOperator(address operator) internal { EnumerableSet.add(_operators, operator); emit OperatorAddition(operator); } /// @dev function _removeOperator(address operator) internal { EnumerableSet.remove(_operators, operator); emit OperatorRemoval(operator); } /// @dev function _replaceOperator(address oldOperator, address newOperator) internal { emit OperatorReplacement(oldOperator, newOperator); EnumerableSet.remove(_operators, oldOperator); EnumerableSet.add(_operators, newOperator); } /// @dev Internal function to update and emit the new transaction limit function _updateTransactionLimit(uint256 newLimit) internal { emit UpdateTransactionLimit(newLimit); transactionLimit = newLimit; } /// @dev Internal function to update and emit the new voting threshold function _updateThreshold(uint threshold) internal { require( threshold <= getNumberOfOwners(), "Unable to set threshold above the number of owners" ); emit UpdateThreshold(threshold); ownerAgreementThreshold = threshold; } /// @dev Internal function to update and emit the new voting threshold function _updateNumberOfOperators(uint160 numOperators) internal { require( numOperators >= getNumberOfOperators(), "Unable to set number of Operators below the number of operators" ); emit UpdateNumberOfOperators(numOperators); operatorLimit = numOperators; } /** * @dev Triggers stopped state. * * Requirements: The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev Returns to normal state. * * Requirements: The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(msg.sender); } } // File: contracts/UreeqaCollectibleNFTsv2.sol pragma solidity >=0.7.0 <0.9.0; /// @title Official Collectible NFTs /// @author Dr. Jonathan Shahen at UREEQA /// @notice Collectible NFTs that are officially connected to a Validated UREEQA NFT /// @dev Check the Package of Proof associated with the UREEQA Validated NFT before Purchase contract UreeqaCollectibleNFTv2 is OwnershipAgreementv3, ERC721 { // //////////////////////////////////////////////////// // STORAGE // //////////////////////////////////////////////////// string private _baseUrl; // Owner Validated NFT mapping(uint256 => address) _validatedNFTAddress; mapping(uint256 => uint256) _validatedNFTID; // Attached File mapping(uint256 => bytes32) _attachedFileHash; // //////////////////////////////////////////////////// // CONSTRUCTOR // //////////////////////////////////////////////////// /// @dev Add an Operator if `operator` is not equal to address(0) constructor( string memory name, string memory symbol, address operator ) ERC721(name, symbol) { _baseUrl = string( abi.encodePacked( "https://nft.ureeqa.com/contract/", toString(abi.encodePacked(address(this))), "/" ) ); if (operator != address(0)) { createResolutionAddOperator(operator); } } // //////////////////////////////////////////////////// // EVENTS // //////////////////////////////////////////////////// event UpdateNFT( address oldContract, uint256 oldNFTId, address newContract, uint256 newNFTId ); event UpdateFileHash(bytes32 oldFileHash, bytes32 newFileHash); // //////////////////////////////////////////////////// // MODIFIERS // //////////////////////////////////////////////////// // //////////////////////////////////////////////////// // VIEW FUNCTIONS // //////////////////////////////////////////////////// /// @dev returns the Contract's URI function contractURI() public view returns (string memory) { return _baseUrl; } /// @dev Returns if an NFT exists (was minted) function exists(uint256 tokenId) public view returns (bool) { return _exists(tokenId); } /// @dev Returns the Smart Cotnract address and the NFT ID of the parent Validated NFT function getValidatedNFT(uint256 tokenId) public view returns (address, uint256) { return (_validatedNFTAddress[tokenId], _validatedNFTID[tokenId]); } /// @dev Returns the Smart Cotnract address and the NFT ID of the parent Validated NFT function getAttachedFileHash(uint256 tokenId) public view returns (bytes32) { return _attachedFileHash[tokenId]; } // //////////////////////////////////////////////////// // PUBLIC FUNCTIONS // //////////////////////////////////////////////////// // //////////////////////////////////////////////////// // OPERATOR FUNCTIONS // //////////////////////////////////////////////////// /** * @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} nad {UpdateNFT} events. */ function safeMint( address to, uint256 tokenId, address validatedAddress, uint256 validatedID, bytes32 attachedFileHash ) public onlyOperators() { _safeMint(to, tokenId, ""); emit UpdateNFT( _validatedNFTAddress[tokenId], _validatedNFTID[tokenId], validatedAddress, validatedID ); _validatedNFTAddress[tokenId] = validatedAddress; _validatedNFTID[tokenId] = validatedID; _attachedFileHash[tokenId] = attachedFileHash; } /** * @dev Safely mints `tokenId`s and transfers it to `to`s. * * 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 safeMintBatch( address[] calldata to, uint256[] calldata tokenId, address[] calldata validatedAddress, uint256[] calldata validatedID, bytes32[] calldata attachedFileHash ) public onlyOperators() { require( to.length == tokenId.length && validatedAddress.length == tokenId.length && attachedFileHash.length == tokenId.length && validatedAddress.length == validatedID.length, "To and TokenID must have the same length" ); for (uint256 i = 0; i < to.length; i++) { _safeMint(to[i], tokenId[i], ""); emit UpdateNFT( _validatedNFTAddress[tokenId[i]], _validatedNFTID[tokenId[i]], validatedAddress[i], validatedID[i] ); _validatedNFTAddress[tokenId[i]] = validatedAddress[i]; _validatedNFTID[tokenId[i]] = validatedID[i]; _attachedFileHash[tokenId[i]] = attachedFileHash[i]; } } /** * @dev Updates the connected Validated NFT for a Collectible * * Emits a {UpdateNFT} event. */ function updateValidatedNFT( uint256 tokenId, address validatedAddress, uint256 validatedID ) public onlyOperators() { emit UpdateNFT( _validatedNFTAddress[tokenId], _validatedNFTID[tokenId], validatedAddress, validatedID ); _validatedNFTAddress[tokenId] = validatedAddress; _validatedNFTID[tokenId] = validatedID; } /** * @dev Batch Updates the connected Validated NFT for a Collectible * * Emits a {UpdateNFT} event. */ function updateValidatedNFTBatch( uint256[] calldata tokenId, address[] calldata validatedAddress, uint256[] calldata validatedID ) public onlyOperators() { require( validatedAddress.length == tokenId.length && validatedAddress.length == validatedID.length, "Input arrays must have the same length" ); for (uint256 i = 0; i < tokenId.length; i++) { emit UpdateNFT( _validatedNFTAddress[tokenId[i]], _validatedNFTID[tokenId[i]], validatedAddress[i], validatedID[i] ); _validatedNFTAddress[tokenId[i]] = validatedAddress[i]; _validatedNFTID[tokenId[i]] = validatedID[i]; } } /** * @dev Updates the attached File Hash for a Collectible * * Emits a {UpdateFileHash} event. */ function updateAttachedFileHash(uint256 tokenId, bytes32 fileHash) public onlyOperators() { emit UpdateFileHash(_attachedFileHash[tokenId], fileHash); _attachedFileHash[tokenId] = fileHash; } /** * @dev Batch Updates the attached File Hash for a Collectible * * Emits a {UpdateFileHash} event. */ function updateAttachedFileHashBatch( uint256[] calldata tokenId, bytes32[] calldata fileHash ) public onlyOperators() { require( fileHash.length == tokenId.length, "Input arrays must have the same length" ); for (uint256 i = 0; i < tokenId.length; i++) { emit UpdateFileHash(_attachedFileHash[tokenId[i]], fileHash[i]); _attachedFileHash[tokenId[i]] = fileHash[i]; } } // //////////////////////////////////////////////////// // INTERNAL FUNCTIONS // //////////////////////////////////////////////////// /** * @dev Base URI for computing {tokenURI}. */ function _baseURI() internal view override returns (string memory) { return _baseUrl; } function toString(bytes memory data) public pure returns (string memory) { bytes memory alphabet = "0123456789abcdef"; bytes memory str = new bytes(2 + data.length * 2); str[0] = "0"; str[1] = "x"; for (uint256 i = 0; i < data.length; i++) { str[2 + i * 2] = alphabet[uint256(uint8(data[i] >> 4))]; str[3 + i * 2] = alphabet[uint256(uint8(data[i] & 0x0f))]; } return string(str); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"operator","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":false,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorAddition","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOperator","type":"address"}],"name":"OperatorRemoval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOperator","type":"address"},{"indexed":false,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorReplacement","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"OwnerAddition","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"OwnerRemoval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerReplacement","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"oldFileHash","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"newFileHash","type":"bytes32"}],"name":"UpdateFileHash","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldNFTId","type":"uint256"},{"indexed":false,"internalType":"address","name":"newContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"newNFTId","type":"uint256"}],"name":"UpdateNFT","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newOperators","type":"uint256"}],"name":"UpdateNumberOfOperators","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"UpdateThreshold","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"UpdateTransactionLimit","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"resNum","type":"uint256"}],"name":"canResolutionPass","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator","type":"address"}],"name":"createResolutionAddOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"createResolutionAddOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"createResolutionRemoveOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"oldOwner","type":"address"}],"name":"createResolutionRemoveOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"oldOperator","type":"address"},{"internalType":"address","name":"newOperator","type":"address"}],"name":"createResolutionReplaceOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"oldOwner","type":"address"},{"internalType":"address","name":"newOwner","type":"address"}],"name":"createResolutionReplaceOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createResolutionUnpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint160","name":"threshold","type":"uint160"}],"name":"createResolutionUpdateThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint160","name":"newLimit","type":"uint160"}],"name":"createResolutionUpdateTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","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":"getAttachedFileHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"thisOwner","type":"address"}],"name":"getLastOwnerResolutionNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextResolutionNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfOperators","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfOwners","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOperators","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTransactionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getValidatedNFT","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getVoteThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"resNum","type":"uint256"}],"name":"isResolutionPassed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddr","type":"address"}],"name":"isValidAddress","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextResolution","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerAgreementThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"ownerVotes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"resNum","type":"uint256"}],"name":"resolutionAlreadyUsed","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"resolutions","outputs":[{"internalType":"bool","name":"passed","type":"bool"},{"internalType":"uint256","name":"resType","type":"uint256"},{"internalType":"address","name":"oldAddress","type":"address"},{"internalType":"address","name":"newAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"validatedAddress","type":"address"},{"internalType":"uint256","name":"validatedID","type":"uint256"},{"internalType":"bytes32","name":"attachedFileHash","type":"bytes32"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"},{"internalType":"address[]","name":"validatedAddress","type":"address[]"},{"internalType":"uint256[]","name":"validatedID","type":"uint256[]"},{"internalType":"bytes32[]","name":"attachedFileHash","type":"bytes32[]"}],"name":"safeMintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"bytes","name":"data","type":"bytes"}],"name":"toString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transactionLimit","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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes32","name":"fileHash","type":"bytes32"}],"name":"updateAttachedFileHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"},{"internalType":"bytes32[]","name":"fileHash","type":"bytes32[]"}],"name":"updateAttachedFileHashBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"validatedAddress","type":"address"},{"internalType":"uint256","name":"validatedID","type":"uint256"}],"name":"updateValidatedNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"},{"internalType":"address[]","name":"validatedAddress","type":"address[]"},{"internalType":"uint256[]","name":"validatedID","type":"uint256[]"}],"name":"updateValidatedNFTBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"resNum","type":"uint256"}],"name":"voteResolution","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260016005556001600655600060075560016009553480156200002557600080fd5b50604051620051d2380380620051d283398101604081905262000048916200110f565b828262000055336200011e565b6002805460ff1916905581516200007490600c90602085019062000f9d565b5080516200008a90600d90602084019062000f9d565b50506040516001600160601b03193060601b166020820152620000c1915060340160408051601f1981840301815291905262000177565b604051602001620000d3919062001198565b60405160208183030381529060405260129080519060200190620000f992919062000f9d565b506001600160a01b038116156200011557620001158162000427565b505050620012fb565b620001366000826200054260201b620024a31760201c565b506040516001600160a01b03821681527ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d906020015b60405180910390a150565b60408051808201909152601081526f181899199a1a9b1b9c1cb0b131b232b360811b6020820152815160609190600090620001b490600262001205565b620001c1906002620011ea565b6001600160401b03811115620001e757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801562000212576020820181803683370190505b509050600360fc1b816000815181106200023c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106200027a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060005b84518110156200041f57826004868381518110620002c257634e487b7160e01b600052603260045260246000fd5b016020015182516001600160f81b031990911690911c60f81c908110620002f957634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916826200031683600262001205565b62000323906002620011ea565b815181106200034257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350828582815181106200037b57634e487b7160e01b600052603260045260246000fd5b602091010151815160f89190911c600f16908110620003aa57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b03191682620003c783600262001205565b620003d4906003620011ea565b81518110620003f357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350806200041681620012b1565b91505062000294565b509392505050565b620004323362000562565b6200044a600033620005ac60201b620024b81760201c565b1515600114620004ad5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c7920616e206f776e65722063616e2072756e20746869732066756e637460448201526334b7b71760e11b60648201526084015b60405180910390fd5b620004b88162000562565b620004d0600382620005ac60201b620024b81760201c565b156200051f5760405162461bcd60e51b815260206004820152601b60248201527f6e65774f70657261746f7220616c7265616479206578697374732e00000000006044820152606401620004a4565b604080516000808252602082019092526200053f916004918490620005cf565b50565b600062000559836001600160a01b038416620006a7565b90505b92915050565b6001600160a01b0381166200053f5760405162461bcd60e51b815260206004820152600f60248201526e496e7661696c64204164647265737360881b6044820152606401620004a4565b6001600160a01b0381166000908152600183016020526040812054151562000559565b600980549081906000620005e383620012b1565b90915550620005f4905081620006f9565b6000818152600b60209081526040909120600181018790556002810180546001600160a01b038089166001600160a01b03199283161790925560038301805492881692909116919091179055835162000656926004909201918501906200102c565b503360008181526008602090815260408083208584528252808320805460ff19166001908117909155938352600a909152902082905560065411620006a057620006a0816200078a565b5050505050565b6000818152600183016020526040812054620006f0575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200055c565b5060006200055c565b6000818152600b60205260409020600201546001600160a01b03161515806200073b57506000818152600b60205260409020600301546001600160a01b031615155b156200053f5760405162461bcd60e51b815260206004820152601d60248201527f5265736f6c7574696f6e20697320616c726561647920696e207573652e0000006044820152606401620004a4565b6000818152600b602052604090206001908101541415620007d1576000818152600b6020526040902060030154620007cb906001600160a01b03166200011e565b620009fe565b6000818152600b60205260409020600101546002141562000812576000818152600b6020526040902060020154620007cb906001600160a01b031662000a1a565b6000818152600b6020526040902060010154600314156200085e576000818152600b602052604090206002810154600390910154620007cb916001600160a01b03908116911662000a97565b6000818152600b6020526040902060010154600414156200089f576000818152600b6020526040902060030154620007cb906001600160a01b031662000b10565b6000818152600b602052604090206001015460051415620008e0576000818152600b6020526040902060020154620007cb906001600160a01b031662000b63565b6000818152600b6020526040902060010154600614156200092c576000818152600b602052604090206002810154600390910154620007cb916001600160a01b03908116911662000bb6565b6000818152600b6020526040902060010154600814156200096d576000818152600b6020526040902060030154620007cb906001600160a01b031662000c2f565b6000818152600b602052604090206001015460071415620009ae576000818152600b6020526040902060030154620007cb906001600160a01b031662000c67565b6000818152600b602052604090206001015460091415620009d357620007cb62000d15565b6000818152600b6020526040902060010154600a1415620009f857620007cb62000dad565b6200053f565b6000818152600b60205260409020805460ff1916600117905550565b62000a3260008262000e3c60201b620024da1760201c565b506040516001600160a01b03821681527f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b909060200160405180910390a1600062000a7b62000e53565b905080600654111562000a935762000a938162000c67565b5050565b62000aaf60008362000e3c60201b620024da1760201c565b5062000ac86000826200054260201b620024a31760201c565b50604080516001600160a01b038085168252831660208201527f1b82188083c6040dda91df3d142280a20fa00e5a433eb921fdbf2e4ad1db45e5910160405180910390a15050565b62000b286003826200054260201b620024a31760201c565b506040516001600160a01b03821681527fe96a56aa17dd8ae64ac3a51347e8e8a03d52f1cb2acdf8ed49b20d55662ebecc906020016200016c565b62000b7b60038262000e3c60201b620024da1760201c565b506040516001600160a01b03821681527f108286147377add4f5f7bcdd7b6104dc6bdac3443e499142a612d418aa0be154906020016200016c565b604080516001600160a01b038085168252831660208201527f409833df5b08419a3bd86d34683f91767845e813a29d30d8a4338fba95158d8a910160405180910390a162000c1160038362000e3c60201b620024da1760201c565b5062000c2a6003826200054260201b620024a31760201c565b505050565b6040518181527f5ba74490711ccc5e81b24b40b8c5d2bd282981e4bc080dd8789bb10c1dfc2ea99060200160405180910390a1600755565b62000c7162000e53565b81111562000cdd5760405162461bcd60e51b815260206004820152603260248201527f556e61626c6520746f20736574207468726573686f6c642061626f766520746860448201527165206e756d626572206f66206f776e65727360701b6064820152608401620004a4565b6040518181527fcfbc3e24bcdbf875f7af2b101605919fdbd3cb0b217ae54c372ae49417c58d019060200160405180910390a1600655565b60025460ff161562000d6a5760405162461bcd60e51b815260206004820152601860248201527f536d61727420436f6e74726163742069732070617573656400000000000000006044820152606401620004a4565b6002805460ff191660011790556040513381527f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258906020015b60405180910390a1565b60025460ff1662000e015760405162461bcd60e51b815260206004820152601c60248201527f536d61727420436f6e7472616374206973206e6f7420706175736564000000006044820152606401620004a4565b6002805460ff191690556040513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9060200162000da3565b600062000559836001600160a01b03841662000e71565b600062000e6c600062000f9260201b620024ef1760201c565b905090565b6000818152600183016020526040812054801562000f8757600062000e9860018362001227565b855490915060009062000eae9060019062001227565b9050600086600001828154811062000ed657634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811062000f0857634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526001890190915260409020849055865487908062000f4a57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506200055c565b60009150506200055c565b60006200055c825490565b82805462000fab9062001274565b90600052602060002090601f01602090048101928262000fcf57600085556200101a565b82601f1062000fea57805160ff19168380011785556200101a565b828001600101855582156200101a579182015b828111156200101a57825182559160200191906001019062000ffd565b506200102892915062001069565b5090565b8280548282559060005260206000209081019282156200101a57916020028201828111156200101a57825182559160200191906001019062000ffd565b5b808211156200102857600081556001016200106a565b600082601f83011262001091578081fd5b81516001600160401b0380821115620010ae57620010ae620012e5565b604051601f8301601f19908116603f01168101908282118183101715620010d957620010d9620012e5565b81604052838152866020858801011115620010f2578485fd5b6200110584602083016020890162001241565b9695505050505050565b60008060006060848603121562001124578283fd5b83516001600160401b03808211156200113b578485fd5b620011498783880162001080565b945060208601519150808211156200115f578384fd5b506200116e8682870162001080565b604086015190935090506001600160a01b03811681146200118d578182fd5b809150509250925092565b60007f68747470733a2f2f6e66742e7572656571612e636f6d2f636f6e74726163742f82528251620011d281602085016020870162001241565b602f60f81b6020939091019283015250602101919050565b60008219821115620012005762001200620012cf565b500190565b6000816000190483118215151615620012225762001222620012cf565b500290565b6000828210156200123c576200123c620012cf565b500390565b60005b838110156200125e57818101518382015260200162001244565b838111156200126e576000848401525b50505050565b600181811c908216806200128957607f821691505b60208210811415620012ab57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620012c857620012c8620012cf565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b613ec7806200130b6000396000f3fe608060405234801561001057600080fd5b506004361061035c5760003560e01c80638456cb59116101d3578063b8d95d7e11610104578063ce6f7549116100a2578063e985e9c51161007c578063e985e9c5146107d3578063f1376a98146107e6578063f19605d6146107f9578063fb3da8e5146108025761035c565b8063ce6f7549146107af578063dee80c0f146107c2578063e8a3d485146107cb5761035c565b8063c0d795de116100de578063c0d795de14610778578063c3743cff1461078b578063c87b56dd14610793578063ccc19752146107a65761035c565b8063b8d95d7e1461073d578063baa98fbd14610750578063bc64745f146107585761035c565b806395d89b4111610171578063a4b7f5ce1161014b578063a4b7f5ce14610698578063abefed831461070f578063b85e5b7414610722578063b88d4fde1461072a5761035c565b806395d89b4114610675578063a0e67e2b1461067d578063a22cb465146106855761035c565b80638da5cb5b116101ad5780638da5cb5b146105fb5780638dfc731f1461060357806390e4ed59146106165780639425c9081461061f5761035c565b80638456cb59146105c657806384be5ea9146105ce57806385a1a60b146105e15761035c565b80632e33e1e3116102ad578063654079ba1161024b57806370a082311161022557806370a082311461057a57806371aad10d1461058d57806378f880d2146105a05780637ad8ed1e146105b35761035c565b8063654079ba146105265780636cc8bcff146105545780636f80210a146105675761035c565b80634f558e79116102875780634f558e79146104ed5780635c975abb146105005780635e7d907f1461050b5780636352211e146105135761035c565b80632e33e1e3146104bf5780633a008949146104d257806342842e0e146104da5761035c565b8063095ea7b31161031a57806320336566116102f4578063203365661461047157806323b872dd1461048457806326eb27351461049757806327a099d8146104aa5761035c565b8063095ea7b31461043857806312c290cb1461044b57806312c445151461045e5761035c565b80623f07fa1461036157806301ffc9a714610376578063037af12c1461039e578063053a04f1146103d557806306fdde03146103f8578063081812fc1461040d575b600080fd5b61037461036f366004613616565b610815565b005b6103896103843660046139ab565b610865565b60405190151581526020015b60405180910390f35b6103c76103ac366004613616565b6001600160a01b03166000908152600a602052604090205490565b604051908152602001610395565b6103896103e3366004613a16565b6000908152600b602052604090205460ff1690565b6104006108b9565b6040516103959190613b84565b61042061041b366004613a16565b61094c565b6040516001600160a01b039091168152602001610395565b610374610446366004613745565b6109e1565b610374610459366004613616565b610af7565b61037461046c366004613616565b610bc6565b61037461047f366004613632565b610c09565b61037461049236600461366a565b610d11565b6103746104a5366004613616565b610d42565b6104b2610e35565b6040516103959190613b37565b6103746104cd366004613616565b610f01565b6009546103c7565b6103746104e836600461366a565b610fa0565b6103896104fb366004613a16565b610fbb565b60025460ff16610389565b6006546103c7565b610420610521366004613a16565b610fda565b610389610534366004613745565b600860209081526000928352604080842090915290825290205460ff1681565b610374610562366004613a16565b611051565b610374610575366004613a2e565b6110df565b6103c7610588366004613616565b61119a565b61040061059b3660046139e3565b611221565b6103746105ae366004613a54565b6114b8565b6103746105c1366004613616565b611548565b61037461158b565b6103746105dc366004613632565b6115ca565b6105e96116c9565b60405160ff9091168152602001610395565b6104206116da565b610374610611366004613942565b6116fd565b6103c760055481565b61065661062d366004613a16565b6000908152601360209081526040808320546014909252909120546001600160a01b0390911691565b604080516001600160a01b039093168352602083019190915201610395565b61040061187b565b6104b261188a565b610374610693366004613714565b61194f565b6106de6106a6366004613a16565b600b60205260009081526040902080546001820154600283015460039093015460ff9092169290916001600160a01b03918216911684565b60408051941515855260208501939093526001600160a01b0391821692840192909252166060820152608001610395565b61037461071d3660046137c1565b611a21565b6103c7611dda565b6103746107383660046136aa565b611de6565b61037461074b366004613616565b611e1e565b610374611eb8565b6103c7610766366004613a16565b60009081526015602052604090205490565b610389610786366004613a16565b611efc565b6007546103c7565b6104006107a1366004613a16565b611f86565b6103c760095481565b6103746107bd3660046138ac565b612061565b6103c760065481565b6104006122e7565b6103896107e1366004613632565b6122f6565b6103896107f4366004613a16565b612326565b6103c760075481565b610374610810366004613770565b6123c1565b6001600160a01b0381166108625760405162461bcd60e51b815260206004820152600f60248201526e496e7661696c64204164647265737360881b60448201526064015b60405180910390fd5b50565b60006001600160e01b031982166380ac58cd60e01b148061089657506001600160e01b03198216635b5e139f60e01b145b806108b157506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b6060600c80546108c890613d9a565b80601f01602080910402602001604051908101604052809291908181526020018280546108f490613d9a565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b505050505090505b90565b6000818152600e60205260408120546001600160a01b03166109c55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610859565b506000908152601060205260409020546001600160a01b031690565b60006109ec82610fda565b9050806001600160a01b0316836001600160a01b03161415610a5a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610859565b336001600160a01b0382161480610a765750610a7681336107e1565b610ae85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610859565b610af283836124f9565b505050565b610b0033610815565b610b0b6000336124b8565b1515600114610b2c5760405162461bcd60e51b815260040161085990613cc8565b610b3581610815565b610b406003826124b8565b15610b8d5760405162461bcd60e51b815260206004820152601b60248201527f6e65774f70657261746f7220616c7265616479206578697374732e00000000006044820152606401610859565b6108626004600083815b604051908082528060200260200182016040528015610bc0578160200160208202803683370190505b50612567565b610bcf33610815565b610bda6000336124b8565b1515600114610bfb5760405162461bcd60e51b815260040161085990613cc8565b610862600760008381610b97565b610c1233610815565b610c1d6000336124b8565b1515600114610c3e5760405162461bcd60e51b815260040161085990613cc8565b610c4782610815565b610c5081610815565b610c5b6003836124b8565b610ca75760405162461bcd60e51b815260206004820152601f60248201527f6f6c644f70657261746f72206973206e6f7420616e204f70657261746f722e006044820152606401610859565b610cb26003826124b8565b15610cff5760405162461bcd60e51b815260206004820152601b60248201527f6e65774f70657261746f7220616c7265616479206578697374732e00000000006044820152606401610859565b610d0d600683836000610b97565b5050565b610d1b338261262e565b610d375760405162461bcd60e51b815260040161085990613c77565b610af2838383612705565b610d4b33610815565b610d566000336124b8565b1515600114610d775760405162461bcd60e51b815260040161085990613cc8565b610d8081610815565b6001610d8a611dda565b11610dd75760405162461bcd60e51b815260206004820152601860248201527f4d75737420616c77617973206265206f6e65206f776e657200000000000000006044820152606401610859565b610de26000826124b8565b610e275760405162461bcd60e51b815260206004820152601660248201527537bbb732b91034b9903737ba1030b71037bbb732b91760511b6044820152606401610859565b610862600282600080610b97565b60606000610e4360036124ef565b905060008167ffffffffffffffff811115610e6e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e97578160200160208202803683370190505b50905060005b82811015610efa57610eb06003826128a5565b828281518110610ed057634e487b7160e01b600052603260045260246000fd5b6001600160a01b039092166020928302919091019091015280610ef281613dd5565b915050610e9d565b5091505090565b610f0a33610815565b610f156000336124b8565b1515600114610f365760405162461bcd60e51b815260040161085990613cc8565b610f3f81610815565b610f4a6000826124b8565b15610f925760405162461bcd60e51b81526020600482015260186024820152773732bba7bbb732b91030b63932b0b23c9032bc34b9ba399760411b6044820152606401610859565b610862600160008381610b97565b610af283838360405180602001604052806000815250611de6565b6000818152600e60205260408120546001600160a01b031615156108b1565b6000818152600e60205260408120546001600160a01b0316806108b15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610859565b6000818152600b60205260409020600201546001600160a01b031615158061109257506000818152600b60205260409020600301546001600160a01b031615155b156108625760405162461bcd60e51b815260206004820152601d60248201527f5265736f6c7574696f6e20697320616c726561647920696e207573652e0000006044820152606401610859565b6110e833610815565b6110f36003336124b8565b15156001146111145760405162461bcd60e51b815260040161085990613be9565b600083815260136020908152604080832054601490925291829020549151600080516020613e7283398151915292611159926001600160a01b03169186908690613b0d565b60405180910390a1600092835260136020908152604080852080546001600160a01b0319166001600160a01b03959095169490941790935560149052912055565b60006001600160a01b0382166112055760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610859565b506001600160a01b03166000908152600f602052604090205490565b60408051808201909152601081526f181899199a1a9b1b9c1cb0b131b232b360811b602082015281516060919060009061125c906002613d38565b611267906002613d0c565b67ffffffffffffffff81111561128d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112b7576020820181803683370190505b509050600360fc1b816000815181106112e057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061131d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060005b84518110156114b05782600486838151811061136357634e487b7160e01b600052603260045260246000fd5b016020015182516001600160f81b031990911690911c60f81c90811061139957634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916826113b4836002613d38565b6113bf906002613d0c565b815181106113dd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053508285828151811061141557634e487b7160e01b600052603260045260246000fd5b602091010151815160f89190911c600f1690811061144357634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319168261145e836002613d38565b611469906003613d0c565b8151811061148757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350806114a881613dd5565b915050611337565b509392505050565b6114c133610815565b6114cc6003336124b8565b15156001146114ed5760405162461bcd60e51b815260040161085990613be9565b6000828152601560209081526040918290205482519081529081018390527f2dbfd0069a9236a97389d9573cc238a1ba0cb78a195d33231fc1cbc87e4ccd17910160405180910390a160009182526015602052604090912055565b61155133610815565b61155c6000336124b8565b151560011461157d5760405162461bcd60e51b815260040161085990613cc8565b610862600860008381610b97565b61159433610815565b61159f6000336124b8565b15156001146115c05760405162461bcd60e51b815260040161085990613cc8565b6115c86128b1565b565b6115d333610815565b6115de6000336124b8565b15156001146115ff5760405162461bcd60e51b815260040161085990613cc8565b61160882610815565b61161181610815565b61161c6000836124b8565b6116685760405162461bcd60e51b815260206004820152601960248201527f6f6c644f776e6572206973206e6f7420616e206f776e65722e000000000000006044820152606401610859565b6116736000826124b8565b156116bb5760405162461bcd60e51b81526020600482015260186024820152773732bba7bbb732b91030b63932b0b23c9032bc34b9ba399760411b6044820152606401610859565b610d0d600383836000610b97565b60006116d560036124ef565b905090565b60006116e660006124ef565b6116f257506000610949565b6116d56000806128a5565b61170633610815565b6117116003336124b8565b15156001146117325760405162461bcd60e51b815260040161085990613be9565b8083146117515760405162461bcd60e51b815260040161085990613c31565b60005b83811015611874577f2dbfd0069a9236a97389d9573cc238a1ba0cb78a195d33231fc1cbc87e4ccd17601560008787858181106117a157634e487b7160e01b600052603260045260246000fd5b905060200201358152602001908152602001600020548484848181106117d757634e487b7160e01b600052603260045260246000fd5b905060200201356040516117f5929190918252602082015260400190565b60405180910390a182828281811061181d57634e487b7160e01b600052603260045260246000fd5b905060200201356015600087878581811061184857634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002081905550808061186c90613dd5565b915050611754565b5050505050565b6060600d80546108c890613d9a565b6060600061189860006124ef565b905060008167ffffffffffffffff8111156118c357634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156118ec578160200160208202803683370190505b50905060005b82811015610efa576119056000826128a5565b82828151811061192557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03909216602092830291909101909101528061194781613dd5565b9150506118f2565b6001600160a01b0382163314156119a85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610859565b3360008181526011602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a15911515815260200190565b60405180910390a35050565b611a2a33610815565b611a356003336124b8565b1515600114611a565760405162461bcd60e51b815260040161085990613be9565b8887148015611a6457508487145b8015611a6f57508087145b8015611a7a57508483145b611ad75760405162461bcd60e51b815260206004820152602860248201527f546f20616e6420546f6b656e4944206d7573742068617665207468652073616d6044820152670ca40d8cadccee8d60c31b6064820152608401610859565b60005b89811015611dcd57611b568b8b83818110611b0557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611b1a9190613616565b8a8a84818110611b3a57634e487b7160e01b600052603260045260246000fd5b9050602002013560405180602001604052806000815250612947565b600080516020613e72833981519152601360008b8b85818110611b8957634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060009054906101000a90046001600160a01b0316601460008c8c86818110611bd657634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002054898985818110611c0c57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611c219190613616565b888886818110611c4157634e487b7160e01b600052603260045260246000fd5b90506020020135604051611c589493929190613b0d565b60405180910390a1868682818110611c8057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611c959190613616565b601360008b8b85818110611cb957634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550848482818110611d1257634e487b7160e01b600052603260045260246000fd5b90506020020135601460008b8b85818110611d3d57634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002081905550828282818110611d7657634e487b7160e01b600052603260045260246000fd5b90506020020135601560008b8b85818110611da157634e487b7160e01b600052603260045260246000fd5b905060200201358152602001908152602001600020819055508080611dc590613dd5565b915050611ada565b5050505050505050505050565b60006116d560006124ef565b611df0338361262e565b611e0c5760405162461bcd60e51b815260040161085990613c77565b611e188484848461297a565b50505050565b611e2733610815565b611e326000336124b8565b1515600114611e535760405162461bcd60e51b815260040161085990613cc8565b611e5e6003826124b8565b611eaa5760405162461bcd60e51b815260206004820152601c60248201527f6f70657261746f72206973206e6f7420616e204f70657261746f722e000000006044820152606401610859565b610862600582600080610b97565b611ec133610815565b611ecc6000336124b8565b1515600114611eed5760405162461bcd60e51b815260040161085990613cc8565b6115c8600a6001806000610b97565b60008080611f09816124ef565b905060005b81811015611f795760086000611f256000846128a5565b6001600160a01b031681526020808201929092526040908101600090812088825290925290205460ff16151560011415611f675782611f6381613dd5565b9350505b80611f7181613dd5565b915050611f0e565b5050600654111592915050565b6000818152600e60205260409020546060906001600160a01b03166120055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610859565b600061200f6122e7565b9050600081511161202f576040518060200160405280600081525061205a565b80612039846129ad565b60405160200161204a929190613aa1565b6040516020818303038152906040525b9392505050565b61206a33610815565b6120756003336124b8565b15156001146120965760405162461bcd60e51b815260040161085990613be9565b82851480156120a457508281145b6120c05760405162461bcd60e51b815260040161085990613c31565b60005b858110156122de57600080516020613e72833981519152601360008989858181106120fe57634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060009054906101000a90046001600160a01b0316601460008a8a8681811061214b57634e487b7160e01b600052603260045260246000fd5b9050602002013581526020019081526020016000205487878581811061218157634e487b7160e01b600052603260045260246000fd5b90506020020160208101906121969190613616565b8686868181106121b657634e487b7160e01b600052603260045260246000fd5b905060200201356040516121cd9493929190613b0d565b60405180910390a18484828181106121f557634e487b7160e01b600052603260045260246000fd5b905060200201602081019061220a9190613616565b6013600089898581811061222e57634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555082828281811061228757634e487b7160e01b600052603260045260246000fd5b90506020020135601460008989858181106122b257634e487b7160e01b600052603260045260246000fd5b9050602002013581526020019081526020016000208190555080806122d690613dd5565b9150506120c3565b50505050505050565b6060601280546108c890613d9a565b6001600160a01b0380831660009081526011602090815260408083209385168352929052205460ff165b92915050565b600061233133610815565b61233c6000336124b8565b151560011461235d5760405162461bcd60e51b815260040161085990613cc8565b3360009081526008602090815260408083208584528252808320805460ff19166001179055600b90915290205460ff161561239a575060016108b4565b6123a382611efc565b156123b9576123b182612ac8565b5060016108b4565b506000919050565b6123ca33610815565b6123d56003336124b8565b15156001146123f65760405162461bcd60e51b815260040161085990613be9565b612410858560405180602001604052806000815250612947565b600084815260136020908152604080832054601490925291829020549151600080516020613e7283398151915292612455926001600160a01b03169187908790613b0d565b60405180910390a1600093845260136020908152604080862080546001600160a01b0319166001600160a01b0396909616959095179094556014815283852092909255601590915291205550565b600061205a836001600160a01b038416612d38565b6001600160a01b0381166000908152600183016020526040812054151561205a565b600061205a836001600160a01b038416612d87565b60006108b1825490565b600081815260106020526040902080546001600160a01b0319166001600160a01b038416908117909155819061252e82610fda565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60098054908190600061257983613dd5565b919050555061258781611051565b6000818152600b60209081526040909120600181018790556002810180546001600160a01b038089166001600160a01b0319928316179092556003830180549288169290911691909117905583516125e7926004909201918501906134e5565b503360008181526008602090815260408083208584528252808320805460ff19166001908117909155938352600a9091529020829055600654116118745761187481612ac8565b6000818152600e60205260408120546001600160a01b03166126a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610859565b60006126b283610fda565b9050806001600160a01b0316846001600160a01b031614806126ed5750836001600160a01b03166126e28461094c565b6001600160a01b0316145b806126fd57506126fd81856122f6565b949350505050565b826001600160a01b031661271882610fda565b6001600160a01b0316146127805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610859565b6001600160a01b0382166127e25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610859565b6127ed6000826124f9565b6001600160a01b0383166000908152600f60205260408120805460019290612816908490613d57565b90915550506001600160a01b0382166000908152600f60205260408120805460019290612844908490613d0c565b90915550506000818152600e602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061205a8383612e9e565b60025460ff16156129045760405162461bcd60e51b815260206004820152601860248201527f536d61727420436f6e74726163742069732070617573656400000000000000006044820152606401610859565b6002805460ff191660011790556040513381527f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258906020015b60405180910390a1565b6129518383612f32565b61295e6000848484613074565b610af25760405162461bcd60e51b815260040161085990613b97565b612985848484612705565b61299184848484613074565b611e185760405162461bcd60e51b815260040161085990613b97565b6060816129d257506040805180820190915260018152600360fc1b60208201526108b4565b8160005b81156129fc57806129e681613dd5565b91506129f59050600a83613d24565b91506129d6565b60008167ffffffffffffffff811115612a2557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a4f576020820181803683370190505b5090505b84156126fd57612a64600183613d57565b9150612a71600a86613df0565b612a7c906030613d0c565b60f81b818381518110612a9f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612ac1600a86613d24565b9450612a53565b6000818152600b602052604090206001908101541415612b0b576000818152600b6020526040902060030154612b06906001600160a01b0316613181565b612d1c565b6000818152600b602052604090206001015460021415612b49576000818152600b6020526040902060020154612b06906001600160a01b03166131cd565b6000818152600b602052604090206001015460031415612b92576000818152600b602052604090206002810154600390910154612b06916001600160a01b039081169116613234565b6000818152600b602052604090206001015460041415612bd0576000818152600b6020526040902060030154612b06906001600160a01b0316613293565b6000818152600b602052604090206001015460051415612c0e576000818152600b6020526040902060020154612b06906001600160a01b03166132d8565b6000818152600b602052604090206001015460061415612c57576000818152600b602052604090206002810154600390910154612b06916001600160a01b03908116911661331d565b6000818152600b602052604090206001015460081415612c95576000818152600b6020526040902060030154612b06906001600160a01b0316613377565b6000818152600b602052604090206001015460071415612cd3576000818152600b6020526040902060030154612b06906001600160a01b03166133af565b6000818152600b602052604090206001015460091415612cf557612b066128b1565b6000818152600b6020526040902060010154600a1415612d1757612b06613459565b610862565b6000818152600b60205260409020805460ff1916600117905550565b6000818152600183016020526040812054612d7f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155612320565b506000612320565b60008181526001830160205260408120548015612e94576000612dab600183613d57565b8554909150600090612dbf90600190613d57565b90506000866000018281548110612de657634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110612e1757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260018901909152604090208490558654879080612e5857634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612320565b6000915050612320565b81546000908210612efc5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610859565b826000018281548110612f1f57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b6001600160a01b038216612f885760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610859565b6000818152600e60205260409020546001600160a01b031615612fed5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610859565b6001600160a01b0382166000908152600f60205260408120805460019290613016908490613d0c565b90915550506000818152600e602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561317657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906130b8903390899088908890600401613ad0565b602060405180830381600087803b1580156130d257600080fd5b505af1925050508015613102575060408051601f3d908101601f191682019092526130ff918101906139c7565b60015b61315c573d808015613130576040519150601f19603f3d011682016040523d82523d6000602084013e613135565b606091505b5080516131545760405162461bcd60e51b815260040161085990613b97565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506126fd565b506001949350505050565b61318c6000826124a3565b506040516001600160a01b03821681527ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d906020015b60405180910390a150565b6131d86000826124da565b506040516001600160a01b03821681527f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b909060200160405180910390a1600061321f611dda565b9050806006541115610d0d57610d0d816133af565b61323f6000836124da565b5061324b6000826124a3565b50604080516001600160a01b038085168252831660208201527f1b82188083c6040dda91df3d142280a20fa00e5a433eb921fdbf2e4ad1db45e5910160405180910390a15050565b61329e6003826124a3565b506040516001600160a01b03821681527fe96a56aa17dd8ae64ac3a51347e8e8a03d52f1cb2acdf8ed49b20d55662ebecc906020016131c2565b6132e36003826124da565b506040516001600160a01b03821681527f108286147377add4f5f7bcdd7b6104dc6bdac3443e499142a612d418aa0be154906020016131c2565b604080516001600160a01b038085168252831660208201527f409833df5b08419a3bd86d34683f91767845e813a29d30d8a4338fba95158d8a910160405180910390a161336b6003836124da565b50610af26003826124a3565b6040518181527f5ba74490711ccc5e81b24b40b8c5d2bd282981e4bc080dd8789bb10c1dfc2ea99060200160405180910390a1600755565b6133b7611dda565b8111156134215760405162461bcd60e51b815260206004820152603260248201527f556e61626c6520746f20736574207468726573686f6c642061626f766520746860448201527165206e756d626572206f66206f776e65727360701b6064820152608401610859565b6040518181527fcfbc3e24bcdbf875f7af2b101605919fdbd3cb0b217ae54c372ae49417c58d019060200160405180910390a1600655565b60025460ff166134ab5760405162461bcd60e51b815260206004820152601c60248201527f536d61727420436f6e7472616374206973206e6f7420706175736564000000006044820152606401610859565b6002805460ff191690556040513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9060200161293d565b828054828255906000526020600020908101928215613520579160200282015b82811115613520578251825591602001919060010190613505565b5061352c929150613530565b5090565b5b8082111561352c5760008155600101613531565b60008083601f840112613556578081fd5b50813567ffffffffffffffff81111561356d578182fd5b6020830191508360208260051b850101111561358857600080fd5b9250929050565b600082601f83011261359f578081fd5b813567ffffffffffffffff808211156135ba576135ba613e30565b604051601f8301601f19908116603f011681019082821181831017156135e2576135e2613e30565b816040528381528660208588010111156135fa578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215613627578081fd5b813561205a81613e46565b60008060408385031215613644578081fd5b823561364f81613e46565b9150602083013561365f81613e46565b809150509250929050565b60008060006060848603121561367e578081fd5b833561368981613e46565b9250602084013561369981613e46565b929592945050506040919091013590565b600080600080608085870312156136bf578081fd5b84356136ca81613e46565b935060208501356136da81613e46565b925060408501359150606085013567ffffffffffffffff8111156136fc578182fd5b6137088782880161358f565b91505092959194509250565b60008060408385031215613726578182fd5b823561373181613e46565b91506020830135801515811461365f578182fd5b60008060408385031215613757578182fd5b823561376281613e46565b946020939093013593505050565b600080600080600060a08688031215613787578081fd5b853561379281613e46565b94506020860135935060408601356137a981613e46565b94979396509394606081013594506080013592915050565b60008060008060008060008060008060a08b8d0312156137df578485fd5b8a3567ffffffffffffffff808211156137f6578687fd5b6138028e838f01613545565b909c509a5060208d013591508082111561381a578687fd5b6138268e838f01613545565b909a50985060408d013591508082111561383e578687fd5b61384a8e838f01613545565b909850965060608d0135915080821115613862578586fd5b61386e8e838f01613545565b909650945060808d0135915080821115613886578384fd5b506138938d828e01613545565b915080935050809150509295989b9194979a5092959850565b600080600080600080606087890312156138c4578182fd5b863567ffffffffffffffff808211156138db578384fd5b6138e78a838b01613545565b909850965060208901359150808211156138ff578384fd5b61390b8a838b01613545565b90965094506040890135915080821115613923578384fd5b5061393089828a01613545565b979a9699509497509295939492505050565b60008060008060408587031215613957578182fd5b843567ffffffffffffffff8082111561396e578384fd5b61397a88838901613545565b90965094506020870135915080821115613992578384fd5b5061399f87828801613545565b95989497509550505050565b6000602082840312156139bc578081fd5b813561205a81613e5b565b6000602082840312156139d8578081fd5b815161205a81613e5b565b6000602082840312156139f4578081fd5b813567ffffffffffffffff811115613a0a578182fd5b6126fd8482850161358f565b600060208284031215613a27578081fd5b5035919050565b600080600060608486031215613a42578081fd5b83359250602084013561369981613e46565b60008060408385031215613a66578182fd5b50508035926020909101359150565b60008151808452613a8d816020860160208601613d6e565b601f01601f19169290920160200192915050565b60008351613ab3818460208801613d6e565b835190830190613ac7818360208801613d6e565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613b0390830184613a75565b9695505050505050565b6001600160a01b039485168152602081019390935292166040820152606081019190915260800190565b6020808252825182820181905260009190848201906040850190845b81811015613b785783516001600160a01b031683529284019291840191600101613b53565b50909695505050505050565b60006020825261205a6020830184613a75565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f4f6e6c7920746865206f70657261746f722063616e2072756e207468697320666040820152673ab731ba34b7b71760c11b606082015260800190565b60208082526026908201527f496e70757420617272617973206d7573742068617665207468652073616d65206040820152650d8cadccee8d60d31b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526024908201527f4f6e6c7920616e206f776e65722063616e2072756e20746869732066756e637460408201526334b7b71760e11b606082015260800190565b60008219821115613d1f57613d1f613e04565b500190565b600082613d3357613d33613e1a565b500490565b6000816000190483118215151615613d5257613d52613e04565b500290565b600082821015613d6957613d69613e04565b500390565b60005b83811015613d89578181015183820152602001613d71565b83811115611e185750506000910152565b600181811c90821680613dae57607f821691505b60208210811415613dcf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613de957613de9613e04565b5060010190565b600082613dff57613dff613e1a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461086257600080fd5b6001600160e01b03198116811461086257600080fdfe94e823969ed6ed7ab64ec5ba9dbcdf3117af9e0563e0f43a62e9e6a74a3f43a1a26469706673582212204ae280b73dea84a63eded3f362e057a923fda2b00dca46eca8847e81c4ab1ca964736f6c63430008030033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000053bc64daa348f723015da12c1db940ef7720f5070000000000000000000000000000000000000000000000000000000000000013576f6d656e204f662056656e757376657273650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025656000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061035c5760003560e01c80638456cb59116101d3578063b8d95d7e11610104578063ce6f7549116100a2578063e985e9c51161007c578063e985e9c5146107d3578063f1376a98146107e6578063f19605d6146107f9578063fb3da8e5146108025761035c565b8063ce6f7549146107af578063dee80c0f146107c2578063e8a3d485146107cb5761035c565b8063c0d795de116100de578063c0d795de14610778578063c3743cff1461078b578063c87b56dd14610793578063ccc19752146107a65761035c565b8063b8d95d7e1461073d578063baa98fbd14610750578063bc64745f146107585761035c565b806395d89b4111610171578063a4b7f5ce1161014b578063a4b7f5ce14610698578063abefed831461070f578063b85e5b7414610722578063b88d4fde1461072a5761035c565b806395d89b4114610675578063a0e67e2b1461067d578063a22cb465146106855761035c565b80638da5cb5b116101ad5780638da5cb5b146105fb5780638dfc731f1461060357806390e4ed59146106165780639425c9081461061f5761035c565b80638456cb59146105c657806384be5ea9146105ce57806385a1a60b146105e15761035c565b80632e33e1e3116102ad578063654079ba1161024b57806370a082311161022557806370a082311461057a57806371aad10d1461058d57806378f880d2146105a05780637ad8ed1e146105b35761035c565b8063654079ba146105265780636cc8bcff146105545780636f80210a146105675761035c565b80634f558e79116102875780634f558e79146104ed5780635c975abb146105005780635e7d907f1461050b5780636352211e146105135761035c565b80632e33e1e3146104bf5780633a008949146104d257806342842e0e146104da5761035c565b8063095ea7b31161031a57806320336566116102f4578063203365661461047157806323b872dd1461048457806326eb27351461049757806327a099d8146104aa5761035c565b8063095ea7b31461043857806312c290cb1461044b57806312c445151461045e5761035c565b80623f07fa1461036157806301ffc9a714610376578063037af12c1461039e578063053a04f1146103d557806306fdde03146103f8578063081812fc1461040d575b600080fd5b61037461036f366004613616565b610815565b005b6103896103843660046139ab565b610865565b60405190151581526020015b60405180910390f35b6103c76103ac366004613616565b6001600160a01b03166000908152600a602052604090205490565b604051908152602001610395565b6103896103e3366004613a16565b6000908152600b602052604090205460ff1690565b6104006108b9565b6040516103959190613b84565b61042061041b366004613a16565b61094c565b6040516001600160a01b039091168152602001610395565b610374610446366004613745565b6109e1565b610374610459366004613616565b610af7565b61037461046c366004613616565b610bc6565b61037461047f366004613632565b610c09565b61037461049236600461366a565b610d11565b6103746104a5366004613616565b610d42565b6104b2610e35565b6040516103959190613b37565b6103746104cd366004613616565b610f01565b6009546103c7565b6103746104e836600461366a565b610fa0565b6103896104fb366004613a16565b610fbb565b60025460ff16610389565b6006546103c7565b610420610521366004613a16565b610fda565b610389610534366004613745565b600860209081526000928352604080842090915290825290205460ff1681565b610374610562366004613a16565b611051565b610374610575366004613a2e565b6110df565b6103c7610588366004613616565b61119a565b61040061059b3660046139e3565b611221565b6103746105ae366004613a54565b6114b8565b6103746105c1366004613616565b611548565b61037461158b565b6103746105dc366004613632565b6115ca565b6105e96116c9565b60405160ff9091168152602001610395565b6104206116da565b610374610611366004613942565b6116fd565b6103c760055481565b61065661062d366004613a16565b6000908152601360209081526040808320546014909252909120546001600160a01b0390911691565b604080516001600160a01b039093168352602083019190915201610395565b61040061187b565b6104b261188a565b610374610693366004613714565b61194f565b6106de6106a6366004613a16565b600b60205260009081526040902080546001820154600283015460039093015460ff9092169290916001600160a01b03918216911684565b60408051941515855260208501939093526001600160a01b0391821692840192909252166060820152608001610395565b61037461071d3660046137c1565b611a21565b6103c7611dda565b6103746107383660046136aa565b611de6565b61037461074b366004613616565b611e1e565b610374611eb8565b6103c7610766366004613a16565b60009081526015602052604090205490565b610389610786366004613a16565b611efc565b6007546103c7565b6104006107a1366004613a16565b611f86565b6103c760095481565b6103746107bd3660046138ac565b612061565b6103c760065481565b6104006122e7565b6103896107e1366004613632565b6122f6565b6103896107f4366004613a16565b612326565b6103c760075481565b610374610810366004613770565b6123c1565b6001600160a01b0381166108625760405162461bcd60e51b815260206004820152600f60248201526e496e7661696c64204164647265737360881b60448201526064015b60405180910390fd5b50565b60006001600160e01b031982166380ac58cd60e01b148061089657506001600160e01b03198216635b5e139f60e01b145b806108b157506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b6060600c80546108c890613d9a565b80601f01602080910402602001604051908101604052809291908181526020018280546108f490613d9a565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b505050505090505b90565b6000818152600e60205260408120546001600160a01b03166109c55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610859565b506000908152601060205260409020546001600160a01b031690565b60006109ec82610fda565b9050806001600160a01b0316836001600160a01b03161415610a5a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610859565b336001600160a01b0382161480610a765750610a7681336107e1565b610ae85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610859565b610af283836124f9565b505050565b610b0033610815565b610b0b6000336124b8565b1515600114610b2c5760405162461bcd60e51b815260040161085990613cc8565b610b3581610815565b610b406003826124b8565b15610b8d5760405162461bcd60e51b815260206004820152601b60248201527f6e65774f70657261746f7220616c7265616479206578697374732e00000000006044820152606401610859565b6108626004600083815b604051908082528060200260200182016040528015610bc0578160200160208202803683370190505b50612567565b610bcf33610815565b610bda6000336124b8565b1515600114610bfb5760405162461bcd60e51b815260040161085990613cc8565b610862600760008381610b97565b610c1233610815565b610c1d6000336124b8565b1515600114610c3e5760405162461bcd60e51b815260040161085990613cc8565b610c4782610815565b610c5081610815565b610c5b6003836124b8565b610ca75760405162461bcd60e51b815260206004820152601f60248201527f6f6c644f70657261746f72206973206e6f7420616e204f70657261746f722e006044820152606401610859565b610cb26003826124b8565b15610cff5760405162461bcd60e51b815260206004820152601b60248201527f6e65774f70657261746f7220616c7265616479206578697374732e00000000006044820152606401610859565b610d0d600683836000610b97565b5050565b610d1b338261262e565b610d375760405162461bcd60e51b815260040161085990613c77565b610af2838383612705565b610d4b33610815565b610d566000336124b8565b1515600114610d775760405162461bcd60e51b815260040161085990613cc8565b610d8081610815565b6001610d8a611dda565b11610dd75760405162461bcd60e51b815260206004820152601860248201527f4d75737420616c77617973206265206f6e65206f776e657200000000000000006044820152606401610859565b610de26000826124b8565b610e275760405162461bcd60e51b815260206004820152601660248201527537bbb732b91034b9903737ba1030b71037bbb732b91760511b6044820152606401610859565b610862600282600080610b97565b60606000610e4360036124ef565b905060008167ffffffffffffffff811115610e6e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e97578160200160208202803683370190505b50905060005b82811015610efa57610eb06003826128a5565b828281518110610ed057634e487b7160e01b600052603260045260246000fd5b6001600160a01b039092166020928302919091019091015280610ef281613dd5565b915050610e9d565b5091505090565b610f0a33610815565b610f156000336124b8565b1515600114610f365760405162461bcd60e51b815260040161085990613cc8565b610f3f81610815565b610f4a6000826124b8565b15610f925760405162461bcd60e51b81526020600482015260186024820152773732bba7bbb732b91030b63932b0b23c9032bc34b9ba399760411b6044820152606401610859565b610862600160008381610b97565b610af283838360405180602001604052806000815250611de6565b6000818152600e60205260408120546001600160a01b031615156108b1565b6000818152600e60205260408120546001600160a01b0316806108b15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610859565b6000818152600b60205260409020600201546001600160a01b031615158061109257506000818152600b60205260409020600301546001600160a01b031615155b156108625760405162461bcd60e51b815260206004820152601d60248201527f5265736f6c7574696f6e20697320616c726561647920696e207573652e0000006044820152606401610859565b6110e833610815565b6110f36003336124b8565b15156001146111145760405162461bcd60e51b815260040161085990613be9565b600083815260136020908152604080832054601490925291829020549151600080516020613e7283398151915292611159926001600160a01b03169186908690613b0d565b60405180910390a1600092835260136020908152604080852080546001600160a01b0319166001600160a01b03959095169490941790935560149052912055565b60006001600160a01b0382166112055760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610859565b506001600160a01b03166000908152600f602052604090205490565b60408051808201909152601081526f181899199a1a9b1b9c1cb0b131b232b360811b602082015281516060919060009061125c906002613d38565b611267906002613d0c565b67ffffffffffffffff81111561128d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112b7576020820181803683370190505b509050600360fc1b816000815181106112e057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061131d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060005b84518110156114b05782600486838151811061136357634e487b7160e01b600052603260045260246000fd5b016020015182516001600160f81b031990911690911c60f81c90811061139957634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916826113b4836002613d38565b6113bf906002613d0c565b815181106113dd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053508285828151811061141557634e487b7160e01b600052603260045260246000fd5b602091010151815160f89190911c600f1690811061144357634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319168261145e836002613d38565b611469906003613d0c565b8151811061148757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350806114a881613dd5565b915050611337565b509392505050565b6114c133610815565b6114cc6003336124b8565b15156001146114ed5760405162461bcd60e51b815260040161085990613be9565b6000828152601560209081526040918290205482519081529081018390527f2dbfd0069a9236a97389d9573cc238a1ba0cb78a195d33231fc1cbc87e4ccd17910160405180910390a160009182526015602052604090912055565b61155133610815565b61155c6000336124b8565b151560011461157d5760405162461bcd60e51b815260040161085990613cc8565b610862600860008381610b97565b61159433610815565b61159f6000336124b8565b15156001146115c05760405162461bcd60e51b815260040161085990613cc8565b6115c86128b1565b565b6115d333610815565b6115de6000336124b8565b15156001146115ff5760405162461bcd60e51b815260040161085990613cc8565b61160882610815565b61161181610815565b61161c6000836124b8565b6116685760405162461bcd60e51b815260206004820152601960248201527f6f6c644f776e6572206973206e6f7420616e206f776e65722e000000000000006044820152606401610859565b6116736000826124b8565b156116bb5760405162461bcd60e51b81526020600482015260186024820152773732bba7bbb732b91030b63932b0b23c9032bc34b9ba399760411b6044820152606401610859565b610d0d600383836000610b97565b60006116d560036124ef565b905090565b60006116e660006124ef565b6116f257506000610949565b6116d56000806128a5565b61170633610815565b6117116003336124b8565b15156001146117325760405162461bcd60e51b815260040161085990613be9565b8083146117515760405162461bcd60e51b815260040161085990613c31565b60005b83811015611874577f2dbfd0069a9236a97389d9573cc238a1ba0cb78a195d33231fc1cbc87e4ccd17601560008787858181106117a157634e487b7160e01b600052603260045260246000fd5b905060200201358152602001908152602001600020548484848181106117d757634e487b7160e01b600052603260045260246000fd5b905060200201356040516117f5929190918252602082015260400190565b60405180910390a182828281811061181d57634e487b7160e01b600052603260045260246000fd5b905060200201356015600087878581811061184857634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002081905550808061186c90613dd5565b915050611754565b5050505050565b6060600d80546108c890613d9a565b6060600061189860006124ef565b905060008167ffffffffffffffff8111156118c357634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156118ec578160200160208202803683370190505b50905060005b82811015610efa576119056000826128a5565b82828151811061192557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03909216602092830291909101909101528061194781613dd5565b9150506118f2565b6001600160a01b0382163314156119a85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610859565b3360008181526011602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a15911515815260200190565b60405180910390a35050565b611a2a33610815565b611a356003336124b8565b1515600114611a565760405162461bcd60e51b815260040161085990613be9565b8887148015611a6457508487145b8015611a6f57508087145b8015611a7a57508483145b611ad75760405162461bcd60e51b815260206004820152602860248201527f546f20616e6420546f6b656e4944206d7573742068617665207468652073616d6044820152670ca40d8cadccee8d60c31b6064820152608401610859565b60005b89811015611dcd57611b568b8b83818110611b0557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611b1a9190613616565b8a8a84818110611b3a57634e487b7160e01b600052603260045260246000fd5b9050602002013560405180602001604052806000815250612947565b600080516020613e72833981519152601360008b8b85818110611b8957634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060009054906101000a90046001600160a01b0316601460008c8c86818110611bd657634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002054898985818110611c0c57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611c219190613616565b888886818110611c4157634e487b7160e01b600052603260045260246000fd5b90506020020135604051611c589493929190613b0d565b60405180910390a1868682818110611c8057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611c959190613616565b601360008b8b85818110611cb957634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550848482818110611d1257634e487b7160e01b600052603260045260246000fd5b90506020020135601460008b8b85818110611d3d57634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002081905550828282818110611d7657634e487b7160e01b600052603260045260246000fd5b90506020020135601560008b8b85818110611da157634e487b7160e01b600052603260045260246000fd5b905060200201358152602001908152602001600020819055508080611dc590613dd5565b915050611ada565b5050505050505050505050565b60006116d560006124ef565b611df0338361262e565b611e0c5760405162461bcd60e51b815260040161085990613c77565b611e188484848461297a565b50505050565b611e2733610815565b611e326000336124b8565b1515600114611e535760405162461bcd60e51b815260040161085990613cc8565b611e5e6003826124b8565b611eaa5760405162461bcd60e51b815260206004820152601c60248201527f6f70657261746f72206973206e6f7420616e204f70657261746f722e000000006044820152606401610859565b610862600582600080610b97565b611ec133610815565b611ecc6000336124b8565b1515600114611eed5760405162461bcd60e51b815260040161085990613cc8565b6115c8600a6001806000610b97565b60008080611f09816124ef565b905060005b81811015611f795760086000611f256000846128a5565b6001600160a01b031681526020808201929092526040908101600090812088825290925290205460ff16151560011415611f675782611f6381613dd5565b9350505b80611f7181613dd5565b915050611f0e565b5050600654111592915050565b6000818152600e60205260409020546060906001600160a01b03166120055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610859565b600061200f6122e7565b9050600081511161202f576040518060200160405280600081525061205a565b80612039846129ad565b60405160200161204a929190613aa1565b6040516020818303038152906040525b9392505050565b61206a33610815565b6120756003336124b8565b15156001146120965760405162461bcd60e51b815260040161085990613be9565b82851480156120a457508281145b6120c05760405162461bcd60e51b815260040161085990613c31565b60005b858110156122de57600080516020613e72833981519152601360008989858181106120fe57634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060009054906101000a90046001600160a01b0316601460008a8a8681811061214b57634e487b7160e01b600052603260045260246000fd5b9050602002013581526020019081526020016000205487878581811061218157634e487b7160e01b600052603260045260246000fd5b90506020020160208101906121969190613616565b8686868181106121b657634e487b7160e01b600052603260045260246000fd5b905060200201356040516121cd9493929190613b0d565b60405180910390a18484828181106121f557634e487b7160e01b600052603260045260246000fd5b905060200201602081019061220a9190613616565b6013600089898581811061222e57634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555082828281811061228757634e487b7160e01b600052603260045260246000fd5b90506020020135601460008989858181106122b257634e487b7160e01b600052603260045260246000fd5b9050602002013581526020019081526020016000208190555080806122d690613dd5565b9150506120c3565b50505050505050565b6060601280546108c890613d9a565b6001600160a01b0380831660009081526011602090815260408083209385168352929052205460ff165b92915050565b600061233133610815565b61233c6000336124b8565b151560011461235d5760405162461bcd60e51b815260040161085990613cc8565b3360009081526008602090815260408083208584528252808320805460ff19166001179055600b90915290205460ff161561239a575060016108b4565b6123a382611efc565b156123b9576123b182612ac8565b5060016108b4565b506000919050565b6123ca33610815565b6123d56003336124b8565b15156001146123f65760405162461bcd60e51b815260040161085990613be9565b612410858560405180602001604052806000815250612947565b600084815260136020908152604080832054601490925291829020549151600080516020613e7283398151915292612455926001600160a01b03169187908790613b0d565b60405180910390a1600093845260136020908152604080862080546001600160a01b0319166001600160a01b0396909616959095179094556014815283852092909255601590915291205550565b600061205a836001600160a01b038416612d38565b6001600160a01b0381166000908152600183016020526040812054151561205a565b600061205a836001600160a01b038416612d87565b60006108b1825490565b600081815260106020526040902080546001600160a01b0319166001600160a01b038416908117909155819061252e82610fda565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60098054908190600061257983613dd5565b919050555061258781611051565b6000818152600b60209081526040909120600181018790556002810180546001600160a01b038089166001600160a01b0319928316179092556003830180549288169290911691909117905583516125e7926004909201918501906134e5565b503360008181526008602090815260408083208584528252808320805460ff19166001908117909155938352600a9091529020829055600654116118745761187481612ac8565b6000818152600e60205260408120546001600160a01b03166126a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610859565b60006126b283610fda565b9050806001600160a01b0316846001600160a01b031614806126ed5750836001600160a01b03166126e28461094c565b6001600160a01b0316145b806126fd57506126fd81856122f6565b949350505050565b826001600160a01b031661271882610fda565b6001600160a01b0316146127805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610859565b6001600160a01b0382166127e25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610859565b6127ed6000826124f9565b6001600160a01b0383166000908152600f60205260408120805460019290612816908490613d57565b90915550506001600160a01b0382166000908152600f60205260408120805460019290612844908490613d0c565b90915550506000818152600e602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061205a8383612e9e565b60025460ff16156129045760405162461bcd60e51b815260206004820152601860248201527f536d61727420436f6e74726163742069732070617573656400000000000000006044820152606401610859565b6002805460ff191660011790556040513381527f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258906020015b60405180910390a1565b6129518383612f32565b61295e6000848484613074565b610af25760405162461bcd60e51b815260040161085990613b97565b612985848484612705565b61299184848484613074565b611e185760405162461bcd60e51b815260040161085990613b97565b6060816129d257506040805180820190915260018152600360fc1b60208201526108b4565b8160005b81156129fc57806129e681613dd5565b91506129f59050600a83613d24565b91506129d6565b60008167ffffffffffffffff811115612a2557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a4f576020820181803683370190505b5090505b84156126fd57612a64600183613d57565b9150612a71600a86613df0565b612a7c906030613d0c565b60f81b818381518110612a9f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612ac1600a86613d24565b9450612a53565b6000818152600b602052604090206001908101541415612b0b576000818152600b6020526040902060030154612b06906001600160a01b0316613181565b612d1c565b6000818152600b602052604090206001015460021415612b49576000818152600b6020526040902060020154612b06906001600160a01b03166131cd565b6000818152600b602052604090206001015460031415612b92576000818152600b602052604090206002810154600390910154612b06916001600160a01b039081169116613234565b6000818152600b602052604090206001015460041415612bd0576000818152600b6020526040902060030154612b06906001600160a01b0316613293565b6000818152600b602052604090206001015460051415612c0e576000818152600b6020526040902060020154612b06906001600160a01b03166132d8565b6000818152600b602052604090206001015460061415612c57576000818152600b602052604090206002810154600390910154612b06916001600160a01b03908116911661331d565b6000818152600b602052604090206001015460081415612c95576000818152600b6020526040902060030154612b06906001600160a01b0316613377565b6000818152600b602052604090206001015460071415612cd3576000818152600b6020526040902060030154612b06906001600160a01b03166133af565b6000818152600b602052604090206001015460091415612cf557612b066128b1565b6000818152600b6020526040902060010154600a1415612d1757612b06613459565b610862565b6000818152600b60205260409020805460ff1916600117905550565b6000818152600183016020526040812054612d7f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155612320565b506000612320565b60008181526001830160205260408120548015612e94576000612dab600183613d57565b8554909150600090612dbf90600190613d57565b90506000866000018281548110612de657634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110612e1757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260018901909152604090208490558654879080612e5857634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612320565b6000915050612320565b81546000908210612efc5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610859565b826000018281548110612f1f57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b6001600160a01b038216612f885760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610859565b6000818152600e60205260409020546001600160a01b031615612fed5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610859565b6001600160a01b0382166000908152600f60205260408120805460019290613016908490613d0c565b90915550506000818152600e602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561317657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906130b8903390899088908890600401613ad0565b602060405180830381600087803b1580156130d257600080fd5b505af1925050508015613102575060408051601f3d908101601f191682019092526130ff918101906139c7565b60015b61315c573d808015613130576040519150601f19603f3d011682016040523d82523d6000602084013e613135565b606091505b5080516131545760405162461bcd60e51b815260040161085990613b97565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506126fd565b506001949350505050565b61318c6000826124a3565b506040516001600160a01b03821681527ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d906020015b60405180910390a150565b6131d86000826124da565b506040516001600160a01b03821681527f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b909060200160405180910390a1600061321f611dda565b9050806006541115610d0d57610d0d816133af565b61323f6000836124da565b5061324b6000826124a3565b50604080516001600160a01b038085168252831660208201527f1b82188083c6040dda91df3d142280a20fa00e5a433eb921fdbf2e4ad1db45e5910160405180910390a15050565b61329e6003826124a3565b506040516001600160a01b03821681527fe96a56aa17dd8ae64ac3a51347e8e8a03d52f1cb2acdf8ed49b20d55662ebecc906020016131c2565b6132e36003826124da565b506040516001600160a01b03821681527f108286147377add4f5f7bcdd7b6104dc6bdac3443e499142a612d418aa0be154906020016131c2565b604080516001600160a01b038085168252831660208201527f409833df5b08419a3bd86d34683f91767845e813a29d30d8a4338fba95158d8a910160405180910390a161336b6003836124da565b50610af26003826124a3565b6040518181527f5ba74490711ccc5e81b24b40b8c5d2bd282981e4bc080dd8789bb10c1dfc2ea99060200160405180910390a1600755565b6133b7611dda565b8111156134215760405162461bcd60e51b815260206004820152603260248201527f556e61626c6520746f20736574207468726573686f6c642061626f766520746860448201527165206e756d626572206f66206f776e65727360701b6064820152608401610859565b6040518181527fcfbc3e24bcdbf875f7af2b101605919fdbd3cb0b217ae54c372ae49417c58d019060200160405180910390a1600655565b60025460ff166134ab5760405162461bcd60e51b815260206004820152601c60248201527f536d61727420436f6e7472616374206973206e6f7420706175736564000000006044820152606401610859565b6002805460ff191690556040513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9060200161293d565b828054828255906000526020600020908101928215613520579160200282015b82811115613520578251825591602001919060010190613505565b5061352c929150613530565b5090565b5b8082111561352c5760008155600101613531565b60008083601f840112613556578081fd5b50813567ffffffffffffffff81111561356d578182fd5b6020830191508360208260051b850101111561358857600080fd5b9250929050565b600082601f83011261359f578081fd5b813567ffffffffffffffff808211156135ba576135ba613e30565b604051601f8301601f19908116603f011681019082821181831017156135e2576135e2613e30565b816040528381528660208588010111156135fa578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215613627578081fd5b813561205a81613e46565b60008060408385031215613644578081fd5b823561364f81613e46565b9150602083013561365f81613e46565b809150509250929050565b60008060006060848603121561367e578081fd5b833561368981613e46565b9250602084013561369981613e46565b929592945050506040919091013590565b600080600080608085870312156136bf578081fd5b84356136ca81613e46565b935060208501356136da81613e46565b925060408501359150606085013567ffffffffffffffff8111156136fc578182fd5b6137088782880161358f565b91505092959194509250565b60008060408385031215613726578182fd5b823561373181613e46565b91506020830135801515811461365f578182fd5b60008060408385031215613757578182fd5b823561376281613e46565b946020939093013593505050565b600080600080600060a08688031215613787578081fd5b853561379281613e46565b94506020860135935060408601356137a981613e46565b94979396509394606081013594506080013592915050565b60008060008060008060008060008060a08b8d0312156137df578485fd5b8a3567ffffffffffffffff808211156137f6578687fd5b6138028e838f01613545565b909c509a5060208d013591508082111561381a578687fd5b6138268e838f01613545565b909a50985060408d013591508082111561383e578687fd5b61384a8e838f01613545565b909850965060608d0135915080821115613862578586fd5b61386e8e838f01613545565b909650945060808d0135915080821115613886578384fd5b506138938d828e01613545565b915080935050809150509295989b9194979a5092959850565b600080600080600080606087890312156138c4578182fd5b863567ffffffffffffffff808211156138db578384fd5b6138e78a838b01613545565b909850965060208901359150808211156138ff578384fd5b61390b8a838b01613545565b90965094506040890135915080821115613923578384fd5b5061393089828a01613545565b979a9699509497509295939492505050565b60008060008060408587031215613957578182fd5b843567ffffffffffffffff8082111561396e578384fd5b61397a88838901613545565b90965094506020870135915080821115613992578384fd5b5061399f87828801613545565b95989497509550505050565b6000602082840312156139bc578081fd5b813561205a81613e5b565b6000602082840312156139d8578081fd5b815161205a81613e5b565b6000602082840312156139f4578081fd5b813567ffffffffffffffff811115613a0a578182fd5b6126fd8482850161358f565b600060208284031215613a27578081fd5b5035919050565b600080600060608486031215613a42578081fd5b83359250602084013561369981613e46565b60008060408385031215613a66578182fd5b50508035926020909101359150565b60008151808452613a8d816020860160208601613d6e565b601f01601f19169290920160200192915050565b60008351613ab3818460208801613d6e565b835190830190613ac7818360208801613d6e565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613b0390830184613a75565b9695505050505050565b6001600160a01b039485168152602081019390935292166040820152606081019190915260800190565b6020808252825182820181905260009190848201906040850190845b81811015613b785783516001600160a01b031683529284019291840191600101613b53565b50909695505050505050565b60006020825261205a6020830184613a75565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f4f6e6c7920746865206f70657261746f722063616e2072756e207468697320666040820152673ab731ba34b7b71760c11b606082015260800190565b60208082526026908201527f496e70757420617272617973206d7573742068617665207468652073616d65206040820152650d8cadccee8d60d31b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526024908201527f4f6e6c7920616e206f776e65722063616e2072756e20746869732066756e637460408201526334b7b71760e11b606082015260800190565b60008219821115613d1f57613d1f613e04565b500190565b600082613d3357613d33613e1a565b500490565b6000816000190483118215151615613d5257613d52613e04565b500290565b600082821015613d6957613d69613e04565b500390565b60005b83811015613d89578181015183820152602001613d71565b83811115611e185750506000910152565b600181811c90821680613dae57607f821691505b60208210811415613dcf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613de957613de9613e04565b5060010190565b600082613dff57613dff613e1a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461086257600080fd5b6001600160e01b03198116811461086257600080fdfe94e823969ed6ed7ab64ec5ba9dbcdf3117af9e0563e0f43a62e9e6a74a3f43a1a26469706673582212204ae280b73dea84a63eded3f362e057a923fda2b00dca46eca8847e81c4ab1ca964736f6c63430008030033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000053bc64daa348f723015da12c1db940ef7720f5070000000000000000000000000000000000000000000000000000000000000013576f6d656e204f662056656e757376657273650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025656000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Women Of Venusverse
Arg [1] : symbol (string): VV
Arg [2] : operator (address): 0x53BC64DAA348F723015DA12C1db940eF7720f507
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000053bc64daa348f723015da12c1db940ef7720f507
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 576f6d656e204f662056656e7573766572736500000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 5656000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
63654:8644:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45967:121;;;;;;:::i;:::-;;:::i;:::-;;20548:292;;;;;;:::i;:::-;;:::i;:::-;;;13381:14:1;;13374:22;13356:41;;13344:2;13329:18;20548:292:0;;;;;;;;50583:181;;;;;;:::i;:::-;-1:-1:-1;;;;;50720:36:0;50688:7;50720:36;;;:25;:36;;;;;;;50583:181;;;;14016:25:1;;;14004:2;13989:18;50583:181:0;13971:76:1;51363:123:0;;;;;;:::i;:::-;51428:4;51452:19;;;:11;:19;;;;;:26;;;;51363:123;21480:100;;;:::i;:::-;;;;;;;:::i;22947:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10973:32:1;;;10955:51;;10943:2;10928:18;22947:221:0;10910:102:1;22477:404:0;;;;;;:::i;:::-;;:::i;54568:375::-;;;;;;:::i;:::-;;:::i;56622:275::-;;;;;;:::i;:::-;;:::i;55508:583::-;;;;;;:::i;:::-;;:::i;23837:305::-;;;;;;:::i;:::-;;:::i;53411:402::-;;;;;;:::i;:::-;;:::i;49261:310::-;;;:::i;:::-;;;;;;;:::i;52883:328::-;;;;;;:::i;:::-;;:::i;50363:105::-;50446:14;;50363:105;;24213:151;;;;;;:::i;:::-;;:::i;65618:102::-;;;;;;:::i;:::-;;:::i;50847:78::-;50910:7;;;;50847:78;;49911:107;49987:23;;49911:107;;21174:239;;;;;;:::i;:::-;;:::i;44702:62::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;51011:344;;;;;;:::i;:::-;;:::i;69095:441::-;;;;;;:::i;:::-;;:::i;20904:208::-;;;;;;:::i;:::-;;:::i;71818:477::-;;;;;;:::i;:::-;;:::i;70622:237::-;;;;;;:::i;:::-;;:::i;56209:287::-;;;;;;:::i;:::-;;:::i;56973:64::-;;;:::i;53924:537::-;;;;;;:::i;:::-;;:::i;49664:125::-;;;:::i;:::-;;;26845:4:1;26833:17;;;26815:36;;26803:2;26788:18;49664:125:0;26770:87:1;48410:176:0;;;:::i;71001:485::-;;;;;;:::i;:::-;;:::i;44365:32::-;;;;;;65820:196;;;;;;:::i;:::-;65910:7;65952:29;;;:20;:29;;;;;;;;;65983:15;:24;;;;;;;-1:-1:-1;;;;;65952:29:0;;;;65820:196;;;;;-1:-1:-1;;;;;12011:32:1;;;11993:51;;12075:2;12060:18;;12053:34;;;;11966:18;65820:196:0;11948:145:1;21649:104:0;;;:::i;48674:301::-;;;:::i;23240:295::-;;;;;;:::i;:::-;;:::i;44947:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44947:49:0;;;;;;;;;;;13658:14:1;;13651:22;13633:41;;13705:2;13690:18;;13683:34;;;;-1:-1:-1;;;;;13791:15:1;;;13771:18;;;13764:43;;;;13843:15;13838:2;13823:18;;13816:43;13620:3;13605:19;44947:49:0;13587:278:1;67861:1098:0;;;;;;:::i;:::-;;:::i;49062:111::-;;;:::i;24435:285::-;;;;;;:::i;:::-;;:::i;55053:332::-;;;;;;:::i;:::-;;:::i;57147:148::-;;;:::i;66116:160::-;;;;;;:::i;:::-;66210:7;66242:26;;;:17;:26;;;;;;;66116:160;51494:400;;;;;;:::i;:::-;;:::i;50145:103::-;50224:16;;50145:103;;21824:360;;;;;;:::i;:::-;;:::i;44816:33::-;;;;;;69678:808;;;;;;:::i;:::-;;:::i;44466:42::-;;;;;;65465:93;;;:::i;23606:164::-;;;;;;:::i;:::-;;:::i;52246:533::-;;;;;;:::i;:::-;;:::i;44602:35::-;;;;;;66935:582;;;;;;:::i;:::-;;:::i;45967:121::-;-1:-1:-1;;;;;46039:21:0;;46031:49;;;;-1:-1:-1;;;46031:49:0;;25634:2:1;46031:49:0;;;25616:21:1;25673:2;25653:18;;;25646:30;-1:-1:-1;;;25692:18:1;;;25685:45;25747:18;;46031:49:0;;;;;;;;;45967:121;:::o;20548:292::-;20650:4;-1:-1:-1;;;;;;20674:40:0;;-1:-1:-1;;;20674:40:0;;:105;;-1:-1:-1;;;;;;;20731:48:0;;-1:-1:-1;;;20731:48:0;20674:105;:158;;;-1:-1:-1;;;;;;;;;;19155:40:0;;;20796:36;20667:165;;20548:292;;;;:::o;21480:100::-;21534:13;21567:5;21560:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21480:100;;:::o;22947:221::-;23023:7;26276:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26276:16:0;23043:73;;;;-1:-1:-1;;;23043:73:0;;22817:2:1;23043:73:0;;;22799:21:1;22856:2;22836:18;;;22829:30;22895:34;22875:18;;;22868:62;-1:-1:-1;;;22946:18:1;;;22939:42;22998:19;;23043:73:0;22789:234:1;23043:73:0;-1:-1:-1;23136:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23136:24:0;;22947:221::o;22477:404::-;22558:13;22574:23;22589:7;22574:14;:23::i;:::-;22558:39;;22622:5;-1:-1:-1;;;;;22616:11:0;:2;-1:-1:-1;;;;;22616:11:0;;;22608:57;;;;-1:-1:-1;;;22608:57:0;;24056:2:1;22608:57:0;;;24038:21:1;24095:2;24075:18;;;24068:30;24134:34;24114:18;;;24107:62;-1:-1:-1;;;24185:18:1;;;24178:31;24226:19;;22608:57:0;24028:223:1;22608:57:0;15920:10;-1:-1:-1;;;;;22686:21:0;;;;:69;;-1:-1:-1;22711:44:0;22735:5;15920:10;22742:12;15840:98;22711:44;22678:161;;;;-1:-1:-1;;;22678:161:0;;19385:2:1;22678:161:0;;;19367:21:1;19424:2;19404:18;;;19397:30;19463:34;19443:18;;;19436:62;19534:26;19514:18;;;19507:54;19578:19;;22678:161:0;19357:246:1;22678:161:0;22852:21;22861:2;22865:7;22852:8;:21::i;:::-;22477:404;;;:::o;54568:375::-;46372:26;46387:10;46372:14;:26::i;:::-;46431:43;46454:7;46463:10;46431:22;:43::i;:::-;:51;;46478:4;46431:51;46409:137;;;;-1:-1:-1;;;46409:137:0;;;;;;;:::i;:::-;54680:27:::1;54695:11;54680:14;:27::i;:::-;54741:47;54764:10;54776:11;54741:22;:47::i;:::-;54740:48;54718:125;;;::::0;-1:-1:-1;;;54718:125:0;;21342:2:1;54718:125:0::1;::::0;::::1;21324:21:1::0;21381:2;21361:18;;;21354:30;21420:29;21400:18;;;21393:57;21467:18;;54718:125:0::1;21314:177:1::0;54718:125:0::1;54856:79;42783:1;54901;54905:11:::0;54901:1;54918:16:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;54918:16:0::1;;54856;:79::i;56622:275::-:0;46372:26;46387:10;46372:14;:26::i;:::-;46431:43;46454:7;46463:10;46431:22;:43::i;:::-;:51;;46478:4;46431:51;46409:137;;;;-1:-1:-1;;;46409:137:0;;;;;;;:::i;:::-;56736:153:::1;42947:1;56812;56837:9:::0;56812:1;56862:16:::1;::::0;55508:583;46372:26;46387:10;46372:14;:26::i;:::-;46431:43;46454:7;46463:10;46431:22;:43::i;:::-;:51;;46478:4;46431:51;46409:137;;;;-1:-1:-1;;;46409:137:0;;;;;;;:::i;:::-;55647:27:::1;55662:11;55647:14;:27::i;:::-;55685;55700:11;55685:14;:27::i;:::-;55745:47;55768:10;55780:11;55745:22;:47::i;:::-;55723:128;;;::::0;-1:-1:-1;;;55723:128:0;;16682:2:1;55723:128:0::1;::::0;::::1;16664:21:1::0;16721:2;16701:18;;;16694:30;16760:33;16740:18;;;16733:61;16811:18;;55723:128:0::1;16654:181:1::0;55723:128:0::1;55885:47;55908:10;55920:11;55885:22;:47::i;:::-;55884:48;55862:125;;;::::0;-1:-1:-1;;;55862:125:0;;21342:2:1;55862:125:0::1;::::0;::::1;21324:21:1::0;21381:2;21361:18;;;21354:30;21420:29;21400:18;;;21393:57;21467:18;;55862:125:0::1;21314:177:1::0;55862:125:0::1;56000:83;42892:1;56041:11:::0;56054;56080:1:::1;56066:16;::::0;56000:83:::1;55508:583:::0;;:::o;23837:305::-;23998:41;15920:10;24031:7;23998:18;:41::i;:::-;23990:103;;;;-1:-1:-1;;;23990:103:0;;;;;;;:::i;:::-;24106:28;24116:4;24122:2;24126:7;24106:9;:28::i;53411:402::-;46372:26;46387:10;46372:14;:26::i;:::-;46431:43;46454:7;46463:10;46431:22;:43::i;:::-;:51;;46478:4;46431:51;46409:137;;;;-1:-1:-1;;;46409:137:0;;;;;;;:::i;:::-;53497:24:::1;53512:8;53497:14;:24::i;:::-;53562:1;53540:19;:17;:19::i;:::-;:23;53532:60;;;::::0;-1:-1:-1;;;53532:60:0;;15972:2:1;53532:60:0::1;::::0;::::1;15954:21:1::0;16011:2;15991:18;;;15984:30;16050:26;16030:18;;;16023:54;16094:18;;53532:60:0::1;15944:174:1::0;53532:60:0::1;53625:41;53648:7;53657:8;53625:22;:41::i;:::-;53603:113;;;::::0;-1:-1:-1;;;53603:113:0;;22466:2:1;53603:113:0::1;::::0;::::1;22448:21:1::0;22505:2;22485:18;;;22478:30;-1:-1:-1;;;22524:18:1;;;22517:52;22586:18;;53603:113:0::1;22438:172:1::0;53603:113:0::1;53729:76;42680:1;53766:8:::0;53784:1:::1;::::0;53788:16:::1;::::0;49261:310;49306:16;49335:11;49349:32;49370:10;49349:20;:32::i;:::-;49335:46;;49392:18;49427:3;49413:18;;;;;;-1:-1:-1;;;49413:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49413:18:0;;49392:39;;49449:9;49444:99;49468:3;49464:1;:7;49444:99;;;49500:31;49517:10;49529:1;49500:16;:31::i;:::-;49493:1;49495;49493:4;;;;;;-1:-1:-1;;;49493:4:0;;;;;;;;;-1:-1:-1;;;;;49493:38:0;;;:4;;;;;;;;;;;:38;49473:3;;;;:::i;:::-;;;;49444:99;;;-1:-1:-1;49562:1:0;-1:-1:-1;;49261:310:0;:::o;52883:328::-;46372:26;46387:10;46372:14;:26::i;:::-;46431:43;46454:7;46463:10;46431:22;:43::i;:::-;:51;;46478:4;46431:51;46409:137;;;;-1:-1:-1;;;46409:137:0;;;;;;;:::i;:::-;52966:24:::1;52981:8;52966:14;:24::i;:::-;53024:41;53047:7;53056:8;53024:22;:41::i;:::-;53023:42;53001:116;;;::::0;-1:-1:-1;;;53001:116:0;;18623:2:1;53001:116:0::1;::::0;::::1;18605:21:1::0;18662:2;18642:18;;;18635:30;-1:-1:-1;;;18681:18:1;;;18674:54;18745:18;;53001:116:0::1;18595:174:1::0;53001:116:0::1;53130:73;42629:1;53172;53176:8:::0;53172:1;53186:16:::1;::::0;24213:151;24317:39;24334:4;24340:2;24344:7;24317:39;;;;;;;;;;;;:16;:39::i;65618:102::-;65672:4;26276:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26276:16:0;:30;;65696:16;26187:127;21174:239;21246:7;21282:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21282:16:0;21317:19;21309:73;;;;-1:-1:-1;;;21309:73:0;;20221:2:1;21309:73:0;;;20203:21:1;20260:2;20240:18;;;20233:30;20299:34;20279:18;;;20272:62;-1:-1:-1;;;20350:18:1;;;20343:39;20399:19;;21309:73:0;20193:231:1;51011:344:0;51222:1;51180:19;;;:11;:19;;;;;:30;;;-1:-1:-1;;;;;51180:30:0;:44;;;:109;;-1:-1:-1;51287:1:0;51245:19;;;:11;:19;;;;;:30;;;-1:-1:-1;;;;;51245:30:0;:44;;51180:109;51178:112;51081:266;;;;-1:-1:-1;;;51081:266:0;;26335:2:1;51081:266:0;;;26317:21:1;26374:2;26354:18;;;26347:30;26413:31;26393:18;;;26386:59;26462:18;;51081:266:0;26307:179:1;69095:441:0;46132:26;46147:10;46132:14;:26::i;:::-;46191:46;46214:10;46226;46191:22;:46::i;:::-;:54;;46241:4;46191:54;46169:144;;;;-1:-1:-1;;;46169:144:0;;;;;;;:::i;:::-;69284:29:::1;::::0;;;:20:::1;:29;::::0;;;;;;;;69328:15:::1;:24:::0;;;;;;;;69260:160;;-1:-1:-1;;;;;;;;;;;69260:160:0;::::1;::::0;-1:-1:-1;;;;;69284:29:0::1;::::0;69367:16;;69398:11;;69260:160:::1;:::i;:::-;;;;;;;;69431:29;::::0;;;:20:::1;:29;::::0;;;;;;;:48;;-1:-1:-1;;;;;;69431:48:0::1;-1:-1:-1::0;;;;;69431:48:0;;;::::1;::::0;;;::::1;::::0;;;69490:15:::1;:24:::0;;;;:38;69095:441::o;20904:208::-;20976:7;-1:-1:-1;;;;;21004:19:0;;20996:74;;;;-1:-1:-1;;;20996:74:0;;19810:2:1;20996:74:0;;;19792:21:1;19849:2;19829:18;;;19822:30;19888:34;19868:18;;;19861:62;-1:-1:-1;;;19939:18:1;;;19932:40;19989:19;;20996:74:0;19782:232:1;20996:74:0;-1:-1:-1;;;;;;21088:16:0;;;;;:9;:16;;;;;;;20904:208::o;71818:477::-;71902:42;;;;;;;;;;;;-1:-1:-1;;;71902:42:0;;;;71990:11;;71876:13;;71902:42;:21;;71990:15;;72004:1;71990:15;:::i;:::-;71986:19;;:1;:19;:::i;:::-;71976:30;;;;;;-1:-1:-1;;;71976:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71976:30:0;;71957:49;;-1:-1:-1;;;72017:3:0;72021:1;72017:6;;;;;;-1:-1:-1;;;72017:6:0;;;;;;;;;;;;:12;-1:-1:-1;;;;;72017:12:0;;;;;;;;;-1:-1:-1;;;72040:3:0;72044:1;72040:6;;;;;;-1:-1:-1;;;72040:6:0;;;;;;;;;;;;:12;-1:-1:-1;;;;;72040:12:0;;;;;;;;;72068:9;72063:196;72087:4;:11;72083:1;:15;72063:196;;;72137:8;72171:1;72160:4;72165:1;72160:7;;;;;;-1:-1:-1;;;72160:7:0;;;;;;;;;;;;;72137:38;;-1:-1:-1;;;;;;72160:7:0;;;:12;;;:7;72154:19;;72137:38;;;;-1:-1:-1;;;72137:38:0;;;;;;;;;;;;;-1:-1:-1;;;;;;72137:38:0;72120:3;72128:5;:1;72132;72128:5;:::i;:::-;72124:9;;:1;:9;:::i;:::-;72120:14;;;;;;-1:-1:-1;;;72120:14:0;;;;;;;;;;;;:55;-1:-1:-1;;;;;72120:55:0;;;;;;;;;72207:8;72230:4;72235:1;72230:7;;;;;;-1:-1:-1;;;72230:7:0;;;;;;;;;;;;;;72207:40;;72230:7;;;;;72240:4;72224:21;;72207:40;;;;-1:-1:-1;;;72207:40:0;;;;;;;;;;;;;-1:-1:-1;;;;;;72207:40:0;72190:3;72198:5;:1;72202;72198:5;:::i;:::-;72194:9;;:1;:9;:::i;:::-;72190:14;;;;;;-1:-1:-1;;;72190:14:0;;;;;;;;;;;;:57;-1:-1:-1;;;;;72190:57:0;;;;;;;;-1:-1:-1;72100:3:0;;;;:::i;:::-;;;;72063:196;;;-1:-1:-1;72283:3:0;71818:477;-1:-1:-1;;;71818:477:0:o;70622:237::-;46132:26;46147:10;46132:14;:26::i;:::-;46191:46;46214:10;46226;46191:22;:46::i;:::-;:54;;46241:4;46191:54;46169:144;;;;-1:-1:-1;;;46169:144:0;;;;;;;:::i;:::-;70766:26:::1;::::0;;;:17:::1;:26;::::0;;;;;;;;;70751:52;;14226:25:1;;;14267:18;;;14260:34;;;70751:52:0::1;::::0;14199:18:1;70751:52:0::1;;;;;;;70814:26;::::0;;;:17:::1;:26;::::0;;;;;:37;70622:237::o;56209:287::-;46372:26;46387:10;46372:14;:26::i;:::-;46431:43;46454:7;46463:10;46431:22;:43::i;:::-;:51;;46478:4;46431:51;46409:137;;;;-1:-1:-1;;;46409:137:0;;;;;;;:::i;:::-;56329:159:::1;43009:1;56412;56437:8:::0;56412:1;56461:16:::1;::::0;56973:64;46372:26;46387:10;46372:14;:26::i;:::-;46431:43;46454:7;46463:10;46431:22;:43::i;:::-;:51;;46478:4;46431:51;46409:137;;;;-1:-1:-1;;;46409:137:0;;;;;;;:::i;:::-;57021:8:::1;:6;:8::i;:::-;56973:64::o:0;53924:537::-;46372:26;46387:10;46372:14;:26::i;:::-;46431:43;46454:7;46463:10;46431:22;:43::i;:::-;:51;;46478:4;46431:51;46409:137;;;;-1:-1:-1;;;46409:137:0;;;;;;;:::i;:::-;54052:24:::1;54067:8;54052:14;:24::i;:::-;54087;54102:8;54087:14;:24::i;:::-;54144:41;54167:7;54176:8;54144:22;:41::i;:::-;54122:116;;;::::0;-1:-1:-1;;;54122:116:0;;20631:2:1;54122:116:0::1;::::0;::::1;20613:21:1::0;20670:2;20650:18;;;20643:30;20709:27;20689:18;;;20682:55;20754:18;;54122:116:0::1;20603:175:1::0;54122:116:0::1;54272:41;54295:7;54304:8;54272:22;:41::i;:::-;54271:42;54249:116;;;::::0;-1:-1:-1;;;54249:116:0;;18623:2:1;54249:116:0::1;::::0;::::1;18605:21:1::0;18662:2;18642:18;;;18635:30;-1:-1:-1;;;18681:18:1;;;18674:54;18745:18;;54249:116:0::1;18595:174:1::0;54249:116:0::1;54378:75;42732:1;54416:8:::0;54426;54450:1:::1;54436:16;::::0;49664:125;49717:5;49748:32;49769:10;49748:20;:32::i;:::-;49735:46;;49664:125;:::o;48410:176::-;48456:7;48479:29;48500:7;48479:20;:29::i;:::-;48476:56;;-1:-1:-1;48530:1:0;48515:17;;48476:56;48550:28;48567:7;48576:1;48550:16;:28::i;71001:485::-;46132:26;46147:10;46132:14;:26::i;:::-;46191:46;46214:10;46226;46191:22;:46::i;:::-;:54;;46241:4;46191:54;46169:144;;;;-1:-1:-1;;;46169:144:0;;;;;;;:::i;:::-;71176:33;;::::1;71154:121;;;;-1:-1:-1::0;;;71154:121:0::1;;;;;;;:::i;:::-;71291:9;71286:193;71306:18:::0;;::::1;71286:193;;;71351:58;71366:17;:29;71384:7;;71392:1;71384:10;;;;;-1:-1:-1::0;;;71384:10:0::1;;;;;;;;;;;;;;;71366:29;;;;;;;;;;;;71397:8;;71406:1;71397:11;;;;;-1:-1:-1::0;;;71397:11:0::1;;;;;;;;;;;;;;;71351:58;;;;;;14226:25:1::0;;;14282:2;14267:18;;14260:34;14214:2;14199:18;;14181:119;71351:58:0::1;;;;;;;;71456:8;;71465:1;71456:11;;;;;-1:-1:-1::0;;;71456:11:0::1;;;;;;;;;;;;;;;71424:17;:29;71442:7;;71450:1;71442:10;;;;;-1:-1:-1::0;;;71442:10:0::1;;;;;;;;;;;;;;;71424:29;;;;;;;;;;;:43;;;;71326:3;;;;;:::i;:::-;;;;71286:193;;;;71001:485:::0;;;;:::o;21649:104::-;21705:13;21738:7;21731:14;;;;;:::i;48674:301::-;48716:16;48745:11;48759:29;48780:7;48759:20;:29::i;:::-;48745:43;;48799:18;48834:3;48820:18;;;;;;-1:-1:-1;;;48820:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48820:18:0;;48799:39;;48856:9;48851:96;48875:3;48871:1;:7;48851:96;;;48907:28;48924:7;48933:1;48907:16;:28::i;:::-;48900:1;48902;48900:4;;;;;;-1:-1:-1;;;48900:4:0;;;;;;;;;-1:-1:-1;;;;;48900:35:0;;;:4;;;;;;;;;;;:35;48880:3;;;;:::i;:::-;;;;48851:96;;23240:295;-1:-1:-1;;;;;23343:24:0;;15920:10;23343:24;;23335:62;;;;-1:-1:-1;;;23335:62:0;;17447:2:1;23335:62:0;;;17429:21:1;17486:2;17466:18;;;17459:30;17525:27;17505:18;;;17498:55;17570:18;;23335:62:0;17419:175:1;23335:62:0;15920:10;23410:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23410:42:0;;;;;;;;;;:53;;-1:-1:-1;;23410:53:0;;;;;;;:42;-1:-1:-1;;;;;23479:48:0;;23518:8;23479:48;;;;13381:14:1;13374:22;13356:41;;13344:2;13329:18;;13311:92;23479:48:0;;;;;;;;23240:295;;:::o;67861:1098::-;46132:26;46147:10;46132:14;:26::i;:::-;46191:46;46214:10;46226;46191:22;:46::i;:::-;:54;;46241:4;46191:54;46169:144;;;;-1:-1:-1;;;46169:144:0;;;;;;;:::i;:::-;68149:27;;::::1;:89:::0;::::1;;;-1:-1:-1::0;68197:41:0;;::::1;68149:89;:151;;;;-1:-1:-1::0;68259:41:0;;::::1;68149:151;:217;;;;-1:-1:-1::0;68321:45:0;;::::1;68149:217;68127:307;;;::::0;-1:-1:-1;;;68127:307:0;;18976:2:1;68127:307:0::1;::::0;::::1;18958:21:1::0;19015:2;18995:18;;;18988:30;19054:34;19034:18;;;19027:62;-1:-1:-1;;;19105:18:1;;;19098:38;19153:19;;68127:307:0::1;18948:230:1::0;68127:307:0::1;68450:9;68445:507;68465:13:::0;;::::1;68445:507;;;68500:32;68510:2;;68513:1;68510:5;;;;;-1:-1:-1::0;;;68510:5:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68517:7;;68525:1;68517:10;;;;;-1:-1:-1::0;;;68517:10:0::1;;;;;;;;;;;;;;;68500:32;;;;;;;;;;;::::0;:9:::1;:32::i;:::-;-1:-1:-1::0;;;;;;;;;;;68582:20:0::1;:32;68603:7;;68611:1;68603:10;;;;;-1:-1:-1::0;;;68603:10:0::1;;;;;;;;;;;;;;;68582:32;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;68582:32:0::1;68633:15;:27;68649:7;;68657:1;68649:10;;;;;-1:-1:-1::0;;;68649:10:0::1;;;;;;;;;;;;;;;68633:27;;;;;;;;;;;;68679:16;;68696:1;68679:19;;;;;-1:-1:-1::0;;;68679:19:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68717:11;;68729:1;68717:14;;;;;-1:-1:-1::0;;;68717:14:0::1;;;;;;;;;;;;;;;68554:192;;;;;;;;;:::i;:::-;;;;;;;;68796:16;;68813:1;68796:19;;;;;-1:-1:-1::0;;;68796:19:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68761:20;:32;68782:7;;68790:1;68782:10;;;;;-1:-1:-1::0;;;68782:10:0::1;;;;;;;;;;;;;;;68761:32;;;;;;;;;;;;:54;;;;;-1:-1:-1::0;;;;;68761:54:0::1;;;;;-1:-1:-1::0;;;;;68761:54:0::1;;;;;;68860:11;;68872:1;68860:14;;;;;-1:-1:-1::0;;;68860:14:0::1;;;;;;;;;;;;;;;68830:15;:27;68846:7;;68854:1;68846:10;;;;;-1:-1:-1::0;;;68846:10:0::1;;;;;;;;;;;;;;;68830:27;;;;;;;;;;;:44;;;;68921:16;;68938:1;68921:19;;;;;-1:-1:-1::0;;;68921:19:0::1;;;;;;;;;;;;;;;68889:17;:29;68907:7;;68915:1;68907:10;;;;;-1:-1:-1::0;;;68907:10:0::1;;;;;;;;;;;;;;;68889:29;;;;;;;;;;;:51;;;;68480:3;;;;;:::i;:::-;;;;68445:507;;;;67861:1098:::0;;;;;;;;;;:::o;49062:111::-;49112:4;49136:29;49157:7;49136:20;:29::i;24435:285::-;24567:41;15920:10;24600:7;24567:18;:41::i;:::-;24559:103;;;;-1:-1:-1;;;24559:103:0;;;;;;;:::i;:::-;24673:39;24687:4;24693:2;24697:7;24706:5;24673:13;:39::i;:::-;24435:285;;;;:::o;55053:332::-;46372:26;46387:10;46372:14;:26::i;:::-;46431:43;46454:7;46463:10;46431:22;:43::i;:::-;:51;;46478:4;46431:51;46409:137;;;;-1:-1:-1;;;46409:137:0;;;;;;;:::i;:::-;55187:44:::1;55210:10;55222:8;55187:22;:44::i;:::-;55165:122;;;::::0;-1:-1:-1;;;55165:122:0;;25978:2:1;55165:122:0::1;::::0;::::1;25960:21:1::0;26017:2;25997:18;;;25990:30;26056;26036:18;;;26029:58;26104:18;;55165:122:0::1;25950:178:1::0;55165:122:0::1;55298:79;42837:1;55338:8:::0;55356:1:::1;::::0;55360:16:::1;::::0;57147:148;46372:26;46387:10;46372:14;:26::i;:::-;46431:43;46454:7;46463:10;46431:22;:43::i;:::-;:51;;46478:4;46431:51;46409:137;;;;-1:-1:-1;;;46409:137:0;;;;;;;:::i;:::-;57213:74:::1;43101:2;57254:1;::::0;57284::::1;57270:16;::::0;51494:400;51558:4;;;51621:29;51558:4;51621:20;:29::i;:::-;51607:43;;51668:9;51663:168;51687:3;51683:1;:7;51663:168;;;51716:10;:40;51727:28;51744:7;51753:1;51727:16;:28::i;:::-;-1:-1:-1;;;;;51716:40:0;;;;;;;;;;;;;;;-1:-1:-1;51716:40:0;;;:48;;;;;;;;;;;:56;;:48;:56;51712:108;;;51793:11;;;;:::i;:::-;;;;51712:108;51692:3;;;;:::i;:::-;;;;51663:168;;;-1:-1:-1;;51863:23:0;;-1:-1:-1;51850:36:0;;51494:400;-1:-1:-1;;51494:400:0:o;21824:360::-;26252:4;26276:16;;;:7;:16;;;;;;21897:13;;-1:-1:-1;;;;;26276:16:0;21923:76;;;;-1:-1:-1;;;21923:76:0;;23640:2:1;21923:76:0;;;23622:21:1;23679:2;23659:18;;;23652:30;23718:34;23698:18;;;23691:62;-1:-1:-1;;;23769:18:1;;;23762:45;23824:19;;21923:76:0;23612:237:1;21923:76:0;22012:21;22036:10;:8;:10::i;:::-;22012:34;;22088:1;22070:7;22064:21;:25;:112;;;;;;;;;;;;;;;;;22129:7;22138:18;:7;:16;:18::i;:::-;22112:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22064:112;22057:119;21824:360;-1:-1:-1;;;21824:360:0:o;69678:808::-;46132:26;46147:10;46132:14;:26::i;:::-;46191:46;46214:10;46226;46191:22;:46::i;:::-;:54;;46241:4;46191:54;46169:144;;;;-1:-1:-1;;;46169:144:0;;;;;;;:::i;:::-;69898:41;;::::1;:107:::0;::::1;;;-1:-1:-1::0;69960:45:0;;::::1;69898:107;69876:195;;;;-1:-1:-1::0;;;69876:195:0::1;;;;;;;:::i;:::-;70087:9;70082:397;70102:18:::0;;::::1;70082:397;;;-1:-1:-1::0;;;;;;;;;;;70175:20:0::1;:32;70196:7;;70204:1;70196:10;;;;;-1:-1:-1::0;;;70196:10:0::1;;;;;;;;;;;;;;;70175:32;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;70175:32:0::1;70226:15;:27;70242:7;;70250:1;70242:10;;;;;-1:-1:-1::0;;;70242:10:0::1;;;;;;;;;;;;;;;70226:27;;;;;;;;;;;;70272:16;;70289:1;70272:19;;;;;-1:-1:-1::0;;;70272:19:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70310:11;;70322:1;70310:14;;;;;-1:-1:-1::0;;;70310:14:0::1;;;;;;;;;;;;;;;70147:192;;;;;;;;;:::i;:::-;;;;;;;;70389:16;;70406:1;70389:19;;;;;-1:-1:-1::0;;;70389:19:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70354:20;:32;70375:7;;70383:1;70375:10;;;;;-1:-1:-1::0;;;70375:10:0::1;;;;;;;;;;;;;;;70354:32;;;;;;;;;;;;:54;;;;;-1:-1:-1::0;;;;;70354:54:0::1;;;;;-1:-1:-1::0;;;;;70354:54:0::1;;;;;;70453:11;;70465:1;70453:14;;;;;-1:-1:-1::0;;;70453:14:0::1;;;;;;;;;;;;;;;70423:15;:27;70439:7;;70447:1;70439:10;;;;;-1:-1:-1::0;;;70439:10:0::1;;;;;;;;;;;;;;;70423:27;;;;;;;;;;;:44;;;;70122:3;;;;;:::i;:::-;;;;70082:397;;;;69678:808:::0;;;;;;:::o;65465:93::-;65509:13;65542:8;65535:15;;;;;:::i;23606:164::-;-1:-1:-1;;;;;23727:25:0;;;23703:4;23727:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;23606:164;;;;;:::o;52246:533::-;52315:4;46372:26;46387:10;46372:14;:26::i;:::-;46431:43;46454:7;46463:10;46431:22;:43::i;:::-;:51;;46478:4;46431:51;46409:137;;;;-1:-1:-1;;;46409:137:0;;;;;;;:::i;:::-;52343:10:::1;52332:22;::::0;;;:10:::1;:22;::::0;;;;;;;:30;;;;;;;;:37;;-1:-1:-1;;52332:37:0::1;52365:4;52332:37;::::0;;51452:11;:19;;;;;:26;;;52447:70:::1;;;-1:-1:-1::0;52501:4:0::1;52494:11;;52447:70;52593:25;52611:6;52593:17;:25::i;:::-;52589:110;;;52635:26;52654:6;52635:18;:26::i;:::-;-1:-1:-1::0;52683:4:0::1;52676:11;;52589:110;-1:-1:-1::0;52766:5:0::1;52246:533:::0;;;:::o;66935:582::-;46132:26;46147:10;46132:14;:26::i;:::-;46191:46;46214:10;46226;46191:22;:46::i;:::-;:54;;46241:4;46191:54;46169:144;;;;-1:-1:-1;;;46169:144:0;;;;;;;:::i;:::-;67141:26:::1;67151:2;67155:7;67141:26;;;;;;;;;;;::::0;:9:::1;:26::i;:::-;67209:29;::::0;;;:20:::1;:29;::::0;;;;;;;;67253:15:::1;:24:::0;;;;;;;;67185:160;;-1:-1:-1;;;;;;;;;;;67185:160:0;::::1;::::0;-1:-1:-1;;;;;67209:29:0::1;::::0;67292:16;;67323:11;;67185:160:::1;:::i;:::-;;;;;;;;67356:29;::::0;;;:20:::1;:29;::::0;;;;;;;:48;;-1:-1:-1;;;;;;67356:48:0::1;-1:-1:-1::0;;;;;67356:48:0;;;::::1;::::0;;;::::1;::::0;;;67415:15:::1;:24:::0;;;;;:38;;;;67464:17:::1;:26:::0;;;;;:45;-1:-1:-1;66935:582:0:o;39031:152::-;39101:4;39125:50;39130:3;-1:-1:-1;;;;;39150:23:0;;39125:4;:50::i;39603:167::-;-1:-1:-1;;;;;39737:23:0;;39683:4;36412:19;;;:12;;;:19;;;;;;:24;;39707:55;36315:129;39359:158;39432:4;39456:53;39464:3;-1:-1:-1;;;;;39484:23:0;;39456:7;:53::i;39856:117::-;39919:7;39946:19;39954:3;36613:18;;36530:109;30071:174;30146:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30146:29:0;-1:-1:-1;;;;;30146:29:0;;;;;;;;:24;;30200:23;30146:24;30200:14;:23::i;:::-;-1:-1:-1;;;;;30191:46:0;;;;;;;;;;;30071:174;;:::o;57547:734::-;57734:14;;;;;;57717;57759:16;57734:14;57759:16;:::i;:::-;;;;;;57786:29;57808:6;57786:21;:29::i;:::-;57828:19;;;;:11;:19;;;;;;;;:27;;;:37;;;57876:30;;;:43;;-1:-1:-1;;;;;57876:43:0;;;-1:-1:-1;;;;;;57876:43:0;;;;;;;57930:30;;;:43;;;;;;;;;;;;;;;57984:33;;;;:25;;;;;:33;;;;:::i;:::-;-1:-1:-1;58041:10:0;58030:22;;;;:10;:22;;;;;;;;:30;;;;;;;;:37;;-1:-1:-1;;58030:37:0;58063:4;58030:37;;;;;;58078;;;:25;:37;;;;;:46;;;58191:23;;:28;58187:87;;58236:26;58255:6;58236:18;:26::i;26481:355::-;26574:4;26276:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26276:16:0;26591:73;;;;-1:-1:-1;;;26591:73:0;;18210:2:1;26591:73:0;;;18192:21:1;18249:2;18229:18;;;18222:30;18288:34;18268:18;;;18261:62;-1:-1:-1;;;18339:18:1;;;18332:42;18391:19;;26591:73:0;18182:234:1;26591:73:0;26675:13;26691:23;26706:7;26691:14;:23::i;:::-;26675:39;;26744:5;-1:-1:-1;;;;;26733:16:0;:7;-1:-1:-1;;;;;26733:16:0;;:51;;;;26777:7;-1:-1:-1;;;;;26753:31:0;:20;26765:7;26753:11;:20::i;:::-;-1:-1:-1;;;;;26753:31:0;;26733:51;:94;;;;26788:39;26812:5;26819:7;26788:23;:39::i;:::-;26725:103;26481:355;-1:-1:-1;;;;26481:355:0:o;29409:544::-;29534:4;-1:-1:-1;;;;;29507:31:0;:23;29522:7;29507:14;:23::i;:::-;-1:-1:-1;;;;;29507:31:0;;29499:85;;;;-1:-1:-1;;;29499:85:0;;23230:2:1;29499:85:0;;;23212:21:1;23269:2;23249:18;;;23242:30;23308:34;23288:18;;;23281:62;-1:-1:-1;;;23359:18:1;;;23352:39;23408:19;;29499:85:0;23202:231:1;29499:85:0;-1:-1:-1;;;;;29603:16:0;;29595:65;;;;-1:-1:-1;;;29595:65:0;;17042:2:1;29595:65:0;;;17024:21:1;17081:2;17061:18;;;17054:30;17120:34;17100:18;;;17093:62;-1:-1:-1;;;17171:18:1;;;17164:34;17215:19;;29595:65:0;17014:226:1;29595:65:0;29777:29;29794:1;29798:7;29777:8;:29::i;:::-;-1:-1:-1;;;;;29819:15:0;;;;;;:9;:15;;;;;:20;;29838:1;;29819:15;:20;;29838:1;;29819:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29850:13:0;;;;;;:9;:13;;;;;:18;;29867:1;;29850:13;:18;;29867:1;;29850:18;:::i;:::-;;;;-1:-1:-1;;29879:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29879:21:0;-1:-1:-1;;;;;29879:21:0;;;;;;;;;29918:27;;29879:16;;29918:27;;;;;;;29409:544;;;:::o;40317:158::-;40391:7;40442:22;40446:3;40458:5;40442:3;:22::i;62940:116::-;47317:7;;;;47316:8;47308:45;;;;-1:-1:-1;;;47308:45:0;;25281:2:1;47308:45:0;;;25263:21:1;25320:2;25300:18;;;25293:30;25359:26;25339:18;;;25332:54;25403:18;;47308:45:0;25253:174:1;47308:45:0;63000:7:::1;:14:::0;;-1:-1:-1;;63000:14:0::1;63010:4;63000:14;::::0;;63030:18:::1;::::0;63037:10:::1;10955:51:1::0;;63030:18:0::1;::::0;10943:2:1;10928:18;63030::0::1;;;;;;;;62940:116::o:0;27515:250::-;27611:18;27617:2;27621:7;27611:5;:18::i;:::-;27648:54;27679:1;27683:2;27687:7;27696:5;27648:22;:54::i;:::-;27640:117;;;;-1:-1:-1;;;27640:117:0;;;;;;;:::i;25602:272::-;25716:28;25726:4;25732:2;25736:7;25716:9;:28::i;:::-;25763:48;25786:4;25792:2;25796:7;25805:5;25763:22;:48::i;:::-;25755:111;;;;-1:-1:-1;;;25755:111:0;;;;;;;:::i;16493:723::-;16549:13;16770:10;16766:53;;-1:-1:-1;16797:10:0;;;;;;;;;;;;-1:-1:-1;;;16797:10:0;;;;;;16766:53;16844:5;16829:12;16885:78;16892:9;;16885:78;;16918:8;;;;:::i;:::-;;-1:-1:-1;16941:10:0;;-1:-1:-1;16949:2:0;16941:10;;:::i;:::-;;;16885:78;;;16973:19;17005:6;16995:17;;;;;;-1:-1:-1;;;16995:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16995:17:0;;16973:39;;17023:154;17030:10;;17023:154;;17057:11;17067:1;17057:11;;:::i;:::-;;-1:-1:-1;17126:10:0;17134:2;17126:5;:10;:::i;:::-;17113:24;;:2;:24;:::i;:::-;17100:39;;17083:6;17090;17083:14;;;;;;-1:-1:-1;;;17083:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17083:56:0;;;;;;;;-1:-1:-1;17154:11:0;17163:2;17154:11;;:::i;:::-;;;17023:154;;58410:1675;58478:19;;;;:11;:19;;;;;42629:1;58478:27;;;;:46;58474:1558;;;58551:19;;;;:11;:19;;;;;:30;;;58541:41;;-1:-1:-1;;;;;58551:30:0;58541:9;:41::i;:::-;58474:1558;;;58604:19;;;;:11;:19;;;;;:27;;;42680:1;58604:49;58600:1432;;;58683:19;;;;:11;:19;;;;;:30;;;58670:44;;-1:-1:-1;;;;;58683:30:0;58670:12;:44::i;58600:1432::-;58736:19;;;;:11;:19;;;;;:27;;;42732:1;58736:50;58732:1300;;;58835:19;;;;:11;:19;;;;;:30;;;;58884;;;;;58803:126;;-1:-1:-1;;;;;58835:30:0;;;;58884;58803:13;:126::i;58732:1300::-;58951:19;;;;:11;:19;;;;;:27;;;42783:1;58951:49;58947:1085;;;59030:19;;;;:11;:19;;;;;:30;;;59017:44;;-1:-1:-1;;;;;59030:30:0;59017:12;:44::i;58947:1085::-;59083:19;;;;:11;:19;;;;;:27;;;42837:1;59083:52;59079:953;;;59168:19;;;;:11;:19;;;;;:30;;;59152:47;;-1:-1:-1;;;;;59168:30:0;59152:15;:47::i;59079:953::-;59221:19;;;;:11;:19;;;;;:27;;;42892:1;59221:53;59217:815;;;59326:19;;;;:11;:19;;;;;:30;;;;59375;;;;;59291:129;;-1:-1:-1;;;;;59326:30:0;;;;59375;59291:16;:129::i;59217:815::-;59456:19;;;;:11;:19;;;;;:27;;;43009:1;59456:60;59438:594;;;59575:19;;;;:11;:19;;;;;:30;;;59543:64;;-1:-1:-1;;;;;59575:30:0;59543:23;:64::i;59438:594::-;59629:19;;;;:11;:19;;;;;:27;;;42947:1;59629:53;59625:407;;;59724:19;;;;:11;:19;;;;;:30;;;59699:57;;-1:-1:-1;;;;;59724:30:0;59699:16;:57::i;59625:407::-;59778:19;;;;:11;:19;;;;;:27;;;43054:1;59778:43;59774:258;;;59838:8;:6;:8::i;59774:258::-;59868:19;;;;:11;:19;;;;;:27;;;43101:2;59868:45;59864:168;;;59930:10;:8;:10::i;59864:168::-;60014:7;;59864:168;60044:19;;;;:11;:19;;;;;:33;;-1:-1:-1;;60044:33:0;60073:4;60044:33;;;58410:1675;:::o;34086:414::-;34149:4;36412:19;;;:12;;;:19;;;;;;34166:327;;-1:-1:-1;34209:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;34392:18;;34370:19;;;:12;;;:19;;;;;;:40;;;;34425:11;;34166:327;-1:-1:-1;34476:5:0;34469:12;;34676:1553;34742:4;34881:19;;;:12;;;:19;;;;;;34917:15;;34913:1309;;35279:21;35303:14;35316:1;35303:10;:14;:::i;:::-;35352:18;;35279:38;;-1:-1:-1;35332:17:0;;35352:22;;35373:1;;35352:22;:::i;:::-;35332:42;;35619:17;35639:3;:11;;35651:9;35639:22;;;;;;-1:-1:-1;;;35639:22:0;;;;;;;;;;;;;;;;;35619:42;;35785:9;35756:3;:11;;35768:13;35756:26;;;;;;-1:-1:-1;;;35756:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;35862:23;;;:12;;;:23;;;;;;:36;;;36023:17;;35862:3;;36023:17;;;-1:-1:-1;;;36023:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;36118:3;:12;;:19;36131:5;36118:19;;;;;;;;;;;36111:26;;;36161:4;36154:11;;;;;;;;34913:1309;36205:5;36198:12;;;;;36983:204;37078:18;;37050:7;;37078:26;-1:-1:-1;37070:73:0;;;;-1:-1:-1;;;37070:73:0;;14731:2:1;37070:73:0;;;14713:21:1;14770:2;14750:18;;;14743:30;14809:34;14789:18;;;14782:62;-1:-1:-1;;;14860:18:1;;;14853:32;14902:19;;37070:73:0;14703:224:1;37070:73:0;37161:3;:11;;37173:5;37161:18;;;;;;-1:-1:-1;;;37161:18:0;;;;;;;;;;;;;;;;;37154:25;;36983:204;;;;:::o;28101:382::-;-1:-1:-1;;;;;28181:16:0;;28173:61;;;;-1:-1:-1;;;28173:61:0;;21698:2:1;28173:61:0;;;21680:21:1;;;21717:18;;;21710:30;21776:34;21756:18;;;21749:62;21828:18;;28173:61:0;21670:182:1;28173:61:0;26252:4;26276:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26276:16:0;:30;28245:58;;;;-1:-1:-1;;;28245:58:0;;16325:2:1;28245:58:0;;;16307:21:1;16364:2;16344:18;;;16337:30;16403;16383:18;;;16376:58;16451:18;;28245:58:0;16297:178:1;28245:58:0;-1:-1:-1;;;;;28374:13:0;;;;;;:9;:13;;;;;:18;;28391:1;;28374:13;:18;;28391:1;;28374:18;:::i;:::-;;;;-1:-1:-1;;28403:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28403:21:0;-1:-1:-1;;;;;28403:21:0;;;;;;;;28442:33;;28403:16;;;28442:33;;28403:16;;28442:33;28101:382;;:::o;30810:843::-;30931:4;-1:-1:-1;;;;;30957:13:0;;8326:20;8365:8;30953:693;;30993:72;;-1:-1:-1;;;30993:72:0;;-1:-1:-1;;;;;30993:36:0;;;;;:72;;15920:10;;31044:4;;31050:7;;31059:5;;30993:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30993:72:0;;;;;;;;-1:-1:-1;;30993:72:0;;;;;;;;;;;;:::i;:::-;;;30989:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31239:13:0;;31235:341;;31282:60;;-1:-1:-1;;;31282:60:0;;;;;;;:::i;31235:341::-;31526:6;31520:13;31511:6;31507:2;31503:15;31496:38;30989:602;-1:-1:-1;;;;;;31116:55:0;-1:-1:-1;;;31116:55:0;;-1:-1:-1;31109:62:0;;30953:693;-1:-1:-1;31630:4:0;30810:843;;;;;;:::o;60444:140::-;60501:36;60519:7;60528:8;60501:17;:36::i;:::-;-1:-1:-1;60553:23:0;;-1:-1:-1;;;;;10973:32:1;;10955:51;;60553:23:0;;10943:2:1;10928:18;60553:23:0;;;;;;;;60444:140;:::o;60606:299::-;60666:39;60687:7;60696:8;60666:20;:39::i;:::-;-1:-1:-1;60721:22:0;;-1:-1:-1;;;;;10973:32:1;;10955:51;;60721:22:0;;10943:2:1;10928:18;60721:22:0;;;;;;;60756:14;60773:19;:17;:19::i;:::-;60756:36;;60833:9;60807:23;;:35;60803:95;;;60859:27;60876:9;60859:16;:27::i;60927:225::-;61006:39;61027:7;61036:8;61006:20;:39::i;:::-;;61056:36;61074:7;61083:8;61056:17;:36::i;:::-;-1:-1:-1;61108:36:0;;;-1:-1:-1;;;;;11247:15:1;;;11229:34;;11299:15;;11294:2;11279:18;;11272:43;61108:36:0;;11164:18:1;61108:36:0;;;;;;;60927:225;;:::o;61174:149::-;61234:39;61252:10;61264:8;61234:17;:39::i;:::-;-1:-1:-1;61289:26:0;;-1:-1:-1;;;;;10973:32:1;;10955:51;;61289:26:0;;10943:2:1;10928:18;61289:26:0;10910:102:1;61345:154:0;61408:42;61429:10;61441:8;61408:20;:42::i;:::-;-1:-1:-1;61466:25:0;;-1:-1:-1;;;;;10973:32:1;;10955:51;;61466:25:0;;10943:2:1;10928:18;61466:25:0;10910:102:1;61521:269:0;61628:45;;;-1:-1:-1;;;;;11247:15:1;;;11229:34;;11299:15;;11294:2;11279:18;;11272:43;61628:45:0;;11164:18:1;61628:45:0;;;;;;;61684;61705:10;61717:11;61684:20;:45::i;:::-;;61740:42;61758:10;61770:11;61740:17;:42::i;61875:154::-;61951:32;;14016:25:1;;;61951:32:0;;14004:2:1;13989:18;61951:32:0;;;;;;;61994:16;:27;61875:154::o;62113:290::-;62210:19;:17;:19::i;:::-;62197:9;:32;;62175:132;;;;-1:-1:-1;;;62175:132:0;;15134:2:1;62175:132:0;;;15116:21:1;15173:2;15153:18;;;15146:30;15212:34;15192:18;;;15185:62;-1:-1:-1;;;15263:18:1;;;15256:48;15321:19;;62175:132:0;15106:240:1;62175:132:0;62323:26;;14016:25:1;;;62323:26:0;;14004:2:1;13989:18;62323:26:0;;;;;;;62360:23;:35;62113:290::o;63179:118::-;47575:7;;;;47567:48;;;;-1:-1:-1;;;47567:48:0;;20985:2:1;47567:48:0;;;20967:21:1;21024:2;21004:18;;;20997:30;21063;21043:18;;;21036:58;21111:18;;47567:48:0;20957:178:1;47567:48:0;63238:7:::1;:15:::0;;-1:-1:-1;;63238:15:0::1;::::0;;63269:20:::1;::::0;63278:10:::1;10955:51:1::0;;63269:20:0::1;::::0;10943:2:1;10928:18;63269:20:0::1;10910:102:1::0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:391:1;;;141:3;134:4;126:6;122:17;118:27;108:2;;164:6;156;149:22;108:2;-1:-1:-1;192:20:1;;235:18;224:30;;221:2;;;274:8;264;257:26;221:2;318:4;310:6;306:17;294:29;;378:3;371:4;361:6;358:1;354:14;346:6;342:27;338:38;335:47;332:2;;;395:1;392;385:12;332:2;98:307;;;;;:::o;410:738::-;;505:3;498:4;490:6;486:17;482:27;472:2;;527:5;520;513:20;472:2;567:6;554:20;593:18;630:2;626;623:10;620:2;;;636:18;;:::i;:::-;711:2;705:9;679:2;765:13;;-1:-1:-1;;761:22:1;;;785:2;757:31;753:40;741:53;;;809:18;;;829:22;;;806:46;803:2;;;855:18;;:::i;:::-;895:10;891:2;884:22;930:2;922:6;915:18;976:3;969:4;964:2;956:6;952:15;948:26;945:35;942:2;;;997:5;990;983:20;942:2;1065;1058:4;1050:6;1046:17;1039:4;1031:6;1027:17;1014:54;1088:15;;;1105:4;1084:26;1077:41;;;;-1:-1:-1;1092:6:1;462:686;-1:-1:-1;;;462:686:1:o;1153:257::-;;1265:2;1253:9;1244:7;1240:23;1236:32;1233:2;;;1286:6;1278;1271:22;1233:2;1330:9;1317:23;1349:31;1374:5;1349:31;:::i;1415:398::-;;;1544:2;1532:9;1523:7;1519:23;1515:32;1512:2;;;1565:6;1557;1550:22;1512:2;1609:9;1596:23;1628:31;1653:5;1628:31;:::i;:::-;1678:5;-1:-1:-1;1735:2:1;1720:18;;1707:32;1748:33;1707:32;1748:33;:::i;:::-;1800:7;1790:17;;;1502:311;;;;;:::o;1818:466::-;;;;1964:2;1952:9;1943:7;1939:23;1935:32;1932:2;;;1985:6;1977;1970:22;1932:2;2029:9;2016:23;2048:31;2073:5;2048:31;:::i;:::-;2098:5;-1:-1:-1;2155:2:1;2140:18;;2127:32;2168:33;2127:32;2168:33;:::i;:::-;1922:362;;2220:7;;-1:-1:-1;;;2274:2:1;2259:18;;;;2246:32;;1922:362::o;2289:685::-;;;;;2461:3;2449:9;2440:7;2436:23;2432:33;2429:2;;;2483:6;2475;2468:22;2429:2;2527:9;2514:23;2546:31;2571:5;2546:31;:::i;:::-;2596:5;-1:-1:-1;2653:2:1;2638:18;;2625:32;2666:33;2625:32;2666:33;:::i;:::-;2718:7;-1:-1:-1;2772:2:1;2757:18;;2744:32;;-1:-1:-1;2827:2:1;2812:18;;2799:32;2854:18;2843:30;;2840:2;;;2891:6;2883;2876:22;2840:2;2919:49;2960:7;2951:6;2940:9;2936:22;2919:49;:::i;:::-;2909:59;;;2419:555;;;;;;;:::o;2979:436::-;;;3105:2;3093:9;3084:7;3080:23;3076:32;3073:2;;;3126:6;3118;3111:22;3073:2;3170:9;3157:23;3189:31;3214:5;3189:31;:::i;:::-;3239:5;-1:-1:-1;3296:2:1;3281:18;;3268:32;3338:15;;3331:23;3319:36;;3309:2;;3374:6;3366;3359:22;3420:325;;;3549:2;3537:9;3528:7;3524:23;3520:32;3517:2;;;3570:6;3562;3555:22;3517:2;3614:9;3601:23;3633:31;3658:5;3633:31;:::i;:::-;3683:5;3735:2;3720:18;;;;3707:32;;-1:-1:-1;;;3507:238:1:o;3750:604::-;;;;;;3930:3;3918:9;3909:7;3905:23;3901:33;3898:2;;;3952:6;3944;3937:22;3898:2;3996:9;3983:23;4015:31;4040:5;4015:31;:::i;:::-;4065:5;-1:-1:-1;4117:2:1;4102:18;;4089:32;;-1:-1:-1;4173:2:1;4158:18;;4145:32;4186:33;4145:32;4186:33;:::i;:::-;3888:466;;;;-1:-1:-1;4238:7:1;;4292:2;4277:18;;4264:32;;-1:-1:-1;4343:3:1;4328:19;4315:33;;3888:466;-1:-1:-1;;3888:466:1:o;4359:1780::-;;;;;;;;;;;4714:3;4702:9;4693:7;4689:23;4685:33;4682:2;;;4736:6;4728;4721:22;4682:2;4781:9;4768:23;4810:18;4851:2;4843:6;4840:14;4837:2;;;4872:6;4864;4857:22;4837:2;4916:70;4978:7;4969:6;4958:9;4954:22;4916:70;:::i;:::-;5005:8;;-1:-1:-1;4890:96:1;-1:-1:-1;5093:2:1;5078:18;;5065:32;;-1:-1:-1;5109:16:1;;;5106:2;;;5143:6;5135;5128:22;5106:2;5187:72;5251:7;5240:8;5229:9;5225:24;5187:72;:::i;:::-;5278:8;;-1:-1:-1;5161:98:1;-1:-1:-1;5366:2:1;5351:18;;5338:32;;-1:-1:-1;5382:16:1;;;5379:2;;;5416:6;5408;5401:22;5379:2;5460:72;5524:7;5513:8;5502:9;5498:24;5460:72;:::i;:::-;5551:8;;-1:-1:-1;5434:98:1;-1:-1:-1;5639:2:1;5624:18;;5611:32;;-1:-1:-1;5655:16:1;;;5652:2;;;5689:6;5681;5674:22;5652:2;5733:72;5797:7;5786:8;5775:9;5771:24;5733:72;:::i;:::-;5824:8;;-1:-1:-1;5707:98:1;-1:-1:-1;5912:3:1;5897:19;;5884:33;;-1:-1:-1;5929:16:1;;;5926:2;;;5963:6;5955;5948:22;5926:2;;6007:72;6071:7;6060:8;6049:9;6045:24;6007:72;:::i;:::-;5981:98;;6098:8;6088:18;;;6125:8;6115:18;;;4672:1467;;;;;;;;;;;;;:::o;6144:1128::-;;;;;;;6395:2;6383:9;6374:7;6370:23;6366:32;6363:2;;;6416:6;6408;6401:22;6363:2;6461:9;6448:23;6490:18;6531:2;6523:6;6520:14;6517:2;;;6552:6;6544;6537:22;6517:2;6596:70;6658:7;6649:6;6638:9;6634:22;6596:70;:::i;:::-;6685:8;;-1:-1:-1;6570:96:1;-1:-1:-1;6773:2:1;6758:18;;6745:32;;-1:-1:-1;6789:16:1;;;6786:2;;;6823:6;6815;6808:22;6786:2;6867:72;6931:7;6920:8;6909:9;6905:24;6867:72;:::i;:::-;6958:8;;-1:-1:-1;6841:98:1;-1:-1:-1;7046:2:1;7031:18;;7018:32;;-1:-1:-1;7062:16:1;;;7059:2;;;7096:6;7088;7081:22;7059:2;;7140:72;7204:7;7193:8;7182:9;7178:24;7140:72;:::i;:::-;6353:919;;;;-1:-1:-1;6353:919:1;;-1:-1:-1;6353:919:1;;7231:8;;6353:919;-1:-1:-1;;;6353:919:1:o;7277:803::-;;;;;7476:2;7464:9;7455:7;7451:23;7447:32;7444:2;;;7497:6;7489;7482:22;7444:2;7542:9;7529:23;7571:18;7612:2;7604:6;7601:14;7598:2;;;7633:6;7625;7618:22;7598:2;7677:70;7739:7;7730:6;7719:9;7715:22;7677:70;:::i;:::-;7766:8;;-1:-1:-1;7651:96:1;-1:-1:-1;7854:2:1;7839:18;;7826:32;;-1:-1:-1;7870:16:1;;;7867:2;;;7904:6;7896;7889:22;7867:2;;7948:72;8012:7;8001:8;7990:9;7986:24;7948:72;:::i;:::-;7434:646;;;;-1:-1:-1;8039:8:1;-1:-1:-1;;;;7434:646:1:o;8085:255::-;;8196:2;8184:9;8175:7;8171:23;8167:32;8164:2;;;8217:6;8209;8202:22;8164:2;8261:9;8248:23;8280:30;8304:5;8280:30;:::i;8345:259::-;;8467:2;8455:9;8446:7;8442:23;8438:32;8435:2;;;8488:6;8480;8473:22;8435:2;8525:9;8519:16;8544:30;8568:5;8544:30;:::i;8609:340::-;;8730:2;8718:9;8709:7;8705:23;8701:32;8698:2;;;8751:6;8743;8736:22;8698:2;8796:9;8783:23;8829:18;8821:6;8818:30;8815:2;;;8866:6;8858;8851:22;8815:2;8894:49;8935:7;8926:6;8915:9;8911:22;8894:49;:::i;9216:190::-;;9328:2;9316:9;9307:7;9303:23;9299:32;9296:2;;;9349:6;9341;9334:22;9296:2;-1:-1:-1;9377:23:1;;9286:120;-1:-1:-1;9286:120:1:o;9411:393::-;;;;9557:2;9545:9;9536:7;9532:23;9528:32;9525:2;;;9578:6;9570;9563:22;9525:2;9619:9;9606:23;9596:33;;9679:2;9668:9;9664:18;9651:32;9692:31;9717:5;9692:31;:::i;9809:258::-;;;9938:2;9926:9;9917:7;9913:23;9909:32;9906:2;;;9959:6;9951;9944:22;9906:2;-1:-1:-1;;9987:23:1;;;10057:2;10042:18;;;10029:32;;-1:-1:-1;9896:171:1:o;10072:257::-;;10151:5;10145:12;10178:6;10173:3;10166:19;10194:63;10250:6;10243:4;10238:3;10234:14;10227:4;10220:5;10216:16;10194:63;:::i;:::-;10311:2;10290:15;-1:-1:-1;;10286:29:1;10277:39;;;;10318:4;10273:50;;10121:208;-1:-1:-1;;10121:208:1:o;10334:470::-;;10551:6;10545:13;10567:53;10613:6;10608:3;10601:4;10593:6;10589:17;10567:53;:::i;:::-;10683:13;;10642:16;;;;10705:57;10683:13;10642:16;10739:4;10727:17;;10705:57;:::i;:::-;10778:20;;10521:283;-1:-1:-1;;;;10521:283:1:o;11326:488::-;-1:-1:-1;;;;;11595:15:1;;;11577:34;;11647:15;;11642:2;11627:18;;11620:43;11694:2;11679:18;;11672:34;;;11742:3;11737:2;11722:18;;11715:31;;;11326:488;;11763:45;;11788:19;;11780:6;11763:45;:::i;:::-;11755:53;11529:285;-1:-1:-1;;;;;;11529:285:1:o;12098:447::-;-1:-1:-1;;;;;12385:15:1;;;12367:34;;12432:2;12417:18;;12410:34;;;;12480:15;;12475:2;12460:18;;12453:43;12527:2;12512:18;;12505:34;;;;12316:3;12301:19;;12283:262::o;12550:661::-;12721:2;12773:21;;;12843:13;;12746:18;;;12865:22;;;12550:661;;12721:2;12944:15;;;;12918:2;12903:18;;;12550:661;12990:195;13004:6;13001:1;12998:13;12990:195;;;13069:13;;-1:-1:-1;;;;;13065:39:1;13053:52;;13160:15;;;;13125:12;;;;13101:1;13019:9;12990:195;;;-1:-1:-1;13202:3:1;;12701:510;-1:-1:-1;;;;;;12701:510:1:o;14305:219::-;;14454:2;14443:9;14436:21;14474:44;14514:2;14503:9;14499:18;14491:6;14474:44;:::i;15351:414::-;15553:2;15535:21;;;15592:2;15572:18;;;15565:30;15631:34;15626:2;15611:18;;15604:62;-1:-1:-1;;;15697:2:1;15682:18;;15675:48;15755:3;15740:19;;15525:240::o;17599:404::-;17801:2;17783:21;;;17840:2;17820:18;;;17813:30;17879:34;17874:2;17859:18;;17852:62;-1:-1:-1;;;17945:2:1;17930:18;;17923:38;17993:3;17978:19;;17773:230::o;21857:402::-;22059:2;22041:21;;;22098:2;22078:18;;;22071:30;22137:34;22132:2;22117:18;;22110:62;-1:-1:-1;;;22203:2:1;22188:18;;22181:36;22249:3;22234:19;;22031:228::o;24256:413::-;24458:2;24440:21;;;24497:2;24477:18;;;24470:30;24536:34;24531:2;24516:18;;24509:62;-1:-1:-1;;;24602:2:1;24587:18;;24580:47;24659:3;24644:19;;24430:239::o;24674:400::-;24876:2;24858:21;;;24915:2;24895:18;;;24888:30;24954:34;24949:2;24934:18;;24927:62;-1:-1:-1;;;25020:2:1;25005:18;;24998:34;25064:3;25049:19;;24848:226::o;26862:128::-;;26933:1;26929:6;26926:1;26923:13;26920:2;;;26939:18;;:::i;:::-;-1:-1:-1;26975:9:1;;26910:80::o;26995:120::-;;27061:1;27051:2;;27066:18;;:::i;:::-;-1:-1:-1;27100:9:1;;27041:74::o;27120:168::-;;27226:1;27222;27218:6;27214:14;27211:1;27208:21;27203:1;27196:9;27189:17;27185:45;27182:2;;;27233:18;;:::i;:::-;-1:-1:-1;27273:9:1;;27172:116::o;27293:125::-;;27361:1;27358;27355:8;27352:2;;;27366:18;;:::i;:::-;-1:-1:-1;27403:9:1;;27342:76::o;27423:258::-;27495:1;27505:113;27519:6;27516:1;27513:13;27505:113;;;27595:11;;;27589:18;27576:11;;;27569:39;27541:2;27534:10;27505:113;;;27636:6;27633:1;27630:13;27627:2;;;-1:-1:-1;;27671:1:1;27653:16;;27646:27;27476:205::o;27686:380::-;27765:1;27761:12;;;;27808;;;27829:2;;27883:4;27875:6;27871:17;27861:27;;27829:2;27936;27928:6;27925:14;27905:18;27902:38;27899:2;;;27982:10;27977:3;27973:20;27970:1;27963:31;28017:4;28014:1;28007:15;28045:4;28042:1;28035:15;27899:2;;27741:325;;;:::o;28071:135::-;;-1:-1:-1;;28131:17:1;;28128:2;;;28151:18;;:::i;:::-;-1:-1:-1;28198:1:1;28187:13;;28118:88::o;28211:112::-;;28269:1;28259:2;;28274:18;;:::i;:::-;-1:-1:-1;28308:9:1;;28249:74::o;28328:127::-;28389:10;28384:3;28380:20;28377:1;28370:31;28420:4;28417:1;28410:15;28444:4;28441:1;28434:15;28460:127;28521:10;28516:3;28512:20;28509:1;28502:31;28552:4;28549:1;28542:15;28576:4;28573:1;28566:15;28592:127;28653:10;28648:3;28644:20;28641:1;28634:31;28684:4;28681:1;28674:15;28708:4;28705:1;28698:15;28724:131;-1:-1:-1;;;;;28799:31:1;;28789:42;;28779:2;;28845:1;28842;28835:12;28860:131;-1:-1:-1;;;;;;28934:32:1;;28924:43;;28914:2;;28981:1;28978;28971:12
Swarm Source
ipfs://4ae280b73dea84a63eded3f362e057a923fda2b00dca46eca8847e81c4ab1ca9
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.