NFT
Overview
TokenID
5248
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TobyTheGoat
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // Openzeppelin import "./ERC721.sol"; import "./ERC721Enumerable.sol"; import "./Ownable.sol"; import "./SafeMath.sol"; import "./ReentrancyGuard.sol"; // ___ ___ __ // | _ |_ | |_ _ /__ _ _. _|_ // | (_) |_) \/ | | | (/_ \_| (_) (_| |_ // / // Toby The Goat (TTG) // Website: https://tobythegoat.io // (_( // /_/'_____/) // " | | // |""""""| contract TobyTheGoat is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard { using SafeMath for uint8; using SafeMath for uint256; // total tokens uint256 public constant MAX_TOKENS = 9999; // maximum tokens for giveaways uint256 public constant MAX_GIVEAWAY_TOKENS = 200; uint256 public constant TOKEN_PRICE = 60000000000000000; //0.06ETH // enables or disables the public sale bool public isStarted = false; // keeps track of tokens minted for giveaways uint256 public countMintedGiveawayTokens = 0; // keeps track of tokens minted uint256 public countMintedTokens = 0; string private _baseTokenURI; // random nonce/seed uint256 internal nonce = 0; // used to randomize the mint uint256[MAX_TOKENS] internal tokenIdx; // Mapping owner address to token count mapping(address => uint256) private _balances; constructor(string memory baseURI) ERC721("Toby The Goat", "TTG") { setBaseURI(baseURI); } // get tokens owned by the provided address function tokensOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } // generates a random index for minting function randomIndex() internal returns (uint256) { uint256 availableTokens = MAX_TOKENS - totalSupply(); uint256 rnd = uint256(keccak256(abi.encodePacked(nonce, msg.sender, block.difficulty, block.timestamp))) % availableTokens; uint256 value = 0; if (tokenIdx[rnd] != 0) { value = tokenIdx[rnd]; } else { value = rnd; } if (tokenIdx[availableTokens - 1] == 0) { tokenIdx[rnd] = availableTokens - 1; } else { tokenIdx[rnd] = tokenIdx[availableTokens - 1]; } nonce++; return value.add(1); } // public method for minting tokens function mint(uint256 numTokens) external payable nonReentrant { // check if the public sale is active require(isStarted, "Minting is paused or has not started"); // check if there are tokens available require(totalSupply() < MAX_TOKENS, "All tokens have been minted"); // check if the number of requested tokens is between the limits require(numTokens > 0 && numTokens <= 10, "The number of tokens must be between 1 and 10"); // check if the number of requested tokens does not surpass the limit of tokens require(totalSupply().add(numTokens) <= MAX_TOKENS.sub(MAX_GIVEAWAY_TOKENS.sub(countMintedGiveawayTokens)), "The number of requested tokens would surpass the limit of tokens"); // check if enough eth has been provided for the minting require(msg.value >= TOKEN_PRICE.mul(numTokens), "Not enough ETH for transaction"); // mint the tokens with random indexes for (uint256 i = 0; i < numTokens; i++) { countMintedTokens++; mintWithRandomTokenId(msg.sender); } } // method used for minting tokens for giveaways function mintGiveaway(uint256 numTokens) public onlyOwner { require(countMintedGiveawayTokens.add(numTokens) <= MAX_GIVEAWAY_TOKENS, "200 tokens max"); for (uint256 i = 0; i < numTokens; i++) { countMintedGiveawayTokens++; mintWithRandomTokenId(owner()); } } // mints tokens with random indexes function mintWithRandomTokenId(address _to) private { uint256 _tokenID = randomIndex(); _safeMint(_to, _tokenID); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } // returns the URI of a token that is minted function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { string memory _tokenURI = super.tokenURI(tokenId); return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : ""; } function _setBaseURI(string memory baseURI) internal virtual { _baseTokenURI = baseURI; } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } // Administrative zone function setBaseURI(string memory baseURI) public onlyOwner { _setBaseURI(baseURI); } function startMint() public onlyOwner { isStarted = true; } function pauseMint() public onlyOwner { isStarted = false; } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (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); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.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 overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.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(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.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 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_GIVEAWAY_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"countMintedGiveawayTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"countMintedTokens","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mintGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMint","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052600c805460ff191690556000600d819055600e8190556010553480156200002a57600080fd5b5060405162002903380380620029038339810160408190526200004d916200027f565b604080518082018252600d81526c151bd89e48151a194811dbd85d609a1b60208083019182528351808501909452600384526254544760e81b9084015281519192916200009d91600091620001c3565b508051620000b3906001906020840190620001c3565b505050620000d0620000ca620000e760201b60201c565b620000eb565b6001600b55620000e0816200013d565b5062000398565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200019c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b620001a781620001aa565b50565b8051620001bf90600f906020840190620001c3565b5050565b828054620001d1906200035b565b90600052602060002090601f016020900481019282620001f5576000855562000240565b82601f106200021057805160ff191683800117855562000240565b8280016001018555821562000240579182015b828111156200024057825182559160200191906001019062000223565b506200024e92915062000252565b5090565b5b808211156200024e576000815560010162000253565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200029357600080fd5b82516001600160401b0380821115620002ab57600080fd5b818501915085601f830112620002c057600080fd5b815181811115620002d557620002d562000269565b604051601f8201601f19908116603f0116810190838211818310171562000300576200030062000269565b8160405282815288868487010111156200031957600080fd5b600093505b828410156200033d57848401860151818501870152928501926200031e565b828411156200034f5760008684830101525b98975050505050505050565b600181811c908216806200037057607f821691505b602082108114156200039257634e487b7160e01b600052602260045260246000fd5b50919050565b61255b80620003a86000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063d2d8cb6711610064578063d2d8cb671461052d578063e985e9c514610548578063f2fde38b14610591578063f47c84c5146105b157600080fd5b8063b88d4fde146104c2578063c87b56dd146104e2578063cd85cdb514610502578063d12e9c3d1461051757600080fd5b80638da5cb5b116100d15780638da5cb5b1461045c57806395d89b411461047a578063a0712d681461048f578063a22cb465146104a257600080fd5b8063715018a6146103e457806376f0a746146103f95780637af66cec1461040f5780638462151c1461042f57600080fd5b80633ccfd60b1161017a57806355f804b31161014957806355f804b31461036f5780636352211e1461038f57806367f21064146103af57806370a08231146103c457600080fd5b80633ccfd60b1461030d57806342842e0e146103155780634f6ccce714610335578063544736e61461035557600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632be09561146102d85780632f745c59146102ed57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611f3b565b6105c7565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105d8565b6040516102149190611fb0565b34801561024b57600080fd5b5061025f61025a366004611fc3565b61066a565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611ff8565b610704565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004612022565b61081a565b3480156102e457600080fd5b5061029761084b565b3480156102f957600080fd5b506102aa610308366004611ff8565b610884565b61029761091a565b34801561032157600080fd5b50610297610330366004612022565b61096a565b34801561034157600080fd5b506102aa610350366004611fc3565b610985565b34801561036157600080fd5b50600c546102089060ff1681565b34801561037b57600080fd5b5061029761038a3660046120ea565b610a18565b34801561039b57600080fd5b5061025f6103aa366004611fc3565b610a4e565b3480156103bb57600080fd5b506102aa60c881565b3480156103d057600080fd5b506102aa6103df366004612133565b610ac5565b3480156103f057600080fd5b50610297610b4c565b34801561040557600080fd5b506102aa600d5481565b34801561041b57600080fd5b5061029761042a366004611fc3565b610b80565b34801561043b57600080fd5b5061044f61044a366004612133565b610c49565b604051610214919061214e565b34801561046857600080fd5b50600a546001600160a01b031661025f565b34801561048657600080fd5b50610232610d08565b61029761049d366004611fc3565b610d17565b3480156104ae57600080fd5b506102976104bd366004612192565b610fe8565b3480156104ce57600080fd5b506102976104dd3660046121ce565b6110ad565b3480156104ee57600080fd5b506102326104fd366004611fc3565b6110e5565b34801561050e57600080fd5b5061029761113a565b34801561052357600080fd5b506102aa600e5481565b34801561053957600080fd5b506102aa66d529ae9e86000081565b34801561055457600080fd5b5061020861056336600461224a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059d57600080fd5b506102976105ac366004612133565b611170565b3480156105bd57600080fd5b506102aa61270f81565b60006105d282611208565b92915050565b6060600080546105e79061227d565b80601f01602080910402602001604051908101604052809291908181526020018280546106139061227d565b80156106605780601f1061063557610100808354040283529160200191610660565b820191906000526020600020905b81548152906001019060200180831161064357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106e85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061070f82610a4e565b9050806001600160a01b0316836001600160a01b0316141561077d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106df565b336001600160a01b038216148061079957506107998133610563565b61080b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106df565b610815838361122d565b505050565b610824338261129b565b6108405760405162461bcd60e51b81526004016106df906122b2565b610815838383611392565b600a546001600160a01b031633146108755760405162461bcd60e51b81526004016106df90612303565b600c805460ff19166001179055565b600061088f83610ac5565b82106108f15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106df565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109445760405162461bcd60e51b81526004016106df90612303565b60405133904780156108fc02916000818181858888f1935050505061096857600080fd5b565b610815838383604051806020016040528060008152506110ad565b600061099060085490565b82106109f35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106df565b60088281548110610a0657610a06612338565b90600052602060002001549050919050565b600a546001600160a01b03163314610a425760405162461bcd60e51b81526004016106df90612303565b610a4b8161153d565b50565b6000818152600260205260408120546001600160a01b0316806105d25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106df565b60006001600160a01b038216610b305760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106df565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b765760405162461bcd60e51b81526004016106df90612303565b6109686000611550565b600a546001600160a01b03163314610baa5760405162461bcd60e51b81526004016106df90612303565b600d5460c890610bba90836115a2565b1115610bf95760405162461bcd60e51b815260206004820152600e60248201526d064606040e8ded6cadce640dac2f60931b60448201526064016106df565b60005b81811015610c4557600d8054906000610c1483612364565b9190505550610c33610c2e600a546001600160a01b031690565b6115ae565b80610c3d81612364565b915050610bfc565b5050565b60606000610c5683610ac5565b905080610c775760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610c9257610c9261205e565b604051908082528060200260200182016040528015610cbb578160200160208202803683370190505b50905060005b82811015610c6f57610cd38582610884565b828281518110610ce557610ce5612338565b602090810291909101015280610cfa81612364565b915050610cc1565b50919050565b6060600180546105e79061227d565b6002600b541415610d6a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106df565b6002600b55600c5460ff16610dcd5760405162461bcd60e51b8152602060048201526024808201527f4d696e74696e6720697320706175736564206f7220686173206e6f74207374616044820152631c9d195960e21b60648201526084016106df565b61270f610dd960085490565b10610e265760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016106df565b600081118015610e375750600a8111155b610e995760405162461bcd60e51b815260206004820152602d60248201527f546865206e756d626572206f6620746f6b656e73206d7573742062652062657460448201526c07765656e203120616e6420313609c1b60648201526084016106df565b610ebb610eb2600d5460c86115c490919063ffffffff16565b61270f906115c4565b610ece82610ec860085490565b906115a2565b1115610f44576040805162461bcd60e51b81526020600482015260248101919091527f546865206e756d626572206f662072657175657374656420746f6b656e73207760448201527f6f756c64207375727061737320746865206c696d6974206f6620746f6b656e7360648201526084016106df565b610f5566d529ae9e860000826115d0565b341015610fa45760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e000060448201526064016106df565b60005b81811015610fdf57600e8054906000610fbf83612364565b9190505550610fcd336115ae565b80610fd781612364565b915050610fa7565b50506001600b55565b6001600160a01b0382163314156110415760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106df565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110b7338361129b565b6110d35760405162461bcd60e51b81526004016106df906122b2565b6110df848484846115dc565b50505050565b606060006110f28361160f565b905060008151116111125760405180602001604052806000815250611133565b80604051602001611123919061237f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146111645760405162461bcd60e51b81526004016106df90612303565b600c805460ff19169055565b600a546001600160a01b0316331461119a5760405162461bcd60e51b81526004016106df90612303565b6001600160a01b0381166111ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106df565b610a4b81611550565b60006001600160e01b0319821663780e9d6360e01b14806105d257506105d2826116d3565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061126282610a4e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113145760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106df565b600061131f83610a4e565b9050806001600160a01b0316846001600160a01b0316148061135a5750836001600160a01b031661134f8461066a565b6001600160a01b0316145b8061138a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113a582610a4e565b6001600160a01b03161461140d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106df565b6001600160a01b03821661146f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106df565b61147a838383611723565b61148560008261122d565b6001600160a01b03831660009081526003602052604081208054600192906114ae9084906123a8565b90915550506001600160a01b03821660009081526003602052604081208054600192906114dc9084906123bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8051610c4590600f906020840190611e8c565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061113382846123bf565b60006115b861172e565b9050610c45828261188f565b600061113382846123a8565b600061113382846123d7565b6115e7848484611392565b6115f3848484846118a9565b6110df5760405162461bcd60e51b81526004016106df906123f6565b6000818152600260205260409020546060906001600160a01b031661168e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106df565b60006116986119b6565b905060008151116116b85760405180602001604052806000815250611133565b806116c2846119c5565b604051602001611123929190612448565b60006001600160e01b031982166380ac58cd60e01b148061170457506001600160e01b03198216635b5e139f60e01b145b806105d257506301ffc9a760e01b6001600160e01b03198316146105d2565b610815838383611ac3565b60008061173a60085490565b6117469061270f6123a8565b6010546040805160208101929092526bffffffffffffffffffffffff193360601b169082015244605482015242607482015290915060009082906094016040516020818303038152906040528051906020012060001c6117a6919061248d565b9050600060118261270f81106117be576117be612338565b0154156117e25760118261270f81106117d9576117d9612338565b015490506117e5565b50805b60116117f26001856123a8565b61270f811061180357611803612338565b015461182f576118146001846123a8565b60118361270f811061182857611828612338565b0155611866565b601161183c6001856123a8565b61270f811061184d5761184d612338565b015460118361270f811061186357611863612338565b01555b6010805490600061187683612364565b9091555061188790508160016115a2565b935050505090565b610c45828260405180602001604052806000815250611b7b565b60006001600160a01b0384163b156119ab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118ed9033908990889088906004016124a1565b602060405180830381600087803b15801561190757600080fd5b505af1925050508015611937575060408051601f3d908101601f19168201909252611934918101906124de565b60015b611991573d808015611965576040519150601f19603f3d011682016040523d82523d6000602084013e61196a565b606091505b5080516119895760405162461bcd60e51b81526004016106df906123f6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061138a565b506001949350505050565b6060600f80546105e79061227d565b6060816119e95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a1357806119fd81612364565b9150611a0c9050600a836124fb565b91506119ed565b60008167ffffffffffffffff811115611a2e57611a2e61205e565b6040519080825280601f01601f191660200182016040528015611a58576020820181803683370190505b5090505b841561138a57611a6d6001836123a8565b9150611a7a600a8661248d565b611a859060306123bf565b60f81b818381518110611a9a57611a9a612338565b60200101906001600160f81b031916908160001a905350611abc600a866124fb565b9450611a5c565b6001600160a01b038316611b1e57611b1981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b41565b816001600160a01b0316836001600160a01b031614611b4157611b418382611bae565b6001600160a01b038216611b585761081581611c4b565b826001600160a01b0316826001600160a01b031614610815576108158282611cfa565b611b858383611d3e565b611b9260008484846118a9565b6108155760405162461bcd60e51b81526004016106df906123f6565b60006001611bbb84610ac5565b611bc591906123a8565b600083815260076020526040902054909150808214611c18576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c5d906001906123a8565b60008381526009602052604081205460088054939450909284908110611c8557611c85612338565b906000526020600020015490508060088381548110611ca657611ca6612338565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cde57611cde61250f565b6001900381819060005260206000200160009055905550505050565b6000611d0583610ac5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d945760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106df565b6000818152600260205260409020546001600160a01b031615611df95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106df565b611e0560008383611723565b6001600160a01b0382166000908152600360205260408120805460019290611e2e9084906123bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e989061227d565b90600052602060002090601f016020900481019282611eba5760008555611f00565b82601f10611ed357805160ff1916838001178555611f00565b82800160010185558215611f00579182015b82811115611f00578251825591602001919060010190611ee5565b50611f0c929150611f10565b5090565b5b80821115611f0c5760008155600101611f11565b6001600160e01b031981168114610a4b57600080fd5b600060208284031215611f4d57600080fd5b813561113381611f25565b60005b83811015611f73578181015183820152602001611f5b565b838111156110df5750506000910152565b60008151808452611f9c816020860160208601611f58565b601f01601f19169290920160200192915050565b6020815260006111336020830184611f84565b600060208284031215611fd557600080fd5b5035919050565b80356001600160a01b0381168114611ff357600080fd5b919050565b6000806040838503121561200b57600080fd5b61201483611fdc565b946020939093013593505050565b60008060006060848603121561203757600080fd5b61204084611fdc565b925061204e60208501611fdc565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561208f5761208f61205e565b604051601f8501601f19908116603f011681019082821181831017156120b7576120b761205e565b816040528093508581528686860111156120d057600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120fc57600080fd5b813567ffffffffffffffff81111561211357600080fd5b8201601f8101841361212457600080fd5b61138a84823560208401612074565b60006020828403121561214557600080fd5b61113382611fdc565b6020808252825182820181905260009190848201906040850190845b818110156121865783518352928401929184019160010161216a565b50909695505050505050565b600080604083850312156121a557600080fd5b6121ae83611fdc565b9150602083013580151581146121c357600080fd5b809150509250929050565b600080600080608085870312156121e457600080fd5b6121ed85611fdc565b93506121fb60208601611fdc565b925060408501359150606085013567ffffffffffffffff81111561221e57600080fd5b8501601f8101871361222f57600080fd5b61223e87823560208401612074565b91505092959194509250565b6000806040838503121561225d57600080fd5b61226683611fdc565b915061227460208401611fdc565b90509250929050565b600181811c9082168061229157607f821691505b60208210811415610d0257634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156123785761237861234e565b5060010190565b60008251612391818460208701611f58565b64173539b7b760d91b920191825250600501919050565b6000828210156123ba576123ba61234e565b500390565b600082198211156123d2576123d261234e565b500190565b60008160001904831182151516156123f1576123f161234e565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000835161245a818460208801611f58565b83519083019061246e818360208801611f58565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b60008261249c5761249c612477565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124d490830184611f84565b9695505050505050565b6000602082840312156124f057600080fd5b815161113381611f25565b60008261250a5761250a612477565b500490565b634e487b7160e01b600052603160045260246000fdfea26469706673582212207df6bc12aa8a04bb372b5cc7497fa096a6a5934d38a50bd21dd86cab269f1f1e64736f6c634300080900330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f746f6279746865676f61742e696f2f6d657461646174612f
Deployed Bytecode
0x6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063d2d8cb6711610064578063d2d8cb671461052d578063e985e9c514610548578063f2fde38b14610591578063f47c84c5146105b157600080fd5b8063b88d4fde146104c2578063c87b56dd146104e2578063cd85cdb514610502578063d12e9c3d1461051757600080fd5b80638da5cb5b116100d15780638da5cb5b1461045c57806395d89b411461047a578063a0712d681461048f578063a22cb465146104a257600080fd5b8063715018a6146103e457806376f0a746146103f95780637af66cec1461040f5780638462151c1461042f57600080fd5b80633ccfd60b1161017a57806355f804b31161014957806355f804b31461036f5780636352211e1461038f57806367f21064146103af57806370a08231146103c457600080fd5b80633ccfd60b1461030d57806342842e0e146103155780634f6ccce714610335578063544736e61461035557600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632be09561146102d85780632f745c59146102ed57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611f3b565b6105c7565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105d8565b6040516102149190611fb0565b34801561024b57600080fd5b5061025f61025a366004611fc3565b61066a565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611ff8565b610704565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004612022565b61081a565b3480156102e457600080fd5b5061029761084b565b3480156102f957600080fd5b506102aa610308366004611ff8565b610884565b61029761091a565b34801561032157600080fd5b50610297610330366004612022565b61096a565b34801561034157600080fd5b506102aa610350366004611fc3565b610985565b34801561036157600080fd5b50600c546102089060ff1681565b34801561037b57600080fd5b5061029761038a3660046120ea565b610a18565b34801561039b57600080fd5b5061025f6103aa366004611fc3565b610a4e565b3480156103bb57600080fd5b506102aa60c881565b3480156103d057600080fd5b506102aa6103df366004612133565b610ac5565b3480156103f057600080fd5b50610297610b4c565b34801561040557600080fd5b506102aa600d5481565b34801561041b57600080fd5b5061029761042a366004611fc3565b610b80565b34801561043b57600080fd5b5061044f61044a366004612133565b610c49565b604051610214919061214e565b34801561046857600080fd5b50600a546001600160a01b031661025f565b34801561048657600080fd5b50610232610d08565b61029761049d366004611fc3565b610d17565b3480156104ae57600080fd5b506102976104bd366004612192565b610fe8565b3480156104ce57600080fd5b506102976104dd3660046121ce565b6110ad565b3480156104ee57600080fd5b506102326104fd366004611fc3565b6110e5565b34801561050e57600080fd5b5061029761113a565b34801561052357600080fd5b506102aa600e5481565b34801561053957600080fd5b506102aa66d529ae9e86000081565b34801561055457600080fd5b5061020861056336600461224a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059d57600080fd5b506102976105ac366004612133565b611170565b3480156105bd57600080fd5b506102aa61270f81565b60006105d282611208565b92915050565b6060600080546105e79061227d565b80601f01602080910402602001604051908101604052809291908181526020018280546106139061227d565b80156106605780601f1061063557610100808354040283529160200191610660565b820191906000526020600020905b81548152906001019060200180831161064357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106e85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061070f82610a4e565b9050806001600160a01b0316836001600160a01b0316141561077d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106df565b336001600160a01b038216148061079957506107998133610563565b61080b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106df565b610815838361122d565b505050565b610824338261129b565b6108405760405162461bcd60e51b81526004016106df906122b2565b610815838383611392565b600a546001600160a01b031633146108755760405162461bcd60e51b81526004016106df90612303565b600c805460ff19166001179055565b600061088f83610ac5565b82106108f15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106df565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109445760405162461bcd60e51b81526004016106df90612303565b60405133904780156108fc02916000818181858888f1935050505061096857600080fd5b565b610815838383604051806020016040528060008152506110ad565b600061099060085490565b82106109f35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106df565b60088281548110610a0657610a06612338565b90600052602060002001549050919050565b600a546001600160a01b03163314610a425760405162461bcd60e51b81526004016106df90612303565b610a4b8161153d565b50565b6000818152600260205260408120546001600160a01b0316806105d25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106df565b60006001600160a01b038216610b305760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106df565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b765760405162461bcd60e51b81526004016106df90612303565b6109686000611550565b600a546001600160a01b03163314610baa5760405162461bcd60e51b81526004016106df90612303565b600d5460c890610bba90836115a2565b1115610bf95760405162461bcd60e51b815260206004820152600e60248201526d064606040e8ded6cadce640dac2f60931b60448201526064016106df565b60005b81811015610c4557600d8054906000610c1483612364565b9190505550610c33610c2e600a546001600160a01b031690565b6115ae565b80610c3d81612364565b915050610bfc565b5050565b60606000610c5683610ac5565b905080610c775760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610c9257610c9261205e565b604051908082528060200260200182016040528015610cbb578160200160208202803683370190505b50905060005b82811015610c6f57610cd38582610884565b828281518110610ce557610ce5612338565b602090810291909101015280610cfa81612364565b915050610cc1565b50919050565b6060600180546105e79061227d565b6002600b541415610d6a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106df565b6002600b55600c5460ff16610dcd5760405162461bcd60e51b8152602060048201526024808201527f4d696e74696e6720697320706175736564206f7220686173206e6f74207374616044820152631c9d195960e21b60648201526084016106df565b61270f610dd960085490565b10610e265760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016106df565b600081118015610e375750600a8111155b610e995760405162461bcd60e51b815260206004820152602d60248201527f546865206e756d626572206f6620746f6b656e73206d7573742062652062657460448201526c07765656e203120616e6420313609c1b60648201526084016106df565b610ebb610eb2600d5460c86115c490919063ffffffff16565b61270f906115c4565b610ece82610ec860085490565b906115a2565b1115610f44576040805162461bcd60e51b81526020600482015260248101919091527f546865206e756d626572206f662072657175657374656420746f6b656e73207760448201527f6f756c64207375727061737320746865206c696d6974206f6620746f6b656e7360648201526084016106df565b610f5566d529ae9e860000826115d0565b341015610fa45760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e000060448201526064016106df565b60005b81811015610fdf57600e8054906000610fbf83612364565b9190505550610fcd336115ae565b80610fd781612364565b915050610fa7565b50506001600b55565b6001600160a01b0382163314156110415760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106df565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110b7338361129b565b6110d35760405162461bcd60e51b81526004016106df906122b2565b6110df848484846115dc565b50505050565b606060006110f28361160f565b905060008151116111125760405180602001604052806000815250611133565b80604051602001611123919061237f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146111645760405162461bcd60e51b81526004016106df90612303565b600c805460ff19169055565b600a546001600160a01b0316331461119a5760405162461bcd60e51b81526004016106df90612303565b6001600160a01b0381166111ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106df565b610a4b81611550565b60006001600160e01b0319821663780e9d6360e01b14806105d257506105d2826116d3565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061126282610a4e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113145760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106df565b600061131f83610a4e565b9050806001600160a01b0316846001600160a01b0316148061135a5750836001600160a01b031661134f8461066a565b6001600160a01b0316145b8061138a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113a582610a4e565b6001600160a01b03161461140d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106df565b6001600160a01b03821661146f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106df565b61147a838383611723565b61148560008261122d565b6001600160a01b03831660009081526003602052604081208054600192906114ae9084906123a8565b90915550506001600160a01b03821660009081526003602052604081208054600192906114dc9084906123bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8051610c4590600f906020840190611e8c565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061113382846123bf565b60006115b861172e565b9050610c45828261188f565b600061113382846123a8565b600061113382846123d7565b6115e7848484611392565b6115f3848484846118a9565b6110df5760405162461bcd60e51b81526004016106df906123f6565b6000818152600260205260409020546060906001600160a01b031661168e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106df565b60006116986119b6565b905060008151116116b85760405180602001604052806000815250611133565b806116c2846119c5565b604051602001611123929190612448565b60006001600160e01b031982166380ac58cd60e01b148061170457506001600160e01b03198216635b5e139f60e01b145b806105d257506301ffc9a760e01b6001600160e01b03198316146105d2565b610815838383611ac3565b60008061173a60085490565b6117469061270f6123a8565b6010546040805160208101929092526bffffffffffffffffffffffff193360601b169082015244605482015242607482015290915060009082906094016040516020818303038152906040528051906020012060001c6117a6919061248d565b9050600060118261270f81106117be576117be612338565b0154156117e25760118261270f81106117d9576117d9612338565b015490506117e5565b50805b60116117f26001856123a8565b61270f811061180357611803612338565b015461182f576118146001846123a8565b60118361270f811061182857611828612338565b0155611866565b601161183c6001856123a8565b61270f811061184d5761184d612338565b015460118361270f811061186357611863612338565b01555b6010805490600061187683612364565b9091555061188790508160016115a2565b935050505090565b610c45828260405180602001604052806000815250611b7b565b60006001600160a01b0384163b156119ab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118ed9033908990889088906004016124a1565b602060405180830381600087803b15801561190757600080fd5b505af1925050508015611937575060408051601f3d908101601f19168201909252611934918101906124de565b60015b611991573d808015611965576040519150601f19603f3d011682016040523d82523d6000602084013e61196a565b606091505b5080516119895760405162461bcd60e51b81526004016106df906123f6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061138a565b506001949350505050565b6060600f80546105e79061227d565b6060816119e95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a1357806119fd81612364565b9150611a0c9050600a836124fb565b91506119ed565b60008167ffffffffffffffff811115611a2e57611a2e61205e565b6040519080825280601f01601f191660200182016040528015611a58576020820181803683370190505b5090505b841561138a57611a6d6001836123a8565b9150611a7a600a8661248d565b611a859060306123bf565b60f81b818381518110611a9a57611a9a612338565b60200101906001600160f81b031916908160001a905350611abc600a866124fb565b9450611a5c565b6001600160a01b038316611b1e57611b1981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b41565b816001600160a01b0316836001600160a01b031614611b4157611b418382611bae565b6001600160a01b038216611b585761081581611c4b565b826001600160a01b0316826001600160a01b031614610815576108158282611cfa565b611b858383611d3e565b611b9260008484846118a9565b6108155760405162461bcd60e51b81526004016106df906123f6565b60006001611bbb84610ac5565b611bc591906123a8565b600083815260076020526040902054909150808214611c18576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c5d906001906123a8565b60008381526009602052604081205460088054939450909284908110611c8557611c85612338565b906000526020600020015490508060088381548110611ca657611ca6612338565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cde57611cde61250f565b6001900381819060005260206000200160009055905550505050565b6000611d0583610ac5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d945760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106df565b6000818152600260205260409020546001600160a01b031615611df95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106df565b611e0560008383611723565b6001600160a01b0382166000908152600360205260408120805460019290611e2e9084906123bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e989061227d565b90600052602060002090601f016020900481019282611eba5760008555611f00565b82601f10611ed357805160ff1916838001178555611f00565b82800160010185558215611f00579182015b82811115611f00578251825591602001919060010190611ee5565b50611f0c929150611f10565b5090565b5b80821115611f0c5760008155600101611f11565b6001600160e01b031981168114610a4b57600080fd5b600060208284031215611f4d57600080fd5b813561113381611f25565b60005b83811015611f73578181015183820152602001611f5b565b838111156110df5750506000910152565b60008151808452611f9c816020860160208601611f58565b601f01601f19169290920160200192915050565b6020815260006111336020830184611f84565b600060208284031215611fd557600080fd5b5035919050565b80356001600160a01b0381168114611ff357600080fd5b919050565b6000806040838503121561200b57600080fd5b61201483611fdc565b946020939093013593505050565b60008060006060848603121561203757600080fd5b61204084611fdc565b925061204e60208501611fdc565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561208f5761208f61205e565b604051601f8501601f19908116603f011681019082821181831017156120b7576120b761205e565b816040528093508581528686860111156120d057600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120fc57600080fd5b813567ffffffffffffffff81111561211357600080fd5b8201601f8101841361212457600080fd5b61138a84823560208401612074565b60006020828403121561214557600080fd5b61113382611fdc565b6020808252825182820181905260009190848201906040850190845b818110156121865783518352928401929184019160010161216a565b50909695505050505050565b600080604083850312156121a557600080fd5b6121ae83611fdc565b9150602083013580151581146121c357600080fd5b809150509250929050565b600080600080608085870312156121e457600080fd5b6121ed85611fdc565b93506121fb60208601611fdc565b925060408501359150606085013567ffffffffffffffff81111561221e57600080fd5b8501601f8101871361222f57600080fd5b61223e87823560208401612074565b91505092959194509250565b6000806040838503121561225d57600080fd5b61226683611fdc565b915061227460208401611fdc565b90509250929050565b600181811c9082168061229157607f821691505b60208210811415610d0257634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156123785761237861234e565b5060010190565b60008251612391818460208701611f58565b64173539b7b760d91b920191825250600501919050565b6000828210156123ba576123ba61234e565b500390565b600082198211156123d2576123d261234e565b500190565b60008160001904831182151516156123f1576123f161234e565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000835161245a818460208801611f58565b83519083019061246e818360208801611f58565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b60008261249c5761249c612477565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124d490830184611f84565b9695505050505050565b6000602082840312156124f057600080fd5b815161113381611f25565b60008261250a5761250a612477565b500490565b634e487b7160e01b600052603160045260246000fdfea26469706673582212207df6bc12aa8a04bb372b5cc7497fa096a6a5934d38a50bd21dd86cab269f1f1e64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f746f6279746865676f61742e696f2f6d657461646174612f
-----Decoded View---------------
Arg [0] : baseURI (string): https://tobythegoat.io/metadata/
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [2] : 68747470733a2f2f746f6279746865676f61742e696f2f6d657461646174612f
Deployed Bytecode Sourcemap
507:4999:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4440:165;;;;;;;;;;-1:-1:-1;4440:165:14;;;;;:::i;:::-;;:::i;:::-;;;565:14:15;;558:22;540:41;;528:2;513:18;4440:165:14;;;;;;;;2349:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:15;;;1674:51;;1662:2;1647:18;3860:217:3;1528:203:15;3398:401:3;;;;;;;;;;-1:-1:-1;3398:401:3;;;;;:::i;:::-;;:::i;:::-;;1534:111:4;;;;;;;;;;-1:-1:-1;1621:10:4;:17;1534:111;;;2319:25:15;;;2307:2;2292:18;1534:111:4;2173:177:15;4724:330:3;;;;;;;;;;-1:-1:-1;4724:330:3;;;;;:::i;:::-;;:::i;5242:67:14:-;;;;;;;;;;;;;:::i;1210:253:4:-;;;;;;;;;;-1:-1:-1;1210:253:4;;;;;:::i;:::-;;:::i;5389:114:14:-;;;:::i;5120:179:3:-;;;;;;;;;;-1:-1:-1;5120:179:3;;;;;:::i;:::-;;:::i;1717:230:4:-;;;;;;;;;;-1:-1:-1;1717:230:4;;;;;:::i;:::-;;:::i;913:29:14:-;;;;;;;;;;-1:-1:-1;913:29:14;;;;;;;;5143:93;;;;;;;;;;-1:-1:-1;5143:93:14;;;;;:::i;:::-;;:::i;2052:235:3:-;;;;;;;;;;-1:-1:-1;2052:235:3;;;;;:::i;:::-;;:::i;747:49:14:-;;;;;;;;;;;;793:3;747:49;;1790:205:3;;;;;;;;;;-1:-1:-1;1790:205:3;;;;;:::i;:::-;;:::i;1607:101:10:-;;;;;;;;;;;;;:::i;996:44:14:-;;;;;;;;;;;;;;;;3790:290;;;;;;;;;;-1:-1:-1;3790:290:14;;;;;:::i;:::-;;:::i;1530:472::-;;;;;;;;;;-1:-1:-1;1530:472:14;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;975:85:10:-;;;;;;;;;;-1:-1:-1;1047:6:10;;-1:-1:-1;;;;;1047:6:10;975:85;;2511:102:3;;;;;;;;;;;;;:::i;2676:1057:14:-;;;;;;:::i;:::-;;:::i;4144:290:3:-;;;;;;;;;;-1:-1:-1;4144:290:3;;;;;:::i;:::-;;:::i;5365:320::-;;;;;;;;;;-1:-1:-1;5365:320:3;;;;;:::i;:::-;;:::i;4659:243:14:-;;;;;;;;;;-1:-1:-1;4659:243:14;;;;;:::i;:::-;;:::i;5315:68::-;;;;;;;;;;;;;:::i;1080:36::-;;;;;;;;;;;;;;;;801:55;;;;;;;;;;;;839:17;801:55;;4500:162:3;;;;;;;;;;-1:-1:-1;4500:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;4620:25:3;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4500:162;1857:198:10;;;;;;;;;;-1:-1:-1;1857:198:10;;;;;:::i;:::-;;:::i;666:41:14:-;;;;;;;;;;;;703:4;666:41;;4440:165;4543:4;4563:36;4587:11;4563:23;:36::i;:::-;4556:43;4440:165;-1:-1:-1;;4440:165:14:o;2349:98:3:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:3;3955:73;;;;-1:-1:-1;;;3955:73:3;;6617:2:15;3955:73:3;;;6599:21:15;6656:2;6636:18;;;6629:30;6695:34;6675:18;;;6668:62;-1:-1:-1;;;6746:18:15;;;6739:42;6798:19;;3955:73:3;;;;;;;;;-1:-1:-1;4046:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:3;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:3;:2;-1:-1:-1;;;;;3535:11:3;;;3527:57;;;;-1:-1:-1;;;3527:57:3;;7030:2:15;3527:57:3;;;7012:21:15;7069:2;7049:18;;;7042:30;7108:34;7088:18;;;7081:62;-1:-1:-1;;;7159:18:15;;;7152:31;7200:19;;3527:57:3;6828:397:15;3527:57:3;682:10:1;-1:-1:-1;;;;;3616:21:3;;;;:62;;-1:-1:-1;3641:37:3;3658:5;682:10:1;4500:162:3;:::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:3;;7432:2:15;3595:165:3;;;7414:21:15;7471:2;7451:18;;;7444:30;7510:34;7490:18;;;7483:62;7581:26;7561:18;;;7554:54;7625:19;;3595:165:3;7230:420:15;3595:165:3;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;4724:330::-;4913:41;682:10:1;4946:7:3;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:3;;;;;;;:::i;:::-;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;5242:67:14:-;1047:6:10;;-1:-1:-1;;;;;1047:6:10;682:10:1;1187:23:10;1179:68;;;;-1:-1:-1;;;1179:68:10;;;;;;;:::i;:::-;5287:9:14::1;:16:::0;;-1:-1:-1;;5287:16:14::1;5299:4;5287:16;::::0;;5242:67::o;1210:253:4:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:4;;8636:2:15;1326:87:4;;;8618:21:15;8675:2;8655:18;;;8648:30;8714:34;8694:18;;;8687:62;-1:-1:-1;;;8765:18:15;;;8758:41;8816:19;;1326:87:4;8434:407:15;1326:87:4;-1:-1:-1;;;;;;1430:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;5389:114:14:-;1047:6:10;;-1:-1:-1;;;;;1047:6:10;682:10:1;1187:23:10;1179:68;;;;-1:-1:-1;;;1179:68:10;;;;;;;:::i;:::-;5449:47:14::1;::::0;5457:10:::1;::::0;5474:21:::1;5449:47:::0;::::1;;;::::0;::::1;::::0;;;5474:21;5457:10;5449:47;::::1;;;;;;5441:56;;;::::0;::::1;;5389:114::o:0;5120:179:3:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;1717:230:4:-;1792:7;1827:30;1621:10;:17;;1534:111;1827:30;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:4;;9048:2:15;1811:95:4;;;9030:21:15;9087:2;9067:18;;;9060:30;9126:34;9106:18;;;9099:62;-1:-1:-1;;;9177:18:15;;;9170:42;9229:19;;1811:95:4;8846:408:15;1811:95:4;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;1916:24;;1717:230;;;:::o;5143:93:14:-;1047:6:10;;-1:-1:-1;;;;;1047:6:10;682:10:1;1187:23:10;1179:68;;;;-1:-1:-1;;;1179:68:10;;;;;;;:::i;:::-;5210:20:14::1;5222:7;5210:11;:20::i;:::-;5143:93:::0;:::o;2052:235:3:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:3;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:3;;9593:2:15;2185:73:3;;;9575:21:15;9632:2;9612:18;;;9605:30;9671:34;9651:18;;;9644:62;-1:-1:-1;;;9722:18:15;;;9715:39;9771:19;;2185:73:3;9391:405:15;1790:205:3;1862:7;-1:-1:-1;;;;;1889:19:3;;1881:74;;;;-1:-1:-1;;;1881:74:3;;10003:2:15;1881:74:3;;;9985:21:15;10042:2;10022:18;;;10015:30;10081:34;10061:18;;;10054:62;-1:-1:-1;;;10132:18:15;;;10125:40;10182:19;;1881:74:3;9801:406:15;1881:74:3;-1:-1:-1;;;;;;1972:16:3;;;;;:9;:16;;;;;;;1790:205::o;1607:101:10:-;1047:6;;-1:-1:-1;;;;;1047:6:10;682:10:1;1187:23:10;1179:68;;;;-1:-1:-1;;;1179:68:10;;;;;;;:::i;:::-;1671:30:::1;1698:1;1671:18;:30::i;3790:290:14:-:0;1047:6:10;;-1:-1:-1;;;;;1047:6:10;682:10:1;1187:23:10;1179:68;;;;-1:-1:-1;;;1179:68:10;;;;;;;:::i;:::-;3863:25:14::1;::::0;793:3:::1;::::0;3863:40:::1;::::0;3893:9;3863:29:::1;:40::i;:::-;:63;;3855:90;;;::::0;-1:-1:-1;;;3855:90:14;;10414:2:15;3855:90:14::1;::::0;::::1;10396:21:15::0;10453:2;10433:18;;;10426:30;-1:-1:-1;;;10472:18:15;;;10465:44;10526:18;;3855:90:14::1;10212:338:15::0;3855:90:14::1;3957:9;3952:123;3976:9;3972:1;:13;3952:123;;;4001:25;:27:::0;;;:25:::1;:27;::::0;::::1;:::i;:::-;;;;;;4037:30;4059:7;1047:6:10::0;;-1:-1:-1;;;;;1047:6:10;;975:85;4059:7:14::1;4037:21;:30::i;:::-;3987:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3952:123;;;;3790:290:::0;:::o;1530:472::-;1592:16;1617:18;1638:17;1648:6;1638:9;:17::i;:::-;1617:38;-1:-1:-1;1666:15:14;1662:335;;1731:16;;;1745:1;1731:16;;;;;;;;;;;-1:-1:-1;1724:23:14;1530:472;-1:-1:-1;;;1530:472:14:o;1662:335::-;1770:23;1810:10;1796:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1796:25:14;;1770:51;;1830:13;1852:116;1876:10;1868:5;:18;1852:116;;;1924:34;1944:6;1952:5;1924:19;:34::i;:::-;1908:6;1915:5;1908:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;1888:7;;;;:::i;:::-;;;;1852:116;;1662:335;1610:392;1530:472;;;:::o;2511:102:3:-;2567:13;2599:7;2592:14;;;;;:::i;2676:1057:14:-;1680:1:11;2261:7;;:19;;2253:63;;;;-1:-1:-1;;;2253:63:11;;11029:2:15;2253:63:11;;;11011:21:15;11068:2;11048:18;;;11041:30;11107:33;11087:18;;;11080:61;11158:18;;2253:63:11;10827:355:15;2253:63:11;1680:1;2391:7;:18;2797:9:14::1;::::0;::::1;;2789:58;;;::::0;-1:-1:-1;;;2789:58:14;;11389:2:15;2789:58:14::1;::::0;::::1;11371:21:15::0;11428:2;11408:18;;;11401:30;11467:34;11447:18;;;11440:62;-1:-1:-1;;;11518:18:15;;;11511:34;11562:19;;2789:58:14::1;11187:400:15::0;2789:58:14::1;703:4;2908:13;1621:10:4::0;:17;;1534:111;2908:13:14::1;:26;2900:66;;;::::0;-1:-1:-1;;;2900:66:14;;11794:2:15;2900:66:14::1;::::0;::::1;11776:21:15::0;11833:2;11813:18;;;11806:30;11872:29;11852:18;;;11845:57;11919:18;;2900:66:14::1;11592:351:15::0;2900:66:14::1;3065:1;3053:9;:13;:32;;;;;3083:2;3070:9;:15;;3053:32;3045:90;;;::::0;-1:-1:-1;;;3045:90:14;;12150:2:15;3045:90:14::1;::::0;::::1;12132:21:15::0;12189:2;12169:18;;;12162:30;12228:34;12208:18;;;12201:62;-1:-1:-1;;;12279:18:15;;;12272:43;12332:19;;3045:90:14::1;11948:409:15::0;3045:90:14::1;3269:66;3284:50;3308:25;;793:3;3284:23;;:50;;;;:::i;:::-;703:4;::::0;3269:14:::1;:66::i;:::-;3237:28;3255:9;3237:13;1621:10:4::0;:17;;1534:111;3237:13:14::1;:17:::0;::::1;:28::i;:::-;:98;;3229:175;;;::::0;;-1:-1:-1;;;3229:175:14;;12564:2:15;3229:175:14::1;::::0;::::1;12546:21:15::0;12583:18;;;12576:30;;;;12642:34;12622:18;;;12615:62;12713:34;12693:18;;;12686:62;12765:19;;3229:175:14::1;12362:428:15::0;3229:175:14::1;3496:26;839:17;3512:9:::0;3496:15:::1;:26::i;:::-;3483:9;:39;;3475:82;;;::::0;-1:-1:-1;;;3475:82:14;;12997:2:15;3475:82:14::1;::::0;::::1;12979:21:15::0;13036:2;13016:18;;;13009:30;13075:32;13055:18;;;13048:60;13125:18;;3475:82:14::1;12795:354:15::0;3475:82:14::1;3615:9;3610:118;3634:9;3630:1;:13;3610:118;;;3659:17;:19:::0;;;:17:::1;:19;::::0;::::1;:::i;:::-;;;;;;3687:33;3709:10;3687:21;:33::i;:::-;3645:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3610:118;;;-1:-1:-1::0;;1637:1:11;2564:7;:22;2676:1057:14:o;4144:290:3:-;-1:-1:-1;;;;;4246:24:3;;682:10:1;4246:24:3;;4238:62;;;;-1:-1:-1;;;4238:62:3;;13356:2:15;4238:62:3;;;13338:21:15;13395:2;13375:18;;;13368:30;13434:27;13414:18;;;13407:55;13479:18;;4238:62:3;13154:349:15;4238:62:3;682:10:1;4311:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4311:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:3;;;;;;;;;;4379:48;;540:41:15;;;4311:42:3;;682:10:1;4379:48:3;;513:18:15;4379:48:3;;;;;;;4144:290;;:::o;5365:320::-;5534:41;682:10:1;5567:7:3;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:3;;;;;;;:::i;:::-;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;4659:243:14:-;4732:13;4754:23;4780;4795:7;4780:14;:23::i;:::-;4754:49;;4843:1;4823:9;4817:23;:27;:79;;;;;;;;;;;;;;;;;4871:9;4854:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;4817:79;4810:86;4659:243;-1:-1:-1;;;4659:243:14:o;5315:68::-;1047:6:10;;-1:-1:-1;;;;;1047:6:10;682:10:1;1187:23:10;1179:68;;;;-1:-1:-1;;;1179:68:10;;;;;;;:::i;:::-;5360:9:14::1;:17:::0;;-1:-1:-1;;5360:17:14::1;::::0;;5315:68::o;1857:198:10:-;1047:6;;-1:-1:-1;;;;;1047:6:10;682:10:1;1187:23:10;1179:68;;;;-1:-1:-1;;;1179:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1945:22:10;::::1;1937:73;;;::::0;-1:-1:-1;;;1937:73:10;;14158:2:15;1937:73:10::1;::::0;::::1;14140:21:15::0;14197:2;14177:18;;;14170:30;14236:34;14216:18;;;14209:62;-1:-1:-1;;;14287:18:15;;;14280:36;14333:19;;1937:73:10::1;13956:402:15::0;1937:73:10::1;2020:28;2039:8;2020:18;:28::i;909:222:4:-:0;1011:4;-1:-1:-1;;;;;;1034:50:4;;-1:-1:-1;;;1034:50:4;;:90;;;1088:36;1112:11;1088:23;:36::i;11008:171:3:-;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:3;-1:-1:-1;;;;;11082:29:3;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:3;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:3;7549:73;;;;-1:-1:-1;;;7549:73:3;;14565:2:15;7549:73:3;;;14547:21:15;14604:2;14584:18;;;14577:30;14643:34;14623:18;;;14616:62;-1:-1:-1;;;14694:18:15;;;14687:42;14746:19;;7549:73:3;14363:408:15;7549:73:3;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:3;:7;-1:-1:-1;;;;;7689:16:3;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:3;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:3;;7689:51;:87;;;-1:-1:-1;;;;;;4620:25:3;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7744:32;7681:96;7440:344;-1:-1:-1;;;;7440:344:3:o;10337:560::-;10491:4;-1:-1:-1;;;;;10464:31:3;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:3;;10456:85;;;;-1:-1:-1;;;10456:85:3;;14978:2:15;10456:85:3;;;14960:21:15;15017:2;14997:18;;;14990:30;15056:34;15036:18;;;15029:62;-1:-1:-1;;;15107:18:15;;;15100:39;15156:19;;10456:85:3;14776:405:15;10456:85:3;-1:-1:-1;;;;;10559:16:3;;10551:65;;;;-1:-1:-1;;;10551:65:3;;15388:2:15;10551:65:3;;;15370:21:15;15427:2;15407:18;;;15400:30;15466:34;15446:18;;;15439:62;-1:-1:-1;;;15517:18:15;;;15510:34;15561:19;;10551:65:3;15186:400:15;10551:65:3;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:3;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:3;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:3;-1:-1:-1;;;;;10826:21:3;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;4908:97:14:-;4976:23;;;;:13;;:23;;;;;:::i;2209:187:10:-;2301:6;;;-1:-1:-1;;;;;2317:17:10;;;-1:-1:-1;;;;;;2317:17:10;;;;;;;2349:40;;2301:6;;;2317:17;2301:6;;2349:40;;2282:16;;2349:40;2272:124;2209:187;:::o;2672:96:12:-;2730:7;2756:5;2760:1;2756;:5;:::i;4125:128:14:-;4184:16;4203:13;:11;:13::i;:::-;4184:32;;4223:24;4233:3;4238:8;4223:9;:24::i;3039:96:12:-;3097:7;3123:5;3127:1;3123;:5;:::i;3382:96::-;3440:7;3466:5;3470:1;3466;:5;:::i;6547:307:3:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:3;;;;;;;:::i;2679:329::-;7222:4;7245:16;;;:7;:16;;;;;;2752:13;;-1:-1:-1;;;;;7245:16:3;2777:76;;;;-1:-1:-1;;;2777:76:3;;16648:2:15;2777:76:3;;;16630:21:15;16687:2;16667:18;;;16660:30;16726:34;16706:18;;;16699:62;-1:-1:-1;;;16777:18:15;;;16770:45;16832:19;;2777:76:3;16446:411:15;2777:76:3;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;1431:300::-;1533:4;-1:-1:-1;;;;;;1568:40:3;;-1:-1:-1;;;1568:40:3;;:104;;-1:-1:-1;;;;;;;1624:48:3;;-1:-1:-1;;;1624:48:3;1568:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:2;;;1688:36:3;763:155:2;4259:175:14;4383:45;4410:4;4416:2;4420:7;4383:26;:45::i;2051:580::-;2092:7;2108:23;2147:13;1621:10:4;:17;;1534:111;2147:13:14;2134:26;;703:4;2134:26;:::i;:::-;2216:5;;2199:70;;;;;;17550:19:15;;;;-1:-1:-1;;2223:10:14;17607:2:15;17603:15;17599:53;17585:12;;;17578:75;2235:16:14;17669:12:15;;;17662:28;2253:15:14;17706:12:15;;;17699:28;2108:52:14;;-1:-1:-1;2167:11:14;;2108:52;;17743:13:15;;2199:70:14;;;;;;;;;;;;2189:81;;;;;;2181:90;;:108;;;;:::i;:::-;2167:122;;2296:13;2326:8;2335:3;2326:13;;;;;;;:::i;:::-;;;:18;2322:96;;2363:8;2372:3;2363:13;;;;;;;:::i;:::-;;;2355:21;;2322:96;;;-1:-1:-1;2407:3:14;2322:96;2430:8;2439:19;2457:1;2439:15;:19;:::i;:::-;2430:29;;;;;;;:::i;:::-;;;2426:160;;2491:19;2509:1;2491:15;:19;:::i;:::-;2475:8;2484:3;2475:13;;;;;;;:::i;:::-;;:35;2426:160;;;2549:8;2558:19;2576:1;2558:15;:19;:::i;:::-;2549:29;;;;;;;:::i;:::-;;;2533:8;2542:3;2533:13;;;;;;;:::i;:::-;;:45;2426:160;2592:5;:7;;;:5;:7;;;:::i;:::-;;;;-1:-1:-1;2613:12:14;;-1:-1:-1;2613:5:14;2623:1;2613:9;:12::i;:::-;2606:19;;;;;2051:580;:::o;8114:108:3:-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;11732:778::-;11882:4;-1:-1:-1;;;;;11902:13:3;;1034:20:0;1080:8;11898:606:3;;11937:72;;-1:-1:-1;;;11937:72:3;;-1:-1:-1;;;;;11937:36:3;;;;;:72;;682:10:1;;11988:4:3;;11994:7;;12003:5;;11937:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:3;;;;;;;;-1:-1:-1;;11937:72:3;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12176:13:3;;12172:266;;12218:60;;-1:-1:-1;;;12218:60:3;;;;;;;:::i;12172:266::-;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;-1:-1:-1;;;;;;12059:51:3;-1:-1:-1;;;12059:51:3;;-1:-1:-1;12052:58:3;;11898:606;-1:-1:-1;12489:4:3;11732:778;;;;;;:::o;5011:100:14:-;5063:13;5092;5085:20;;;;;:::i;275:703:13:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:13;;;;;;;;;;;;-1:-1:-1;;;574:10:13;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:13;;-1:-1:-1;720:2:13;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:13;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:13;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:13;;;;;;;;-1:-1:-1;919:11:13;928:2;919:11;;:::i;:::-;;;791:150;;2543:572:4;-1:-1:-1;;;;;2742:18:4;;2738:183;;2776:40;2808:7;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161;2776:40;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:4;:4;-1:-1:-1;;;;;2837:10:4;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:4;;2930:179;;2966:45;3003:7;2966:36;:45::i;2930:179::-;3038:4;-1:-1:-1;;;;;3032:10:4;:2;-1:-1:-1;;;;;3032:10:4;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;8443:311:3:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;-1:-1:-1;;;8596:151:3;;;;;;;:::i;4599:970:4:-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:4;;;5069:323;;-1:-1:-1;;;;;5139:18:4;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:4;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:4;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:4;;6106:46;;6551:26;;;;;;:::i;:::-;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:4:o;9076:372:3:-;-1:-1:-1;;;;;9155:16:3;;9147:61;;;;-1:-1:-1;;;9147:61:3;;19223:2:15;9147:61:3;;;19205:21:15;;;19242:18;;;19235:30;19301:34;19281:18;;;19274:62;19353:18;;9147:61:3;19021:356:15;9147:61:3;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:3;:30;9218:58;;;;-1:-1:-1;;;9218:58:3;;19584:2:15;9218:58:3;;;19566:21:15;19623:2;19603:18;;;19596:30;19662;19642:18;;;19635:58;19710:18;;9218:58:3;19382:352:15;9218:58:3;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:3;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:3;-1:-1:-1;;;;;9371:21:3;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:15;-1:-1:-1;;;;;;88:32:15;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:15;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:15;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:15:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:15;;1343:180;-1:-1:-1;1343:180:15:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:15;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:15:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:15;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:15;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:632::-;4275:2;4327:21;;;4397:13;;4300:18;;;4419:22;;;4246:4;;4275:2;4498:15;;;;4472:2;4457:18;;;4246:4;4541:169;4555:6;4552:1;4549:13;4541:169;;;4616:13;;4604:26;;4685:15;;;;4650:12;;;;4577:1;4570:9;4541:169;;;-1:-1:-1;4727:3:15;;4104:632;-1:-1:-1;;;;;;4104:632:15:o;4741:347::-;4806:6;4814;4867:2;4855:9;4846:7;4842:23;4838:32;4835:52;;;4883:1;4880;4873:12;4835:52;4906:29;4925:9;4906:29;:::i;:::-;4896:39;;4985:2;4974:9;4970:18;4957:32;5032:5;5025:13;5018:21;5011:5;5008:32;4998:60;;5054:1;5051;5044:12;4998:60;5077:5;5067:15;;;4741:347;;;;;:::o;5093:667::-;5188:6;5196;5204;5212;5265:3;5253:9;5244:7;5240:23;5236:33;5233:53;;;5282:1;5279;5272:12;5233:53;5305:29;5324:9;5305:29;:::i;:::-;5295:39;;5353:38;5387:2;5376:9;5372:18;5353:38;:::i;:::-;5343:48;;5438:2;5427:9;5423:18;5410:32;5400:42;;5493:2;5482:9;5478:18;5465:32;5520:18;5512:6;5509:30;5506:50;;;5552:1;5549;5542:12;5506:50;5575:22;;5628:4;5620:13;;5616:27;-1:-1:-1;5606:55:15;;5657:1;5654;5647:12;5606:55;5680:74;5746:7;5741:2;5728:16;5723:2;5719;5715:11;5680:74;:::i;:::-;5670:84;;;5093:667;;;;;;;:::o;5765:260::-;5833:6;5841;5894:2;5882:9;5873:7;5869:23;5865:32;5862:52;;;5910:1;5907;5900:12;5862:52;5933:29;5952:9;5933:29;:::i;:::-;5923:39;;5981:38;6015:2;6004:9;6000:18;5981:38;:::i;:::-;5971:48;;5765:260;;;;;:::o;6030:380::-;6109:1;6105:12;;;;6152;;;6173:61;;6227:4;6219:6;6215:17;6205:27;;6173:61;6280:2;6272:6;6269:14;6249:18;6246:38;6243:161;;;6326:10;6321:3;6317:20;6314:1;6307:31;6361:4;6358:1;6351:15;6389:4;6386:1;6379:15;7655:413;7857:2;7839:21;;;7896:2;7876:18;;;7869:30;7935:34;7930:2;7915:18;;7908:62;-1:-1:-1;;;8001:2:15;7986:18;;7979:47;8058:3;8043:19;;7655:413::o;8073:356::-;8275:2;8257:21;;;8294:18;;;8287:30;8353:34;8348:2;8333:18;;8326:62;8420:2;8405:18;;8073:356::o;9259:127::-;9320:10;9315:3;9311:20;9308:1;9301:31;9351:4;9348:1;9341:15;9375:4;9372:1;9365:15;10555:127;10616:10;10611:3;10607:20;10604:1;10597:31;10647:4;10644:1;10637:15;10671:4;10668:1;10661:15;10687:135;10726:3;-1:-1:-1;;10747:17:15;;10744:43;;;10767:18;;:::i;:::-;-1:-1:-1;10814:1:15;10803:13;;10687:135::o;13508:443::-;13740:3;13778:6;13772:13;13794:53;13840:6;13835:3;13828:4;13820:6;13816:17;13794:53;:::i;:::-;-1:-1:-1;;;13869:16:15;;13894:22;;;-1:-1:-1;13943:1:15;13932:13;;13508:443;-1:-1:-1;13508:443:15:o;15591:125::-;15631:4;15659:1;15656;15653:8;15650:34;;;15664:18;;:::i;:::-;-1:-1:-1;15701:9:15;;15591:125::o;15721:128::-;15761:3;15792:1;15788:6;15785:1;15782:13;15779:39;;;15798:18;;:::i;:::-;-1:-1:-1;15834:9:15;;15721:128::o;15854:168::-;15894:7;15960:1;15956;15952:6;15948:14;15945:1;15942:21;15937:1;15930:9;15923:17;15919:45;15916:71;;;15967:18;;:::i;:::-;-1:-1:-1;16007:9:15;;15854:168::o;16027:414::-;16229:2;16211:21;;;16268:2;16248:18;;;16241:30;16307:34;16302:2;16287:18;;16280:62;-1:-1:-1;;;16373:2:15;16358:18;;16351:48;16431:3;16416:19;;16027:414::o;16862:470::-;17041:3;17079:6;17073:13;17095:53;17141:6;17136:3;17129:4;17121:6;17117:17;17095:53;:::i;:::-;17211:13;;17170:16;;;;17233:57;17211:13;17170:16;17267:4;17255:17;;17233:57;:::i;:::-;17306:20;;16862:470;-1:-1:-1;;;;16862:470:15:o;17767:127::-;17828:10;17823:3;17819:20;17816:1;17809:31;17859:4;17856:1;17849:15;17883:4;17880:1;17873:15;17899:112;17931:1;17957;17947:35;;17962:18;;:::i;:::-;-1:-1:-1;17996:9:15;;17899:112::o;18016:489::-;-1:-1:-1;;;;;18285:15:15;;;18267:34;;18337:15;;18332:2;18317:18;;18310:43;18384:2;18369:18;;18362:34;;;18432:3;18427:2;18412:18;;18405:31;;;18210:4;;18453:46;;18479:19;;18471:6;18453:46;:::i;:::-;18445:54;18016:489;-1:-1:-1;;;;;;18016:489:15:o;18510:249::-;18579:6;18632:2;18620:9;18611:7;18607:23;18603:32;18600:52;;;18648:1;18645;18638:12;18600:52;18680:9;18674:16;18699:30;18723:5;18699:30;:::i;18764:120::-;18804:1;18830;18820:35;;18835:18;;:::i;:::-;-1:-1:-1;18869:9:15;;18764:120::o;18889:127::-;18950:10;18945:3;18941:20;18938:1;18931:31;18981:4;18978:1;18971:15;19005:4;19002:1;18995:15
Swarm Source
ipfs://7df6bc12aa8a04bb372b5cc7497fa096a6a5934d38a50bd21dd86cab269f1f1e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.