CRC-721
Overview
Max Total Supply
1,000 ToxicDeerNFT
Holders
196
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
13 ToxicDeerNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
ToxicDeerNFT
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-06-27 */ pragma solidity 0.8.6; // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) /** * @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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) /** * @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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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); } // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) /** * @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); } } } } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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); } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @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; } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol) /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); } // OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol) /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // OpenZeppelin Contracts (last updated v4.6.0) (utils/structs/EnumerableSet.sol) /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol) /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } } // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } contract ToxicDeerNFT is Context, AccessControlEnumerable, ERC721Enumerable { using Counters for Counters.Counter; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); Counters.Counter private _tokenIdTracker; string private _baseTokenURI; /// @notice Collection of NFA details to describe each NFA struct NFTDetails { string name; uint32 level; } /// @notice Use the NFA tokenId to read NFA details mapping(uint256 => NFTDetails) public getNFTDetailsById; event UpdateBaseURI(string indexed previousBaseUri, string indexed newBaseUri); constructor(string memory name, string memory symbol, string memory baseTokenURI) ERC721(name, symbol) { _baseTokenURI = baseTokenURI; _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); } /// @notice Get level of a specific ID /// @param tokenId The ID of the NFA to check /// @return (uint) function getTokenLevel(uint256 tokenId) external view returns (uint32) { NFTDetails memory currentNFTDetails = getNFTDetailsById[tokenId]; return currentNFTDetails.level; } /// @notice Update the baseTokenURI of the NFT /// @dev The admin of this function is expected to renounce ownership once the base url has been tested and is working /// @param baseTokenURI The new bse uri for the contract function updateBaseTokenURI(string memory baseTokenURI) external onlyRole(DEFAULT_ADMIN_ROLE) { emit UpdateBaseURI(_baseTokenURI, baseTokenURI); _baseTokenURI = baseTokenURI; } /// @notice mint a new NFA to an address /// @dev must be called by an account with MINTER_ROLE /// @param to Address to mint the NFA to /// @param name Name of the NFA /// @param level Level of the NFA function mint( uint256 tokenId, address to, string memory name, uint32 level ) public virtual onlyRole(MINTER_ROLE) { _tokenIdTracker.increment(); _mint(to, tokenId); getNFTDetailsById[tokenId] = NFTDetails( name, level ); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"previousBaseUri","type":"string"},{"indexed":true,"internalType":"string","name":"newBaseUri","type":"string"}],"name":"UpdateBaseURI","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getNFTDetailsById","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint32","name":"level","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenLevel","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"uint32","name":"level","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"updateBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002a7238038062002a72833981016040819052620000349162000380565b8251839083906200004d90600290602085019062000223565b5080516200006390600390602084019062000223565b505081516200007b9150600d90602084019062000223565b5062000089600033620000be565b620000b57f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620000be565b50505062000464565b620000ca8282620000ce565b5050565b620000e582826200011160201b62000e2d1760201c565b60008281526001602090815260409091206200010c91839062000eb1620001b1821b17901c565b505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620000ca576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200016d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620001c8836001600160a01b038416620001d1565b90505b92915050565b60008181526001830160205260408120546200021a57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001cb565b506000620001cb565b828054620002319062000411565b90600052602060002090601f016020900481019282620002555760008555620002a0565b82601f106200027057805160ff1916838001178555620002a0565b82800160010185558215620002a0579182015b82811115620002a057825182559160200191906001019062000283565b50620002ae929150620002b2565b5090565b5b80821115620002ae5760008155600101620002b3565b600082601f830112620002db57600080fd5b81516001600160401b0380821115620002f857620002f86200044e565b604051601f8301601f19908116603f011681019082821181831017156200032357620003236200044e565b816040528381526020925086838588010111156200034057600080fd5b600091505b8382101562000364578582018301518183018401529082019062000345565b83821115620003765760008385830101525b9695505050505050565b6000806000606084860312156200039657600080fd5b83516001600160401b0380821115620003ae57600080fd5b620003bc87838801620002c9565b94506020860151915080821115620003d357600080fd5b620003e187838801620002c9565b93506040860151915080821115620003f857600080fd5b506200040786828701620002c9565b9150509250925092565b600181811c908216806200042657607f821691505b602082108114156200044857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6125fe80620004746000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063655391c911610104578063ae5340fb116100a2578063d011645c11610071578063d011645c146103e7578063d53913931461040f578063d547741f14610436578063e985e9c51461044957600080fd5b8063ae5340fb1461038d578063b88d4fde146103ae578063c87b56dd146103c1578063ca15c873146103d457600080fd5b806391d14854116100de57806391d148541461035757806395d89b411461036a578063a217fddf14610372578063a22cb4651461037a57600080fd5b8063655391c91461031e57806370a08231146103315780639010d07c1461034457600080fd5b80632f2ff15d1161017157806342842e0e1161014b57806342842e0e146102d25780634f6ccce7146102e5578063506a56d7146102f85780636352211e1461030b57600080fd5b80632f2ff15d146102995780632f745c59146102ac57806336568abe146102bf57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c57806318160ddd1461025157806323b872dd14610263578063248a9ca31461027657600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e23660046120b0565b610485565b60405190151581526020015b60405180910390f35b610204610496565b6040516101f39190612357565b61022461021f366004612052565b610528565b6040516001600160a01b0390911681526020016101f3565b61024f61024a366004612028565b6105c2565b005b600a545b6040519081526020016101f3565b61024f610271366004611f34565b6106d8565b610255610284366004612052565b60009081526020819052604090206001015490565b61024f6102a736600461206b565b610709565b6102556102ba366004612028565b61072e565b61024f6102cd36600461206b565b6107c4565b61024f6102e0366004611f34565b610842565b6102556102f3366004612052565b61085d565b61024f61030636600461211f565b6108f0565b610224610319366004612052565b61099b565b61024f61032c3660046120ea565b610a12565b61025561033f366004611ee6565b610a85565b61022461035236600461208e565b610b0c565b6101e761036536600461206b565b610b2b565b610204610b54565b610255600081565b61024f610388366004611fec565b610b63565b6103a061039b366004612052565b610b6e565b6040516101f392919061236a565b61024f6103bc366004611f70565b610c18565b6102046103cf366004612052565b610c50565b6102556103e2366004612052565b610d2a565b6103fa6103f5366004612052565b610d41565b60405163ffffffff90911681526020016101f3565b6102557f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61024f61044436600461206b565b610e08565b6101e7610457366004611f01565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600061049082610ec6565b92915050565b6060600280546104a5906124da565b80601f01602080910402602001604051908101604052809291908181526020018280546104d1906124da565b801561051e5780601f106104f35761010080835404028352916020019161051e565b820191906000526020600020905b81548152906001019060200180831161050157829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166105a65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105cd8261099b565b9050806001600160a01b0316836001600160a01b0316141561063b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059d565b336001600160a01b038216148061065757506106578133610457565b6106c95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059d565b6106d38383610eeb565b505050565b6106e23382610f59565b6106fe5760405162461bcd60e51b815260040161059d906123e4565b6106d3838383611050565b600082815260208190526040902060010154610724816111f7565b6106d38383611204565b600061073983610a85565b821061079b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161059d565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6001600160a01b03811633146108345760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161059d565b61083e8282611226565b5050565b6106d383838360405180602001604052806000815250610c18565b6000610868600a5490565b82106108cb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161059d565b600a82815481106108de576108de612586565b90600052602060002001549050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661091a816111f7565b610928600c80546001019055565b6109328486611248565b60408051808201825284815263ffffffff84166020808301919091526000888152600e82529290922081518051929391926109709284920190611d9b565b50602091909101516001909101805463ffffffff191663ffffffff9092169190911790555050505050565b6000818152600460205260408120546001600160a01b0316806104905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059d565b6000610a1d816111f7565b81604051610a2b91906121be565b6040518091039020600d604051610a429190612209565b604051908190038120907f8df4f488121a100577506716b83a42d04585c6b7b93941484c5b63b503e1806d90600090a381516106d390600d906020850190611d9b565b60006001600160a01b038216610af05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059d565b506001600160a01b031660009081526005602052604090205490565b6000828152600160205260408120610b249083611396565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600380546104a5906124da565b61083e3383836113a2565b600e60205260009081526040902080548190610b89906124da565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb5906124da565b8015610c025780601f10610bd757610100808354040283529160200191610c02565b820191906000526020600020905b815481529060010190602001808311610be557829003601f168201915b5050506001909301549192505063ffffffff1682565b610c223383610f59565b610c3e5760405162461bcd60e51b815260040161059d906123e4565b610c4a84848484611471565b50505050565b6000818152600460205260409020546060906001600160a01b0316610ccf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161059d565b6000610cd96114a4565b90506000815111610cf95760405180602001604052806000815250610b24565b80610d03846114b3565b604051602001610d149291906121da565b6040516020818303038152906040529392505050565b6000818152600160205260408120610490906115b1565b6000818152600e6020526040808220815180830190925280548392919082908290610d6b906124da565b80601f0160208091040260200160405190810160405280929190818152602001828054610d97906124da565b8015610de45780601f10610db957610100808354040283529160200191610de4565b820191906000526020600020905b815481529060010190602001808311610dc757829003601f168201915b50505091835250506001919091015463ffffffff1660209182015201519392505050565b600082815260208190526040902060010154610e23816111f7565b6106d38383611226565b610e378282610b2b565b61083e576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610e6d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610b24836001600160a01b0384166115bb565b60006001600160e01b0319821663780e9d6360e01b148061049057506104908261160a565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f208261099b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b0316610fd25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059d565b6000610fdd8361099b565b9050806001600160a01b0316846001600160a01b0316148061102457506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b806110485750836001600160a01b031661103d84610528565b6001600160a01b0316145b949350505050565b826001600160a01b03166110638261099b565b6001600160a01b0316146110c75760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161059d565b6001600160a01b0382166111295760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059d565b61113483838361164a565b61113f600082610eeb565b6001600160a01b0383166000908152600560205260408120805460019290611168908490612480565b90915550506001600160a01b0382166000908152600560205260408120805460019290611196908490612435565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6112018133611655565b50565b61120e8282610e2d565b60008281526001602052604090206106d39082610eb1565b61123082826116b9565b60008281526001602052604090206106d3908261171e565b6001600160a01b03821661129e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059d565b6000818152600460205260409020546001600160a01b0316156113035760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059d565b61130f6000838361164a565b6001600160a01b0382166000908152600560205260408120805460019290611338908490612435565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000610b248383611733565b816001600160a01b0316836001600160a01b031614156114045760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059d565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61147c848484611050565b6114888484848461175d565b610c4a5760405162461bcd60e51b815260040161059d90612392565b6060600d80546104a5906124da565b6060816114d75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561150157806114eb81612515565b91506114fa9050600a8361244d565b91506114db565b60008167ffffffffffffffff81111561151c5761151c61259c565b6040519080825280601f01601f191660200182016040528015611546576020820181803683370190505b5090505b84156110485761155b600183612480565b9150611568600a86612530565b611573906030612435565b60f81b81838151811061158857611588612586565b60200101906001600160f81b031916908160001a9053506115aa600a8661244d565b945061154a565b6000610490825490565b600081815260018301602052604081205461160257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610490565b506000610490565b60006001600160e01b031982166380ac58cd60e01b148061163b57506001600160e01b03198216635b5e139f60e01b145b8061049057506104908261186a565b6106d383838361188f565b61165f8282610b2b565b61083e57611677816001600160a01b03166014611947565b611682836020611947565b6040516020016116939291906122a5565b60408051601f198184030181529082905262461bcd60e51b825261059d91600401612357565b6116c38282610b2b565b1561083e576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610b24836001600160a01b038416611ae3565b600082600001828154811061174a5761174a612586565b9060005260206000200154905092915050565b60006001600160a01b0384163b1561185f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117a190339089908890889060040161231a565b602060405180830381600087803b1580156117bb57600080fd5b505af19250505080156117eb575060408051601f3d908101601f191682019092526117e8918101906120cd565b60015b611845573d808015611819576040519150601f19603f3d011682016040523d82523d6000602084013e61181e565b606091505b50805161183d5760405162461bcd60e51b815260040161059d90612392565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611048565b506001949350505050565b60006001600160e01b03198216635a05180f60e01b1480610490575061049082611bd6565b6001600160a01b0383166118ea576118e581600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b61190d565b816001600160a01b0316836001600160a01b03161461190d5761190d8382611c0b565b6001600160a01b038216611924576106d381611ca8565b826001600160a01b0316826001600160a01b0316146106d3576106d38282611d57565b60606000611956836002612461565b611961906002612435565b67ffffffffffffffff8111156119795761197961259c565b6040519080825280601f01601f1916602001820160405280156119a3576020820181803683370190505b509050600360fc1b816000815181106119be576119be612586565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106119ed576119ed612586565b60200101906001600160f81b031916908160001a9053506000611a11846002612461565b611a1c906001612435565b90505b6001811115611a94576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611a5057611a50612586565b1a60f81b828281518110611a6657611a66612586565b60200101906001600160f81b031916908160001a90535060049490941c93611a8d816124c3565b9050611a1f565b508315610b245760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161059d565b60008181526001830160205260408120548015611bcc576000611b07600183612480565b8554909150600090611b1b90600190612480565b9050818114611b80576000866000018281548110611b3b57611b3b612586565b9060005260206000200154905080876000018481548110611b5e57611b5e612586565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611b9157611b91612570565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610490565b6000915050610490565b60006001600160e01b03198216637965db0b60e01b148061049057506301ffc9a760e01b6001600160e01b0319831614610490565b60006001611c1884610a85565b611c229190612480565b600083815260096020526040902054909150808214611c75576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a54600090611cba90600190612480565b6000838152600b6020526040812054600a8054939450909284908110611ce257611ce2612586565b9060005260206000200154905080600a8381548110611d0357611d03612586565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480611d3b57611d3b612570565b6001900381819060005260206000200160009055905550505050565b6000611d6283610a85565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b828054611da7906124da565b90600052602060002090601f016020900481019282611dc95760008555611e0f565b82601f10611de257805160ff1916838001178555611e0f565b82800160010185558215611e0f579182015b82811115611e0f578251825591602001919060010190611df4565b50611e1b929150611e1f565b5090565b5b80821115611e1b5760008155600101611e20565b600067ffffffffffffffff80841115611e4f57611e4f61259c565b604051601f8501601f19908116603f01168101908282118183101715611e7757611e7761259c565b81604052809350858152868686011115611e9057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ec157600080fd5b919050565b600082601f830112611ed757600080fd5b610b2483833560208501611e34565b600060208284031215611ef857600080fd5b610b2482611eaa565b60008060408385031215611f1457600080fd5b611f1d83611eaa565b9150611f2b60208401611eaa565b90509250929050565b600080600060608486031215611f4957600080fd5b611f5284611eaa565b9250611f6060208501611eaa565b9150604084013590509250925092565b60008060008060808587031215611f8657600080fd5b611f8f85611eaa565b9350611f9d60208601611eaa565b925060408501359150606085013567ffffffffffffffff811115611fc057600080fd5b8501601f81018713611fd157600080fd5b611fe087823560208401611e34565b91505092959194509250565b60008060408385031215611fff57600080fd5b61200883611eaa565b91506020830135801515811461201d57600080fd5b809150509250929050565b6000806040838503121561203b57600080fd5b61204483611eaa565b946020939093013593505050565b60006020828403121561206457600080fd5b5035919050565b6000806040838503121561207e57600080fd5b82359150611f2b60208401611eaa565b600080604083850312156120a157600080fd5b50508035926020909101359150565b6000602082840312156120c257600080fd5b8135610b24816125b2565b6000602082840312156120df57600080fd5b8151610b24816125b2565b6000602082840312156120fc57600080fd5b813567ffffffffffffffff81111561211357600080fd5b61104884828501611ec6565b6000806000806080858703121561213557600080fd5b8435935061214560208601611eaa565b9250604085013567ffffffffffffffff81111561216157600080fd5b61216d87828801611ec6565b925050606085013563ffffffff8116811461218757600080fd5b939692955090935050565b600081518084526121aa816020860160208601612497565b601f01601f19169290920160200192915050565b600082516121d0818460208701612497565b9190910192915050565b600083516121ec818460208801612497565b835190830190612200818360208801612497565b01949350505050565b600080835481600182811c91508083168061222557607f831692505b602080841082141561224557634e487b7160e01b86526022600452602486fd5b818015612259576001811461226a57612297565b60ff19861689528489019650612297565b60008a81526020902060005b8681101561228f5781548b820152908501908301612276565b505084890196505b509498975050505050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516122dd816017850160208801612497565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161230e816028840160208801612497565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061234d90830184612192565b9695505050505050565b602081526000610b246020830184612192565b60408152600061237d6040830185612192565b905063ffffffff831660208301529392505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561244857612448612544565b500190565b60008261245c5761245c61255a565b500490565b600081600019048311821515161561247b5761247b612544565b500290565b60008282101561249257612492612544565b500390565b60005b838110156124b257818101518382015260200161249a565b83811115610c4a5750506000910152565b6000816124d2576124d2612544565b506000190190565b600181811c908216806124ee57607f821691505b6020821081141561250f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561252957612529612544565b5060010190565b60008261253f5761253f61255a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461120157600080fdfea26469706673582212205eed563beea0fa4cef621ef57a23fa7ca86fb76166c2c2c1bc6822cd367d699764736f6c63430008060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e546f7869632044656572204e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c546f786963446565724e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6e66742e746f786963646565722e66696e616e63652f63726f6e6f732f69642f000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063655391c911610104578063ae5340fb116100a2578063d011645c11610071578063d011645c146103e7578063d53913931461040f578063d547741f14610436578063e985e9c51461044957600080fd5b8063ae5340fb1461038d578063b88d4fde146103ae578063c87b56dd146103c1578063ca15c873146103d457600080fd5b806391d14854116100de57806391d148541461035757806395d89b411461036a578063a217fddf14610372578063a22cb4651461037a57600080fd5b8063655391c91461031e57806370a08231146103315780639010d07c1461034457600080fd5b80632f2ff15d1161017157806342842e0e1161014b57806342842e0e146102d25780634f6ccce7146102e5578063506a56d7146102f85780636352211e1461030b57600080fd5b80632f2ff15d146102995780632f745c59146102ac57806336568abe146102bf57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c57806318160ddd1461025157806323b872dd14610263578063248a9ca31461027657600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e23660046120b0565b610485565b60405190151581526020015b60405180910390f35b610204610496565b6040516101f39190612357565b61022461021f366004612052565b610528565b6040516001600160a01b0390911681526020016101f3565b61024f61024a366004612028565b6105c2565b005b600a545b6040519081526020016101f3565b61024f610271366004611f34565b6106d8565b610255610284366004612052565b60009081526020819052604090206001015490565b61024f6102a736600461206b565b610709565b6102556102ba366004612028565b61072e565b61024f6102cd36600461206b565b6107c4565b61024f6102e0366004611f34565b610842565b6102556102f3366004612052565b61085d565b61024f61030636600461211f565b6108f0565b610224610319366004612052565b61099b565b61024f61032c3660046120ea565b610a12565b61025561033f366004611ee6565b610a85565b61022461035236600461208e565b610b0c565b6101e761036536600461206b565b610b2b565b610204610b54565b610255600081565b61024f610388366004611fec565b610b63565b6103a061039b366004612052565b610b6e565b6040516101f392919061236a565b61024f6103bc366004611f70565b610c18565b6102046103cf366004612052565b610c50565b6102556103e2366004612052565b610d2a565b6103fa6103f5366004612052565b610d41565b60405163ffffffff90911681526020016101f3565b6102557f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61024f61044436600461206b565b610e08565b6101e7610457366004611f01565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600061049082610ec6565b92915050565b6060600280546104a5906124da565b80601f01602080910402602001604051908101604052809291908181526020018280546104d1906124da565b801561051e5780601f106104f35761010080835404028352916020019161051e565b820191906000526020600020905b81548152906001019060200180831161050157829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166105a65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105cd8261099b565b9050806001600160a01b0316836001600160a01b0316141561063b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059d565b336001600160a01b038216148061065757506106578133610457565b6106c95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059d565b6106d38383610eeb565b505050565b6106e23382610f59565b6106fe5760405162461bcd60e51b815260040161059d906123e4565b6106d3838383611050565b600082815260208190526040902060010154610724816111f7565b6106d38383611204565b600061073983610a85565b821061079b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161059d565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6001600160a01b03811633146108345760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161059d565b61083e8282611226565b5050565b6106d383838360405180602001604052806000815250610c18565b6000610868600a5490565b82106108cb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161059d565b600a82815481106108de576108de612586565b90600052602060002001549050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661091a816111f7565b610928600c80546001019055565b6109328486611248565b60408051808201825284815263ffffffff84166020808301919091526000888152600e82529290922081518051929391926109709284920190611d9b565b50602091909101516001909101805463ffffffff191663ffffffff9092169190911790555050505050565b6000818152600460205260408120546001600160a01b0316806104905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059d565b6000610a1d816111f7565b81604051610a2b91906121be565b6040518091039020600d604051610a429190612209565b604051908190038120907f8df4f488121a100577506716b83a42d04585c6b7b93941484c5b63b503e1806d90600090a381516106d390600d906020850190611d9b565b60006001600160a01b038216610af05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059d565b506001600160a01b031660009081526005602052604090205490565b6000828152600160205260408120610b249083611396565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600380546104a5906124da565b61083e3383836113a2565b600e60205260009081526040902080548190610b89906124da565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb5906124da565b8015610c025780601f10610bd757610100808354040283529160200191610c02565b820191906000526020600020905b815481529060010190602001808311610be557829003601f168201915b5050506001909301549192505063ffffffff1682565b610c223383610f59565b610c3e5760405162461bcd60e51b815260040161059d906123e4565b610c4a84848484611471565b50505050565b6000818152600460205260409020546060906001600160a01b0316610ccf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161059d565b6000610cd96114a4565b90506000815111610cf95760405180602001604052806000815250610b24565b80610d03846114b3565b604051602001610d149291906121da565b6040516020818303038152906040529392505050565b6000818152600160205260408120610490906115b1565b6000818152600e6020526040808220815180830190925280548392919082908290610d6b906124da565b80601f0160208091040260200160405190810160405280929190818152602001828054610d97906124da565b8015610de45780601f10610db957610100808354040283529160200191610de4565b820191906000526020600020905b815481529060010190602001808311610dc757829003601f168201915b50505091835250506001919091015463ffffffff1660209182015201519392505050565b600082815260208190526040902060010154610e23816111f7565b6106d38383611226565b610e378282610b2b565b61083e576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610e6d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610b24836001600160a01b0384166115bb565b60006001600160e01b0319821663780e9d6360e01b148061049057506104908261160a565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f208261099b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b0316610fd25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059d565b6000610fdd8361099b565b9050806001600160a01b0316846001600160a01b0316148061102457506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b806110485750836001600160a01b031661103d84610528565b6001600160a01b0316145b949350505050565b826001600160a01b03166110638261099b565b6001600160a01b0316146110c75760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161059d565b6001600160a01b0382166111295760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059d565b61113483838361164a565b61113f600082610eeb565b6001600160a01b0383166000908152600560205260408120805460019290611168908490612480565b90915550506001600160a01b0382166000908152600560205260408120805460019290611196908490612435565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6112018133611655565b50565b61120e8282610e2d565b60008281526001602052604090206106d39082610eb1565b61123082826116b9565b60008281526001602052604090206106d3908261171e565b6001600160a01b03821661129e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059d565b6000818152600460205260409020546001600160a01b0316156113035760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059d565b61130f6000838361164a565b6001600160a01b0382166000908152600560205260408120805460019290611338908490612435565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000610b248383611733565b816001600160a01b0316836001600160a01b031614156114045760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059d565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61147c848484611050565b6114888484848461175d565b610c4a5760405162461bcd60e51b815260040161059d90612392565b6060600d80546104a5906124da565b6060816114d75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561150157806114eb81612515565b91506114fa9050600a8361244d565b91506114db565b60008167ffffffffffffffff81111561151c5761151c61259c565b6040519080825280601f01601f191660200182016040528015611546576020820181803683370190505b5090505b84156110485761155b600183612480565b9150611568600a86612530565b611573906030612435565b60f81b81838151811061158857611588612586565b60200101906001600160f81b031916908160001a9053506115aa600a8661244d565b945061154a565b6000610490825490565b600081815260018301602052604081205461160257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610490565b506000610490565b60006001600160e01b031982166380ac58cd60e01b148061163b57506001600160e01b03198216635b5e139f60e01b145b8061049057506104908261186a565b6106d383838361188f565b61165f8282610b2b565b61083e57611677816001600160a01b03166014611947565b611682836020611947565b6040516020016116939291906122a5565b60408051601f198184030181529082905262461bcd60e51b825261059d91600401612357565b6116c38282610b2b565b1561083e576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610b24836001600160a01b038416611ae3565b600082600001828154811061174a5761174a612586565b9060005260206000200154905092915050565b60006001600160a01b0384163b1561185f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117a190339089908890889060040161231a565b602060405180830381600087803b1580156117bb57600080fd5b505af19250505080156117eb575060408051601f3d908101601f191682019092526117e8918101906120cd565b60015b611845573d808015611819576040519150601f19603f3d011682016040523d82523d6000602084013e61181e565b606091505b50805161183d5760405162461bcd60e51b815260040161059d90612392565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611048565b506001949350505050565b60006001600160e01b03198216635a05180f60e01b1480610490575061049082611bd6565b6001600160a01b0383166118ea576118e581600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b61190d565b816001600160a01b0316836001600160a01b03161461190d5761190d8382611c0b565b6001600160a01b038216611924576106d381611ca8565b826001600160a01b0316826001600160a01b0316146106d3576106d38282611d57565b60606000611956836002612461565b611961906002612435565b67ffffffffffffffff8111156119795761197961259c565b6040519080825280601f01601f1916602001820160405280156119a3576020820181803683370190505b509050600360fc1b816000815181106119be576119be612586565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106119ed576119ed612586565b60200101906001600160f81b031916908160001a9053506000611a11846002612461565b611a1c906001612435565b90505b6001811115611a94576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611a5057611a50612586565b1a60f81b828281518110611a6657611a66612586565b60200101906001600160f81b031916908160001a90535060049490941c93611a8d816124c3565b9050611a1f565b508315610b245760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161059d565b60008181526001830160205260408120548015611bcc576000611b07600183612480565b8554909150600090611b1b90600190612480565b9050818114611b80576000866000018281548110611b3b57611b3b612586565b9060005260206000200154905080876000018481548110611b5e57611b5e612586565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611b9157611b91612570565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610490565b6000915050610490565b60006001600160e01b03198216637965db0b60e01b148061049057506301ffc9a760e01b6001600160e01b0319831614610490565b60006001611c1884610a85565b611c229190612480565b600083815260096020526040902054909150808214611c75576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a54600090611cba90600190612480565b6000838152600b6020526040812054600a8054939450909284908110611ce257611ce2612586565b9060005260206000200154905080600a8381548110611d0357611d03612586565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480611d3b57611d3b612570565b6001900381819060005260206000200160009055905550505050565b6000611d6283610a85565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b828054611da7906124da565b90600052602060002090601f016020900481019282611dc95760008555611e0f565b82601f10611de257805160ff1916838001178555611e0f565b82800160010185558215611e0f579182015b82811115611e0f578251825591602001919060010190611df4565b50611e1b929150611e1f565b5090565b5b80821115611e1b5760008155600101611e20565b600067ffffffffffffffff80841115611e4f57611e4f61259c565b604051601f8501601f19908116603f01168101908282118183101715611e7757611e7761259c565b81604052809350858152868686011115611e9057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ec157600080fd5b919050565b600082601f830112611ed757600080fd5b610b2483833560208501611e34565b600060208284031215611ef857600080fd5b610b2482611eaa565b60008060408385031215611f1457600080fd5b611f1d83611eaa565b9150611f2b60208401611eaa565b90509250929050565b600080600060608486031215611f4957600080fd5b611f5284611eaa565b9250611f6060208501611eaa565b9150604084013590509250925092565b60008060008060808587031215611f8657600080fd5b611f8f85611eaa565b9350611f9d60208601611eaa565b925060408501359150606085013567ffffffffffffffff811115611fc057600080fd5b8501601f81018713611fd157600080fd5b611fe087823560208401611e34565b91505092959194509250565b60008060408385031215611fff57600080fd5b61200883611eaa565b91506020830135801515811461201d57600080fd5b809150509250929050565b6000806040838503121561203b57600080fd5b61204483611eaa565b946020939093013593505050565b60006020828403121561206457600080fd5b5035919050565b6000806040838503121561207e57600080fd5b82359150611f2b60208401611eaa565b600080604083850312156120a157600080fd5b50508035926020909101359150565b6000602082840312156120c257600080fd5b8135610b24816125b2565b6000602082840312156120df57600080fd5b8151610b24816125b2565b6000602082840312156120fc57600080fd5b813567ffffffffffffffff81111561211357600080fd5b61104884828501611ec6565b6000806000806080858703121561213557600080fd5b8435935061214560208601611eaa565b9250604085013567ffffffffffffffff81111561216157600080fd5b61216d87828801611ec6565b925050606085013563ffffffff8116811461218757600080fd5b939692955090935050565b600081518084526121aa816020860160208601612497565b601f01601f19169290920160200192915050565b600082516121d0818460208701612497565b9190910192915050565b600083516121ec818460208801612497565b835190830190612200818360208801612497565b01949350505050565b600080835481600182811c91508083168061222557607f831692505b602080841082141561224557634e487b7160e01b86526022600452602486fd5b818015612259576001811461226a57612297565b60ff19861689528489019650612297565b60008a81526020902060005b8681101561228f5781548b820152908501908301612276565b505084890196505b509498975050505050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516122dd816017850160208801612497565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161230e816028840160208801612497565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061234d90830184612192565b9695505050505050565b602081526000610b246020830184612192565b60408152600061237d6040830185612192565b905063ffffffff831660208301529392505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561244857612448612544565b500190565b60008261245c5761245c61255a565b500490565b600081600019048311821515161561247b5761247b612544565b500290565b60008282101561249257612492612544565b500390565b60005b838110156124b257818101518382015260200161249a565b83811115610c4a5750506000910152565b6000816124d2576124d2612544565b506000190190565b600181811c908216806124ee57607f821691505b6020821081141561250f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561252957612529612544565b5060010190565b60008261253f5761253f61255a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461120157600080fdfea26469706673582212205eed563beea0fa4cef621ef57a23fa7ca86fb76166c2c2c1bc6822cd367d699764736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e546f7869632044656572204e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c546f786963446565724e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6e66742e746f786963646565722e66696e616e63652f63726f6e6f732f69642f000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Toxic Deer NFT
Arg [1] : symbol (string): ToxicDeerNFT
Arg [2] : baseTokenURI (string): https://nft.toxicdeer.finance/cronos/id/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 546f7869632044656572204e4654000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 546f786963446565724e46540000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [8] : 68747470733a2f2f6e66742e746f786963646565722e66696e616e63652f6372
Arg [9] : 6f6e6f732f69642f000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
70047:2733:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72581:196;;;;;;:::i;:::-;;:::i;:::-;;;9251:14:1;;9244:22;9226:41;;9214:2;9199:18;72581:196:0;;;;;;;;21761:100;;;:::i;:::-;;;;;;;:::i;23321:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8549:32:1;;;8531:51;;8519:2;8504:18;23321:221:0;8486:102:1;22844:411:0;;;;;;:::i;:::-;;:::i;:::-;;36435:113;36523:10;:17;36435:113;;;9424:25:1;;;9412:2;9397:18;36435:113:0;9379:76:1;24071:339:0;;;;;;:::i;:::-;;:::i;50343:131::-;;;;;;:::i;:::-;50417:7;50444:12;;;;;;;;;;:22;;;;50343:131;50736:147;;;;;;:::i;:::-;;:::i;36103:256::-;;;;;;:::i;:::-;;:::i;51784:218::-;;;;;;:::i;:::-;;:::i;24481:185::-;;;;;;:::i;:::-;;:::i;36625:233::-;;;;;;:::i;:::-;;:::i;71936:326::-;;;;;;:::i;:::-;;:::i;21455:239::-;;;;;;:::i;:::-;;:::i;71501:199::-;;;;;;:::i;:::-;;:::i;21185:208::-;;;;;;:::i;:::-;;:::i;67682:153::-;;;;;;:::i;:::-;;:::i;48835:147::-;;;;;;:::i;:::-;;:::i;21930:104::-;;;:::i;47940:49::-;;47985:4;47940:49;;23614:155;;;;;;:::i;:::-;;:::i;70527:55::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;24737:328::-;;;;;;:::i;:::-;;:::i;22105:334::-;;;;;;:::i;:::-;;:::i;68009:142::-;;;;;;:::i;:::-;;:::i;71060:195::-;;;;;;:::i;:::-;;:::i;:::-;;;17562:10:1;17550:23;;;17532:42;;17520:2;17505:18;71060:195:0;17487:93:1;70174:62:0;;70212:24;70174:62;;51128:149;;;;;;:::i;:::-;;:::i;23840:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;23961:25:0;;;23937:4;23961:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23840:164;72581:196;72709:4;72733:36;72757:11;72733:23;:36::i;:::-;72726:43;72581:196;-1:-1:-1;;72581:196:0:o;21761:100::-;21815:13;21848:5;21841:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21761:100;:::o;23321:221::-;23397:7;26664:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26664:16:0;23417:73;;;;-1:-1:-1;;;23417:73:0;;14930:2:1;23417:73:0;;;14912:21:1;14969:2;14949:18;;;14942:30;15008:34;14988:18;;;14981:62;-1:-1:-1;;;15059:18:1;;;15052:42;15111:19;;23417:73:0;;;;;;;;;-1:-1:-1;23510:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23510:24:0;;23321:221::o;22844:411::-;22925:13;22941:23;22956:7;22941:14;:23::i;:::-;22925:39;;22989:5;-1:-1:-1;;;;;22983:11:0;:2;-1:-1:-1;;;;;22983:11:0;;;22975:57;;;;-1:-1:-1;;;22975:57:0;;15759:2:1;22975:57:0;;;15741:21:1;15798:2;15778:18;;;15771:30;15837:34;15817:18;;;15810:62;-1:-1:-1;;;15888:18:1;;;15881:31;15929:19;;22975:57:0;15731:223:1;22975:57:0;16418:10;-1:-1:-1;;;;;23067:21:0;;;;:62;;-1:-1:-1;23092:37:0;23109:5;16418:10;23840:164;:::i;23092:37::-;23045:168;;;;-1:-1:-1;;;23045:168:0;;13323:2:1;23045:168:0;;;13305:21:1;13362:2;13342:18;;;13335:30;13401:34;13381:18;;;13374:62;13472:26;13452:18;;;13445:54;13516:19;;23045:168:0;13295:246:1;23045:168:0;23226:21;23235:2;23239:7;23226:8;:21::i;:::-;22914:341;22844:411;;:::o;24071:339::-;24266:41;16418:10;24299:7;24266:18;:41::i;:::-;24258:103;;;;-1:-1:-1;;;24258:103:0;;;;;;;:::i;:::-;24374:28;24384:4;24390:2;24394:7;24374:9;:28::i;50736:147::-;50417:7;50444:12;;;;;;;;;;:22;;;48431:16;48442:4;48431:10;:16::i;:::-;50850:25:::1;50861:4;50867:7;50850:10;:25::i;36103:256::-:0;36200:7;36236:23;36253:5;36236:16;:23::i;:::-;36228:5;:31;36220:87;;;;-1:-1:-1;;;36220:87:0;;10557:2:1;36220:87:0;;;10539:21:1;10596:2;10576:18;;;10569:30;10635:34;10615:18;;;10608:62;-1:-1:-1;;;10686:18:1;;;10679:41;10737:19;;36220:87:0;10529:233:1;36220:87:0;-1:-1:-1;;;;;;36325:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36103:256::o;51784:218::-;-1:-1:-1;;;;;51880:23:0;;16418:10;51880:23;51872:83;;;;-1:-1:-1;;;51872:83:0;;16992:2:1;51872:83:0;;;16974:21:1;17031:2;17011:18;;;17004:30;17070:34;17050:18;;;17043:62;-1:-1:-1;;;17121:18:1;;;17114:45;17176:19;;51872:83:0;16964:237:1;51872:83:0;51968:26;51980:4;51986:7;51968:11;:26::i;:::-;51784:218;;:::o;24481:185::-;24619:39;24636:4;24642:2;24646:7;24619:39;;;;;;;;;;;;:16;:39::i;36625:233::-;36700:7;36736:30;36523:10;:17;;36435:113;36736:30;36728:5;:38;36720:95;;;;-1:-1:-1;;;36720:95:0;;16579:2:1;36720:95:0;;;16561:21:1;16618:2;16598:18;;;16591:30;16657:34;16637:18;;;16630:62;-1:-1:-1;;;16708:18:1;;;16701:42;16760:19;;36720:95:0;16551:234:1;36720:95:0;36833:10;36844:5;36833:17;;;;;;;;:::i;:::-;;;;;;;;;36826:24;;36625:233;;;:::o;71936:326::-;70212:24;48431:16;48442:4;48431:10;:16::i;:::-;72104:27:::1;:15;69679:19:::0;;69697:1;69679:19;;;69598:115;72104:27:::1;72142:18;72148:2;72152:7;72142:5;:18::i;:::-;72200:52;::::0;;;;::::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;;-1:-1:-1;72171:26:0;;;:17:::1;:26:::0;;;;;;:81;;;;72200:52;;72171:26;;:81:::1;::::0;:26;;:81:::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;72171:81:0::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;72171:81:0::1;;::::0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;;71936:326:0:o;21455:239::-;21527:7;21563:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21563:16:0;21598:19;21590:73;;;;-1:-1:-1;;;21590:73:0;;14159:2:1;21590:73:0;;;14141:21:1;14198:2;14178:18;;;14171:30;14237:34;14217:18;;;14210:62;-1:-1:-1;;;14288:18:1;;;14281:39;14337:19;;21590:73:0;14131:231:1;71501:199:0;47985:4;48431:16;47985:4;48431:10;:16::i;:::-;71640:12:::1;71611:42;;;;;;:::i;:::-;;;;;;;;71625:13;71611:42;;;;;;:::i;:::-;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;71664:28:::0;;::::1;::::0;:13:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;21185:208::-:0;21257:7;-1:-1:-1;;;;;21285:19:0;;21277:74;;;;-1:-1:-1;;;21277:74:0;;13748:2:1;21277:74:0;;;13730:21:1;13787:2;13767:18;;;13760:30;13826:34;13806:18;;;13799:62;-1:-1:-1;;;13877:18:1;;;13870:40;13927:19;;21277:74:0;13720:232:1;21277:74:0;-1:-1:-1;;;;;;21369:16:0;;;;;:9;:16;;;;;;;21185:208::o;67682:153::-;67772:7;67799:18;;;:12;:18;;;;;:28;;67821:5;67799:21;:28::i;:::-;67792:35;67682:153;-1:-1:-1;;;67682:153:0:o;48835:147::-;48921:4;48945:12;;;;;;;;;;;-1:-1:-1;;;;;48945:29:0;;;;;;;;;;;;;;;48835:147::o;21930:104::-;21986:13;22019:7;22012:14;;;;;:::i;23614:155::-;23709:52;16418:10;23742:8;23752;23709:18;:52::i;70527:55::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;70527:55:0;;;;;;;-1:-1:-1;;70527:55:0;;;:::o;24737:328::-;24912:41;16418:10;24945:7;24912:18;:41::i;:::-;24904:103;;;;-1:-1:-1;;;24904:103:0;;;;;;;:::i;:::-;25018:39;25032:4;25038:2;25042:7;25051:5;25018:13;:39::i;:::-;24737:328;;;;:::o;22105:334::-;26640:4;26664:16;;;:7;:16;;;;;;22178:13;;-1:-1:-1;;;;;26664:16:0;22204:76;;;;-1:-1:-1;;;22204:76:0;;15343:2:1;22204:76:0;;;15325:21:1;15382:2;15362:18;;;15355:30;15421:34;15401:18;;;15394:62;-1:-1:-1;;;15472:18:1;;;15465:45;15527:19;;22204:76:0;15315:237:1;22204:76:0;22293:21;22317:10;:8;:10::i;:::-;22293:34;;22369:1;22351:7;22345:21;:25;:86;;;;;;;;;;;;;;;;;22397:7;22406:18;:7;:16;:18::i;:::-;22380:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22338:93;22105:334;-1:-1:-1;;;22105:334:0:o;68009:142::-;68089:7;68116:18;;;:12;:18;;;;;:27;;:25;:27::i;71060:195::-;71123:6;71180:26;;;:17;:26;;;;;;71142:64;;;;;;;;;;71123:6;;71142:64;71180:26;71142:64;;71180:26;;71142:64;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;71142:64:0;;;-1:-1:-1;;71142:64:0;;;;;;;;;;;;;71224:23;;;71060:195;-1:-1:-1;;;71060:195:0:o;51128:149::-;50417:7;50444:12;;;;;;;;;;:22;;;48431:16;48442:4;48431:10;:16::i;:::-;51243:26:::1;51255:4;51261:7;51243:11;:26::i;53285:238::-:0;53369:22;53377:4;53383:7;53369;:22::i;:::-;53364:152;;53408:6;:12;;;;;;;;;;;-1:-1:-1;;;;;53408:29:0;;;;;;;;;:36;;-1:-1:-1;;53408:36:0;53440:4;53408:36;;;53491:12;16418:10;;16338:98;53491:12;-1:-1:-1;;;;;53464:40:0;53482:7;-1:-1:-1;;;;;53464:40:0;53476:4;53464:40;;;;;;;;;;53285:238;;:::o;61691:152::-;61761:4;61785:50;61790:3;-1:-1:-1;;;;;61810:23:0;;61785:4;:50::i;35795:224::-;35897:4;-1:-1:-1;;;;;;35921:50:0;;-1:-1:-1;;;35921:50:0;;:90;;;35975:36;35999:11;35975:23;:36::i;30721:174::-;30796:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30796:29:0;-1:-1:-1;;;;;30796:29:0;;;;;;;;:24;;30850:23;30796:24;30850:14;:23::i;:::-;-1:-1:-1;;;;;30841:46:0;;;;;;;;;;;30721:174;;:::o;26869:348::-;26962:4;26664:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26664:16:0;26979:73;;;;-1:-1:-1;;;26979:73:0;;12910:2:1;26979:73:0;;;12892:21:1;12949:2;12929:18;;;12922:30;12988:34;12968:18;;;12961:62;-1:-1:-1;;;13039:18:1;;;13032:42;13091:19;;26979:73:0;12882:234:1;26979:73:0;27063:13;27079:23;27094:7;27079:14;:23::i;:::-;27063:39;;27132:5;-1:-1:-1;;;;;27121:16:0;:7;-1:-1:-1;;;;;27121:16:0;;:52;;;-1:-1:-1;;;;;;23961:25:0;;;23937:4;23961:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27141:32;27121:87;;;;27201:7;-1:-1:-1;;;;;27177:31:0;:20;27189:7;27177:11;:20::i;:::-;-1:-1:-1;;;;;27177:31:0;;27121:87;27113:96;26869:348;-1:-1:-1;;;;26869:348:0:o;29978:625::-;30137:4;-1:-1:-1;;;;;30110:31:0;:23;30125:7;30110:14;:23::i;:::-;-1:-1:-1;;;;;30110:31:0;;30102:81;;;;-1:-1:-1;;;30102:81:0;;11388:2:1;30102:81:0;;;11370:21:1;11427:2;11407:18;;;11400:30;11466:34;11446:18;;;11439:62;-1:-1:-1;;;11517:18:1;;;11510:35;11562:19;;30102:81:0;11360:227:1;30102:81:0;-1:-1:-1;;;;;30202:16:0;;30194:65;;;;-1:-1:-1;;;30194:65:0;;12151:2:1;30194:65:0;;;12133:21:1;12190:2;12170:18;;;12163:30;12229:34;12209:18;;;12202:62;-1:-1:-1;;;12280:18:1;;;12273:34;12324:19;;30194:65:0;12123:226:1;30194:65:0;30272:39;30293:4;30299:2;30303:7;30272:20;:39::i;:::-;30376:29;30393:1;30397:7;30376:8;:29::i;:::-;-1:-1:-1;;;;;30418:15:0;;;;;;:9;:15;;;;;:20;;30437:1;;30418:15;:20;;30437:1;;30418:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30449:13:0;;;;;;:9;:13;;;;;:18;;30466:1;;30449:13;:18;;30466:1;;30449:18;:::i;:::-;;;;-1:-1:-1;;30478:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30478:21:0;-1:-1:-1;;;;;30478:21:0;;;;;;;;;30517:27;;30478:16;;30517:27;;;;;;;22914:341;22844:411;;:::o;49286:105::-;49353:30;49364:4;16418:10;49353;:30::i;:::-;49286:105;:::o;68244:169::-;68332:31;68349:4;68355:7;68332:16;:31::i;:::-;68374:18;;;;:12;:18;;;;;:31;;68397:7;68374:22;:31::i;68507:174::-;68596:32;68614:4;68620:7;68596:17;:32::i;:::-;68639:18;;;;:12;:18;;;;;:34;;68665:7;68639:25;:34::i;28553:439::-;-1:-1:-1;;;;;28633:16:0;;28625:61;;;;-1:-1:-1;;;28625:61:0;;14569:2:1;28625:61:0;;;14551:21:1;;;14588:18;;;14581:30;14647:34;14627:18;;;14620:62;14699:18;;28625:61:0;14541:182:1;28625:61:0;26640:4;26664:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26664:16:0;:30;28697:58;;;;-1:-1:-1;;;28697:58:0;;11794:2:1;28697:58:0;;;11776:21:1;11833:2;11813:18;;;11806:30;11872;11852:18;;;11845:58;11920:18;;28697:58:0;11766:178:1;28697:58:0;28768:45;28797:1;28801:2;28805:7;28768:20;:45::i;:::-;-1:-1:-1;;;;;28826:13:0;;;;;;:9;:13;;;;;:18;;28843:1;;28826:13;:18;;28843:1;;28826:18;:::i;:::-;;;;-1:-1:-1;;28855:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28855:21:0;-1:-1:-1;;;;;28855:21:0;;;;;;;;28894:33;;28855:16;;;28894:33;;28855:16;;28894:33;51784:218;;:::o;62987:158::-;63061:7;63112:22;63116:3;63128:5;63112:3;:22::i;31037:315::-;31192:8;-1:-1:-1;;;;;31183:17:0;:5;-1:-1:-1;;;;;31183:17:0;;;31175:55;;;;-1:-1:-1;;;31175:55:0;;12556:2:1;31175:55:0;;;12538:21:1;12595:2;12575:18;;;12568:30;12634:27;12614:18;;;12607:55;12679:18;;31175:55:0;12528:175:1;31175:55:0;-1:-1:-1;;;;;31241:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31241:46:0;;;;;;;;;;31303:41;;9226::1;;;31303::0;;9199:18:1;31303:41:0;;;;;;;31037:315;;;:::o;25947:::-;26104:28;26114:4;26120:2;26124:7;26104:9;:28::i;:::-;26151:48;26174:4;26180:2;26184:7;26193:5;26151:22;:48::i;:::-;26143:111;;;;-1:-1:-1;;;26143:111:0;;;;;;;:::i;72270:114::-;72330:13;72363;72356:20;;;;;:::i;16834:723::-;16890:13;17111:10;17107:53;;-1:-1:-1;;17138:10:0;;;;;;;;;;;;-1:-1:-1;;;17138:10:0;;;;;16834:723::o;17107:53::-;17185:5;17170:12;17226:78;17233:9;;17226:78;;17259:8;;;;:::i;:::-;;-1:-1:-1;17282:10:0;;-1:-1:-1;17290:2:0;17282:10;;:::i;:::-;;;17226:78;;;17314:19;17346:6;17336:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17336:17:0;;17314:39;;17364:154;17371:10;;17364:154;;17398:11;17408:1;17398:11;;:::i;:::-;;-1:-1:-1;17467:10:0;17475:2;17467:5;:10;:::i;:::-;17454:24;;:2;:24;:::i;:::-;17441:39;;17424:6;17431;17424:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17424:56:0;;;;;;;;-1:-1:-1;17495:11:0;17504:2;17495:11;;:::i;:::-;;;17364:154;;62516:117;62579:7;62606:19;62614:3;58000:18;;57917:109;55606:414;55669:4;57799:19;;;:12;;;:19;;;;;;55686:327;;-1:-1:-1;55729:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;55912:18;;55890:19;;;:12;;;:19;;;;;;:40;;;;55945:11;;55686:327;-1:-1:-1;55996:5:0;55989:12;;20828:293;20930:4;-1:-1:-1;;;;;;20963:40:0;;-1:-1:-1;;;20963:40:0;;:101;;-1:-1:-1;;;;;;;21016:48:0;;-1:-1:-1;;;21016:48:0;20963:101;:150;;;;21077:36;21101:11;21077:23;:36::i;72392:181::-;72520:45;72547:4;72553:2;72557:7;72520:26;:45::i;49681:473::-;49770:22;49778:4;49784:7;49770;:22::i;:::-;49765:382;;49942:41;49970:7;-1:-1:-1;;;;;49942:41:0;49980:2;49942:19;:41::i;:::-;50048:38;50076:4;50083:2;50048:19;:38::i;:::-;49855:250;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;49855:250:0;;;;;;;;;;-1:-1:-1;;;49809:326:0;;;;;;;:::i;53655:239::-;53739:22;53747:4;53753:7;53739;:22::i;:::-;53735:152;;;53810:5;53778:12;;;;;;;;;;;-1:-1:-1;;;;;53778:29:0;;;;;;;;;;:37;;-1:-1:-1;;53778:37:0;;;53835:40;16418:10;;53778:12;;53835:40;;53810:5;53835:40;53655:239;;:::o;62019:158::-;62092:4;62116:53;62124:3;-1:-1:-1;;;;;62144:23:0;;62116:7;:53::i;58380:120::-;58447:7;58474:3;:11;;58486:5;58474:18;;;;;;;;:::i;:::-;;;;;;;;;58467:25;;58380:120;;;;:::o;31917:799::-;32072:4;-1:-1:-1;;;;;32093:13:0;;8767:19;:23;32089:620;;32129:72;;-1:-1:-1;;;32129:72:0;;-1:-1:-1;;;;;32129:36:0;;;;;:72;;16418:10;;32180:4;;32186:7;;32195:5;;32129:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32129:72:0;;;;;;;;-1:-1:-1;;32129:72:0;;;;;;;;;;;;:::i;:::-;;;32125:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32371:13:0;;32367:272;;32414:60;;-1:-1:-1;;;32414:60:0;;;;;;;:::i;32367:272::-;32589:6;32583:13;32574:6;32570:2;32566:15;32559:38;32125:529;-1:-1:-1;;;;;;32252:51:0;-1:-1:-1;;;32252:51:0;;-1:-1:-1;32245:58:0;;32089:620;-1:-1:-1;32693:4:0;31917:799;;;;;;:::o;66869:214::-;66954:4;-1:-1:-1;;;;;;66978:57:0;;-1:-1:-1;;;66978:57:0;;:97;;;67039:36;67063:11;67039:23;:36::i;37471:589::-;-1:-1:-1;;;;;37677:18:0;;37673:187;;37712:40;37744:7;38887:10;:17;;38860:24;;;;:15;:24;;;;;:44;;;38915:24;;;;;;;;;;;;38783:164;37712:40;37673:187;;;37782:2;-1:-1:-1;;;;;37774:10:0;:4;-1:-1:-1;;;;;37774:10:0;;37770:90;;37801:47;37834:4;37840:7;37801:32;:47::i;:::-;-1:-1:-1;;;;;37874:16:0;;37870:183;;37907:45;37944:7;37907:36;:45::i;37870:183::-;37980:4;-1:-1:-1;;;;;37974:10:0;:2;-1:-1:-1;;;;;37974:10:0;;37970:83;;38001:40;38029:2;38033:7;38001:27;:40::i;18135:451::-;18210:13;18236:19;18268:10;18272:6;18268:1;:10;:::i;:::-;:14;;18281:1;18268:14;:::i;:::-;18258:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18258:25:0;;18236:47;;-1:-1:-1;;;18294:6:0;18301:1;18294:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;18294:15:0;;;;;;;;;-1:-1:-1;;;18320:6:0;18327:1;18320:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;18320:15:0;;;;;;;;-1:-1:-1;18351:9:0;18363:10;18367:6;18363:1;:10;:::i;:::-;:14;;18376:1;18363:14;:::i;:::-;18351:26;;18346:135;18383:1;18379;:5;18346:135;;;-1:-1:-1;;;18431:5:0;18439:3;18431:11;18418:25;;;;;;;:::i;:::-;;;;18406:6;18413:1;18406:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;18406:37:0;;;;;;;;-1:-1:-1;18468:1:0;18458:11;;;;;18386:3;;;:::i;:::-;;;18346:135;;;-1:-1:-1;18499:10:0;;18491:55;;;;-1:-1:-1;;;18491:55:0;;10196:2:1;18491:55:0;;;10178:21:1;;;10215:18;;;10208:30;10274:34;10254:18;;;10247:62;10326:18;;18491:55:0;10168:182:1;56196:1420:0;56262:4;56401:19;;;:12;;;:19;;;;;;56437:15;;56433:1176;;56812:21;56836:14;56849:1;56836:10;:14;:::i;:::-;56885:18;;56812:38;;-1:-1:-1;56865:17:0;;56885:22;;56906:1;;56885:22;:::i;:::-;56865:42;;56941:13;56928:9;:26;56924:405;;56975:17;56995:3;:11;;57007:9;56995:22;;;;;;;;:::i;:::-;;;;;;;;;56975:42;;57149:9;57120:3;:11;;57132:13;57120:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;57234:23;;;:12;;;:23;;;;;:36;;;56924:405;57410:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;57505:3;:12;;:19;57518:5;57505:19;;;;;;;;;;;57498:26;;;57548:4;57541:11;;;;;;;56433:1176;57592:5;57585:12;;;;;48539:204;48624:4;-1:-1:-1;;;;;;48648:47:0;;-1:-1:-1;;;48648:47:0;;:87;;-1:-1:-1;;;;;;;;;;19469:40:0;;;48699:36;19360:157;39574:988;39840:22;39890:1;39865:22;39882:4;39865:16;:22::i;:::-;:26;;;;:::i;:::-;39902:18;39923:26;;;:17;:26;;;;;;39840:51;;-1:-1:-1;40056:28:0;;;40052:328;;-1:-1:-1;;;;;40123:18:0;;40101:19;40123:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40174:30;;;;;;:44;;;40291:30;;:17;:30;;;;;:43;;;40052:328;-1:-1:-1;40476:26:0;;;;:17;:26;;;;;;;;40469:33;;;-1:-1:-1;;;;;40520:18:0;;;;;:12;:18;;;;;:34;;;;;;;40513:41;39574:988::o;40857:1079::-;41135:10;:17;41110:22;;41135:21;;41155:1;;41135:21;:::i;:::-;41167:18;41188:24;;;:15;:24;;;;;;41561:10;:26;;41110:46;;-1:-1:-1;41188:24:0;;41110:46;;41561:26;;;;;;:::i;:::-;;;;;;;;;41539:48;;41625:11;41600:10;41611;41600:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41705:28;;;:15;:28;;;;;;;:41;;;41877:24;;;;;41870:31;41912:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40928:1008;;;40857:1079;:::o;38361:221::-;38446:14;38463:20;38480:2;38463:16;:20::i;:::-;-1:-1:-1;;;;;38494:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38539:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38361:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:221::-;871:5;924:3;917:4;909:6;905:17;901:27;891:2;;942:1;939;932:12;891:2;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;1054:186::-;1113:6;1166:2;1154:9;1145:7;1141:23;1137:32;1134:2;;;1182:1;1179;1172:12;1134:2;1205:29;1224:9;1205:29;:::i;1245:260::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:2;;;1390:1;1387;1380:12;1342:2;1413:29;1432:9;1413:29;:::i;:::-;1403:39;;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1332:173;;;;;:::o;1510:328::-;1587:6;1595;1603;1656:2;1644:9;1635:7;1631:23;1627:32;1624:2;;;1672:1;1669;1662:12;1624:2;1695:29;1714:9;1695:29;:::i;:::-;1685:39;;1743:38;1777:2;1766:9;1762:18;1743:38;:::i;:::-;1733:48;;1828:2;1817:9;1813:18;1800:32;1790:42;;1614:224;;;;;:::o;1843:666::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:2;;;2032:1;2029;2022:12;1983:2;2055:29;2074:9;2055:29;:::i;:::-;2045:39;;2103:38;2137:2;2126:9;2122:18;2103:38;:::i;:::-;2093:48;;2188:2;2177:9;2173:18;2160:32;2150:42;;2243:2;2232:9;2228:18;2215:32;2270:18;2262:6;2259:30;2256:2;;;2302:1;2299;2292:12;2256:2;2325:22;;2378:4;2370:13;;2366:27;-1:-1:-1;2356:2:1;;2407:1;2404;2397:12;2356:2;2430:73;2495:7;2490:2;2477:16;2472:2;2468;2464:11;2430:73;:::i;:::-;2420:83;;;1973:536;;;;;;;:::o;2514:347::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:2;;;2656:1;2653;2646:12;2608:2;2679:29;2698:9;2679:29;:::i;:::-;2669:39;;2758:2;2747:9;2743:18;2730:32;2805:5;2798:13;2791:21;2784:5;2781:32;2771:2;;2827:1;2824;2817:12;2771:2;2850:5;2840:15;;;2598:263;;;;;:::o;2866:254::-;2934:6;2942;2995:2;2983:9;2974:7;2970:23;2966:32;2963:2;;;3011:1;3008;3001:12;2963:2;3034:29;3053:9;3034:29;:::i;:::-;3024:39;3110:2;3095:18;;;;3082:32;;-1:-1:-1;;;2953:167:1:o;3125:180::-;3184:6;3237:2;3225:9;3216:7;3212:23;3208:32;3205:2;;;3253:1;3250;3243:12;3205:2;-1:-1:-1;3276:23:1;;3195:110;-1:-1:-1;3195:110:1:o;3310:254::-;3378:6;3386;3439:2;3427:9;3418:7;3414:23;3410:32;3407:2;;;3455:1;3452;3445:12;3407:2;3491:9;3478:23;3468:33;;3520:38;3554:2;3543:9;3539:18;3520:38;:::i;3569:248::-;3637:6;3645;3698:2;3686:9;3677:7;3673:23;3669:32;3666:2;;;3714:1;3711;3704:12;3666:2;-1:-1:-1;;3737:23:1;;;3807:2;3792:18;;;3779:32;;-1:-1:-1;3656:161:1:o;3822:245::-;3880:6;3933:2;3921:9;3912:7;3908:23;3904:32;3901:2;;;3949:1;3946;3939:12;3901:2;3988:9;3975:23;4007:30;4031:5;4007:30;:::i;4072:249::-;4141:6;4194:2;4182:9;4173:7;4169:23;4165:32;4162:2;;;4210:1;4207;4200:12;4162:2;4242:9;4236:16;4261:30;4285:5;4261:30;:::i;4326:322::-;4395:6;4448:2;4436:9;4427:7;4423:23;4419:32;4416:2;;;4464:1;4461;4454:12;4416:2;4504:9;4491:23;4537:18;4529:6;4526:30;4523:2;;;4569:1;4566;4559:12;4523:2;4592:50;4634:7;4625:6;4614:9;4610:22;4592:50;:::i;4838:629::-;4933:6;4941;4949;4957;5010:3;4998:9;4989:7;4985:23;4981:33;4978:2;;;5027:1;5024;5017:12;4978:2;5063:9;5050:23;5040:33;;5092:38;5126:2;5115:9;5111:18;5092:38;:::i;:::-;5082:48;;5181:2;5170:9;5166:18;5153:32;5208:18;5200:6;5197:30;5194:2;;;5240:1;5237;5230:12;5194:2;5263:50;5305:7;5296:6;5285:9;5281:22;5263:50;:::i;:::-;5253:60;;;5363:2;5352:9;5348:18;5335:32;5407:10;5400:5;5396:22;5389:5;5386:33;5376:2;;5433:1;5430;5423:12;5376:2;4968:499;;;;-1:-1:-1;4968:499:1;;-1:-1:-1;;4968:499:1:o;5472:257::-;5513:3;5551:5;5545:12;5578:6;5573:3;5566:19;5594:63;5650:6;5643:4;5638:3;5634:14;5627:4;5620:5;5616:16;5594:63;:::i;:::-;5711:2;5690:15;-1:-1:-1;;5686:29:1;5677:39;;;;5718:4;5673:50;;5521:208;-1:-1:-1;;5521:208:1:o;5734:276::-;5865:3;5903:6;5897:13;5919:53;5965:6;5960:3;5953:4;5945:6;5941:17;5919:53;:::i;:::-;5988:16;;;;;5873:137;-1:-1:-1;;5873:137:1:o;6015:470::-;6194:3;6232:6;6226:13;6248:53;6294:6;6289:3;6282:4;6274:6;6270:17;6248:53;:::i;:::-;6364:13;;6323:16;;;;6386:57;6364:13;6323:16;6420:4;6408:17;;6386:57;:::i;:::-;6459:20;;6202:283;-1:-1:-1;;;;6202:283:1:o;6490:1099::-;6618:3;6647:1;6680:6;6674:13;6710:3;6732:1;6760:9;6756:2;6752:18;6742:28;;6820:2;6809:9;6805:18;6842;6832:2;;6886:4;6878:6;6874:17;6864:27;;6832:2;6912;6960;6952:6;6949:14;6929:18;6926:38;6923:2;;;-1:-1:-1;;;6987:33:1;;7043:4;7040:1;7033:15;7073:4;6994:3;7061:17;6923:2;7104:18;7131:104;;;;7249:1;7244:320;;;;7097:467;;7131:104;-1:-1:-1;;7164:24:1;;7152:37;;7209:16;;;;-1:-1:-1;7131:104:1;;7244:320;17658:1;17651:14;;;17695:4;17682:18;;7339:1;7353:165;7367:6;7364:1;7361:13;7353:165;;;7445:14;;7432:11;;;7425:35;7488:16;;;;7382:10;;7353:165;;;7357:3;;7547:6;7542:3;7538:16;7531:23;;7097:467;-1:-1:-1;7580:3:1;;6626:963;-1:-1:-1;;;;;;;;6626:963:1:o;7594:786::-;8005:25;8000:3;7993:38;7975:3;8060:6;8054:13;8076:62;8131:6;8126:2;8121:3;8117:12;8110:4;8102:6;8098:17;8076:62;:::i;:::-;-1:-1:-1;;;8197:2:1;8157:16;;;8189:11;;;8182:40;8247:13;;8269:63;8247:13;8318:2;8310:11;;8303:4;8291:17;;8269:63;:::i;:::-;8352:17;8371:2;8348:26;;7983:397;-1:-1:-1;;;;7983:397:1:o;8593:488::-;-1:-1:-1;;;;;8862:15:1;;;8844:34;;8914:15;;8909:2;8894:18;;8887:43;8961:2;8946:18;;8939:34;;;9009:3;9004:2;8989:18;;8982:31;;;8787:4;;9030:45;;9055:19;;9047:6;9030:45;:::i;:::-;9022:53;8796:285;-1:-1:-1;;;;;;8796:285:1:o;9460:219::-;9609:2;9598:9;9591:21;9572:4;9629:44;9669:2;9658:9;9654:18;9646:6;9629:44;:::i;9684:305::-;9859:2;9848:9;9841:21;9822:4;9879:44;9919:2;9908:9;9904:18;9896:6;9879:44;:::i;:::-;9871:52;;9971:10;9963:6;9959:23;9954:2;9943:9;9939:18;9932:51;9831:158;;;;;:::o;10767:414::-;10969:2;10951:21;;;11008:2;10988:18;;;10981:30;11047:34;11042:2;11027:18;;11020:62;-1:-1:-1;;;11113:2:1;11098:18;;11091:48;11171:3;11156:19;;10941:240::o;15959:413::-;16161:2;16143:21;;;16200:2;16180:18;;;16173:30;16239:34;16234:2;16219:18;;16212:62;-1:-1:-1;;;16305:2:1;16290:18;;16283:47;16362:3;16347:19;;16133:239::o;17711:128::-;17751:3;17782:1;17778:6;17775:1;17772:13;17769:2;;;17788:18;;:::i;:::-;-1:-1:-1;17824:9:1;;17759:80::o;17844:120::-;17884:1;17910;17900:2;;17915:18;;:::i;:::-;-1:-1:-1;17949:9:1;;17890:74::o;17969:168::-;18009:7;18075:1;18071;18067:6;18063:14;18060:1;18057:21;18052:1;18045:9;18038:17;18034:45;18031:2;;;18082:18;;:::i;:::-;-1:-1:-1;18122:9:1;;18021:116::o;18142:125::-;18182:4;18210:1;18207;18204:8;18201:2;;;18215:18;;:::i;:::-;-1:-1:-1;18252:9:1;;18191:76::o;18272:258::-;18344:1;18354:113;18368:6;18365:1;18362:13;18354:113;;;18444:11;;;18438:18;18425:11;;;18418:39;18390:2;18383:10;18354:113;;;18485:6;18482:1;18479:13;18476:2;;;-1:-1:-1;;18520:1:1;18502:16;;18495:27;18325:205::o;18535:136::-;18574:3;18602:5;18592:2;;18611:18;;:::i;:::-;-1:-1:-1;;;18647:18:1;;18582:89::o;18676:380::-;18755:1;18751:12;;;;18798;;;18819:2;;18873:4;18865:6;18861:17;18851:27;;18819:2;18926;18918:6;18915:14;18895:18;18892:38;18889:2;;;18972:10;18967:3;18963:20;18960:1;18953:31;19007:4;19004:1;18997:15;19035:4;19032:1;19025:15;18889:2;;18731:325;;;:::o;19061:135::-;19100:3;-1:-1:-1;;19121:17:1;;19118:2;;;19141:18;;:::i;:::-;-1:-1:-1;19188:1:1;19177:13;;19108:88::o;19201:112::-;19233:1;19259;19249:2;;19264:18;;:::i;:::-;-1:-1:-1;19298:9:1;;19239:74::o;19318:127::-;19379:10;19374:3;19370:20;19367:1;19360:31;19410:4;19407:1;19400:15;19434:4;19431:1;19424:15;19450:127;19511:10;19506:3;19502:20;19499:1;19492:31;19542:4;19539:1;19532:15;19566:4;19563:1;19556:15;19582:127;19643:10;19638:3;19634:20;19631:1;19624:31;19674:4;19671:1;19664:15;19698:4;19695:1;19688:15;19714:127;19775:10;19770:3;19766:20;19763:1;19756:31;19806:4;19803:1;19796:15;19830:4;19827:1;19820:15;19846:127;19907:10;19902:3;19898:20;19895:1;19888:31;19938:4;19935:1;19928:15;19962:4;19959:1;19952:15;19978:131;-1:-1:-1;;;;;;20052:32:1;;20042:43;;20032:2;;20099:1;20096;20089:12
Swarm Source
ipfs://5eed563beea0fa4cef621ef57a23fa7ca86fb76166c2c2c1bc6822cd367d6997
Loading...
Loading
[ Download: CSV Export ]
[ 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.