Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 210 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim MKVX | 20968498 | 45 days ago | IN | 0 ETH | 0.0023076 | ||||
Claim MKVX | 20657574 | 89 days ago | IN | 0 ETH | 0.00015504 | ||||
Set Approval For... | 20368721 | 129 days ago | IN | 0 ETH | 0.00022182 | ||||
Claim MKVX | 20353432 | 131 days ago | IN | 0 ETH | 0.00040575 | ||||
Claim MKVX | 20310779 | 137 days ago | IN | 0 ETH | 0.00086448 | ||||
Set Approval For... | 20004489 | 180 days ago | IN | 0 ETH | 0.00040612 | ||||
Set Approval For... | 19656178 | 229 days ago | IN | 0 ETH | 0.00046562 | ||||
Set Approval For... | 19484378 | 253 days ago | IN | 0 ETH | 0.00163258 | ||||
Set Approval For... | 19019429 | 318 days ago | IN | 0 ETH | 0.00143841 | ||||
Claim MKVX | 18998560 | 321 days ago | IN | 0 ETH | 0.00310298 | ||||
Claim MKVX | 18890712 | 336 days ago | IN | 0 ETH | 0.00346839 | ||||
Claim MKVX | 18890706 | 336 days ago | IN | 0 ETH | 0.00368328 | ||||
Claim MKVX | 18890700 | 336 days ago | IN | 0 ETH | 0.00336461 | ||||
Claim MKVX | 18867795 | 339 days ago | IN | 0 ETH | 0.00249925 | ||||
Claim MKVX | 18860157 | 340 days ago | IN | 0 ETH | 0.00229292 | ||||
Set Base URI | 18828743 | 345 days ago | IN | 0 ETH | 0.00234535 | ||||
Safe Transfer Fr... | 18341146 | 413 days ago | IN | 0 ETH | 0.00044357 | ||||
Safe Transfer Fr... | 18341089 | 413 days ago | IN | 0 ETH | 0.00037188 | ||||
Claim MKVX | 18341078 | 413 days ago | IN | 0 ETH | 0.00090645 | ||||
Claim MKVX | 18240474 | 427 days ago | IN | 0 ETH | 0.00116967 | ||||
Claim MKVX | 18240462 | 427 days ago | IN | 0 ETH | 0.0011986 | ||||
Claim MKVX | 18134023 | 442 days ago | IN | 0 ETH | 0.00188046 | ||||
Claim MKVX | 18134022 | 442 days ago | IN | 0 ETH | 0.001939 | ||||
Claim MKVX | 18063912 | 452 days ago | IN | 0 ETH | 0.00458138 | ||||
Claim MKVX | 18043016 | 455 days ago | IN | 0 ETH | 0.00507775 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
MKZVX
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-28 */ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping (uint256 => address) private _owners; // Mapping owner address to token count mapping (address => uint256) private _balances; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/MKZVX.sol pragma solidity ^0.8.0; abstract contract MKZ { function balanceOf(address owner, uint256 id) external virtual view returns (uint256 balance); } contract MKZVX is ERC721Enumerable, Ownable { MKZ private mkz; uint constant public MAX_MKZVX = 500; address private openSeaContract = 0x495f947276749Ce646f68AC8c248420045cb7b5e; bool public claimIsActive = false; uint256 public maxMKZVX; string private baseURI; uint256[] private mkzTokenId = [ 106927580289739319741994837130987506128463962128337696457128951090832736256001 , 106927580289739319741994837130987506128463962128337696457128951091932247883777 , 106927580289739319741994837130987506128463962128337696457128951093031759511553 , 106927580289739319741994837130987506128463962128337696457128951094131271139329 , 106927580289739319741994837130987506128463962128337696457128951095230782767105 , 106927580289739319741994837130987506128463962128337696457128951096330294394881 , 106927580289739319741994837130987506128463962128337696457128951097429806022657 , 106927580289739319741994837130987506128463962128337696457128951098529317650433 , 106927580289739319741994837130987506128463962128337696457128951099628829278209 , 106927580289739319741994837130987506128463962128337696457128951100728340905985 , 106927580289739319741994837130987506128463962128337696457128951101827852533761 , 106927580289739319741994837130987506128463962128337696457128951102927364161537 , 106927580289739319741994837130987506128463962128337696457128951104026875789313 , 106927580289739319741994837130987506128463962128337696457128951105126387417089 , 106927580289739319741994837130987506128463962128337696457128951106225899044865 , 106927580289739319741994837130987506128463962128337696457128951107325410672641 , 106927580289739319741994837130987506128463962128337696457128951108424922300417 , 106927580289739319741994837130987506128463962128337696457128951109524433928193 , 106927580289739319741994837130987506128463962128337696457128951110623945555969 , 106927580289739319741994837130987506128463962128337696457128951111723457183745 , 106927580289739319741994837130987506128463962128337696457128951112822968811521 , 106927580289739319741994837130987506128463962128337696457128951113922480439297 , 106927580289739319741994837130987506128463962128337696457128951115021992067073 , 106927580289739319741994837130987506128463962128337696457128951116121503694849 , 106927580289739319741994837130987506128463962128337696457128951117221015322625 , 106927580289739319741994837130987506128463962128337696457128951118320526950401 , 106927580289739319741994837130987506128463962128337696457128951119420038578177 , 106927580289739319741994837130987506128463962128337696457128951120519550205953 , 106927580289739319741994837130987506128463962128337696457128951121619061833729 , 106927580289739319741994837130987506128463962128337696457128951122718573461505 , 106927580289739319741994837130987506128463962128337696457128951123818085089281 , 106927580289739319741994837130987506128463962128337696457128951124917596717057 , 106927580289739319741994837130987506128463962128337696457128951126017108344833 , 106927580289739319741994837130987506128463962128337696457128951127116619972609 , 106927580289739319741994837130987506128463962128337696457128951128216131600385 , 106927580289739319741994837130987506128463962128337696457128951129315643228161 , 106927580289739319741994837130987506128463962128337696457128951130415154855937 , 106927580289739319741994837130987506128463962128337696457128951131514666483713 , 106927580289739319741994837130987506128463962128337696457128951132614178111489 , 106927580289739319741994837130987506128463962128337696457128951133713689739265 , 106927580289739319741994837130987506128463962128337696457128951134813201367041 , 106927580289739319741994837130987506128463962128337696457128951135912712994817 , 106927580289739319741994837130987506128463962128337696457128951137012224622593 , 106927580289739319741994837130987506128463962128337696457128951138111736250369 , 106927580289739319741994837130987506128463962128337696457128951139211247878145 , 106927580289739319741994837130987506128463962128337696457128951140310759505921 , 106927580289739319741994837130987506128463962128337696457128951141410271133697 , 106927580289739319741994837130987506128463962128337696457128951142509782761473 , 106927580289739319741994837130987506128463962128337696457128951143609294389249 , 106927580289739319741994837130987506128463962128337696457128951144708806017025 , 106927580289739319741994837130987506128463962128337696457128951145808317644801 , 106927580289739319741994837130987506128463962128337696457128951146907829272577 , 106927580289739319741994837130987506128463962128337696457128951148007340900353 , 106927580289739319741994837130987506128463962128337696457128951149106852528129 , 106927580289739319741994837130987506128463962128337696457128951150206364155905 , 106927580289739319741994837130987506128463962128337696457128951151305875783681 , 106927580289739319741994837130987506128463962128337696457128951152405387411457 , 106927580289739319741994837130987506128463962128337696457128951153504899039233 , 106927580289739319741994837130987506128463962128337696457128951154604410667009 , 106927580289739319741994837130987506128463962128337696457128951155703922294785 , 106927580289739319741994837130987506128463962128337696457128951156803433922561 , 106927580289739319741994837130987506128463962128337696457128951157902945550337 , 106927580289739319741994837130987506128463962128337696457128951159002457178113 , 106927580289739319741994837130987506128463962128337696457128951160101968805889 , 106927580289739319741994837130987506128463962128337696457128951161201480433665 , 106927580289739319741994837130987506128463962128337696457128951162300992061441 , 106927580289739319741994837130987506128463962128337696457128951163400503689217 , 106927580289739319741994837130987506128463962128337696457128951164500015316993 , 106927580289739319741994837130987506128463962128337696457128951165599526944769 , 106927580289739319741994837130987506128463962128337696457128951166699038572545 , 106927580289739319741994837130987506128463962128337696457128951167798550200321 , 106927580289739319741994837130987506128463962128337696457128951168898061828097 , 106927580289739319741994837130987506128463962128337696457128951169997573455873 , 106927580289739319741994837130987506128463962128337696457128951171097085083649 , 106927580289739319741994837130987506128463962128337696457128951172196596711425 , 106927580289739319741994837130987506128463962128337696457128951173296108339201 , 106927580289739319741994837130987506128463962128337696457128951174395619966977 , 106927580289739319741994837130987506128463962128337696457128951175495131594753 , 106927580289739319741994837130987506128463962128337696457128951176594643222529 , 106927580289739319741994837130987506128463962128337696457128951177694154850305 , 106927580289739319741994837130987506128463962128337696457128951178793666478081 , 106927580289739319741994837130987506128463962128337696457128951179893178105857 , 106927580289739319741994837130987506128463962128337696457128951180992689733633 , 106927580289739319741994837130987506128463962128337696457128951182092201361409 , 106927580289739319741994837130987506128463962128337696457128951183191712989185 , 106927580289739319741994837130987506128463962128337696457128951184291224616961 , 106927580289739319741994837130987506128463962128337696457128951185390736244737 , 106927580289739319741994837130987506128463962128337696457128951186490247872513 , 106927580289739319741994837130987506128463962128337696457128951187589759500289 , 106927580289739319741994837130987506128463962128337696457128951188689271128065 , 106927580289739319741994837130987506128463962128337696457128951189788782755841 , 106927580289739319741994837130987506128463962128337696457128951190888294383617 , 106927580289739319741994837130987506128463962128337696457128951191987806011393 , 106927580289739319741994837130987506128463962128337696457128951193087317639169 , 106927580289739319741994837130987506128463962128337696457128951194186829266945 , 106927580289739319741994837130987506128463962128337696457128951195286340894721 , 106927580289739319741994837130987506128463962128337696457128951196385852522497 , 106927580289739319741994837130987506128463962128337696457128951197485364150273 , 106927580289739319741994837130987506128463962128337696457128951198584875778049 , 106927580289739319741994837130987506128463962128337696457128951199684387405825 , 106927580289739319741994837130987506128463962128337696457128951200783899033601 , 106927580289739319741994837130987506128463962128337696457128951201883410661377 , 106927580289739319741994837130987506128463962128337696457128951202982922289153 , 106927580289739319741994837130987506128463962128337696457128951204082433916929 , 106927580289739319741994837130987506128463962128337696457128951205181945544705 , 106927580289739319741994837130987506128463962128337696457128951206281457172481 , 106927580289739319741994837130987506128463962128337696457128951207380968800257 , 106927580289739319741994837130987506128463962128337696457128951208480480428033 , 106927580289739319741994837130987506128463962128337696457128951209579992055809 , 106927580289739319741994837130987506128463962128337696457128951210679503683585 , 106927580289739319741994837130987506128463962128337696457128951211779015311361 , 106927580289739319741994837130987506128463962128337696457128951212878526939137 , 106927580289739319741994837130987506128463962128337696457128951213978038566913 , 106927580289739319741994837130987506128463962128337696457128951215077550194689 , 106927580289739319741994837130987506128463962128337696457128951216177061822465 , 106927580289739319741994837130987506128463962128337696457128951217276573450241 , 106927580289739319741994837130987506128463962128337696457128951218376085078017 , 106927580289739319741994837130987506128463962128337696457128951219475596705793 , 106927580289739319741994837130987506128463962128337696457128951220575108333569 , 106927580289739319741994837130987506128463962128337696457128951221674619961345 , 106927580289739319741994837130987506128463962128337696457128951222774131589121 , 106927580289739319741994837130987506128463962128337696457128951223873643216897 , 106927580289739319741994837130987506128463962128337696457128951224973154844673 , 106927580289739319741994837130987506128463962128337696457128951226072666472449 , 106927580289739319741994837130987506128463962128337696457128951227172178100225 , 106927580289739319741994837130987506128463962128337696457128951228271689728001 , 106927580289739319741994837130987506128463962128337696457128951229371201355777 , 106927580289739319741994837130987506128463962128337696457128951230470712983553 , 106927580289739319741994837130987506128463962128337696457128951231570224611329 , 106927580289739319741994837130987506128463962128337696457128951232669736239105 , 106927580289739319741994837130987506128463962128337696457128951233769247866881 , 106927580289739319741994837130987506128463962128337696457128951234868759494657 , 106927580289739319741994837130987506128463962128337696457128951235968271122433 , 106927580289739319741994837130987506128463962128337696457128951237067782750209 , 106927580289739319741994837130987506128463962128337696457128951238167294377985 , 106927580289739319741994837130987506128463962128337696457128951239266806005761 , 106927580289739319741994837130987506128463962128337696457128951240366317633537 , 106927580289739319741994837130987506128463962128337696457128951241465829261313 , 106927580289739319741994837130987506128463962128337696457128951242565340889089 , 106927580289739319741994837130987506128463962128337696457128951243664852516865 , 106927580289739319741994837130987506128463962128337696457128951244764364144641 , 106927580289739319741994837130987506128463962128337696457128951245863875772417 , 106927580289739319741994837130987506128463962128337696457128951246963387400193 , 106927580289739319741994837130987506128463962128337696457128951248062899027969 , 106927580289739319741994837130987506128463962128337696457128951249162410655745 , 106927580289739319741994837130987506128463962128337696457128951250261922283521 , 106927580289739319741994837130987506128463962128337696457128951251361433911297 , 106927580289739319741994837130987506128463962128337696457128951252460945539073 , 106927580289739319741994837130987506128463962128337696457128951253560457166849 , 106927580289739319741994837130987506128463962128337696457128951254659968794625 , 106927580289739319741994837130987506128463962128337696457128951255759480422401 , 106927580289739319741994837130987506128463962128337696457128951256858992050177 , 106927580289739319741994837130987506128463962128337696457128951257958503677953 , 106927580289739319741994837130987506128463962128337696457128951259058015305729 , 106927580289739319741994837130987506128463962128337696457128951260157526933505 , 106927580289739319741994837130987506128463962128337696457128951261257038561281 , 106927580289739319741994837130987506128463962128337696457128951262356550189057 , 106927580289739319741994837130987506128463962128337696457128951263456061816833 , 106927580289739319741994837130987506128463962128337696457128951264555573444609 , 106927580289739319741994837130987506128463962128337696457128951265655085072385 , 106927580289739319741994837130987506128463962128337696457128951266754596700161 , 106927580289739319741994837130987506128463962128337696457128951267854108327937 , 106927580289739319741994837130987506128463962128337696457128951268953619955713 , 106927580289739319741994837130987506128463962128337696457128951270053131583489 , 106927580289739319741994837130987506128463962128337696457128951271152643211265 , 106927580289739319741994837130987506128463962128337696457128951272252154839041 , 106927580289739319741994837130987506128463962128337696457128951273351666466817 , 106927580289739319741994837130987506128463962128337696457128951274451178094593 , 106927580289739319741994837130987506128463962128337696457128951275550689722369 , 106927580289739319741994837130987506128463962128337696457128951276650201350145 , 106927580289739319741994837130987506128463962128337696457128951277749712977921 , 106927580289739319741994837130987506128463962128337696457128951278849224605697 , 106927580289739319741994837130987506128463962128337696457128951279948736233473 , 106927580289739319741994837130987506128463962128337696457128951281048247861249 , 106927580289739319741994837130987506128463962128337696457128951282147759489025 , 106927580289739319741994837130987506128463962128337696457128951283247271116801 , 106927580289739319741994837130987506128463962128337696457128951284346782744577 , 106927580289739319741994837130987506128463962128337696457128951285446294372353 , 106927580289739319741994837130987506128463962128337696457128951286545806000129 , 106927580289739319741994837130987506128463962128337696457128951287645317627905 , 106927580289739319741994837130987506128463962128337696457128951288744829255681 , 106927580289739319741994837130987506128463962128337696457128951289844340883457 , 106927580289739319741994837130987506128463962128337696457128951290943852511233 , 106927580289739319741994837130987506128463962128337696457128951292043364139009 , 106927580289739319741994837130987506128463962128337696457128951293142875766785 , 106927580289739319741994837130987506128463962128337696457128951294242387394561 , 106927580289739319741994837130987506128463962128337696457128951295341899022337 , 106927580289739319741994837130987506128463962128337696457128951296441410650113 , 106927580289739319741994837130987506128463962128337696457128951297540922277889 , 106927580289739319741994837130987506128463962128337696457128951298640433905665 , 106927580289739319741994837130987506128463962128337696457128951299739945533441 , 106927580289739319741994837130987506128463962128337696457128951300839457161217 , 106927580289739319741994837130987506128463962128337696457128951301938968788993 , 106927580289739319741994837130987506128463962128337696457128951303038480416769 , 106927580289739319741994837130987506128463962128337696457128951304137992044545 , 106927580289739319741994837130987506128463962128337696457128951305237503672321 , 106927580289739319741994837130987506128463962128337696457128951306337015300097 , 106927580289739319741994837130987506128463962128337696457128951307436526927873 , 106927580289739319741994837130987506128463962128337696457128951308536038555649 , 106927580289739319741994837130987506128463962128337696457128951309635550183425 , 106927580289739319741994837130987506128463962128337696457128951310735061811201 , 106927580289739319741994837130987506128463962128337696457128951311834573438977 , 106927580289739319741994837130987506128463962128337696457128951312934085066753 , 106927580289739319741994837130987506128463962128337696457128951314033596694529 , 106927580289739319741994837130987506128463962128337696457128951315133108322305 , 106927580289739319741994837130987506128463962128337696457128951316232619950081 , 106927580289739319741994837130987506128463962128337696457128951317332131577857 , 106927580289739319741994837130987506128463962128337696457128951318431643205633 , 106927580289739319741994837130987506128463962128337696457128951319531154833409 , 106927580289739319741994837130987506128463962128337696457128951320630666461185 , 106927580289739319741994837130987506128463962128337696457128951321730178088961 , 106927580289739319741994837130987506128463962128337696457128951322829689716737 , 106927580289739319741994837130987506128463962128337696457128951323929201344513 , 106927580289739319741994837130987506128463962128337696457128951325028712972289 , 106927580289739319741994837130987506128463962128337696457128951326128224600065 , 106927580289739319741994837130987506128463962128337696457128951327227736227841 , 106927580289739319741994837130987506128463962128337696457128951328327247855617 , 106927580289739319741994837130987506128463962128337696457128951329426759483393 , 106927580289739319741994837130987506128463962128337696457128951330526271111169 , 106927580289739319741994837130987506128463962128337696457128951331625782738945 , 106927580289739319741994837130987506128463962128337696457128951332725294366721 , 106927580289739319741994837130987506128463962128337696457128951333824805994497 , 106927580289739319741994837130987506128463962128337696457128951334924317622273 , 106927580289739319741994837130987506128463962128337696457128951336023829250049 , 106927580289739319741994837130987506128463962128337696457128951337123340877825 , 106927580289739319741994837130987506128463962128337696457128951338222852505601 , 106927580289739319741994837130987506128463962128337696457128951339322364133377 , 106927580289739319741994837130987506128463962128337696457128951340421875761153 , 106927580289739319741994837130987506128463962128337696457128951341521387388929 , 106927580289739319741994837130987506128463962128337696457128951342620899016705 , 106927580289739319741994837130987506128463962128337696457128951343720410644481 , 106927580289739319741994837130987506128463962128337696457128951344819922272257 , 106927580289739319741994837130987506128463962128337696457128951345919433900033 , 106927580289739319741994837130987506128463962128337696457128951347018945527809 , 106927580289739319741994837130987506128463962128337696457128951348118457155585 , 106927580289739319741994837130987506128463962128337696457128951349217968783361 , 106927580289739319741994837130987506128463962128337696457128951350317480411137 , 106927580289739319741994837130987506128463962128337696457128951351416992038913 , 106927580289739319741994837130987506128463962128337696457128951352516503666689 , 106927580289739319741994837130987506128463962128337696457128951353616015294465 , 106927580289739319741994837130987506128463962128337696457128951354715526922241 , 106927580289739319741994837130987506128463962128337696457128951355815038550017 , 106927580289739319741994837130987506128463962128337696457128951356914550177793 , 106927580289739319741994837130987506128463962128337696457128951358014061805569 , 106927580289739319741994837130987506128463962128337696457128951359113573433345 , 106927580289739319741994837130987506128463962128337696457128951360213085061121 , 106927580289739319741994837130987506128463962128337696457128951361312596688897 , 106927580289739319741994837130987506128463962128337696457128951362412108316673 , 106927580289739319741994837130987506128463962128337696457128951363511619944449 , 106927580289739319741994837130987506128463962128337696457128951364611131572225 , 106927580289739319741994837130987506128463962128337696457128951365710643200001 , 106927580289739319741994837130987506128463962128337696457128951366810154827777 , 106927580289739319741994837130987506128463962128337696457128951367909666455553 , 106927580289739319741994837130987506128463962128337696457128951369009178083329 , 106927580289739319741994837130987506128463962128337696457128951370108689711105 , 106927580289739319741994837130987506128463962128337696457128951371208201338881 , 106927580289739319741994837130987506128463962128337696457128951372307712966657 , 106927580289739319741994837130987506128463962128337696457128951373407224594433 , 106927580289739319741994837130987506128463962128337696457128951374506736222209 , 106927580289739319741994837130987506128463962128337696457128951375606247849985 , 106927580289739319741994837130987506128463962128337696457128951376705759477761 , 106927580289739319741994837130987506128463962128337696457128951377805271105537 , 106927580289739319741994837130987506128463962128337696457128951378904782733313 , 106927580289739319741994837130987506128463962128337696457128951380004294361089 , 106927580289739319741994837130987506128463962128337696457128951381103805988865 , 106927580289739319741994837130987506128463962128337696457128951382203317616641 , 106927580289739319741994837130987506128463962128337696457128951383302829244417 , 106927580289739319741994837130987506128463962128337696457128951384402340872193 , 106927580289739319741994837130987506128463962128337696457128951385501852499969 , 106927580289739319741994837130987506128463962128337696457128951386601364127745 , 106927580289739319741994837130987506128463962128337696457128951387700875755521 , 106927580289739319741994837130987506128463962128337696457128951388800387383297 , 106927580289739319741994837130987506128463962128337696457128951389899899011073 , 106927580289739319741994837130987506128463962128337696457128951390999410638849 , 106927580289739319741994837130987506128463962128337696457128951392098922266625 , 106927580289739319741994837130987506128463962128337696457128951393198433894401 , 106927580289739319741994837130987506128463962128337696457128951394297945522177 , 106927580289739319741994837130987506128463962128337696457128951395397457149953 , 106927580289739319741994837130987506128463962128337696457128951396496968777729 , 106927580289739319741994837130987506128463962128337696457128951397596480405505 , 106927580289739319741994837130987506128463962128337696457128951398695992033281 , 106927580289739319741994837130987506128463962128337696457128951399795503661057 , 106927580289739319741994837130987506128463962128337696457128951400895015288833 , 106927580289739319741994837130987506128463962128337696457128951401994526916609 , 106927580289739319741994837130987506128463962128337696457128951403094038544385 , 106927580289739319741994837130987506128463962128337696457128951404193550172161 , 106927580289739319741994837130987506128463962128337696457128951405293061799937 , 106927580289739319741994837130987506128463962128337696457128951406392573427713 , 106927580289739319741994837130987506128463962128337696457128951407492085055489 , 106927580289739319741994837130987506128463962128337696457128951408591596683265 , 106927580289739319741994837130987506128463962128337696457128951409691108311041 , 106927580289739319741994837130987506128463962128337696457128951410790619938817 , 106927580289739319741994837130987506128463962128337696457128951411890131566593 , 106927580289739319741994837130987506128463962128337696457128951412989643194369 , 106927580289739319741994837130987506128463962128337696457128951414089154822145 , 106927580289739319741994837130987506128463962128337696457128951415188666449921 , 106927580289739319741994837130987506128463962128337696457128951416288178077697 , 106927580289739319741994837130987506128463962128337696457128951417387689705473 , 106927580289739319741994837130987506128463962128337696457128951418487201333249 , 106927580289739319741994837130987506128463962128337696457128951419586712961025 , 106927580289739319741994837130987506128463962128337696457128951420686224588801 , 106927580289739319741994837130987506128463962128337696457128951421785736216577 , 106927580289739319741994837130987506128463962128337696457128951422885247844353 , 106927580289739319741994837130987506128463962128337696457128951423984759472129 , 106927580289739319741994837130987506128463962128337696457128951425084271099905 , 106927580289739319741994837130987506128463962128337696457128951426183782727681 , 106927580289739319741994837130987506128463962128337696457128951427283294355457 , 106927580289739319741994837130987506128463962128337696457128951428382805983233 , 106927580289739319741994837130987506128463962128337696457128951429482317611009 , 106927580289739319741994837130987506128463962128337696457128951430581829238785 , 106927580289739319741994837130987506128463962128337696457128951431681340866561 , 106927580289739319741994837130987506128463962128337696457128951432780852494337 , 106927580289739319741994837130987506128463962128337696457128951433880364122113 , 106927580289739319741994837130987506128463962128337696457128951434979875749889 , 106927580289739319741994837130987506128463962128337696457128951436079387377665 , 106927580289739319741994837130987506128463962128337696457128951437178899005441 , 106927580289739319741994837130987506128463962128337696457128951438278410633217 , 106927580289739319741994837130987506128463962128337696457128951439377922260993 , 106927580289739319741994837130987506128463962128337696457128951440477433888769 , 106927580289739319741994837130987506128463962128337696457128951441576945516545 , 106927580289739319741994837130987506128463962128337696457128951442676457144321 , 106927580289739319741994837130987506128463962128337696457128951443775968772097 , 106927580289739319741994837130987506128463962128337696457128951444875480399873 , 106927580289739319741994837130987506128463962128337696457128951445974992027649 , 106927580289739319741994837130987506128463962128337696457128951447074503655425 , 106927580289739319741994837130987506128463962128337696457128951448174015283201 , 106927580289739319741994837130987506128463962128337696457128951449273526910977 , 106927580289739319741994837130987506128463962128337696457128951450373038538753 , 106927580289739319741994837130987506128463962128337696457128951451472550166529 , 106927580289739319741994837130987506128463962128337696457128951452572061794305 , 106927580289739319741994837130987506128463962128337696457128951453671573422081 , 106927580289739319741994837130987506128463962128337696457128951454771085049857 , 106927580289739319741994837130987506128463962128337696457128951455870596677633 , 106927580289739319741994837130987506128463962128337696457128951456970108305409 , 106927580289739319741994837130987506128463962128337696457128951458069619933185 , 106927580289739319741994837130987506128463962128337696457128951459169131560961 , 106927580289739319741994837130987506128463962128337696457128951460268643188737 , 106927580289739319741994837130987506128463962128337696457128951461368154816513 , 106927580289739319741994837130987506128463962128337696457128951462467666444289 , 106927580289739319741994837130987506128463962128337696457128951463567178072065 , 106927580289739319741994837130987506128463962128337696457128951464666689699841 , 106927580289739319741994837130987506128463962128337696457128951465766201327617 , 106927580289739319741994837130987506128463962128337696457128951466865712955393 , 106927580289739319741994837130987506128463962128337696457128951467965224583169 , 106927580289739319741994837130987506128463962128337696457128951469064736210945 , 106927580289739319741994837130987506128463962128337696457128951470164247838721 , 106927580289739319741994837130987506128463962128337696457128951471263759466497 , 106927580289739319741994837130987506128463962128337696457128951472363271094273 , 106927580289739319741994837130987506128463962128337696457128951473462782722049 , 106927580289739319741994837130987506128463962128337696457128951474562294349825 , 106927580289739319741994837130987506128463962128337696457128951475661805977601 , 106927580289739319741994837130987506128463962128337696457128951476761317605377 , 106927580289739319741994837130987506128463962128337696457128951477860829233153 , 106927580289739319741994837130987506128463962128337696457128951478960340860929 , 106927580289739319741994837130987506128463962128337696457128951480059852488705 , 106927580289739319741994837130987506128463962128337696457128951481159364116481 , 106927580289739319741994837130987506128463962128337696457128951482258875744257 , 106927580289739319741994837130987506128463962128337696457128951483358387372033 , 106927580289739319741994837130987506128463962128337696457128951484457898999809 , 106927580289739319741994837130987506128463962128337696457128951485557410627585 , 106927580289739319741994837130987506128463962128337696457128951486656922255361 , 106927580289739319741994837130987506128463962128337696457128951487756433883137 , 106927580289739319741994837130987506128463962128337696457128951488855945510913 , 106927580289739319741994837130987506128463962128337696457128951489955457138689 , 106927580289739319741994837130987506128463962128337696457128951491054968766465 , 106927580289739319741994837130987506128463962128337696457128951492154480394241 , 106927580289739319741994837130987506128463962128337696457128951493253992022017 , 106927580289739319741994837130987506128463962128337696457128951494353503649793 , 106927580289739319741994837130987506128463962128337696457128951495453015277569 , 106927580289739319741994837130987506128463962128337696457128951496552526905345 , 106927580289739319741994837130987506128463962128337696457128951497652038533121 , 106927580289739319741994837130987506128463962128337696457128951498751550160897 , 106927580289739319741994837130987506128463962128337696457128951499851061788673 , 106927580289739319741994837130987506128463962128337696457128951500950573416449 , 106927580289739319741994837130987506128463962128337696457128951502050085044225 , 106927580289739319741994837130987506128463962128337696457128951503149596672001 , 106927580289739319741994837130987506128463962128337696457128951504249108299777 , 106927580289739319741994837130987506128463962128337696457128951505348619927553 , 106927580289739319741994837130987506128463962128337696457128951506448131555329 , 106927580289739319741994837130987506128463962128337696457128951507547643183105 , 106927580289739319741994837130987506128463962128337696457128951508647154810881 , 106927580289739319741994837130987506128463962128337696457128951509746666438657 , 106927580289739319741994837130987506128463962128337696457128951510846178066433 , 106927580289739319741994837130987506128463962128337696457128951511945689694209 , 106927580289739319741994837130987506128463962128337696457128951513045201321985 , 106927580289739319741994837130987506128463962128337696457128951514144712949761 , 106927580289739319741994837130987506128463962128337696457128951515244224577537 , 106927580289739319741994837130987506128463962128337696457128951516343736205313 , 106927580289739319741994837130987506128463962128337696457128951517443247833089 , 106927580289739319741994837130987506128463962128337696457128951518542759460865 , 106927580289739319741994837130987506128463962128337696457128951519642271088641 , 106927580289739319741994837130987506128463962128337696457128951520741782716417 , 106927580289739319741994837130987506128463962128337696457128951521841294344193 , 106927580289739319741994837130987506128463962128337696457128951522940805971969 , 106927580289739319741994837130987506128463962128337696457128951524040317599745 , 106927580289739319741994837130987506128463962128337696457128951525139829227521 , 106927580289739319741994837130987506128463962128337696457128951526239340855297 , 106927580289739319741994837130987506128463962128337696457128951527338852483073 , 106927580289739319741994837130987506128463962128337696457128951528438364110849 , 106927580289739319741994837130987506128463962128337696457128951529537875738625 , 106927580289739319741994837130987506128463962128337696457128951530637387366401 , 106927580289739319741994837130987506128463962128337696457128951531736898994177 , 106927580289739319741994837130987506128463962128337696457128951532836410621953 , 106927580289739319741994837130987506128463962128337696457128951533935922249729 , 106927580289739319741994837130987506128463962128337696457128951535035433877505 , 106927580289739319741994837130987506128463962128337696457128951536134945505281 , 106927580289739319741994837130987506128463962128337696457128951537234457133057 , 106927580289739319741994837130987506128463962128337696457128951538333968760833 , 106927580289739319741994837130987506128463962128337696457128951539433480388609 , 106927580289739319741994837130987506128463962128337696457128951540532992016385 , 106927580289739319741994837130987506128463962128337696457128951541632503644161 , 106927580289739319741994837130987506128463962128337696457128951542732015271937 , 106927580289739319741994837130987506128463962128337696457128951543831526899713 , 106927580289739319741994837130987506128463962128337696457128951544931038527489 , 106927580289739319741994837130987506128463962128337696457128951546030550155265 , 106927580289739319741994837130987506128463962128337696457128951547130061783041 , 106927580289739319741994837130987506128463962128337696457128951548229573410817 , 106927580289739319741994837130987506128463962128337696457128951549329085038593 , 106927580289739319741994837130987506128463962128337696457128951550428596666369 , 106927580289739319741994837130987506128463962128337696457128951551528108294145 , 106927580289739319741994837130987506128463962128337696457128951552627619921921 , 106927580289739319741994837130987506128463962128337696457128951553727131549697 , 106927580289739319741994837130987506128463962128337696457128951554826643177473 , 106927580289739319741994837130987506128463962128337696457128951555926154805249 , 106927580289739319741994837130987506128463962128337696457128951557025666433025 , 106927580289739319741994837130987506128463962128337696457128951558125178060801 , 106927580289739319741994837130987506128463962128337696457128951559224689688577 , 106927580289739319741994837130987506128463962128337696457128951560324201316353 , 106927580289739319741994837130987506128463962128337696457128951561423712944129 , 106927580289739319741994837130987506128463962128337696457128951562523224571905 , 106927580289739319741994837130987506128463962128337696457128951563622736199681 , 106927580289739319741994837130987506128463962128337696457128951564722247827457 , 106927580289739319741994837130987506128463962128337696457128951565821759455233 , 106927580289739319741994837130987506128463962128337696457128951566921271083009 , 106927580289739319741994837130987506128463962128337696457128951568020782710785 , 106927580289739319741994837130987506128463962128337696457128951569120294338561 , 106927580289739319741994837130987506128463962128337696457128951570219805966337 , 106927580289739319741994837130987506128463962128337696457128951571319317594113 , 106927580289739319741994837130987506128463962128337696457128951572418829221889 , 106927580289739319741994837130987506128463962128337696457128951573518340849665 , 106927580289739319741994837130987506128463962128337696457128951574617852477441 , 106927580289739319741994837130987506128463962128337696457128951575717364105217 , 106927580289739319741994837130987506128463962128337696457128951576816875732993 , 106927580289739319741994837130987506128463962128337696457128951577916387360769 , 106927580289739319741994837130987506128463962128337696457128951579015898988545 , 106927580289739319741994837130987506128463962128337696457128951580115410616321 , 106927580289739319741994837130987506128463962128337696457128951581214922244097 , 106927580289739319741994837130987506128463962128337696457128951582314433871873 , 106927580289739319741994837130987506128463962128337696457128951583413945499649 , 106927580289739319741994837130987506128463962128337696457128951584513457127425 , 106927580289739319741994837130987506128463962128337696457128951587811992010753 , 106927580289739319741994837130987506128463962128337696457128951588911503638529 , 106927580289739319741994837130987506128463962128337696457128951590011015266305 , 106927580289739319741994837130987506128463962128337696457128951591110526894081 , 106927580289739319741994837130987506128463962128337696457128951592210038521857 , 106927580289739319741994837130987506128463962128337696457128951593309550149633 , 106927580289739319741994837130987506128463962128337696457128951594409061777409 , 106927580289739319741994837130987506128463962128337696457128951595508573405185 , 106927580289739319741994837130987506128463962128337696457128951596608085032961 , 106927580289739319741994837130987506128463962128337696457128951597707596660737 , 106927580289739319741994837130987506128463962128337696457128951598807108288513 , 106927580289739319741994837130987506128463962128337696457128951599906619916289 , 106927580289739319741994837130987506128463962128337696457128951601006131544065 , 106927580289739319741994837130987506128463962128337696457128951602105643171841 , 106927580289739319741994837130987506128463962128337696457128951603205154799617 , 106927580289739319741994837130987506128463962128337696457128951604304666427393 , 106927580289739319741994837130987506128463962128337696457128951605404178055169 , 106927580289739319741994837130987506128463962128337696457128951606503689682945 , 106927580289739319741994837130987506128463962128337696457128951607603201310721 , 106927580289739319741994837130987506128463962128337696457128951608702712938497 , 106927580289739319741994837130987506128463962128337696457128951609802224566273 , 106927580289739319741994837130987506128463962128337696457128951610901736194049 , 106927580289739319741994837130987506128463962128337696457128951612001247821825 , 106927580289739319741994837130987506128463962128337696457128951613100759449601 , 106927580289739319741994837130987506128463962128337696457128951614200271077377 , 106927580289739319741994837130987506128463962128337696457128951615299782705153 , 106927580289739319741994837130987506128463962128337696457128951616399294332929 , 106927580289739319741994837130987506128463962128337696457128951617498805960705 , 106927580289739319741994837130987506128463962128337696457128951618598317588481 , 106927580289739319741994837130987506128463962128337696457128951619697829216257 , 106927580289739319741994837130987506128463962128337696457128951620797340844033 , 106927580289739319741994837130987506128463962128337696457128951621896852471809 , 106927580289739319741994837130987506128463962128337696457128951622996364099585 , 106927580289739319741994837130987506128463962128337696457128951624095875727361 , 106927580289739319741994837130987506128463962128337696457128951625195387355137 , 106927580289739319741994837130987506128463962128337696457128951626294898982913 , 106927580289739319741994837130987506128463962128337696457128951627394410610689 , 106927580289739319741994837130987506128463962128337696457128951628493922238465 , 106927580289739319741994837130987506128463962128337696457128951629593433866241 , 106927580289739319741994837130987506128463962128337696457128951630692945494017 , 106927580289739319741994837130987506128463962128337696457128951631792457121793 , 106927580289739319741994837130987506128463962128337696457128951632891968749569 , 106927580289739319741994837130987506128463962128337696457128951633991480377345 , 106927580289739319741994837130987506128463962128337696457128951635090992005121 , 106927580289739319741994837130987506128463962128337696457128951636190503632897 , 106927580289739319741994837130987506128463962128337696457128951637290015260673 , 106927580289739319741994837130987506128463962128337696457128951638389526888449 , 106927580289739319741994837130987506128463962128337696457128951639489038516225 , 106927580289739319741994837130987506128463962128337696457128951640588550144001 , 106927580289739319741994837130987506128463962128337696457128951641688061771777 ]; constructor() ERC721("MutantKongzVX", "MKZVX") { maxMKZVX = MAX_MKZVX; mkz = MKZ(openSeaContract); } function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function flipClaimPhaseState() public onlyOwner { claimIsActive = !claimIsActive; } function canClaim(uint256 tokenId) view public returns (bool) { return !_exists(tokenId); } function _ownerOf(uint256 tokenId) internal view returns (bool) { return mkz.balanceOf(msg.sender, tokenId) != 0; } /** * Claim a MutantKongz VX */ function claimMKVX(uint256 mkzvxTokenId) public { require(claimIsActive, "The claim phase must be active to mint a MutantKongz VX"); require(totalSupply() < maxMKZVX, "The Claim action would exceed the max supply of MutantKongz VX"); require(mkzvxTokenId < maxMKZVX + 1, "Requested tokenId exceeds upper bound"); uint256 mkTokenId = mkzTokenId[mkzvxTokenId-1]; require(_ownerOf(mkTokenId) == true, "You are not the owner of the requested tokenId"); _safeMint(msg.sender, mkzvxTokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MKZVX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"canClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mkzvxTokenId","type":"uint256"}],"name":"claimMKVX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipClaimPhaseState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMKZVX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600c80546001600160a81b03191673495f947276749ce646f68ac8c248420045cb7b5e179055613f006040527fec66dda0e363cf369e2e99d0eb5a8b4745e6be0400000000000001000000000160809081527fec66dda0e363cf369e2e99d0eb5a8b4745e6be0400000000000002000000000160a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be0400000000000003000000000160c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be0400000000000004000000000160e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000050000000001610100527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000060000000001610120527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000070000000001610140527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000080000000001610160527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000090000000001610180527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000000a00000000016101a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000000b00000000016101c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000000c00000000016101e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000000d0000000001610200527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000000e0000000001610220527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000000f0000000001610240527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000100000000001610260527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000110000000001610280527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000001200000000016102a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000001300000000016102c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000001400000000016102e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000150000000001610300527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000160000000001610320527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000170000000001610340527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000180000000001610360527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000190000000001610380527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000001a00000000016103a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000001b00000000016103c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000001c00000000016103e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000001d0000000001610400527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000001e0000000001610420527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000001f0000000001610440527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000200000000001610460527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000210000000001610480527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000002200000000016104a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000002300000000016104c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000002400000000016104e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000250000000001610500527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000260000000001610520527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000270000000001610540527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000280000000001610560527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000290000000001610580527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000002a00000000016105a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000002b00000000016105c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000002c00000000016105e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000002d0000000001610600527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000002e0000000001610620527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000002f0000000001610640527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000300000000001610660527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000310000000001610680527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000003200000000016106a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000003300000000016106c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000003400000000016106e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000350000000001610700527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000360000000001610720527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000370000000001610740527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000380000000001610760527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000390000000001610780527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000003a00000000016107a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000003b00000000016107c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000003c00000000016107e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000003d0000000001610800527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000003e0000000001610820527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000003f0000000001610840527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000400000000001610860527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000410000000001610880527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000004200000000016108a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000004300000000016108c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000004400000000016108e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000450000000001610900527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000460000000001610920527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000470000000001610940527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000480000000001610960527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000490000000001610980527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000004a00000000016109a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000004b00000000016109c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000004c00000000016109e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000004d0000000001610a00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000004e0000000001610a20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000004f0000000001610a40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000500000000001610a60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000510000000001610a80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000520000000001610aa0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000530000000001610ac0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000540000000001610ae0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000550000000001610b00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000560000000001610b20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000570000000001610b40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000580000000001610b60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000590000000001610b80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000005a0000000001610ba0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000005b0000000001610bc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000005c0000000001610be0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000005d0000000001610c00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000005e0000000001610c20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000005f0000000001610c40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000600000000001610c60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000610000000001610c80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000620000000001610ca0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000630000000001610cc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000640000000001610ce0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000650000000001610d00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000660000000001610d20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000670000000001610d40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000680000000001610d60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000690000000001610d80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000006a0000000001610da0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000006b0000000001610dc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000006c0000000001610de0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000006d0000000001610e00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000006e0000000001610e20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000006f0000000001610e40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000700000000001610e60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000710000000001610e80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000720000000001610ea0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000730000000001610ec0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000740000000001610ee0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000750000000001610f00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000760000000001610f20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000770000000001610f40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000780000000001610f60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000790000000001610f80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000007a0000000001610fa0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000007b0000000001610fc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000007c0000000001610fe0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000007d0000000001611000527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000007e0000000001611020527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000007f0000000001611040527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000800000000001611060527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000810000000001611080527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000008200000000016110a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000008300000000016110c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000008400000000016110e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000850000000001611100527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000860000000001611120527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000870000000001611140527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000880000000001611160527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000890000000001611180527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000008a00000000016111a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000008b00000000016111c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000008c00000000016111e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000008d0000000001611200527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000008e0000000001611220527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000008f0000000001611240527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000900000000001611260527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000910000000001611280527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000009200000000016112a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000009300000000016112c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000009400000000016112e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000950000000001611300527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000960000000001611320527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000970000000001611340527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000980000000001611360527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000990000000001611380527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000009a00000000016113a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000009b00000000016113c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000009c00000000016113e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000009d0000000001611400527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000009e0000000001611420527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000009f0000000001611440527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000a00000000001611460527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000a10000000001611480527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000a200000000016114a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000a300000000016114c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000a400000000016114e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000a50000000001611500527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000a60000000001611520527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000a70000000001611540527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000a80000000001611560527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000a90000000001611580527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000aa00000000016115a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000ab00000000016115c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000ac00000000016115e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000ad0000000001611600527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000ae0000000001611620527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000af0000000001611640527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000b00000000001611660527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000b10000000001611680527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000b200000000016116a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000b300000000016116c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000b400000000016116e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000b50000000001611700527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000b60000000001611720527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000b70000000001611740527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000b80000000001611760527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000b90000000001611780527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000ba00000000016117a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000bb00000000016117c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000bc00000000016117e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000bd0000000001611800527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000be0000000001611820527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000bf0000000001611840527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000c00000000001611860527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000c10000000001611880527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000c200000000016118a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000c300000000016118c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000c400000000016118e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000c50000000001611900527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000c60000000001611920527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000c70000000001611940527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000c80000000001611960527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000c90000000001611980527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000ca00000000016119a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000cb00000000016119c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000cc00000000016119e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000cd0000000001611a00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000ce0000000001611a20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000cf0000000001611a40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000d00000000001611a60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000d10000000001611a80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000d20000000001611aa0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000d30000000001611ac0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000d40000000001611ae0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000d50000000001611b00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000d60000000001611b20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000d70000000001611b40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000d80000000001611b60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000d90000000001611b80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000da0000000001611ba0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000db0000000001611bc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000dc0000000001611be0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000dd0000000001611c00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000de0000000001611c20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000df0000000001611c40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000e00000000001611c60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000e10000000001611c80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000e20000000001611ca0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000e30000000001611cc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000e40000000001611ce0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000e50000000001611d00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000e60000000001611d20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000e70000000001611d40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000e80000000001611d60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000e90000000001611d80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000ea0000000001611da0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000eb0000000001611dc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000ec0000000001611de0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000ed0000000001611e00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000ee0000000001611e20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000ef0000000001611e40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000f00000000001611e60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000f10000000001611e80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000f20000000001611ea0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000f30000000001611ec0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000f40000000001611ee0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000f50000000001611f00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000f60000000001611f20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000f70000000001611f40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000f80000000001611f60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000f90000000001611f80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000fa0000000001611fa0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000fb0000000001611fc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000fc0000000001611fe0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000fd0000000001612000527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000fe0000000001612020527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000000ff0000000001612040527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001000000000001612060527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001010000000001612080527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000010200000000016120a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000010300000000016120c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000010400000000016120e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001050000000001612100527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001060000000001612120527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001070000000001612140527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001080000000001612160527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001090000000001612180527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000010a00000000016121a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000010b00000000016121c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000010c00000000016121e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000010d0000000001612200527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000010e0000000001612220527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000010f0000000001612240527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001100000000001612260527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001110000000001612280527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000011200000000016122a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000011300000000016122c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000011400000000016122e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001150000000001612300527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001160000000001612320527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001170000000001612340527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001180000000001612360527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001190000000001612380527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000011a00000000016123a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000011b00000000016123c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000011c00000000016123e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000011d0000000001612400527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000011e0000000001612420527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000011f0000000001612440527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001200000000001612460527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001210000000001612480527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000012200000000016124a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000012300000000016124c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000012400000000016124e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001250000000001612500527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001260000000001612520527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001270000000001612540527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001280000000001612560527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001290000000001612580527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000012a00000000016125a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000012b00000000016125c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000012c00000000016125e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000012d0000000001612600527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000012e0000000001612620527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000012f0000000001612640527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001300000000001612660527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001310000000001612680527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000013200000000016126a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000013300000000016126c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000013400000000016126e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001350000000001612700527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001360000000001612720527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001370000000001612740527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001380000000001612760527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001390000000001612780527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000013a00000000016127a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000013b00000000016127c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000013c00000000016127e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000013d0000000001612800527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000013e0000000001612820527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000013f0000000001612840527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001400000000001612860527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001410000000001612880527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000014200000000016128a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000014300000000016128c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000014400000000016128e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001450000000001612900527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001460000000001612920527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001470000000001612940527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001480000000001612960527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001490000000001612980527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000014a00000000016129a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000014b00000000016129c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000014c00000000016129e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000014d0000000001612a00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000014e0000000001612a20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000014f0000000001612a40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001500000000001612a60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001510000000001612a80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001520000000001612aa0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001530000000001612ac0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001540000000001612ae0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001550000000001612b00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001560000000001612b20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001570000000001612b40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001580000000001612b60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001590000000001612b80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000015a0000000001612ba0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000015b0000000001612bc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000015c0000000001612be0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000015d0000000001612c00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000015e0000000001612c20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000015f0000000001612c40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001600000000001612c60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001610000000001612c80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001620000000001612ca0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001630000000001612cc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001640000000001612ce0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001650000000001612d00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001660000000001612d20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001670000000001612d40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001680000000001612d60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001690000000001612d80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000016a0000000001612da0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000016b0000000001612dc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000016c0000000001612de0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000016d0000000001612e00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000016e0000000001612e20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000016f0000000001612e40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001700000000001612e60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001710000000001612e80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001720000000001612ea0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001730000000001612ec0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001740000000001612ee0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001750000000001612f00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001760000000001612f20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001770000000001612f40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001780000000001612f60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001790000000001612f80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000017a0000000001612fa0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000017b0000000001612fc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000017c0000000001612fe0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000017d0000000001613000527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000017e0000000001613020527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000017f0000000001613040527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001800000000001613060527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001810000000001613080527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000018200000000016130a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000018300000000016130c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000018400000000016130e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001850000000001613100527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001860000000001613120527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001870000000001613140527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001880000000001613160527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001890000000001613180527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000018a00000000016131a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000018b00000000016131c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000018c00000000016131e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000018d0000000001613200527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000018e0000000001613220527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000018f0000000001613240527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001900000000001613260527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001910000000001613280527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000019200000000016132a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000019300000000016132c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000019400000000016132e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001950000000001613300527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001960000000001613320527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001970000000001613340527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001980000000001613360527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001990000000001613380527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000019a00000000016133a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000019b00000000016133c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000019c00000000016133e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000019d0000000001613400527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000019e0000000001613420527fec66dda0e363cf369e2e99d0eb5a8b4745e6be040000000000019f0000000001613440527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001a00000000001613460527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001a10000000001613480527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001a200000000016134a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001a300000000016134c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001a400000000016134e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001a50000000001613500527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001a60000000001613520527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001a70000000001613540527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001a80000000001613560527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001a90000000001613580527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001aa00000000016135a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001ab00000000016135c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001ac00000000016135e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001ad0000000001613600527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001ae0000000001613620527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001af0000000001613640527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001b00000000001613660527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001b10000000001613680527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001b200000000016136a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001b300000000016136c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001b400000000016136e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001b50000000001613700527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001b60000000001613720527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001b70000000001613740527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001b80000000001613760527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001b90000000001613780527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001ba00000000016137a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001bb00000000016137c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001bc00000000016137e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001bd0000000001613800527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001be0000000001613820527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001bf0000000001613840527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001c00000000001613860527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001c10000000001613880527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001c200000000016138a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001c500000000016138c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001c600000000016138e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001c70000000001613900527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001c80000000001613920527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001c90000000001613940527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001ca0000000001613960527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001cb0000000001613980527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001cc00000000016139a0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001cd00000000016139c0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001ce00000000016139e0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001cf0000000001613a00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001d00000000001613a20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001d10000000001613a40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001d20000000001613a60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001d30000000001613a80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001d40000000001613aa0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001d50000000001613ac0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001d60000000001613ae0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001d70000000001613b00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001d80000000001613b20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001d90000000001613b40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001da0000000001613b60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001db0000000001613b80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001dc0000000001613ba0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001dd0000000001613bc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001de0000000001613be0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001df0000000001613c00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001e00000000001613c20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001e10000000001613c40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001e20000000001613c60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001e30000000001613c80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001e40000000001613ca0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001e50000000001613cc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001e60000000001613ce0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001e70000000001613d00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001e80000000001613d20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001e90000000001613d40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001ea0000000001613d60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001eb0000000001613d80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001ec0000000001613da0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001ed0000000001613dc0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001ee0000000001613de0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001ef0000000001613e00527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001f00000000001613e20527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001f10000000001613e40527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001f20000000001613e60527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001f30000000001613e80527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001f40000000001613ea0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001f50000000001613ec0527fec66dda0e363cf369e2e99d0eb5a8b4745e6be04000000000001f60000000001613ee0526200487e90600f906101f46200498a565b503480156200488c57600080fd5b50604080518082018252600d81526c09aeae8c2dce896dedccef4acb609b1b60208083019182528351808501909452600584526409a96b4acb60db1b908401528151919291620048df91600091620049da565b508051620048f5906001906020840190620049da565b50505060006200490a6200498660201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506101f4600d55600c54600b80546001600160a01b0319166001600160a01b0390921691909117905562004aaa565b3390565b828054828255906000526020600020908101928215620049c8579160200282015b82811115620049c8578251825591602001919060010190620049ab565b50620049d692915062004a56565b5090565b828054620049e89062004a6d565b90600052602060002090601f01602090048101928262004a0c5760008555620049c8565b82601f1062004a2757805160ff1916838001178555620049c8565b82800160010185558215620049c85791820182811115620049c8578251825591602001919060010190620049ab565b5b80821115620049d6576000815560010162004a57565b600181811c9082168062004a8257607f821691505b6020821081141562004aa457634e487b7160e01b600052602260045260246000fd5b50919050565b611ed68062004aba6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063b029e3dc11610097578063c95c0d8911610071578063c95c0d891461032f578063ccbda99e14610359578063e985e9c51461036c578063f2fde38b146103a857600080fd5b8063b029e3dc14610301578063b88d4fde14610309578063c87b56dd1461031c57600080fd5b806370a08231146102b1578063715018a6146102c45780638da5cb5b146102cc57806395d89b41146102dd578063a22cb465146102e5578063a8581df7146102f857600080fd5b806323b872dd1161014b5780634f6ccce7116101255780634f6ccce7146102645780635303f68c1461027757806355f804b31461028b5780636352211e1461029e57600080fd5b806323b872dd1461022b5780632f745c591461023e57806342842e0e1461025157600080fd5b806301ffc9a71461019357806306fdde03146101bb578063081812fc146101d0578063095ea7b3146101fb57806318160ddd146102105780631e6ff20814610222575b600080fd5b6101a66101a1366004611923565b6103bb565b60405190151581526020015b60405180910390f35b6101c36103e6565b6040516101b29190611998565b6101e36101de3660046119ab565b610478565b6040516001600160a01b0390911681526020016101b2565b61020e6102093660046119e0565b610512565b005b6008545b6040519081526020016101b2565b6102146101f481565b61020e610239366004611a0a565b610628565b61021461024c3660046119e0565b610659565b61020e61025f366004611a0a565b6106ef565b6102146102723660046119ab565b61070a565b600c546101a690600160a01b900460ff1681565b61020e610299366004611ad2565b61079d565b6101e36102ac3660046119ab565b6107de565b6102146102bf366004611b1b565b610855565b61020e6108dc565b600a546001600160a01b03166101e3565b6101c3610950565b61020e6102f3366004611b36565b61095f565b610214600d5481565b61020e610a24565b61020e610317366004611b72565b610a6f565b6101c361032a3660046119ab565b610aa7565b6101a661033d3660046119ab565b6000908152600260205260409020546001600160a01b03161590565b61020e6103673660046119ab565b610b82565b6101a661037a366004611bee565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020e6103b6366004611b1b565b610d8b565b60006001600160e01b0319821663780e9d6360e01b14806103e057506103e082610e76565b92915050565b6060600080546103f590611c21565b80601f016020809104026020016040519081016040528092919081815260200182805461042190611c21565b801561046e5780601f106104435761010080835404028352916020019161046e565b820191906000526020600020905b81548152906001019060200180831161045157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104f65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061051d826107de565b9050806001600160a01b0316836001600160a01b0316141561058b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104ed565b336001600160a01b03821614806105a757506105a7813361037a565b6106195760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104ed565b6106238383610ec6565b505050565b6106323382610f34565b61064e5760405162461bcd60e51b81526004016104ed90611c5c565b61062383838361102b565b600061066483610855565b82106106c65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104ed565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61062383838360405180602001604052806000815250610a6f565b600061071560085490565b82106107785760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104ed565b6008828154811061078b5761078b611cad565b90600052602060002001549050919050565b600a546001600160a01b031633146107c75760405162461bcd60e51b81526004016104ed90611cc3565b80516107da90600e906020840190611871565b5050565b6000818152600260205260408120546001600160a01b0316806103e05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104ed565b60006001600160a01b0382166108c05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104ed565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146109065760405162461bcd60e51b81526004016104ed90611cc3565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6060600180546103f590611c21565b6001600160a01b0382163314156109b85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104ed565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610a4e5760405162461bcd60e51b81526004016104ed90611cc3565b600c805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610a793383610f34565b610a955760405162461bcd60e51b81526004016104ed90611c5c565b610aa1848484846111d6565b50505050565b6000818152600260205260409020546060906001600160a01b0316610b265760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104ed565b6000610b30611209565b90506000815111610b505760405180602001604052806000815250610b7b565b80610b5a84611218565b604051602001610b6b929190611cf8565b6040516020818303038152906040525b9392505050565b600c54600160a01b900460ff16610c015760405162461bcd60e51b815260206004820152603760248201527f54686520636c61696d207068617365206d75737420626520616374697665207460448201527f6f206d696e742061204d7574616e744b6f6e677a20565800000000000000000060648201526084016104ed565b600d5460085410610c7a5760405162461bcd60e51b815260206004820152603e60248201527f54686520436c61696d20616374696f6e20776f756c642065786365656420746860448201527f65206d617820737570706c79206f66204d7574616e744b6f6e677a205658000060648201526084016104ed565b600d54610c88906001611d3d565b8110610ce45760405162461bcd60e51b815260206004820152602560248201527f52657175657374656420746f6b656e4964206578636565647320757070657220604482015264189bdd5b9960da1b60648201526084016104ed565b6000600f610cf3600184611d55565b81548110610d0357610d03611cad565b90600052602060002001549050610d1981611316565b1515600114610d815760405162461bcd60e51b815260206004820152602e60248201527f596f7520617265206e6f7420746865206f776e6572206f66207468652072657160448201526d1d595cdd1959081d1bdad95b925960921b60648201526084016104ed565b6107da3383611390565b600a546001600160a01b03163314610db55760405162461bcd60e51b81526004016104ed90611cc3565b6001600160a01b038116610e1a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ed565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480610ea757506001600160e01b03198216635b5e139f60e01b145b806103e057506301ffc9a760e01b6001600160e01b03198316146103e0565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610efb826107de565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610fad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104ed565b6000610fb8836107de565b9050806001600160a01b0316846001600160a01b03161480610ff35750836001600160a01b0316610fe884610478565b6001600160a01b0316145b8061102357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661103e826107de565b6001600160a01b0316146110a65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104ed565b6001600160a01b0382166111085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104ed565b6111138383836113aa565b61111e600082610ec6565b6001600160a01b0383166000908152600360205260408120805460019290611147908490611d55565b90915550506001600160a01b0382166000908152600360205260408120805460019290611175908490611d3d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6111e184848461102b565b6111ed84848484611462565b610aa15760405162461bcd60e51b81526004016104ed90611d6c565b6060600e80546103f590611c21565b60608161123c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611266578061125081611dbe565b915061125f9050600a83611def565b9150611240565b60008167ffffffffffffffff81111561128157611281611a46565b6040519080825280601f01601f1916602001820160405280156112ab576020820181803683370190505b5090505b8415611023576112c0600183611d55565b91506112cd600a86611e03565b6112d8906030611d3d565b60f81b8183815181106112ed576112ed611cad565b60200101906001600160f81b031916908160001a90535061130f600a86611def565b94506112af565b600b54604051627eeac760e11b8152336004820152602481018390526000916001600160a01b03169062fdd58e90604401602060405180830381865afa158015611364573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113889190611e17565b151592915050565b6107da828260405180602001604052806000815250611560565b6001600160a01b0383166114055761140081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611428565b816001600160a01b0316836001600160a01b031614611428576114288382611593565b6001600160a01b03821661143f5761062381611630565b826001600160a01b0316826001600160a01b0316146106235761062382826116df565b60006001600160a01b0384163b1561155557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114a6903390899088908890600401611e30565b6020604051808303816000875af19250505080156114e1575060408051601f3d908101601f191682019092526114de91810190611e6d565b60015b61153b573d80801561150f576040519150601f19603f3d011682016040523d82523d6000602084013e611514565b606091505b5080516115335760405162461bcd60e51b81526004016104ed90611d6c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611023565b506001949350505050565b61156a8383611723565b6115776000848484611462565b6106235760405162461bcd60e51b81526004016104ed90611d6c565b600060016115a084610855565b6115aa9190611d55565b6000838152600760205260409020549091508082146115fd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061164290600190611d55565b6000838152600960205260408120546008805493945090928490811061166a5761166a611cad565b90600052602060002001549050806008838154811061168b5761168b611cad565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806116c3576116c3611e8a565b6001900381819060005260206000200160009055905550505050565b60006116ea83610855565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166117795760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104ed565b6000818152600260205260409020546001600160a01b0316156117de5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104ed565b6117ea600083836113aa565b6001600160a01b0382166000908152600360205260408120805460019290611813908490611d3d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461187d90611c21565b90600052602060002090601f01602090048101928261189f57600085556118e5565b82601f106118b857805160ff19168380011785556118e5565b828001600101855582156118e5579182015b828111156118e55782518255916020019190600101906118ca565b506118f19291506118f5565b5090565b5b808211156118f157600081556001016118f6565b6001600160e01b03198116811461192057600080fd5b50565b60006020828403121561193557600080fd5b8135610b7b8161190a565b60005b8381101561195b578181015183820152602001611943565b83811115610aa15750506000910152565b60008151808452611984816020860160208601611940565b601f01601f19169290920160200192915050565b602081526000610b7b602083018461196c565b6000602082840312156119bd57600080fd5b5035919050565b80356001600160a01b03811681146119db57600080fd5b919050565b600080604083850312156119f357600080fd5b6119fc836119c4565b946020939093013593505050565b600080600060608486031215611a1f57600080fd5b611a28846119c4565b9250611a36602085016119c4565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a7757611a77611a46565b604051601f8501601f19908116603f01168101908282118183101715611a9f57611a9f611a46565b81604052809350858152868686011115611ab857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ae457600080fd5b813567ffffffffffffffff811115611afb57600080fd5b8201601f81018413611b0c57600080fd5b61102384823560208401611a5c565b600060208284031215611b2d57600080fd5b610b7b826119c4565b60008060408385031215611b4957600080fd5b611b52836119c4565b915060208301358015158114611b6757600080fd5b809150509250929050565b60008060008060808587031215611b8857600080fd5b611b91856119c4565b9350611b9f602086016119c4565b925060408501359150606085013567ffffffffffffffff811115611bc257600080fd5b8501601f81018713611bd357600080fd5b611be287823560208401611a5c565b91505092959194509250565b60008060408385031215611c0157600080fd5b611c0a836119c4565b9150611c18602084016119c4565b90509250929050565b600181811c90821680611c3557607f821691505b60208210811415611c5657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351611d0a818460208801611940565b835190830190611d1e818360208801611940565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d5057611d50611d27565b500190565b600082821015611d6757611d67611d27565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600019821415611dd257611dd2611d27565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611dfe57611dfe611dd9565b500490565b600082611e1257611e12611dd9565b500690565b600060208284031215611e2957600080fd5b5051919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e639083018461196c565b9695505050505050565b600060208284031215611e7f57600080fd5b8151610b7b8161190a565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220282afcfe7f56e1bd100a18dcebc848dbd32cf6f3993c6950c8f22ab4e4a08a6e64736f6c634300080b0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063b029e3dc11610097578063c95c0d8911610071578063c95c0d891461032f578063ccbda99e14610359578063e985e9c51461036c578063f2fde38b146103a857600080fd5b8063b029e3dc14610301578063b88d4fde14610309578063c87b56dd1461031c57600080fd5b806370a08231146102b1578063715018a6146102c45780638da5cb5b146102cc57806395d89b41146102dd578063a22cb465146102e5578063a8581df7146102f857600080fd5b806323b872dd1161014b5780634f6ccce7116101255780634f6ccce7146102645780635303f68c1461027757806355f804b31461028b5780636352211e1461029e57600080fd5b806323b872dd1461022b5780632f745c591461023e57806342842e0e1461025157600080fd5b806301ffc9a71461019357806306fdde03146101bb578063081812fc146101d0578063095ea7b3146101fb57806318160ddd146102105780631e6ff20814610222575b600080fd5b6101a66101a1366004611923565b6103bb565b60405190151581526020015b60405180910390f35b6101c36103e6565b6040516101b29190611998565b6101e36101de3660046119ab565b610478565b6040516001600160a01b0390911681526020016101b2565b61020e6102093660046119e0565b610512565b005b6008545b6040519081526020016101b2565b6102146101f481565b61020e610239366004611a0a565b610628565b61021461024c3660046119e0565b610659565b61020e61025f366004611a0a565b6106ef565b6102146102723660046119ab565b61070a565b600c546101a690600160a01b900460ff1681565b61020e610299366004611ad2565b61079d565b6101e36102ac3660046119ab565b6107de565b6102146102bf366004611b1b565b610855565b61020e6108dc565b600a546001600160a01b03166101e3565b6101c3610950565b61020e6102f3366004611b36565b61095f565b610214600d5481565b61020e610a24565b61020e610317366004611b72565b610a6f565b6101c361032a3660046119ab565b610aa7565b6101a661033d3660046119ab565b6000908152600260205260409020546001600160a01b03161590565b61020e6103673660046119ab565b610b82565b6101a661037a366004611bee565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020e6103b6366004611b1b565b610d8b565b60006001600160e01b0319821663780e9d6360e01b14806103e057506103e082610e76565b92915050565b6060600080546103f590611c21565b80601f016020809104026020016040519081016040528092919081815260200182805461042190611c21565b801561046e5780601f106104435761010080835404028352916020019161046e565b820191906000526020600020905b81548152906001019060200180831161045157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104f65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061051d826107de565b9050806001600160a01b0316836001600160a01b0316141561058b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104ed565b336001600160a01b03821614806105a757506105a7813361037a565b6106195760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104ed565b6106238383610ec6565b505050565b6106323382610f34565b61064e5760405162461bcd60e51b81526004016104ed90611c5c565b61062383838361102b565b600061066483610855565b82106106c65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104ed565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61062383838360405180602001604052806000815250610a6f565b600061071560085490565b82106107785760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104ed565b6008828154811061078b5761078b611cad565b90600052602060002001549050919050565b600a546001600160a01b031633146107c75760405162461bcd60e51b81526004016104ed90611cc3565b80516107da90600e906020840190611871565b5050565b6000818152600260205260408120546001600160a01b0316806103e05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104ed565b60006001600160a01b0382166108c05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104ed565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146109065760405162461bcd60e51b81526004016104ed90611cc3565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6060600180546103f590611c21565b6001600160a01b0382163314156109b85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104ed565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610a4e5760405162461bcd60e51b81526004016104ed90611cc3565b600c805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610a793383610f34565b610a955760405162461bcd60e51b81526004016104ed90611c5c565b610aa1848484846111d6565b50505050565b6000818152600260205260409020546060906001600160a01b0316610b265760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104ed565b6000610b30611209565b90506000815111610b505760405180602001604052806000815250610b7b565b80610b5a84611218565b604051602001610b6b929190611cf8565b6040516020818303038152906040525b9392505050565b600c54600160a01b900460ff16610c015760405162461bcd60e51b815260206004820152603760248201527f54686520636c61696d207068617365206d75737420626520616374697665207460448201527f6f206d696e742061204d7574616e744b6f6e677a20565800000000000000000060648201526084016104ed565b600d5460085410610c7a5760405162461bcd60e51b815260206004820152603e60248201527f54686520436c61696d20616374696f6e20776f756c642065786365656420746860448201527f65206d617820737570706c79206f66204d7574616e744b6f6e677a205658000060648201526084016104ed565b600d54610c88906001611d3d565b8110610ce45760405162461bcd60e51b815260206004820152602560248201527f52657175657374656420746f6b656e4964206578636565647320757070657220604482015264189bdd5b9960da1b60648201526084016104ed565b6000600f610cf3600184611d55565b81548110610d0357610d03611cad565b90600052602060002001549050610d1981611316565b1515600114610d815760405162461bcd60e51b815260206004820152602e60248201527f596f7520617265206e6f7420746865206f776e6572206f66207468652072657160448201526d1d595cdd1959081d1bdad95b925960921b60648201526084016104ed565b6107da3383611390565b600a546001600160a01b03163314610db55760405162461bcd60e51b81526004016104ed90611cc3565b6001600160a01b038116610e1a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ed565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480610ea757506001600160e01b03198216635b5e139f60e01b145b806103e057506301ffc9a760e01b6001600160e01b03198316146103e0565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610efb826107de565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610fad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104ed565b6000610fb8836107de565b9050806001600160a01b0316846001600160a01b03161480610ff35750836001600160a01b0316610fe884610478565b6001600160a01b0316145b8061102357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661103e826107de565b6001600160a01b0316146110a65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104ed565b6001600160a01b0382166111085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104ed565b6111138383836113aa565b61111e600082610ec6565b6001600160a01b0383166000908152600360205260408120805460019290611147908490611d55565b90915550506001600160a01b0382166000908152600360205260408120805460019290611175908490611d3d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6111e184848461102b565b6111ed84848484611462565b610aa15760405162461bcd60e51b81526004016104ed90611d6c565b6060600e80546103f590611c21565b60608161123c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611266578061125081611dbe565b915061125f9050600a83611def565b9150611240565b60008167ffffffffffffffff81111561128157611281611a46565b6040519080825280601f01601f1916602001820160405280156112ab576020820181803683370190505b5090505b8415611023576112c0600183611d55565b91506112cd600a86611e03565b6112d8906030611d3d565b60f81b8183815181106112ed576112ed611cad565b60200101906001600160f81b031916908160001a90535061130f600a86611def565b94506112af565b600b54604051627eeac760e11b8152336004820152602481018390526000916001600160a01b03169062fdd58e90604401602060405180830381865afa158015611364573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113889190611e17565b151592915050565b6107da828260405180602001604052806000815250611560565b6001600160a01b0383166114055761140081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611428565b816001600160a01b0316836001600160a01b031614611428576114288382611593565b6001600160a01b03821661143f5761062381611630565b826001600160a01b0316826001600160a01b0316146106235761062382826116df565b60006001600160a01b0384163b1561155557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114a6903390899088908890600401611e30565b6020604051808303816000875af19250505080156114e1575060408051601f3d908101601f191682019092526114de91810190611e6d565b60015b61153b573d80801561150f576040519150601f19603f3d011682016040523d82523d6000602084013e611514565b606091505b5080516115335760405162461bcd60e51b81526004016104ed90611d6c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611023565b506001949350505050565b61156a8383611723565b6115776000848484611462565b6106235760405162461bcd60e51b81526004016104ed90611d6c565b600060016115a084610855565b6115aa9190611d55565b6000838152600760205260409020549091508082146115fd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061164290600190611d55565b6000838152600960205260408120546008805493945090928490811061166a5761166a611cad565b90600052602060002001549050806008838154811061168b5761168b611cad565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806116c3576116c3611e8a565b6001900381819060005260206000200160009055905550505050565b60006116ea83610855565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166117795760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104ed565b6000818152600260205260409020546001600160a01b0316156117de5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104ed565b6117ea600083836113aa565b6001600160a01b0382166000908152600360205260408120805460019290611813908490611d3d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461187d90611c21565b90600052602060002090601f01602090048101928261189f57600085556118e5565b82601f106118b857805160ff19168380011785556118e5565b828001600101855582156118e5579182015b828111156118e55782518255916020019190600101906118ca565b506118f19291506118f5565b5090565b5b808211156118f157600081556001016118f6565b6001600160e01b03198116811461192057600080fd5b50565b60006020828403121561193557600080fd5b8135610b7b8161190a565b60005b8381101561195b578181015183820152602001611943565b83811115610aa15750506000910152565b60008151808452611984816020860160208601611940565b601f01601f19169290920160200192915050565b602081526000610b7b602083018461196c565b6000602082840312156119bd57600080fd5b5035919050565b80356001600160a01b03811681146119db57600080fd5b919050565b600080604083850312156119f357600080fd5b6119fc836119c4565b946020939093013593505050565b600080600060608486031215611a1f57600080fd5b611a28846119c4565b9250611a36602085016119c4565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a7757611a77611a46565b604051601f8501601f19908116603f01168101908282118183101715611a9f57611a9f611a46565b81604052809350858152868686011115611ab857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ae457600080fd5b813567ffffffffffffffff811115611afb57600080fd5b8201601f81018413611b0c57600080fd5b61102384823560208401611a5c565b600060208284031215611b2d57600080fd5b610b7b826119c4565b60008060408385031215611b4957600080fd5b611b52836119c4565b915060208301358015158114611b6757600080fd5b809150509250929050565b60008060008060808587031215611b8857600080fd5b611b91856119c4565b9350611b9f602086016119c4565b925060408501359150606085013567ffffffffffffffff811115611bc257600080fd5b8501601f81018713611bd357600080fd5b611be287823560208401611a5c565b91505092959194509250565b60008060408385031215611c0157600080fd5b611c0a836119c4565b9150611c18602084016119c4565b90509250929050565b600181811c90821680611c3557607f821691505b60208210811415611c5657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351611d0a818460208801611940565b835190830190611d1e818360208801611940565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d5057611d50611d27565b500190565b600082821015611d6757611d67611d27565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600019821415611dd257611dd2611d27565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611dfe57611dfe611dd9565b500490565b600082611e1257611e12611dd9565b500690565b600060208284031215611e2957600080fd5b5051919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e639083018461196c565b9695505050505050565b600060208284031215611e7f57600080fd5b8151610b7b8161190a565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220282afcfe7f56e1bd100a18dcebc848dbd32cf6f3993c6950c8f22ab4e4a08a6e64736f6c634300080b0033
Deployed Bytecode Sourcemap
42939:58629:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34324:237;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34324:237:0;;;;;;;;21529:100;;;:::i;:::-;;;;;;;:::i;22989:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;22989:221:0;1528:203:1;22526:397:0;;;;;;:::i;:::-;;:::i;:::-;;34977:113;35065:10;:17;34977:113;;;2319:25:1;;;2307:2;2292:18;34977:113:0;2173:177:1;43010:36:0;;43043:3;43010:36;;23879:305;;;;;;:::i;:::-;;:::i;34645:256::-;;;;;;:::i;:::-;;:::i;24255:151::-;;;;;;:::i;:::-;;:::i;35167:233::-;;;;;;:::i;:::-;;:::i;43132:33::-;;;;;-1:-1:-1;;;43132:33:0;;;;;;100563:82;;;;;;:::i;:::-;;:::i;21223:239::-;;;;;;:::i;:::-;;:::i;20953:208::-;;;;;;:::i;:::-;;:::i;42196:148::-;;;:::i;41545:87::-;41618:6;;-1:-1:-1;;;;;41618:6:0;41545:87;;21698:104;;;:::i;23282:295::-;;;;;;:::i;:::-;;:::i;43170:23::-;;;;;;100651:91;;;:::i;24477:285::-;;;;;;:::i;:::-;;:::i;21873:360::-;;;;;;:::i;:::-;;:::i;100748:101::-;;;;;;:::i;:::-;100804:4;26318:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26318:16:0;:30;;100748:101;101039:522;;;;;;:::i;:::-;;:::i;23648:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;23769:25:0;;;23745:4;23769:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23648:164;42499:244;;;;;;:::i;:::-;;:::i;34324:237::-;34426:4;-1:-1:-1;;;;;;34450:50:0;;-1:-1:-1;;;34450:50:0;;:103;;;34517:36;34541:11;34517:23;:36::i;:::-;34443:110;34324:237;-1:-1:-1;;34324:237:0:o;21529:100::-;21583:13;21616:5;21609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21529:100;:::o;22989:221::-;23065:7;26318:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26318:16:0;23085:73;;;;-1:-1:-1;;;23085:73:0;;5980:2:1;23085:73:0;;;5962:21:1;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:1;;;6102:42;6161:19;;23085:73:0;;;;;;;;;-1:-1:-1;23178:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23178:24:0;;22989:221::o;22526:397::-;22607:13;22623:23;22638:7;22623:14;:23::i;:::-;22607:39;;22671:5;-1:-1:-1;;;;;22665:11:0;:2;-1:-1:-1;;;;;22665:11:0;;;22657:57;;;;-1:-1:-1;;;22657:57:0;;6393:2:1;22657:57:0;;;6375:21:1;6432:2;6412:18;;;6405:30;6471:34;6451:18;;;6444:62;-1:-1:-1;;;6522:18:1;;;6515:31;6563:19;;22657:57:0;6191:397:1;22657:57:0;15965:10;-1:-1:-1;;;;;22735:21:0;;;;:62;;-1:-1:-1;22760:37:0;22777:5;15965:10;23648:164;:::i;22760:37::-;22727:154;;;;-1:-1:-1;;;22727:154:0;;6795:2:1;22727:154:0;;;6777:21:1;6834:2;6814:18;;;6807:30;6873:34;6853:18;;;6846:62;6944:26;6924:18;;;6917:54;6988:19;;22727:154:0;6593:420:1;22727:154:0;22894:21;22903:2;22907:7;22894:8;:21::i;:::-;22596:327;22526:397;;:::o;23879:305::-;24040:41;15965:10;24073:7;24040:18;:41::i;:::-;24032:103;;;;-1:-1:-1;;;24032:103:0;;;;;;;:::i;:::-;24148:28;24158:4;24164:2;24168:7;24148:9;:28::i;34645:256::-;34742:7;34778:23;34795:5;34778:16;:23::i;:::-;34770:5;:31;34762:87;;;;-1:-1:-1;;;34762:87:0;;7638:2:1;34762:87:0;;;7620:21:1;7677:2;7657:18;;;7650:30;7716:34;7696:18;;;7689:62;-1:-1:-1;;;7767:18:1;;;7760:41;7818:19;;34762:87:0;7436:407:1;34762:87:0;-1:-1:-1;;;;;;34867:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34645:256::o;24255:151::-;24359:39;24376:4;24382:2;24386:7;24359:39;;;;;;;;;;;;:16;:39::i;35167:233::-;35242:7;35278:30;35065:10;:17;;34977:113;35278:30;35270:5;:38;35262:95;;;;-1:-1:-1;;;35262:95:0;;8050:2:1;35262:95:0;;;8032:21:1;8089:2;8069:18;;;8062:30;8128:34;8108:18;;;8101:62;-1:-1:-1;;;8179:18:1;;;8172:42;8231:19;;35262:95:0;7848:408:1;35262:95:0;35375:10;35386:5;35375:17;;;;;;;;:::i;:::-;;;;;;;;;35368:24;;35167:233;;;:::o;100563:82::-;41618:6;;-1:-1:-1;;;;;41618:6:0;15965:10;41765:23;41757:68;;;;-1:-1:-1;;;41757:68:0;;;;;;;:::i;:::-;100626:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;100563:82:::0;:::o;21223:239::-;21295:7;21331:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21331:16:0;21366:19;21358:73;;;;-1:-1:-1;;;21358:73:0;;8956:2:1;21358:73:0;;;8938:21:1;8995:2;8975:18;;;8968:30;9034:34;9014:18;;;9007:62;-1:-1:-1;;;9085:18:1;;;9078:39;9134:19;;21358:73:0;8754:405:1;20953:208:0;21025:7;-1:-1:-1;;;;;21053:19:0;;21045:74;;;;-1:-1:-1;;;21045:74:0;;9366:2:1;21045:74:0;;;9348:21:1;9405:2;9385:18;;;9378:30;9444:34;9424:18;;;9417:62;-1:-1:-1;;;9495:18:1;;;9488:40;9545:19;;21045:74:0;9164:406:1;21045:74:0;-1:-1:-1;;;;;;21137:16:0;;;;;:9;:16;;;;;;;20953:208::o;42196:148::-;41618:6;;-1:-1:-1;;;;;41618:6:0;15965:10;41765:23;41757:68;;;;-1:-1:-1;;;41757:68:0;;;;;;;:::i;:::-;42287:6:::1;::::0;42266:40:::1;::::0;42303:1:::1;::::0;-1:-1:-1;;;;;42287:6:0::1;::::0;42266:40:::1;::::0;42303:1;;42266:40:::1;42317:6;:19:::0;;-1:-1:-1;;;;;;42317:19:0::1;::::0;;42196:148::o;21698:104::-;21754:13;21787:7;21780:14;;;;;:::i;23282:295::-;-1:-1:-1;;;;;23385:24:0;;15965:10;23385:24;;23377:62;;;;-1:-1:-1;;;23377:62:0;;9777:2:1;23377:62:0;;;9759:21:1;9816:2;9796:18;;;9789:30;9855:27;9835:18;;;9828:55;9900:18;;23377:62:0;9575:349:1;23377:62:0;15965:10;23452:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23452:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23452:53:0;;;;;;;;;;23521:48;;540:41:1;;;23452:42:0;;15965:10;23521:48;;513:18:1;23521:48:0;;;;;;;23282:295;;:::o;100651:91::-;41618:6;;-1:-1:-1;;;;;41618:6:0;15965:10;41765:23;41757:68;;;;-1:-1:-1;;;41757:68:0;;;;;;;:::i;:::-;100723:13:::1;::::0;;-1:-1:-1;;;;100706:30:0;::::1;-1:-1:-1::0;;;100723:13:0;;;::::1;;;100722:14;100706:30:::0;;::::1;;::::0;;100651:91::o;24477:285::-;24609:41;15965:10;24642:7;24609:18;:41::i;:::-;24601:103;;;;-1:-1:-1;;;24601:103:0;;;;;;;:::i;:::-;24715:39;24729:4;24735:2;24739:7;24748:5;24715:13;:39::i;:::-;24477:285;;;;:::o;21873:360::-;26294:4;26318:16;;;:7;:16;;;;;;21946:13;;-1:-1:-1;;;;;26318:16:0;21972:76;;;;-1:-1:-1;;;21972:76:0;;10131:2:1;21972:76:0;;;10113:21:1;10170:2;10150:18;;;10143:30;10209:34;10189:18;;;10182:62;-1:-1:-1;;;10260:18:1;;;10253:45;10315:19;;21972:76:0;9929:411:1;21972:76:0;22061:21;22085:10;:8;:10::i;:::-;22061:34;;22137:1;22119:7;22113:21;:25;:112;;;;;;;;;;;;;;;;;22178:7;22187:18;:7;:16;:18::i;:::-;22161:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22113:112;22106:119;21873:360;-1:-1:-1;;;21873:360:0:o;101039:522::-;101102:13;;-1:-1:-1;;;101102:13:0;;;;101094:81;;;;-1:-1:-1;;;101094:81:0;;11022:2:1;101094:81:0;;;11004:21:1;11061:2;11041:18;;;11034:30;11100:34;11080:18;;;11073:62;11171:25;11151:18;;;11144:53;11214:19;;101094:81:0;10820:419:1;101094:81:0;101206:8;;35065:10;:17;101190:24;101182:99;;;;-1:-1:-1;;;101182:99:0;;11446:2:1;101182:99:0;;;11428:21:1;11485:2;11465:18;;;11458:30;11524:34;11504:18;;;11497:62;11595:32;11575:18;;;11568:60;11645:19;;101182:99:0;11244:426:1;101182:99:0;101311:8;;:12;;101322:1;101311:12;:::i;:::-;101296;:27;101288:77;;;;-1:-1:-1;;;101288:77:0;;12142:2:1;101288:77:0;;;12124:21:1;12181:2;12161:18;;;12154:30;12220:34;12200:18;;;12193:62;-1:-1:-1;;;12271:18:1;;;12264:35;12316:19;;101288:77:0;11940:401:1;101288:77:0;101372:17;101392:10;101403:14;101416:1;101403:12;:14;:::i;:::-;101392:26;;;;;;;;:::i;:::-;;;;;;;;;101372:46;;101433:19;101442:9;101433:8;:19::i;:::-;:27;;101456:4;101433:27;101425:86;;;;-1:-1:-1;;;101425:86:0;;12678:2:1;101425:86:0;;;12660:21:1;12717:2;12697:18;;;12690:30;12756:34;12736:18;;;12729:62;-1:-1:-1;;;12807:18:1;;;12800:44;12861:19;;101425:86:0;12476:410:1;101425:86:0;101520:35;101530:10;101542:12;101520:9;:35::i;42499:244::-;41618:6;;-1:-1:-1;;;;;41618:6:0;15965:10;41765:23;41757:68;;;;-1:-1:-1;;;41757:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42588:22:0;::::1;42580:73;;;::::0;-1:-1:-1;;;42580:73:0;;13093:2:1;42580:73:0::1;::::0;::::1;13075:21:1::0;13132:2;13112:18;;;13105:30;13171:34;13151:18;;;13144:62;-1:-1:-1;;;13222:18:1;;;13215:36;13268:19;;42580:73:0::1;12891:402:1::0;42580:73:0::1;42690:6;::::0;42669:38:::1;::::0;-1:-1:-1;;;;;42669:38:0;;::::1;::::0;42690:6:::1;::::0;42669:38:::1;::::0;42690:6:::1;::::0;42669:38:::1;42718:6;:17:::0;;-1:-1:-1;;;;;;42718:17:0::1;-1:-1:-1::0;;;;;42718:17:0;;;::::1;::::0;;;::::1;::::0;;42499:244::o;20597:292::-;20699:4;-1:-1:-1;;;;;;20723:40:0;;-1:-1:-1;;;20723:40:0;;:105;;-1:-1:-1;;;;;;;20780:48:0;;-1:-1:-1;;;20780:48:0;20723:105;:158;;;-1:-1:-1;;;;;;;;;;19204:40:0;;;20845:36;19095:157;30106:174;30181:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30181:29:0;-1:-1:-1;;;;;30181:29:0;;;;;;;;:24;;30235:23;30181:24;30235:14;:23::i;:::-;-1:-1:-1;;;;;30226:46:0;;;;;;;;;;;30106:174;;:::o;26523:348::-;26616:4;26318:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26318:16:0;26633:73;;;;-1:-1:-1;;;26633:73:0;;13500:2:1;26633:73:0;;;13482:21:1;13539:2;13519:18;;;13512:30;13578:34;13558:18;;;13551:62;-1:-1:-1;;;13629:18:1;;;13622:42;13681:19;;26633:73:0;13298:408:1;26633:73:0;26717:13;26733:23;26748:7;26733:14;:23::i;:::-;26717:39;;26786:5;-1:-1:-1;;;;;26775:16:0;:7;-1:-1:-1;;;;;26775:16:0;;:51;;;;26819:7;-1:-1:-1;;;;;26795:31:0;:20;26807:7;26795:11;:20::i;:::-;-1:-1:-1;;;;;26795:31:0;;26775:51;:87;;;-1:-1:-1;;;;;;23769:25:0;;;23745:4;23769:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26830:32;26767:96;26523:348;-1:-1:-1;;;;26523:348:0:o;29444:544::-;29569:4;-1:-1:-1;;;;;29542:31:0;:23;29557:7;29542:14;:23::i;:::-;-1:-1:-1;;;;;29542:31:0;;29534:85;;;;-1:-1:-1;;;29534:85:0;;13913:2:1;29534:85:0;;;13895:21:1;13952:2;13932:18;;;13925:30;13991:34;13971:18;;;13964:62;-1:-1:-1;;;14042:18:1;;;14035:39;14091:19;;29534:85:0;13711:405:1;29534:85:0;-1:-1:-1;;;;;29638:16:0;;29630:65;;;;-1:-1:-1;;;29630:65:0;;14323:2:1;29630:65:0;;;14305:21:1;14362:2;14342:18;;;14335:30;14401:34;14381:18;;;14374:62;-1:-1:-1;;;14452:18:1;;;14445:34;14496:19;;29630:65:0;14121:400:1;29630:65:0;29708:39;29729:4;29735:2;29739:7;29708:20;:39::i;:::-;29812:29;29829:1;29833:7;29812:8;:29::i;:::-;-1:-1:-1;;;;;29854:15:0;;;;;;:9;:15;;;;;:20;;29873:1;;29854:15;:20;;29873:1;;29854:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29885:13:0;;;;;;:9;:13;;;;;:18;;29902:1;;29885:13;:18;;29902:1;;29885:18;:::i;:::-;;;;-1:-1:-1;;29914:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29914:21:0;-1:-1:-1;;;;;29914:21:0;;;;;;;;;29953:27;;29914:16;;29953:27;;;;;;;29444:544;;;:::o;25644:272::-;25758:28;25768:4;25774:2;25778:7;25758:9;:28::i;:::-;25805:48;25828:4;25834:2;25838:7;25847:5;25805:22;:48::i;:::-;25797:111;;;;-1:-1:-1;;;25797:111:0;;;;;;;:::i;100461:94::-;100513:13;100542:7;100535:14;;;;;:::i;16540:723::-;16596:13;16817:10;16813:53;;-1:-1:-1;;16844:10:0;;;;;;;;;;;;-1:-1:-1;;;16844:10:0;;;;;16540:723::o;16813:53::-;16891:5;16876:12;16932:78;16939:9;;16932:78;;16965:8;;;;:::i;:::-;;-1:-1:-1;16988:10:0;;-1:-1:-1;16996:2:0;16988:10;;:::i;:::-;;;16932:78;;;17020:19;17052:6;17042:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17042:17:0;;17020:39;;17070:154;17077:10;;17070:154;;17104:11;17114:1;17104:11;;:::i;:::-;;-1:-1:-1;17173:10:0;17181:2;17173:5;:10;:::i;:::-;17160:24;;:2;:24;:::i;:::-;17147:39;;17130:6;17137;17130:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17130:56:0;;;;;;;;-1:-1:-1;17201:11:0;17210:2;17201:11;;:::i;:::-;;;17070:154;;100859:129;100941:3;;:34;;-1:-1:-1;;;100941:34:0;;100955:10;100941:34;;;15633:51:1;15700:18;;;15693:34;;;100917:4:0;;-1:-1:-1;;;;;100941:3:0;;:13;;15606:18:1;;100941:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;;;100859:129;-1:-1:-1;;100859:129:0:o;27213:110::-;27289:26;27299:2;27303:7;27289:26;;;;;;;;;;;;:9;:26::i;36013:555::-;-1:-1:-1;;;;;36185:18:0;;36181:187;;36220:40;36252:7;37395:10;:17;;37368:24;;;;:15;:24;;;;;:44;;;37423:24;;;;;;;;;;;;37291:164;36220:40;36181:187;;;36290:2;-1:-1:-1;;;;;36282:10:0;:4;-1:-1:-1;;;;;36282:10:0;;36278:90;;36309:47;36342:4;36348:7;36309:32;:47::i;:::-;-1:-1:-1;;;;;36382:16:0;;36378:183;;36415:45;36452:7;36415:36;:45::i;36378:183::-;36488:4;-1:-1:-1;;;;;36482:10:0;:2;-1:-1:-1;;;;;36482:10:0;;36478:83;;36509:40;36537:2;36541:7;36509:27;:40::i;30845:843::-;30966:4;-1:-1:-1;;;;;30992:13:0;;8369:20;8408:8;30988:693;;31028:72;;-1:-1:-1;;;31028:72:0;;-1:-1:-1;;;;;31028:36:0;;;;;:72;;15965:10;;31079:4;;31085:7;;31094:5;;31028:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31028:72:0;;;;;;;;-1:-1:-1;;31028:72:0;;;;;;;;;;;;:::i;:::-;;;31024:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31274:13:0;;31270:341;;31317:60;;-1:-1:-1;;;31317:60:0;;;;;;;:::i;31270:341::-;31561:6;31555:13;31546:6;31542:2;31538:15;31531:38;31024:602;-1:-1:-1;;;;;;31151:55:0;-1:-1:-1;;;31151:55:0;;-1:-1:-1;31144:62:0;;30988:693;-1:-1:-1;31665:4:0;30845:843;;;;;;:::o;27550:250::-;27646:18;27652:2;27656:7;27646:5;:18::i;:::-;27683:54;27714:1;27718:2;27722:7;27731:5;27683:22;:54::i;:::-;27675:117;;;;-1:-1:-1;;;27675:117:0;;;;;;;:::i;38082:988::-;38348:22;38398:1;38373:22;38390:4;38373:16;:22::i;:::-;:26;;;;:::i;:::-;38410:18;38431:26;;;:17;:26;;;;;;38348:51;;-1:-1:-1;38564:28:0;;;38560:328;;-1:-1:-1;;;;;38631:18:0;;38609:19;38631:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38682:30;;;;;;:44;;;38799:30;;:17;:30;;;;;:43;;;38560:328;-1:-1:-1;38984:26:0;;;;:17;:26;;;;;;;;38977:33;;;-1:-1:-1;;;;;39028:18:0;;;;;:12;:18;;;;;:34;;;;;;;39021:41;38082:988::o;39365:1079::-;39643:10;:17;39618:22;;39643:21;;39663:1;;39643:21;:::i;:::-;39675:18;39696:24;;;:15;:24;;;;;;40069:10;:26;;39618:46;;-1:-1:-1;39696:24:0;;39618:46;;40069:26;;;;;;:::i;:::-;;;;;;;;;40047:48;;40133:11;40108:10;40119;40108:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40213:28;;;:15;:28;;;;;;;:41;;;40385:24;;;;;40378:31;40420:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39436:1008;;;39365:1079;:::o;36869:221::-;36954:14;36971:20;36988:2;36971:16;:20::i;:::-;-1:-1:-1;;;;;37002:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37047:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36869:221:0:o;28136:382::-;-1:-1:-1;;;;;28216:16:0;;28208:61;;;;-1:-1:-1;;;28208:61:0;;17009:2:1;28208:61:0;;;16991:21:1;;;17028:18;;;17021:30;17087:34;17067:18;;;17060:62;17139:18;;28208:61:0;16807:356:1;28208:61:0;26294:4;26318:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26318:16:0;:30;28280:58;;;;-1:-1:-1;;;28280:58:0;;17370:2:1;28280:58:0;;;17352:21:1;17409:2;17389:18;;;17382:30;17448;17428:18;;;17421:58;17496:18;;28280:58:0;17168:352:1;28280:58:0;28351:45;28380:1;28384:2;28388:7;28351:20;:45::i;:::-;-1:-1:-1;;;;;28409:13:0;;;;;;:9;:13;;;;;:18;;28426:1;;28409:13;:18;;28426:1;;28409:18;:::i;:::-;;;;-1:-1:-1;;28438:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28438:21:0;-1:-1:-1;;;;;28438:21:0;;;;;;;;28477:33;;28438:16;;;28477:33;;28438:16;;28477:33;28136:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;68:71;14:131;:::o;150:245::-;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;7018:413::-;7220:2;7202:21;;;7259:2;7239:18;;;7232:30;7298:34;7293:2;7278:18;;7271:62;-1:-1:-1;;;7364:2:1;7349:18;;7342:47;7421:3;7406:19;;7018:413::o;8261:127::-;8322:10;8317:3;8313:20;8310:1;8303:31;8353:4;8350:1;8343:15;8377:4;8374:1;8367:15;8393:356;8595:2;8577:21;;;8614:18;;;8607:30;8673:34;8668:2;8653:18;;8646:62;8740:2;8725:18;;8393:356::o;10345:470::-;10524:3;10562:6;10556:13;10578:53;10624:6;10619:3;10612:4;10604:6;10600:17;10578:53;:::i;:::-;10694:13;;10653:16;;;;10716:57;10694:13;10653:16;10750:4;10738:17;;10716:57;:::i;:::-;10789:20;;10345:470;-1:-1:-1;;;;10345:470:1:o;11675:127::-;11736:10;11731:3;11727:20;11724:1;11717:31;11767:4;11764:1;11757:15;11791:4;11788:1;11781:15;11807:128;11847:3;11878:1;11874:6;11871:1;11868:13;11865:39;;;11884:18;;:::i;:::-;-1:-1:-1;11920:9:1;;11807:128::o;12346:125::-;12386:4;12414:1;12411;12408:8;12405:34;;;12419:18;;:::i;:::-;-1:-1:-1;12456:9:1;;12346:125::o;14526:414::-;14728:2;14710:21;;;14767:2;14747:18;;;14740:30;14806:34;14801:2;14786:18;;14779:62;-1:-1:-1;;;14872:2:1;14857:18;;14850:48;14930:3;14915:19;;14526:414::o;14945:135::-;14984:3;-1:-1:-1;;15005:17:1;;15002:43;;;15025:18;;:::i;:::-;-1:-1:-1;15072:1:1;15061:13;;14945:135::o;15085:127::-;15146:10;15141:3;15137:20;15134:1;15127:31;15177:4;15174:1;15167:15;15201:4;15198:1;15191:15;15217:120;15257:1;15283;15273:35;;15288:18;;:::i;:::-;-1:-1:-1;15322:9:1;;15217:120::o;15342:112::-;15374:1;15400;15390:35;;15405:18;;:::i;:::-;-1:-1:-1;15439:9:1;;15342:112::o;15738:184::-;15808:6;15861:2;15849:9;15840:7;15836:23;15832:32;15829:52;;;15877:1;15874;15867:12;15829:52;-1:-1:-1;15900:16:1;;15738:184;-1:-1:-1;15738:184:1:o;15927:489::-;-1:-1:-1;;;;;16196:15:1;;;16178:34;;16248:15;;16243:2;16228:18;;16221:43;16295:2;16280:18;;16273:34;;;16343:3;16338:2;16323:18;;16316:31;;;16121:4;;16364:46;;16390:19;;16382:6;16364:46;:::i;:::-;16356:54;15927:489;-1:-1:-1;;;;;;15927:489:1:o;16421:249::-;16490:6;16543:2;16531:9;16522:7;16518:23;16514:32;16511:52;;;16559:1;16556;16549:12;16511:52;16591:9;16585:16;16610:30;16634:5;16610:30;:::i;16675:127::-;16736:10;16731:3;16727:20;16724:1;16717:31;16767:4;16764:1;16757:15;16791:4;16788:1;16781:15
Swarm Source
ipfs://282afcfe7f56e1bd100a18dcebc848dbd32cf6f3993c6950c8f22ab4e4a08a6e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.