NFT
Overview
TokenID
217
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ChronoGP_NFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-09 */ // SPDX-License-Identifier: MIT /* ╭━━━┳╮╱╱╱╱╱╱╱╱╱╱╱╱╭━━━┳━━━╮ ┃╭━╮┃┃╱╱╱╱╱╱╱╱╱╱╱╱┃╭━╮┃╭━╮┃ ┃┃╱╰┫╰━┳━┳━━┳━╮╭━━┫┃╱╰┫╰━╯┃ ┃┃╱╭┫╭╮┃╭┫╭╮┃╭╮┫╭╮┃┃╭━┫╭━━╯ ┃╰━╯┃┃┃┃┃┃╰╯┃┃┃┃╰╯┃╰┻━┃┃ ╰━━━┻╯╰┻╯╰━━┻╯╰┻━━┻━━━┻╯ */ // ChronoGP First Collection pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (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/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (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); } pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. // bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. //uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. //uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. //uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; /* CUSTOM VARS */ address payable public admin; uint256 public tokenPrice = 0.1 ether; uint256 public MAX_SUPPLY = 1024; string public baseURI = "ipfs://QmZnYcDZRjfm8NW4y3jj8VAxUJTmh9nQBSewTHtJDtA7YU/"; mapping (address => uint256 []) internal tokenIdsOwnedBy; mapping(address => bool) private whiteList; bool public whiteListIson = false; bool public mintingIsLive = false; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); admin = payable(msg.sender); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _startTokenId();//- _burnCounter } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } */ /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } */ /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } */ /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; // if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } //} } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); //string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. function _baseURI() internal view virtual returns (string memory) { return baseURI; } */ /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex; // && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { //RIO tokenIdsOwnedBy[to].push(updatedIndex); // Cyber reward are not active on minting // cyberToken.insRewardOnPurchase(to, updatedIndex); emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } //RIO delete preview ownership array for(uint index = 0;index < tokenIdsOwnedBy[from].length;index++){ if(tokenIdsOwnedBy[from][index]==tokenId){ delete tokenIdsOwnedBy[from][index]; break; } } tokenIdsOwnedBy[to].push(tokenId); emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } */ /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } */ /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { 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 TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} function mintTokenNFT (uint256 _numTokens) external payable returns (bool success){ uint256 amount = msg.value; require(mintingIsLive || msg.sender == admin ,"Minting is not yet available"); require(totalSupply()+(_numTokens) <= MAX_SUPPLY,"Collection is sold out"); require(amount >= tokenPrice * _numTokens || msg.sender == admin,"Not enought amount to buy this NFT"); if(whiteListIson==true){ require (whiteList[msg.sender],"Address is not whiteListed"); require ((tokenIdsOwnedBy[msg.sender].length + _numTokens) <= 10,"WhiteListed can get only 10 NFTs"); } else { require ((tokenIdsOwnedBy[msg.sender].length + _numTokens) <= 100,"Can get only 100 NFT"); } _safeMint(msg.sender,_numTokens,''); admin.transfer(amount); return true; } /* CONTRACT CUSTOM FUNCTIONS */ function includeToWhiteList(address[] memory _wallets , bool _isOn) public { require(msg.sender == admin,"Only admin can act here"); for(uint8 i = 0; i < _wallets.length; i++) { whiteList[_wallets[i]] = _isOn; } } function setMintingStatus(bool _status) public { require(msg.sender == admin,"Only admin can act here"); mintingIsLive = _status; } function setWhitelistStatus(bool _status) public { require(msg.sender == admin,"Only admin can act here"); whiteListIson = _status; mintingIsLive = true; } /* Reveal the collection*/ function setBaseURIpfs (string memory _baseUri) external returns (bool success){ require(msg.sender == admin,"Only Admin can act this operation"); baseURI = _baseUri; return true; } function getTokenIdsOwnedBy(address _owner) virtual public view returns (uint256 [] memory){ return tokenIdsOwnedBy[_owner]; } function withdrawAdmin() public{ require(msg.sender == admin, "Only Admin can act with this"); admin.transfer(address(this).balance); } function setTokenPrice(uint256 _price) public { require(msg.sender == admin,"Only admin can act here"); tokenPrice = _price; } function setMaxSupply(uint256 _maxNew) public{ require(msg.sender == admin, "Only Admin can act with this"); MAX_SUPPLY = _maxNew; } } contract ChronoGP_NFT is ERC721A { //Name symbol constructor() ERC721A("ChronoGP First Collection", "ChronoGP") { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIdsOwnedBy","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"},{"internalType":"bool","name":"_isOn","type":"bool"}],"name":"includeToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mintTokenNFT","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingIsLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"_baseUri","type":"string"}],"name":"setBaseURIpfs","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxNew","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setMintingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","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":[],"name":"tokenPrice","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":[],"name":"whiteListIson","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
67016345785d8a000060085561040060095560e060405260366080818152906200218760a03980516200003b91600a91602090910190620000f0565b50600d805461ffff191690553480156200005457600080fd5b50604080518082018252601981527f4368726f6e6f475020466972737420436f6c6c656374696f6e0000000000000060208083019182528351808501909452600884526704368726f6e6f47560c41b908401528151919291620000ba91600191620000f0565b508051620000d0906002906020840190620000f0565b5060016000555050600780546001600160a01b03191633179055620001d3565b828054620000fe9062000196565b90600052602060002090601f0160209004810192826200012257600085556200016d565b82601f106200013d57805160ff19168380011785556200016d565b828001600101855582156200016d579182015b828111156200016d57825182559160200191906001019062000150565b506200017b9291506200017f565b5090565b5b808211156200017b576000815560010162000180565b600181811c90821680620001ab57607f821691505b60208210811415620001cd57634e487b7160e01b600052602260045260246000fd5b50919050565b611fa480620001e36000396000f3fe6080604052600436106101c25760003560e01c80636c0360eb116100f75780638a87e2b011610095578063b88d4fde11610064578063b88d4fde146104df578063c87b56dd146104ff578063e985e9c51461051f578063f851a4401461056857600080fd5b80638a87e2b01461047057806395d89b411461048a578063a22cb4651461049f578063a8917171146104bf57600080fd5b806370a08231116100d157806370a08231146103fb5780637420aa361461041b5780637ff9b5961461043b578063816958e41461045157600080fd5b80636c0360eb146103b35780636e9528d0146103c85780636f8b44b0146103db57600080fd5b806332cb6b0c116101645780634b94be481161013e5780634b94be481461032657806363318f85146103465780636352211e146103735780636a61e5fc1461039357600080fd5b806332cb6b0c146102d057806342842e0e146102e65780634a9991181461030657600080fd5b8063081812fc116101a0578063081812fc14610235578063095ea7b31461026d57806318160ddd1461028d57806323b872dd146102b057600080fd5b806301ffc9a7146101c757806304c76af0146101fc57806306fdde0314610213575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611b61565b610588565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105da565b005b34801561021f57600080fd5b50610228610675565b6040516101f39190611d6d565b34801561024157600080fd5b50610255610250366004611be4565b610707565b6040516001600160a01b0390911681526020016101f3565b34801561027957600080fd5b50610211610288366004611a56565b61074b565b34801561029957600080fd5b50600054600019015b6040519081526020016101f3565b3480156102bc57600080fd5b506102116102cb366004611974565b6107d9565b3480156102dc57600080fd5b506102a260095481565b3480156102f257600080fd5b50610211610301366004611974565b6107e4565b34801561031257600080fd5b50610211610321366004611b46565b6107ff565b34801561033257600080fd5b50610211610341366004611a80565b61084b565b34801561035257600080fd5b5061036661036136600461191f565b6108e2565b6040516101f39190611d29565b34801561037f57600080fd5b5061025561038e366004611be4565b61094e565b34801561039f57600080fd5b506102116103ae366004611be4565b610960565b3480156103bf57600080fd5b5061022861098f565b6101e76103d6366004611be4565b610a1d565b3480156103e757600080fd5b506102116103f6366004611be4565b610d0e565b34801561040757600080fd5b506102a261041636600461191f565b610d6d565b34801561042757600080fd5b50610211610436366004611b46565b610dbc565b34801561044757600080fd5b506102a260085481565b34801561045d57600080fd5b50600d546101e790610100900460ff1681565b34801561047c57600080fd5b50600d546101e79060ff1681565b34801561049657600080fd5b50610228610e00565b3480156104ab57600080fd5b506102116104ba366004611a2c565b610e0f565b3480156104cb57600080fd5b506101e76104da366004611b9b565b610ea5565b3480156104eb57600080fd5b506102116104fa3660046119b0565b610f28565b34801561050b57600080fd5b5061022861051a366004611be4565b610f79565b34801561052b57600080fd5b506101e761053a366004611941565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561057457600080fd5b50600754610255906001600160a01b031681565b60006001600160e01b031982166380ac58cd60e01b14806105b957506001600160e01b03198216635b5e139f60e01b145b806105d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146106395760405162461bcd60e51b815260206004820152601c60248201527f4f6e6c792041646d696e2063616e20616374207769746820746869730000000060448201526064015b60405180910390fd5b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610672573d6000803e3d6000fd5b50565b60606001805461068490611e76565b80601f01602080910402602001604051908101604052809291908181526020018280546106b090611e76565b80156106fd5780601f106106d2576101008083540402835291602001916106fd565b820191906000526020600020905b8154815290600101906020018083116106e057829003601f168201915b5050505050905090565b600061071282610ffc565b61072f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107568261094e565b9050806001600160a01b0316836001600160a01b0316141561078b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ab57506107a9813361053a565b155b156107c9576040516367d9dca160e11b815260040160405180910390fd5b6107d4838383611012565b505050565b6107d483838361106e565b6107d483838360405180602001604052806000815250610f28565b6007546001600160a01b031633146108295760405162461bcd60e51b815260040161063090611d80565b600d805461ff00199215159290921661ffff1990921691909117610100179055565b6007546001600160a01b031633146108755760405162461bcd60e51b815260040161063090611d80565b60005b82518160ff1610156107d45781600c6000858460ff168151811061089e5761089e611f2c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806108da81611ecc565b915050610878565b6001600160a01b0381166000908152600b602090815260409182902080548351818402810184019094528084526060939283018282801561094257602002820191906000526020600020905b81548152602001906001019080831161092e575b50505050509050919050565b600061095982611324565b5192915050565b6007546001600160a01b0316331461098a5760405162461bcd60e51b815260040161063090611d80565b600855565b600a805461099c90611e76565b80601f01602080910402602001604051908101604052809291908181526020018280546109c890611e76565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b505050505081565b600d546000903490610100900460ff1680610a4257506007546001600160a01b031633145b610a8e5760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e67206973206e6f742079657420617661696c61626c65000000006044820152606401610630565b60095483610a9f6000546000190190565b610aa99190611de8565b1115610af05760405162461bcd60e51b815260206004820152601660248201527510dbdb1b1958dd1a5bdb881a5cc81cdbdb19081bdd5d60521b6044820152606401610630565b82600854610afe9190611e14565b81101580610b1657506007546001600160a01b031633145b610b6d5760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f7567687420616d6f756e7420746f206275792074686973204e604482015261119560f21b6064820152608401610630565b600d5460ff16151560011415610c4d57336000908152600c602052604090205460ff16610bdc5760405162461bcd60e51b815260206004820152601a60248201527f41646472657373206973206e6f742077686974654c69737465640000000000006044820152606401610630565b336000908152600b6020526040902054600a90610bfa908590611de8565b1115610c485760405162461bcd60e51b815260206004820181905260248201527f57686974654c69737465642063616e20676574206f6e6c79203130204e4654736044820152606401610630565b610cb0565b336000908152600b6020526040902054606490610c6b908590611de8565b1115610cb05760405162461bcd60e51b815260206004820152601460248201527310d85b8819d95d081bdb9b1e480c4c0c0813919560621b6044820152606401610630565b610cca33846040518060200160405280600081525061140d565b6007546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610d04573d6000803e3d6000fd5b5060019392505050565b6007546001600160a01b03163314610d685760405162461bcd60e51b815260206004820152601c60248201527f4f6e6c792041646d696e2063616e2061637420776974682074686973000000006044820152606401610630565b600955565b60006001600160a01b038216610d96576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610de65760405162461bcd60e51b815260040161063090611d80565b600d80549115156101000261ff0019909216919091179055565b60606002805461068490611e76565b6001600160a01b038216331415610e395760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546000906001600160a01b03163314610f0c5760405162461bcd60e51b815260206004820152602160248201527f4f6e6c792041646d696e2063616e206163742074686973206f7065726174696f6044820152603760f91b6064820152608401610630565b8151610f1f90600a906020850190611802565b50600192915050565b610f3384848461106e565b6001600160a01b0383163b15158015610f555750610f538484848461141a565b155b15610f73576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f8482610ffc565b610fa157604051630a14c4b560e41b815260040160405180910390fd5b600a8054610fae90611e76565b15159050610fcb57604051806020016040528060008152506105d4565b600a610fd683611512565b604051602001610fe7929190611c45565b60405160208183030381529060405292915050565b6000816001111580156105d45750506000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061107982611324565b9050836001600160a01b031681600001516001600160a01b0316146110b05760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110ce57506110ce853361053a565b806110e95750336110de84610707565b6001600160a01b0316145b90508061110957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661113057604051633a954ecd60e21b815260040160405180910390fd5b61113c60008487611012565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611212576000548214611212578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505060005b6001600160a01b0386166000908152600b60205260409020548110156112c2576001600160a01b0386166000908152600b6020526040902080548591908390811061126557611265611f2c565b906000526020600020015414156112b0576001600160a01b0386166000908152600b602052604090208054829081106112a0576112a0611f2c565b60009182526020822001556112c2565b806112ba81611eb1565b915050611218565b506001600160a01b038085166000818152600b6020908152604080832080546001810182559084529183209091018790555186938916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a45b5050505050565b6040805180820190915260008082526020820152818060011115801561134b575060005481105b156113f4576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561139d579392505050565b50600019016000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156113ef579392505050565b61139d565b604051636f96cda160e11b815260040160405180910390fd5b6107d48383836001611610565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061144f903390899088908890600401611cec565b602060405180830381600087803b15801561146957600080fd5b505af1925050508015611499575060408051601f3d908101601f1916820190925261149691810190611b7e565b60015b6114f4573d8080156114c7576040519150601f19603f3d011682016040523d82523d6000602084013e6114cc565b606091505b5080516114ec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816115365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611560578061154a81611eb1565b91506115599050600a83611e00565b915061153a565b60008167ffffffffffffffff81111561157b5761157b611f42565b6040519080825280601f01601f1916602001820160405280156115a5576020820181803683370190505b5090505b841561150a576115ba600183611e33565b91506115c7600a86611eec565b6115d2906030611de8565b60f81b8183815181106115e7576115e7611f2c565b60200101906001600160f81b031916908160001a905350611609600a86611e00565b94506115a9565b6000546001600160a01b03851661163957604051622e076360e81b815260040160405180910390fd5b836116575760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600390925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561170957506001600160a01b0387163b15155b15611792575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461175a600088848060010195508861141a565b611777576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561170f57826000541461178d57600080fd5b6117f9565b5b6001600160a01b0387166000818152600b6020908152604080832080546001818101835591855292842090920186905551908501949291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611793575b5060005561131d565b82805461180e90611e76565b90600052602060002090601f0160209004810192826118305760008555611876565b82601f1061184957805160ff1916838001178555611876565b82800160010185558215611876579182015b8281111561187657825182559160200191906001019061185b565b50611882929150611886565b5090565b5b808211156118825760008155600101611887565b600067ffffffffffffffff8311156118b5576118b5611f42565b6118c8601f8401601f1916602001611db7565b90508281528383830111156118dc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461190a57600080fd5b919050565b8035801515811461190a57600080fd5b60006020828403121561193157600080fd5b61193a826118f3565b9392505050565b6000806040838503121561195457600080fd5b61195d836118f3565b915061196b602084016118f3565b90509250929050565b60008060006060848603121561198957600080fd5b611992846118f3565b92506119a0602085016118f3565b9150604084013590509250925092565b600080600080608085870312156119c657600080fd5b6119cf856118f3565b93506119dd602086016118f3565b925060408501359150606085013567ffffffffffffffff811115611a0057600080fd5b8501601f81018713611a1157600080fd5b611a208782356020840161189b565b91505092959194509250565b60008060408385031215611a3f57600080fd5b611a48836118f3565b915061196b6020840161190f565b60008060408385031215611a6957600080fd5b611a72836118f3565b946020939093013593505050565b60008060408385031215611a9357600080fd5b823567ffffffffffffffff80821115611aab57600080fd5b818501915085601f830112611abf57600080fd5b8135602082821115611ad357611ad3611f42565b8160051b9250611ae4818401611db7565b8281528181019085830185870184018b1015611aff57600080fd5b600096505b84871015611b2957611b15816118f3565b835260019690960195918301918301611b04565b509650611b39905087820161190f565b9450505050509250929050565b600060208284031215611b5857600080fd5b61193a8261190f565b600060208284031215611b7357600080fd5b813561193a81611f58565b600060208284031215611b9057600080fd5b815161193a81611f58565b600060208284031215611bad57600080fd5b813567ffffffffffffffff811115611bc457600080fd5b8201601f81018413611bd557600080fd5b61150a8482356020840161189b565b600060208284031215611bf657600080fd5b5035919050565b60008151808452611c15816020860160208601611e4a565b601f01601f19169290920160200192915050565b60008151611c3b818560208601611e4a565b9290920192915050565b600080845481600182811c915080831680611c6157607f831692505b6020808410821415611c8157634e487b7160e01b86526022600452602486fd5b818015611c955760018114611ca657611cd3565b60ff19861689528489019650611cd3565b60008b81526020902060005b86811015611ccb5781548b820152908501908301611cb2565b505084890196505b505050505050611ce38185611c29565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d1f90830184611bfd565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d6157835183529284019291840191600101611d45565b50909695505050505050565b60208152600061193a6020830184611bfd565b60208082526017908201527f4f6e6c792061646d696e2063616e206163742068657265000000000000000000604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611de057611de0611f42565b604052919050565b60008219821115611dfb57611dfb611f00565b500190565b600082611e0f57611e0f611f16565b500490565b6000816000190483118215151615611e2e57611e2e611f00565b500290565b600082821015611e4557611e45611f00565b500390565b60005b83811015611e65578181015183820152602001611e4d565b83811115610f735750506000910152565b600181811c90821680611e8a57607f821691505b60208210811415611eab57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ec557611ec5611f00565b5060010190565b600060ff821660ff811415611ee357611ee3611f00565b60010192915050565b600082611efb57611efb611f16565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461067257600080fdfea2646970667358221220163cc282e1bfd4d648517ba7528f3d58211f9d2757216c2211fdd62e9fca804f64736f6c63430008070033697066733a2f2f516d5a6e5963445a526a666d384e573479336a6a38564178554a546d68396e51425365775448744a4474413759552f
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80636c0360eb116100f75780638a87e2b011610095578063b88d4fde11610064578063b88d4fde146104df578063c87b56dd146104ff578063e985e9c51461051f578063f851a4401461056857600080fd5b80638a87e2b01461047057806395d89b411461048a578063a22cb4651461049f578063a8917171146104bf57600080fd5b806370a08231116100d157806370a08231146103fb5780637420aa361461041b5780637ff9b5961461043b578063816958e41461045157600080fd5b80636c0360eb146103b35780636e9528d0146103c85780636f8b44b0146103db57600080fd5b806332cb6b0c116101645780634b94be481161013e5780634b94be481461032657806363318f85146103465780636352211e146103735780636a61e5fc1461039357600080fd5b806332cb6b0c146102d057806342842e0e146102e65780634a9991181461030657600080fd5b8063081812fc116101a0578063081812fc14610235578063095ea7b31461026d57806318160ddd1461028d57806323b872dd146102b057600080fd5b806301ffc9a7146101c757806304c76af0146101fc57806306fdde0314610213575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611b61565b610588565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105da565b005b34801561021f57600080fd5b50610228610675565b6040516101f39190611d6d565b34801561024157600080fd5b50610255610250366004611be4565b610707565b6040516001600160a01b0390911681526020016101f3565b34801561027957600080fd5b50610211610288366004611a56565b61074b565b34801561029957600080fd5b50600054600019015b6040519081526020016101f3565b3480156102bc57600080fd5b506102116102cb366004611974565b6107d9565b3480156102dc57600080fd5b506102a260095481565b3480156102f257600080fd5b50610211610301366004611974565b6107e4565b34801561031257600080fd5b50610211610321366004611b46565b6107ff565b34801561033257600080fd5b50610211610341366004611a80565b61084b565b34801561035257600080fd5b5061036661036136600461191f565b6108e2565b6040516101f39190611d29565b34801561037f57600080fd5b5061025561038e366004611be4565b61094e565b34801561039f57600080fd5b506102116103ae366004611be4565b610960565b3480156103bf57600080fd5b5061022861098f565b6101e76103d6366004611be4565b610a1d565b3480156103e757600080fd5b506102116103f6366004611be4565b610d0e565b34801561040757600080fd5b506102a261041636600461191f565b610d6d565b34801561042757600080fd5b50610211610436366004611b46565b610dbc565b34801561044757600080fd5b506102a260085481565b34801561045d57600080fd5b50600d546101e790610100900460ff1681565b34801561047c57600080fd5b50600d546101e79060ff1681565b34801561049657600080fd5b50610228610e00565b3480156104ab57600080fd5b506102116104ba366004611a2c565b610e0f565b3480156104cb57600080fd5b506101e76104da366004611b9b565b610ea5565b3480156104eb57600080fd5b506102116104fa3660046119b0565b610f28565b34801561050b57600080fd5b5061022861051a366004611be4565b610f79565b34801561052b57600080fd5b506101e761053a366004611941565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561057457600080fd5b50600754610255906001600160a01b031681565b60006001600160e01b031982166380ac58cd60e01b14806105b957506001600160e01b03198216635b5e139f60e01b145b806105d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146106395760405162461bcd60e51b815260206004820152601c60248201527f4f6e6c792041646d696e2063616e20616374207769746820746869730000000060448201526064015b60405180910390fd5b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610672573d6000803e3d6000fd5b50565b60606001805461068490611e76565b80601f01602080910402602001604051908101604052809291908181526020018280546106b090611e76565b80156106fd5780601f106106d2576101008083540402835291602001916106fd565b820191906000526020600020905b8154815290600101906020018083116106e057829003601f168201915b5050505050905090565b600061071282610ffc565b61072f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107568261094e565b9050806001600160a01b0316836001600160a01b0316141561078b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ab57506107a9813361053a565b155b156107c9576040516367d9dca160e11b815260040160405180910390fd5b6107d4838383611012565b505050565b6107d483838361106e565b6107d483838360405180602001604052806000815250610f28565b6007546001600160a01b031633146108295760405162461bcd60e51b815260040161063090611d80565b600d805461ff00199215159290921661ffff1990921691909117610100179055565b6007546001600160a01b031633146108755760405162461bcd60e51b815260040161063090611d80565b60005b82518160ff1610156107d45781600c6000858460ff168151811061089e5761089e611f2c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806108da81611ecc565b915050610878565b6001600160a01b0381166000908152600b602090815260409182902080548351818402810184019094528084526060939283018282801561094257602002820191906000526020600020905b81548152602001906001019080831161092e575b50505050509050919050565b600061095982611324565b5192915050565b6007546001600160a01b0316331461098a5760405162461bcd60e51b815260040161063090611d80565b600855565b600a805461099c90611e76565b80601f01602080910402602001604051908101604052809291908181526020018280546109c890611e76565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b505050505081565b600d546000903490610100900460ff1680610a4257506007546001600160a01b031633145b610a8e5760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e67206973206e6f742079657420617661696c61626c65000000006044820152606401610630565b60095483610a9f6000546000190190565b610aa99190611de8565b1115610af05760405162461bcd60e51b815260206004820152601660248201527510dbdb1b1958dd1a5bdb881a5cc81cdbdb19081bdd5d60521b6044820152606401610630565b82600854610afe9190611e14565b81101580610b1657506007546001600160a01b031633145b610b6d5760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f7567687420616d6f756e7420746f206275792074686973204e604482015261119560f21b6064820152608401610630565b600d5460ff16151560011415610c4d57336000908152600c602052604090205460ff16610bdc5760405162461bcd60e51b815260206004820152601a60248201527f41646472657373206973206e6f742077686974654c69737465640000000000006044820152606401610630565b336000908152600b6020526040902054600a90610bfa908590611de8565b1115610c485760405162461bcd60e51b815260206004820181905260248201527f57686974654c69737465642063616e20676574206f6e6c79203130204e4654736044820152606401610630565b610cb0565b336000908152600b6020526040902054606490610c6b908590611de8565b1115610cb05760405162461bcd60e51b815260206004820152601460248201527310d85b8819d95d081bdb9b1e480c4c0c0813919560621b6044820152606401610630565b610cca33846040518060200160405280600081525061140d565b6007546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610d04573d6000803e3d6000fd5b5060019392505050565b6007546001600160a01b03163314610d685760405162461bcd60e51b815260206004820152601c60248201527f4f6e6c792041646d696e2063616e2061637420776974682074686973000000006044820152606401610630565b600955565b60006001600160a01b038216610d96576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610de65760405162461bcd60e51b815260040161063090611d80565b600d80549115156101000261ff0019909216919091179055565b60606002805461068490611e76565b6001600160a01b038216331415610e395760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546000906001600160a01b03163314610f0c5760405162461bcd60e51b815260206004820152602160248201527f4f6e6c792041646d696e2063616e206163742074686973206f7065726174696f6044820152603760f91b6064820152608401610630565b8151610f1f90600a906020850190611802565b50600192915050565b610f3384848461106e565b6001600160a01b0383163b15158015610f555750610f538484848461141a565b155b15610f73576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f8482610ffc565b610fa157604051630a14c4b560e41b815260040160405180910390fd5b600a8054610fae90611e76565b15159050610fcb57604051806020016040528060008152506105d4565b600a610fd683611512565b604051602001610fe7929190611c45565b60405160208183030381529060405292915050565b6000816001111580156105d45750506000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061107982611324565b9050836001600160a01b031681600001516001600160a01b0316146110b05760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110ce57506110ce853361053a565b806110e95750336110de84610707565b6001600160a01b0316145b90508061110957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661113057604051633a954ecd60e21b815260040160405180910390fd5b61113c60008487611012565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611212576000548214611212578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505060005b6001600160a01b0386166000908152600b60205260409020548110156112c2576001600160a01b0386166000908152600b6020526040902080548591908390811061126557611265611f2c565b906000526020600020015414156112b0576001600160a01b0386166000908152600b602052604090208054829081106112a0576112a0611f2c565b60009182526020822001556112c2565b806112ba81611eb1565b915050611218565b506001600160a01b038085166000818152600b6020908152604080832080546001810182559084529183209091018790555186938916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a45b5050505050565b6040805180820190915260008082526020820152818060011115801561134b575060005481105b156113f4576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561139d579392505050565b50600019016000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156113ef579392505050565b61139d565b604051636f96cda160e11b815260040160405180910390fd5b6107d48383836001611610565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061144f903390899088908890600401611cec565b602060405180830381600087803b15801561146957600080fd5b505af1925050508015611499575060408051601f3d908101601f1916820190925261149691810190611b7e565b60015b6114f4573d8080156114c7576040519150601f19603f3d011682016040523d82523d6000602084013e6114cc565b606091505b5080516114ec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816115365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611560578061154a81611eb1565b91506115599050600a83611e00565b915061153a565b60008167ffffffffffffffff81111561157b5761157b611f42565b6040519080825280601f01601f1916602001820160405280156115a5576020820181803683370190505b5090505b841561150a576115ba600183611e33565b91506115c7600a86611eec565b6115d2906030611de8565b60f81b8183815181106115e7576115e7611f2c565b60200101906001600160f81b031916908160001a905350611609600a86611e00565b94506115a9565b6000546001600160a01b03851661163957604051622e076360e81b815260040160405180910390fd5b836116575760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600390925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561170957506001600160a01b0387163b15155b15611792575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461175a600088848060010195508861141a565b611777576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561170f57826000541461178d57600080fd5b6117f9565b5b6001600160a01b0387166000818152600b6020908152604080832080546001818101835591855292842090920186905551908501949291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611793575b5060005561131d565b82805461180e90611e76565b90600052602060002090601f0160209004810192826118305760008555611876565b82601f1061184957805160ff1916838001178555611876565b82800160010185558215611876579182015b8281111561187657825182559160200191906001019061185b565b50611882929150611886565b5090565b5b808211156118825760008155600101611887565b600067ffffffffffffffff8311156118b5576118b5611f42565b6118c8601f8401601f1916602001611db7565b90508281528383830111156118dc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461190a57600080fd5b919050565b8035801515811461190a57600080fd5b60006020828403121561193157600080fd5b61193a826118f3565b9392505050565b6000806040838503121561195457600080fd5b61195d836118f3565b915061196b602084016118f3565b90509250929050565b60008060006060848603121561198957600080fd5b611992846118f3565b92506119a0602085016118f3565b9150604084013590509250925092565b600080600080608085870312156119c657600080fd5b6119cf856118f3565b93506119dd602086016118f3565b925060408501359150606085013567ffffffffffffffff811115611a0057600080fd5b8501601f81018713611a1157600080fd5b611a208782356020840161189b565b91505092959194509250565b60008060408385031215611a3f57600080fd5b611a48836118f3565b915061196b6020840161190f565b60008060408385031215611a6957600080fd5b611a72836118f3565b946020939093013593505050565b60008060408385031215611a9357600080fd5b823567ffffffffffffffff80821115611aab57600080fd5b818501915085601f830112611abf57600080fd5b8135602082821115611ad357611ad3611f42565b8160051b9250611ae4818401611db7565b8281528181019085830185870184018b1015611aff57600080fd5b600096505b84871015611b2957611b15816118f3565b835260019690960195918301918301611b04565b509650611b39905087820161190f565b9450505050509250929050565b600060208284031215611b5857600080fd5b61193a8261190f565b600060208284031215611b7357600080fd5b813561193a81611f58565b600060208284031215611b9057600080fd5b815161193a81611f58565b600060208284031215611bad57600080fd5b813567ffffffffffffffff811115611bc457600080fd5b8201601f81018413611bd557600080fd5b61150a8482356020840161189b565b600060208284031215611bf657600080fd5b5035919050565b60008151808452611c15816020860160208601611e4a565b601f01601f19169290920160200192915050565b60008151611c3b818560208601611e4a565b9290920192915050565b600080845481600182811c915080831680611c6157607f831692505b6020808410821415611c8157634e487b7160e01b86526022600452602486fd5b818015611c955760018114611ca657611cd3565b60ff19861689528489019650611cd3565b60008b81526020902060005b86811015611ccb5781548b820152908501908301611cb2565b505084890196505b505050505050611ce38185611c29565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d1f90830184611bfd565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d6157835183529284019291840191600101611d45565b50909695505050505050565b60208152600061193a6020830184611bfd565b60208082526017908201527f4f6e6c792061646d696e2063616e206163742068657265000000000000000000604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611de057611de0611f42565b604052919050565b60008219821115611dfb57611dfb611f00565b500190565b600082611e0f57611e0f611f16565b500490565b6000816000190483118215151615611e2e57611e2e611f00565b500290565b600082821015611e4557611e45611f00565b500390565b60005b83811015611e65578181015183820152602001611e4d565b83811115610f735750506000910152565b600181811c90821680611e8a57607f821691505b60208210811415611eab57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ec557611ec5611f00565b5060010190565b600060ff821660ff811415611ee357611ee3611f00565b60010192915050565b600082611efb57611efb611f16565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461067257600080fdfea2646970667358221220163cc282e1bfd4d648517ba7528f3d58211f9d2757216c2211fdd62e9fca804f64736f6c63430008070033
Deployed Bytecode Sourcemap
46123:137:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25285:305;;;;;;;;;;-1:-1:-1;25285:305:0;;;;;:::i;:::-;;:::i;:::-;;;8471:14:1;;8464:22;8446:41;;8434:2;8419:18;25285:305:0;;;;;;;;45628:158;;;;;;;;;;;;;:::i;:::-;;28414:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29930:204::-;;;;;;;;;;-1:-1:-1;29930:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6908:32:1;;;6890:51;;6878:2;6863:18;29930:204:0;6744:203:1;29493:371:0;;;;;;;;;;-1:-1:-1;29493:371:0;;;;;:::i;:::-;;:::i;24532:305::-;;;;;;;;;;-1:-1:-1;24576:7:0;24770:13;-1:-1:-1;;24770:32:0;24532:305;;;12155:25:1;;;12143:2;12128:18;24532:305:0;12009:177:1;30795:170:0;;;;;;;;;;-1:-1:-1;30795:170:0;;;;;:::i;:::-;;:::i;23695:32::-;;;;;;;;;;;;;;;;31036:185;;;;;;;;;;-1:-1:-1;31036:185:0;;;;;:::i;:::-;;:::i;45030:187::-;;;;;;;;;;-1:-1:-1;45030:187:0;;;;;:::i;:::-;;:::i;44598:258::-;;;;;;;;;;-1:-1:-1;44598:258:0;;;;;:::i;:::-;;:::i;45482:134::-;;;;;;;;;;-1:-1:-1;45482:134:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28222:125::-;;;;;;;;;;-1:-1:-1;28222:125:0;;;;;:::i;:::-;;:::i;45802:149::-;;;;;;;;;;-1:-1:-1;45802:149:0;;;;;:::i;:::-;;:::i;23734:80::-;;;;;;;;;;;;;:::i;43671:881::-;;;;;;:::i;:::-;;:::i;45957:155::-;;;;;;;;;;-1:-1:-1;45957:155:0;;;;;:::i;:::-;;:::i;25654:206::-;;;;;;;;;;-1:-1:-1;25654:206:0;;;;;:::i;:::-;;:::i;44868:154::-;;;;;;;;;;-1:-1:-1;44868:154:0;;;;;:::i;:::-;;:::i;23651:37::-;;;;;;;;;;;;;;;;23973:33;;;;;;;;;;-1:-1:-1;23973:33:0;;;;;;;;;;;23933;;;;;;;;;;-1:-1:-1;23933:33:0;;;;;;;;28583:104;;;;;;;;;;;;;:::i;30206:287::-;;;;;;;;;;-1:-1:-1;30206:287:0;;;;;:::i;:::-;;:::i;45259:215::-;;;;;;;;;;-1:-1:-1;45259:215:0;;;;;:::i;:::-;;:::i;31292:369::-;;;;;;;;;;-1:-1:-1;31292:369:0;;;;;:::i;:::-;;:::i;28758:320::-;;;;;;;;;;-1:-1:-1;28758:320:0;;;;;:::i;:::-;;:::i;30564:164::-;;;;;;;;;;-1:-1:-1;30564:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30685:25:0;;;30661:4;30685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30564:164;23616:28;;;;;;;;;;-1:-1:-1;23616:28:0;;;;-1:-1:-1;;;;;23616:28:0;;;25285:305;25387:4;-1:-1:-1;;;;;;25424:40:0;;-1:-1:-1;;;25424:40:0;;:105;;-1:-1:-1;;;;;;;25481:48:0;;-1:-1:-1;;;25481:48:0;25424:105;:158;;;-1:-1:-1;;;;;;;;;;14891:40:0;;;25546:36;25404:178;25285:305;-1:-1:-1;;25285:305:0:o;45628:158::-;45692:5;;-1:-1:-1;;;;;45692:5:0;45678:10;:19;45670:60;;;;-1:-1:-1;;;45670:60:0;;11148:2:1;45670:60:0;;;11130:21:1;11187:2;11167:18;;;11160:30;11226;11206:18;;;11199:58;11274:18;;45670:60:0;;;;;;;;;45741:5;;:37;;-1:-1:-1;;;;;45741:5:0;;;;45756:21;45741:37;;;;;:5;:37;:5;:37;45756:21;45741:5;:37;;;;;;;;;;;;;;;;;;;;;45628:158::o;28414:100::-;28468:13;28501:5;28494:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28414:100;:::o;29930:204::-;29998:7;30023:16;30031:7;30023;:16::i;:::-;30018:64;;30048:34;;-1:-1:-1;;;30048:34:0;;;;;;;;;;;30018:64;-1:-1:-1;30102:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30102:24:0;;29930:204::o;29493:371::-;29566:13;29582:24;29598:7;29582:15;:24::i;:::-;29566:40;;29627:5;-1:-1:-1;;;;;29621:11:0;:2;-1:-1:-1;;;;;29621:11:0;;29617:48;;;29641:24;;-1:-1:-1;;;29641:24:0;;;;;;;;;;;29617:48;3332:10;-1:-1:-1;;;;;29682:21:0;;;;;;:63;;-1:-1:-1;29708:37:0;29725:5;3332:10;30564:164;:::i;29708:37::-;29707:38;29682:63;29678:138;;;29769:35;;-1:-1:-1;;;29769:35:0;;;;;;;;;;;29678:138;29828:28;29837:2;29841:7;29850:5;29828:8;:28::i;:::-;29555:309;29493:371;;:::o;30795:170::-;30929:28;30939:4;30945:2;30949:7;30929:9;:28::i;31036:185::-;31174:39;31191:4;31197:2;31201:7;31174:39;;;;;;;;;;;;:16;:39::i;45030:187::-;45112:5;;-1:-1:-1;;;;;45112:5:0;45098:10;:19;45090:54;;;;-1:-1:-1;;;45090:54:0;;;;;;;:::i;:::-;45155:13;:23;;-1:-1:-1;;45155:23:0;;;45189:20;;;;-1:-1:-1;;45189:20:0;;;;;;;45155:23;45189:20;;;45030:187::o;44598:258::-;44706:5;;-1:-1:-1;;;;;44706:5:0;44692:10;:19;44684:54;;;;-1:-1:-1;;;44684:54:0;;;;;;;:::i;:::-;44753:7;44749:100;44770:8;:15;44766:1;:19;;;44749:100;;;44832:5;44807:9;:22;44817:8;44826:1;44817:11;;;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;44807:22:0;;;;;;;;;;;-1:-1:-1;44807:22:0;:30;;-1:-1:-1;;44807:30:0;;;;;;;;;;44787:3;;;;:::i;:::-;;;;44749:100;;45482:134;-1:-1:-1;;;;;45588:23:0;;;;;;:15;:23;;;;;;;;;45581:30;;;;;;;;;;;;;;;;;45556:17;;45581:30;;;45588:23;45581:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45482:134;;;:::o;28222:125::-;28286:7;28313:21;28326:7;28313:12;:21::i;:::-;:26;;28222:125;-1:-1:-1;;28222:125:0:o;45802:149::-;45881:5;;-1:-1:-1;;;;;45881:5:0;45867:10;:19;45859:54;;;;-1:-1:-1;;;45859:54:0;;;;;;;:::i;:::-;45924:10;:19;45802:149::o;23734:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43671:881::-;43814:13;;43741:12;;43785:9;;43814:13;;;;;;:37;;-1:-1:-1;43846:5:0;;-1:-1:-1;;;;;43846:5:0;43832:10;:19;43814:37;43806:78;;;;-1:-1:-1;;;43806:78:0;;11505:2:1;43806:78:0;;;11487:21:1;11544:2;11524:18;;;11517:30;11583;11563:18;;;11556:58;11631:18;;43806:78:0;11303:352:1;43806:78:0;43934:10;;43919;43904:13;24576:7;24770:13;-1:-1:-1;;24770:32:0;;24532:305;43904:13;:26;;;;:::i;:::-;:40;;43896:74;;;;-1:-1:-1;;;43896:74:0;;10039:2:1;43896:74:0;;;10021:21:1;10078:2;10058:18;;;10051:30;-1:-1:-1;;;10097:18:1;;;10090:52;10159:18;;43896:74:0;9837:346:1;43896:74:0;44013:10;44000;;:23;;;;:::i;:::-;43990:6;:33;;:56;;;-1:-1:-1;44041:5:0;;-1:-1:-1;;;;;44041:5:0;44027:10;:19;43990:56;43982:102;;;;-1:-1:-1;;;43982:102:0;;10745:2:1;43982:102:0;;;10727:21:1;10784:2;10764:18;;;10757:30;10823:34;10803:18;;;10796:62;-1:-1:-1;;;10874:18:1;;;10867:32;10916:19;;43982:102:0;10543:398:1;43982:102:0;44100:13;;;;:19;;:13;:19;44097:347;;;44154:10;44144:21;;;;:9;:21;;;;;;;;44135:60;;;;-1:-1:-1;;;44135:60:0;;10390:2:1;44135:60:0;;;10372:21:1;10429:2;10409:18;;;10402:30;10468:28;10448:18;;;10441:56;10514:18;;44135:60:0;10188:350:1;44135:60:0;44236:10;44220:27;;;;:15;:27;;;;;:34;44272:2;;44220:47;;44257:10;;44220:47;:::i;:::-;44219:55;;44210:100;;;;-1:-1:-1;;;44210:100:0;;8924:2:1;44210:100:0;;;8906:21:1;;;8943:18;;;8936:30;9002:34;8982:18;;;8975:62;9054:18;;44210:100:0;8722:356:1;44210:100:0;44097:347;;;44369:10;44353:27;;;;:15;:27;;;;;:34;44405:3;;44353:47;;44390:10;;44353:47;:::i;:::-;44352:56;;44343:89;;;;-1:-1:-1;;;44343:89:0;;11862:2:1;44343:89:0;;;11844:21:1;11901:2;11881:18;;;11874:30;-1:-1:-1;;;11920:18:1;;;11913:50;11980:18;;44343:89:0;11660:344:1;44343:89:0;44454:35;44464:10;44475;44454:35;;;;;;;;;;;;:9;:35::i;:::-;44500:5;;:22;;-1:-1:-1;;;;;44500:5:0;;;;:22;;;;;44515:6;;44500:5;:22;:5;:22;44515:6;44500:5;:22;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44540:4:0;;43671:881;-1:-1:-1;;;43671:881:0:o;45957:155::-;46035:5;;-1:-1:-1;;;;;46035:5:0;46021:10;:19;46013:60;;;;-1:-1:-1;;;46013:60:0;;11148:2:1;46013:60:0;;;11130:21:1;11187:2;11167:18;;;11160:30;11226;11206:18;;;11199:58;11274:18;;46013:60:0;10946:352:1;46013:60:0;46084:10;:20;45957:155::o;25654:206::-;25718:7;-1:-1:-1;;;;;25742:19:0;;25738:60;;25770:28;;-1:-1:-1;;;25770:28:0;;;;;;;;;;;25738:60;-1:-1:-1;;;;;;25824:19:0;;;;;:12;:19;;;;;:27;;;;25654:206::o;44868:154::-;44948:5;;-1:-1:-1;;;;;44948:5:0;44934:10;:19;44926:54;;;;-1:-1:-1;;;44926:54:0;;;;;;;:::i;:::-;44991:13;:23;;;;;;;-1:-1:-1;;44991:23:0;;;;;;;;;44868:154::o;28583:104::-;28639:13;28672:7;28665:14;;;;;:::i;30206:287::-;-1:-1:-1;;;;;30305:24:0;;3332:10;30305:24;30301:54;;;30338:17;;-1:-1:-1;;;30338:17:0;;;;;;;;;;;30301:54;3332:10;30368:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30368:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30368:53:0;;;;;;;;;;30437:48;;8446:41:1;;;30368:42:0;;3332:10;30437:48;;8419:18:1;30437:48:0;;;;;;;30206:287;;:::o;45259:215::-;45373:5;;45327:12;;-1:-1:-1;;;;;45373:5:0;45359:10;:19;45351:64;;;;-1:-1:-1;;;45351:64:0;;9637:2:1;45351:64:0;;;9619:21:1;9676:2;9656:18;;;9649:30;9715:34;9695:18;;;9688:62;-1:-1:-1;;;9766:18:1;;;9759:31;9807:19;;45351:64:0;9435:397:1;45351:64:0;45426:18;;;;:7;;:18;;;;;:::i;:::-;-1:-1:-1;45462:4:0;;45259:215;-1:-1:-1;;45259:215:0:o;31292:369::-;31459:28;31469:4;31475:2;31479:7;31459:9;:28::i;:::-;-1:-1:-1;;;;;31502:13:0;;4994:19;:23;;31502:76;;;;;31522:56;31553:4;31559:2;31563:7;31572:5;31522:30;:56::i;:::-;31521:57;31502:76;31498:156;;;31602:40;;-1:-1:-1;;;31602:40:0;;;;;;;;;;;31498:156;31292:369;;;;:::o;28758:320::-;28831:13;28862:16;28870:7;28862;:16::i;:::-;28857:59;;28887:29;;-1:-1:-1;;;28887:29:0;;;;;;;;;;;28857:59;28989:7;28983:21;;;;;:::i;:::-;:26;;;-1:-1:-1;28983:87:0;;;;;;;;;;;;;;;;;29036:7;29045:18;:7;:16;:18::i;:::-;29019:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28976:94;28758:320;-1:-1:-1;;28758:320:0:o;31916:190::-;31973:4;32016:7;24389:1;31997:26;;:53;;;;-1:-1:-1;;32037:13:0;;-1:-1:-1;32027:23:0;31916:190::o;40679:196::-;40794:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40794:29:0;-1:-1:-1;;;;;40794:29:0;;;;;;;;;40839:28;;40794:24;;40839:28;;;;;;;40679:196;;;:::o;35261:2491::-;35376:35;35414:21;35427:7;35414:12;:21::i;:::-;35376:59;;35474:4;-1:-1:-1;;;;;35452:26:0;:13;:18;;;-1:-1:-1;;;;;35452:26:0;;35448:67;;35487:28;;-1:-1:-1;;;35487:28:0;;;;;;;;;;;35448:67;35528:22;3332:10;-1:-1:-1;;;;;35554:20:0;;;;:73;;-1:-1:-1;35591:36:0;35608:4;3332:10;30564:164;:::i;35591:36::-;35554:126;;;-1:-1:-1;3332:10:0;35644:20;35656:7;35644:11;:20::i;:::-;-1:-1:-1;;;;;35644:36:0;;35554:126;35528:153;;35699:17;35694:66;;35725:35;;-1:-1:-1;;;35725:35:0;;;;;;;;;;;35694:66;-1:-1:-1;;;;;35775:16:0;;35771:52;;35800:23;;-1:-1:-1;;;35800:23:0;;;;;;;;;;;35771:52;35944:35;35961:1;35965:7;35974:4;35944:8;:35::i;:::-;-1:-1:-1;;;;;36275:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36275:31:0;;;;;;;-1:-1:-1;;36275:31:0;;;;;;;36321:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36321:29:0;;;;;;;;;;;36401:20;;;:11;:20;;;;;;36436:18;;-1:-1:-1;;;;;;36469:49:0;;;;-1:-1:-1;;;36502:15:0;36469:49;;;;;;;;;;36792:11;;36852:24;;;;;36895:13;;36401:20;;36852:24;;36895:13;36891:384;;37105:13;;37090:11;:28;37086:174;;37143:20;;37212:28;;;;37186:54;;-1:-1:-1;;;37186:54:0;-1:-1:-1;;;;;;37186:54:0;;;-1:-1:-1;;;;;37143:20:0;;37186:54;;;;37086:174;36250:1057;;;37375:10;37371:228;-1:-1:-1;;;;;37398:21:0;;;;;;:15;:21;;;;;:28;37390:36;;37371:228;;;-1:-1:-1;;;;;37457:21:0;;;;;;:15;:21;;;;;:28;;37487:7;;37457:21;37479:5;;37457:28;;;;;;:::i;:::-;;;;;;;;;:37;37454:131;;;-1:-1:-1;;;;;37521:21:0;;;;;;:15;:21;;;;;:28;;37543:5;;37521:28;;;;;;:::i;:::-;;;;;;;;;37514:35;37564:5;;37454:131;37427:7;;;;:::i;:::-;;;;37371:228;;;-1:-1:-1;;;;;;37613:19:0;;;;;;;:15;:19;;;;;;;;:33;;;;;;;;;;;;;;;;;;;37664:27;37638:7;;37664:27;;;;;;37702:42;35365:2387;;35261:2491;;;:::o;27047:1113::-;-1:-1:-1;;;;;;;;;;;;;;;;;27158:7:0;;24389:1;27207:23;;:47;;;;;27241:13;;27234:4;:20;27207:47;27203:873;;;27275:31;27309:17;;;:11;:17;;;;;;;;;27275:51;;;;;;;;;-1:-1:-1;;;;;27275:51:0;;;;;-1:-1:-1;;;27275:51:0;;;;;;;;;;;;27397:28;27393:101;;27461:9;27047:1113;-1:-1:-1;;;27047:1113:0:o;27393:101::-;-1:-1:-1;;;27836:6:0;27881:17;;;;:11;:17;;;;;;;;;27869:29;;;;;;;;;-1:-1:-1;;;;;27869:29:0;;;;;-1:-1:-1;;;27869:29:0;;;;;;;;;;;;27929:28;27925:109;;27997:9;27047:1113;-1:-1:-1;;;27047:1113:0:o;27925:109::-;27796:261;;27203:873;28121:31;;-1:-1:-1;;;28121:31:0;;;;;;;;;;;32581:163;32704:32;32710:2;32714:8;32724:5;32731:4;32704:5;:32::i;41367:667::-;41551:72;;-1:-1:-1;;;41551:72:0;;41530:4;;-1:-1:-1;;;;;41551:36:0;;;;;:72;;3332:10;;41602:4;;41608:7;;41617:5;;41551:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41551:72:0;;;;;;;;-1:-1:-1;;41551:72:0;;;;;;;;;;;;:::i;:::-;;;41547:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41785:13:0;;41781:235;;41831:40;;-1:-1:-1;;;41831:40:0;;;;;;;;;;;41781:235;41974:6;41968:13;41959:6;41955:2;41951:15;41944:38;41547:480;-1:-1:-1;;;;;;41670:55:0;-1:-1:-1;;;41670:55:0;;-1:-1:-1;41547:480:0;41367:667;;;;;;:::o;814:723::-;870:13;1091:10;1087:53;;-1:-1:-1;;1118:10:0;;;;;;;;;;;;-1:-1:-1;;;1118:10:0;;;;;814:723::o;1087:53::-;1165:5;1150:12;1206:78;1213:9;;1206:78;;1239:8;;;;:::i;:::-;;-1:-1:-1;1262:10:0;;-1:-1:-1;1270:2:0;1262:10;;:::i;:::-;;;1206:78;;;1294:19;1326:6;1316:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1316:17:0;;1294:39;;1344:154;1351:10;;1344:154;;1378:11;1388:1;1378:11;;:::i;:::-;;-1:-1:-1;1447:10:0;1455:2;1447:5;:10;:::i;:::-;1434:24;;:2;:24;:::i;:::-;1421:39;;1404:6;1411;1404:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1404:56:0;;;;;;;;-1:-1:-1;1475:11:0;1484:2;1475:11;;:::i;:::-;;;1344:154;;33003:2004;33142:20;33165:13;-1:-1:-1;;;;;33193:16:0;;33189:48;;33218:19;;-1:-1:-1;;;33218:19:0;;;;;;;;;;;33189:48;33252:13;33248:44;;33274:18;;-1:-1:-1;;;33274:18:0;;;;;;;;;;;33248:44;-1:-1:-1;;;;;33643:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33702:49:0;;33643:44;;;;;;;;33702:49;;;;-1:-1:-1;;33643:44:0;;;;;;33702:49;;;;;;;;;;;;;;;;33768:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33818:66:0;;;;-1:-1:-1;;;33868:15:0;33818:66;;;;;;;;;;33768:25;33965:23;;;34009:4;:23;;;;-1:-1:-1;;;;;;34017:13:0;;4994:19;:23;;34017:15;34005:870;;;34053:314;34084:38;;34109:12;;-1:-1:-1;;;;;34084:38:0;;;34101:1;;34084:38;;34101:1;;34084:38;34150:69;34189:1;34193:2;34197:14;;;;;;34213:5;34150:30;:69::i;:::-;34145:174;;34255:40;;-1:-1:-1;;;34255:40:0;;;;;;;;;;;34145:174;34362:3;34346:12;:19;;34053:314;;34448:12;34431:13;;:29;34427:43;;34462:8;;;34427:43;34005:870;;;34511:349;-1:-1:-1;;;;;34565:19:0;;;;;;:15;:19;;;;;;;;:38;;;;;;;;;;;;;;;;;;;;34769:40;34794:14;;;;34590:12;34565:19;;34769:40;;34565:19;;34769:40;34855:3;34839:12;:19;;34511:349;;34005:870;-1:-1:-1;34889:13:0;:28;34939:60;31292:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;:::-;909:39;768:186;-1:-1:-1;;;768:186:1:o;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:1033::-;2836:6;2844;2897:2;2885:9;2876:7;2872:23;2868:32;2865:52;;;2913:1;2910;2903:12;2865:52;2953:9;2940:23;2982:18;3023:2;3015:6;3012:14;3009:34;;;3039:1;3036;3029:12;3009:34;3077:6;3066:9;3062:22;3052:32;;3122:7;3115:4;3111:2;3107:13;3103:27;3093:55;;3144:1;3141;3134:12;3093:55;3180:2;3167:16;3202:4;3225:2;3221;3218:10;3215:36;;;3231:18;;:::i;:::-;3277:2;3274:1;3270:10;3260:20;;3300:28;3324:2;3320;3316:11;3300:28;:::i;:::-;3362:15;;;3393:12;;;;3425:11;;;3455;;;3451:20;;3448:33;-1:-1:-1;3445:53:1;;;3494:1;3491;3484:12;3445:53;3516:1;3507:10;;3526:169;3540:2;3537:1;3534:9;3526:169;;;3597:23;3616:3;3597:23;:::i;:::-;3585:36;;3558:1;3551:9;;;;;3641:12;;;;3673;;3526:169;;;-1:-1:-1;3714:5:1;-1:-1:-1;3738:35:1;;-1:-1:-1;3754:18:1;;;3738:35;:::i;:::-;3728:45;;;;;;2746:1033;;;;;:::o;3784:180::-;3840:6;3893:2;3881:9;3872:7;3868:23;3864:32;3861:52;;;3909:1;3906;3899:12;3861:52;3932:26;3948:9;3932:26;:::i;3969:245::-;4027:6;4080:2;4068:9;4059:7;4055:23;4051:32;4048:52;;;4096:1;4093;4086:12;4048:52;4135:9;4122:23;4154:30;4178:5;4154:30;:::i;4219:249::-;4288:6;4341:2;4329:9;4320:7;4316:23;4312:32;4309:52;;;4357:1;4354;4347:12;4309:52;4389:9;4383:16;4408:30;4432:5;4408:30;:::i;4473:450::-;4542:6;4595:2;4583:9;4574:7;4570:23;4566:32;4563:52;;;4611:1;4608;4601:12;4563:52;4651:9;4638:23;4684:18;4676:6;4673:30;4670:50;;;4716:1;4713;4706:12;4670:50;4739:22;;4792:4;4784:13;;4780:27;-1:-1:-1;4770:55:1;;4821:1;4818;4811:12;4770:55;4844:73;4909:7;4904:2;4891:16;4886:2;4882;4878:11;4844:73;:::i;4928:180::-;4987:6;5040:2;5028:9;5019:7;5015:23;5011:32;5008:52;;;5056:1;5053;5046:12;5008:52;-1:-1:-1;5079:23:1;;4928:180;-1:-1:-1;4928:180:1:o;5113:257::-;5154:3;5192:5;5186:12;5219:6;5214:3;5207:19;5235:63;5291:6;5284:4;5279:3;5275:14;5268:4;5261:5;5257:16;5235:63;:::i;:::-;5352:2;5331:15;-1:-1:-1;;5327:29:1;5318:39;;;;5359:4;5314:50;;5113:257;-1:-1:-1;;5113:257:1:o;5375:185::-;5417:3;5455:5;5449:12;5470:52;5515:6;5510:3;5503:4;5496:5;5492:16;5470:52;:::i;:::-;5538:16;;;;;5375:185;-1:-1:-1;;5375:185:1:o;5565:1174::-;5741:3;5770:1;5803:6;5797:13;5833:3;5855:1;5883:9;5879:2;5875:18;5865:28;;5943:2;5932:9;5928:18;5965;5955:61;;6009:4;6001:6;5997:17;5987:27;;5955:61;6035:2;6083;6075:6;6072:14;6052:18;6049:38;6046:165;;;-1:-1:-1;;;6110:33:1;;6166:4;6163:1;6156:15;6196:4;6117:3;6184:17;6046:165;6227:18;6254:104;;;;6372:1;6367:320;;;;6220:467;;6254:104;-1:-1:-1;;6287:24:1;;6275:37;;6332:16;;;;-1:-1:-1;6254:104:1;;6367:320;12544:1;12537:14;;;12581:4;12568:18;;6462:1;6476:165;6490:6;6487:1;6484:13;6476:165;;;6568:14;;6555:11;;;6548:35;6611:16;;;;6505:10;;6476:165;;;6480:3;;6670:6;6665:3;6661:16;6654:23;;6220:467;;;;;;;6703:30;6729:3;6721:6;6703:30;:::i;:::-;6696:37;5565:1174;-1:-1:-1;;;;;5565:1174:1:o;7176:488::-;-1:-1:-1;;;;;7445:15:1;;;7427:34;;7497:15;;7492:2;7477:18;;7470:43;7544:2;7529:18;;7522:34;;;7592:3;7587:2;7572:18;;7565:31;;;7370:4;;7613:45;;7638:19;;7630:6;7613:45;:::i;:::-;7605:53;7176:488;-1:-1:-1;;;;;;7176:488:1:o;7669:632::-;7840:2;7892:21;;;7962:13;;7865:18;;;7984:22;;;7811:4;;7840:2;8063:15;;;;8037:2;8022:18;;;7811:4;8106:169;8120:6;8117:1;8114:13;8106:169;;;8181:13;;8169:26;;8250:15;;;;8215:12;;;;8142:1;8135:9;8106:169;;;-1:-1:-1;8292:3:1;;7669:632;-1:-1:-1;;;;;;7669:632:1:o;8498:219::-;8647:2;8636:9;8629:21;8610:4;8667:44;8707:2;8696:9;8692:18;8684:6;8667:44;:::i;9083:347::-;9285:2;9267:21;;;9324:2;9304:18;;;9297:30;9363:25;9358:2;9343:18;;9336:53;9421:2;9406:18;;9083:347::o;12191:275::-;12262:2;12256:9;12327:2;12308:13;;-1:-1:-1;;12304:27:1;12292:40;;12362:18;12347:34;;12383:22;;;12344:62;12341:88;;;12409:18;;:::i;:::-;12445:2;12438:22;12191:275;;-1:-1:-1;12191:275:1:o;12597:128::-;12637:3;12668:1;12664:6;12661:1;12658:13;12655:39;;;12674:18;;:::i;:::-;-1:-1:-1;12710:9:1;;12597:128::o;12730:120::-;12770:1;12796;12786:35;;12801:18;;:::i;:::-;-1:-1:-1;12835:9:1;;12730:120::o;12855:168::-;12895:7;12961:1;12957;12953:6;12949:14;12946:1;12943:21;12938:1;12931:9;12924:17;12920:45;12917:71;;;12968:18;;:::i;:::-;-1:-1:-1;13008:9:1;;12855:168::o;13028:125::-;13068:4;13096:1;13093;13090:8;13087:34;;;13101:18;;:::i;:::-;-1:-1:-1;13138:9:1;;13028:125::o;13158:258::-;13230:1;13240:113;13254:6;13251:1;13248:13;13240:113;;;13330:11;;;13324:18;13311:11;;;13304:39;13276:2;13269:10;13240:113;;;13371:6;13368:1;13365:13;13362:48;;;-1:-1:-1;;13406:1:1;13388:16;;13381:27;13158:258::o;13421:380::-;13500:1;13496:12;;;;13543;;;13564:61;;13618:4;13610:6;13606:17;13596:27;;13564:61;13671:2;13663:6;13660:14;13640:18;13637:38;13634:161;;;13717:10;13712:3;13708:20;13705:1;13698:31;13752:4;13749:1;13742:15;13780:4;13777:1;13770:15;13634:161;;13421:380;;;:::o;13806:135::-;13845:3;-1:-1:-1;;13866:17:1;;13863:43;;;13886:18;;:::i;:::-;-1:-1:-1;13933:1:1;13922:13;;13806:135::o;13946:175::-;13983:3;14027:4;14020:5;14016:16;14056:4;14047:7;14044:17;14041:43;;;14064:18;;:::i;:::-;14113:1;14100:15;;13946:175;-1:-1:-1;;13946:175:1:o;14126:112::-;14158:1;14184;14174:35;;14189:18;;:::i;:::-;-1:-1:-1;14223:9:1;;14126:112::o;14243:127::-;14304:10;14299:3;14295:20;14292:1;14285:31;14335:4;14332:1;14325:15;14359:4;14356:1;14349:15;14375:127;14436:10;14431:3;14427:20;14424:1;14417:31;14467:4;14464:1;14457:15;14491:4;14488:1;14481:15;14507:127;14568:10;14563:3;14559:20;14556:1;14549:31;14599:4;14596:1;14589:15;14623:4;14620:1;14613:15;14639:127;14700:10;14695:3;14691:20;14688:1;14681:31;14731:4;14728:1;14721:15;14755:4;14752:1;14745:15;14771:131;-1:-1:-1;;;;;;14845:32:1;;14835:43;;14825:71;;14892:1;14889;14882:12
Swarm Source
ipfs://163cc282e1bfd4d648517ba7528f3d58211f9d2757216c2211fdd62e9fca804f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.