[ Download CSV Export ]
OVERVIEW
True Degenerates , Degen Haus profiles and teams NFT. DegenHaus NFT Market soon
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0xff0cd9c54c4f661f56f6f171fc948968484647ee962af4c117d4550957ec8e61 | 29276520 | 420 days 5 hrs ago | Degen Haus: Deployer 2 | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Name:
TrueDegenerates
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2022-01-28 */ // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Counters.sol pragma solidity >=0.6.0 <0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } // File: @openzeppelin/contracts/introspection/IERC165.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol pragma solidity >=0.6.2 <0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol pragma solidity >=0.6.2 <0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: @openzeppelin/contracts/introspection/ERC165.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/EnumerableSet.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin/contracts/utils/EnumerableMap.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { return _get(map, key, "EnumerableMap: nonexistent key"); } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint256(value))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint256(_get(map._inner, bytes32(key)))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint256(_get(map._inner, bytes32(key), errorMessage))); } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` 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); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = byte(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // 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; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; // If there is no base URI, return the token URI. if (bytes(_baseURI).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(_baseURI, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(_baseURI, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = 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 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 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 returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `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); _holderTokens[to].add(tokenId); _tokenOwners.set(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 = ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(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(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); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @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()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } function _approve(address to, uint256 tokenId) private { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } // File: contracts/TrueDegenerates.sol pragma solidity ^0.6.0; contract TrueDegenerates is ERC721, Ownable { using Counters for Counters.Counter; // Map the number of tokens per bunnyId mapping(uint8 => uint256) public bunnyCount; // Map the number of tokens burnt per bunnyId mapping(uint8 => uint256) public bunnyBurnCount; // Used for generating the tokenId of new NFT minted Counters.Counter private _tokenIds; // Map the bunnyId for each tokenId mapping(uint256 => uint8) private bunnyIds; // Map the bunnyName for a tokenId mapping(uint8 => string) private bunnyNames; constructor(string memory _baseURI) public ERC721("True Degenerates", "TD") { _setBaseURI(_baseURI); } /** * @dev Get bunnyId for a specific tokenId. */ function getBunnyId(uint256 _tokenId) external view returns (uint8) { return bunnyIds[_tokenId]; } /** * @dev Get the associated bunnyName for a specific bunnyId. */ function getBunnyName(uint8 _bunnyId) external view returns (string memory) { return bunnyNames[_bunnyId]; } /** * @dev Get the associated bunnyName for a unique tokenId. */ function getBunnyNameOfTokenId(uint256 _tokenId) external view returns (string memory) { uint8 bunnyId = bunnyIds[_tokenId]; return bunnyNames[bunnyId]; } /** * @dev Mint NFTs. Only the owner can call it. */ function mint( address _to, string calldata _tokenURI, uint8 _bunnyId ) external onlyOwner returns (uint256) { uint256 newId = _tokenIds.current(); _tokenIds.increment(); bunnyIds[newId] = _bunnyId; bunnyCount[_bunnyId] = bunnyCount[_bunnyId].add(1); _mint(_to, newId); _setTokenURI(newId, _tokenURI); return newId; } /** * @dev Set a unique name for each bunnyId. It is supposed to be called once. */ function setBunnyName(uint8 _bunnyId, string calldata _name) external onlyOwner { bunnyNames[_bunnyId] = _name; } /** * @dev Burn a NFT token. Callable by owner only. */ function burn(uint256 _tokenId) external onlyOwner { uint8 bunnyIdBurnt = bunnyIds[_tokenId]; bunnyCount[bunnyIdBurnt] = bunnyCount[bunnyIdBurnt].sub(1); bunnyBurnCount[bunnyIdBurnt] = bunnyBurnCount[bunnyIdBurnt].add(1); _burn(_tokenId); } }
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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"bunnyBurnCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"bunnyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getBunnyId","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_bunnyId","type":"uint8"}],"name":"getBunnyName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getBunnyNameOfTokenId","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"uint8","name":"_bunnyId","type":"uint8"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"uint8","name":"_bunnyId","type":"uint8"},{"internalType":"string","name":"_name","type":"string"}],"name":"setBunnyName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002b4738038062002b47833981810160405260208110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b5060408181018152601082526f5472756520446567656e65726174657360801b60208084019190915281518083019092526002825261151160f21b9082015290935091506200013e90506301ffc9a760e01b6200020f565b815162000153906006906020850190620002b1565b50805162000169906007906020840190620002b1565b506200017c6380ac58cd60e01b6200020f565b6200018e635b5e139f60e01b6200020f565b620001a063780e9d6360e01b6200020f565b5060009050620001af62000294565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620002088162000298565b506200034d565b6001600160e01b031980821614156200026f576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b8051620002ad906009906020840190620002b1565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002f457805160ff191683800117855562000324565b8280016001018555821562000324579182015b828111156200032457825182559160200191906001019062000307565b506200033292915062000336565b5090565b5b8082111562000332576000815560010162000337565b6127ea806200035d6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636a4b8883116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd146106b8578063d76a3cfe146106d5578063e985e9c5146106f5578063f2fde38b14610723576101c4565b8063a22cb46514610591578063b88d4fde146105bf578063c72c688314610685576101c4565b8063715018a6116100d3578063715018a6146105595780638da5cb5b1461056157806395d89b4114610569578063a0411c5414610571576101c4565b80636a4b8883146104a85780636c0360eb1461052b57806370a0823114610533576101c4565b80632e2b08421161016657806342966c681161014057806342966c68146103d75780634f6ccce7146103f45780635d71dca3146104115780636352211e1461048b576101c4565b80632e2b0842146103585780632f745c591461037557806342842e0e146103a1576101c4565b8063095ea7b3116101a2578063095ea7b3146102ba57806318160ddd146102e85780631b881e671461030257806323b872dd14610322576101c4565b806301ffc9a7146101c957806306fdde0314610204578063081812fc14610281575b600080fd5b6101f0600480360360208110156101df57600080fd5b50356001600160e01b031916610749565b604080519115158252519081900360200190f35b61020c61076c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024657818101518382015260200161022e565b50505050905090810190601f1680156102735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61029e6004803603602081101561029757600080fd5b5035610802565b604080516001600160a01b039092168252519081900360200190f35b6102e6600480360360408110156102d057600080fd5b506001600160a01b038135169060200135610864565b005b6102f061093f565b60408051918252519081900360200190f35b61020c6004803603602081101561031857600080fd5b503560ff16610950565b6102e66004803603606081101561033857600080fd5b506001600160a01b038135811691602081013590911690604001356109f5565b61020c6004803603602081101561036e57600080fd5b5035610a4c565b6102f06004803603604081101561038b57600080fd5b506001600160a01b038135169060200135610afc565b6102e6600480360360608110156103b757600080fd5b506001600160a01b03813581169160208101359091169060400135610b27565b6102e6600480360360208110156103ed57600080fd5b5035610b42565b6102f06004803603602081101561040a57600080fd5b5035610c10565b6102e66004803603604081101561042757600080fd5b60ff823516919081019060408101602082013564010000000081111561044c57600080fd5b82018360208201111561045e57600080fd5b8035906020019184600183028401116401000000008311171561048057600080fd5b509092509050610c26565b61029e600480360360208110156104a157600080fd5b5035610ca1565b6102f0600480360360608110156104be57600080fd5b6001600160a01b0382351691908101906040810160208201356401000000008111156104e957600080fd5b8201836020820111156104fb57600080fd5b8035906020019184600183028401116401000000008311171561051d57600080fd5b91935091503560ff16610cc9565b61020c610dd9565b6102f06004803603602081101561054957600080fd5b50356001600160a01b0316610e3a565b6102e6610ea2565b61029e610f44565b61020c610f53565b6102f06004803603602081101561058757600080fd5b503560ff16610fb4565b6102e6600480360360408110156105a757600080fd5b506001600160a01b0381351690602001351515610fc6565b6102e6600480360360808110156105d557600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561061057600080fd5b82018360208201111561062257600080fd5b8035906020019184600183028401116401000000008311171561064457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506110cb945050505050565b6106a26004803603602081101561069b57600080fd5b5035611123565b6040805160ff9092168252519081900360200190f35b61020c600480360360208110156106ce57600080fd5b5035611138565b6102f0600480360360208110156106eb57600080fd5b503560ff166113df565b6101f06004803603604081101561070b57600080fd5b506001600160a01b03813581169160200135166113f1565b6102e66004803603602081101561073957600080fd5b50356001600160a01b031661141f565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b5050505050905090565b600061080d82611518565b6108485760405162461bcd60e51b815260040180806020018281038252602c815260200180612693602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061086f82610ca1565b9050806001600160a01b0316836001600160a01b031614156108c25760405162461bcd60e51b81526004018080602001828103825260218152602001806127636021913960400191505060405180910390fd5b806001600160a01b03166108d4611525565b6001600160a01b031614806108f557506108f5816108f0611525565b6113f1565b6109305760405162461bcd60e51b81526004018080602001828103825260388152602001806125e66038913960400191505060405180910390fd5b61093a8383611529565b505050565b600061094b6002611597565b905090565b60ff81166000908152600f602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156109e95780601f106109be576101008083540402835291602001916109e9565b820191906000526020600020905b8154815290600101906020018083116109cc57829003601f168201915b50505050509050919050565b610a06610a00611525565b826115a2565b610a415760405162461bcd60e51b81526004018080602001828103825260318152602001806127846031913960400191505060405180910390fd5b61093a83838361163e565b6000818152600e602090815260408083205460ff16808452600f83529281902080548251601f6002600019600185161561010002019093169290920491820185900485028101850190935280835260609493830182828015610aef5780601f10610ac457610100808354040283529160200191610aef565b820191906000526020600020905b815481529060010190602001808311610ad257829003601f168201915b5050505050915050919050565b6001600160a01b0382166000908152600160205260408120610b1e908361178a565b90505b92915050565b61093a838383604051806020016040528060008152506110cb565b610b4a611525565b600a546001600160a01b03908116911614610b9a576040805162461bcd60e51b815260206004820181905260248201526000805160206126eb833981519152604482015290519081900360640190fd5b6000818152600e602090815260408083205460ff16808452600b90925290912054610bc6906001611796565b60ff82166000908152600b6020908152604080832093909355600c90522054610bf09060016117d8565b60ff82166000908152600c6020526040902055610c0c82611832565b5050565b600080610c1e6002846118ff565b509392505050565b610c2e611525565b600a546001600160a01b03908116911614610c7e576040805162461bcd60e51b815260206004820181905260248201526000805160206126eb833981519152604482015290519081900360640190fd5b60ff83166000908152600f60205260409020610c9b9083836123d3565b50505050565b6000610b2182604051806060016040528060298152602001612648602991396002919061191b565b6000610cd3611525565b600a546001600160a01b03908116911614610d23576040805162461bcd60e51b815260206004820181905260248201526000805160206126eb833981519152604482015290519081900360640190fd5b6000610d2f600d611932565b9050610d3b600d611936565b6000818152600e60209081526040808320805460ff191660ff88169081179091558352600b909152902054610d719060016117d8565b60ff84166000908152600b6020526040902055610d8e868261193f565b610dce8186868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611a6d92505050565b90505b949350505050565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107f85780601f106107cd576101008083540402835291602001916107f8565b60006001600160a01b038216610e815760405162461bcd60e51b815260040180806020018281038252602a81526020018061261e602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020610b2190611597565b610eaa611525565b600a546001600160a01b03908116911614610efa576040805162461bcd60e51b815260206004820181905260248201526000805160206126eb833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107f85780601f106107cd576101008083540402835291602001916107f8565b600b6020526000908152604090205481565b610fce611525565b6001600160a01b0316826001600160a01b03161415611034576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b8060056000611041611525565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611085611525565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6110dc6110d6611525565b836115a2565b6111175760405162461bcd60e51b81526004018080602001828103825260318152602001806127846031913960400191505060405180910390fd5b610c9b84848484611ad0565b6000908152600e602052604090205460ff1690565b606061114382611518565b61117e5760405162461bcd60e51b815260040180806020018281038252602f815260200180612734602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156112135780601f106111e857610100808354040283529160200191611213565b820191906000526020600020905b8154815290600101906020018083116111f657829003601f168201915b50506009549394505050506002600019610100600184161502019091160461123c579050610767565b80511561130d5760098160405160200180838054600181600116156101000203166002900480156112a45780601f106112825761010080835404028352918201916112a4565b820191906000526020600020905b815481529060010190602001808311611290575b5050825160208401908083835b602083106112d05780518252601f1990920191602091820191016112b1565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050610767565b600961131884611b22565b60405160200180838054600181600116156101000203166002900480156113765780601f10611354576101008083540402835291820191611376565b820191906000526020600020905b815481529060010190602001808311611362575b5050825160208401908083835b602083106113a25780518252601f199092019160209182019101611383565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050919050565b600c6020526000908152604090205481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611427611525565b600a546001600160a01b03908116911614611477576040805162461bcd60e51b815260206004820181905260248201526000805160206126eb833981519152604482015290519081900360640190fd5b6001600160a01b0381166114bc5760405162461bcd60e51b81526004018080602001828103825260268152602001806125706026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b21600283611bfd565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061155e82610ca1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610b2182611932565b60006115ad82611518565b6115e85760405162461bcd60e51b815260040180806020018281038252602c8152602001806125ba602c913960400191505060405180910390fd5b60006115f383610ca1565b9050806001600160a01b0316846001600160a01b0316148061162e5750836001600160a01b031661162384610802565b6001600160a01b0316145b80610dd15750610dd181856113f1565b826001600160a01b031661165182610ca1565b6001600160a01b0316146116965760405162461bcd60e51b815260040180806020018281038252602981526020018061270b6029913960400191505060405180910390fd5b6001600160a01b0382166116db5760405162461bcd60e51b81526004018080602001828103825260248152602001806125966024913960400191505060405180910390fd5b6116e683838361093a565b6116f1600082611529565b6001600160a01b03831660009081526001602052604090206117139082611c09565b506001600160a01b03821660009081526001602052604090206117369082611c15565b5061174360028284611c21565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610b1e8383611c37565b6000610b1e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c9b565b600082820183811015610b1e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061183d82610ca1565b905061184b8160008461093a565b611856600083611529565b600082815260086020526040902054600260001961010060018416150201909116041561189457600082815260086020526040812061189491612451565b6001600160a01b03811660009081526001602052604090206118b69083611c09565b506118c2600283611d32565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080808061190e8686611d3e565b9097909650945050505050565b6000611928848484611db9565b90505b9392505050565b5490565b80546001019055565b6001600160a01b03821661199a576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6119a381611518565b156119f5576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b611a016000838361093a565b6001600160a01b0382166000908152600160205260409020611a239082611c15565b50611a3060028284611c21565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611a7682611518565b611ab15760405162461bcd60e51b815260040180806020018281038252602c8152602001806126bf602c913960400191505060405180910390fd5b6000828152600860209081526040909120825161093a92840190612498565b611adb84848461163e565b611ae784848484611e46565b610c9b5760405162461bcd60e51b815260040180806020018281038252603281526020018061253e6032913960400191505060405180910390fd5b606081611b4757506040805180820190915260018152600360fc1b6020820152610767565b8160005b8115611b5f57600101600a82049150611b4b565b60608167ffffffffffffffff81118015611b7857600080fd5b506040519080825280601f01601f191660200182016040528015611ba3576020820181803683370190505b50859350905060001982015b8315611bf457600a840660300160f81b82828060019003935081518110611bd257fe5b60200101906001600160f81b031916908160001a905350600a84049350611baf565b50949350505050565b6000610b1e8383611fae565b6000610b1e8383611fc6565b6000610b1e838361208c565b600061192884846001600160a01b0385166120d6565b81546000908210611c795760405162461bcd60e51b815260040180806020018281038252602281526020018061251c6022913960400191505060405180910390fd5b826000018281548110611c8857fe5b9060005260206000200154905092915050565b60008184841115611d2a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611cef578181015183820152602001611cd7565b50505050905090810190601f168015611d1c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610b1e838361216d565b815460009081908310611d825760405162461bcd60e51b81526004018080602001828103825260228152602001806126716022913960400191505060405180910390fd5b6000846000018481548110611d9357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611e175760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611cef578181015183820152602001611cd7565b50846000016001820381548110611e2a57fe5b9060005260206000209060020201600101549150509392505050565b6000611e5a846001600160a01b0316612241565b611e6657506001610dd1565b6060611f74630a85bd0160e11b611e7b611525565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611ee2578181015183820152602001611eca565b50505050905090810190601f168015611f0f5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b03838183161783525050505060405180606001604052806032815260200161253e603291396001600160a01b0388169190612247565b90506000818060200190516020811015611f8d57600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b600081815260018301602052604081205480156120825783546000198083019190810190600090879083908110611ff957fe5b906000526020600020015490508087600001848154811061201657fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061204657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610b21565b6000915050610b21565b60006120988383611fae565b6120ce57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b21565b506000610b21565b60008281526001840160205260408120548061213b57505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561192b565b8285600001600183038154811061214e57fe5b906000526020600020906002020160010181905550600091505061192b565b6000818152600183016020526040812054801561208257835460001980830191908101906000908790839081106121a057fe5b90600052602060002090600202019050808760000184815481106121c057fe5b6000918252602080832084546002909302019182556001938401549184019190915583548252898301905260409020908401905586548790806121ff57fe5b6000828152602080822060026000199094019384020182815560019081018390559290935588815289820190925260408220919091559450610b219350505050565b3b151590565b606061192884846000858561225b85612241565b6122ac576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106122eb5780518252601f1990920191602091820191016122cc565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461234d576040519150601f19603f3d011682016040523d82523d6000602084013e612352565b606091505b509150915061236282828661236d565b979650505050505050565b6060831561237c57508161192b565b82511561238c5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315611cef578181015183820152602001611cd7565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106124145782800160ff19823516178555612441565b82800160010185558215612441579182015b82811115612441578235825591602001919060010190612426565b5061244d929150612506565b5090565b50805460018160011615610100020316600290046000825580601f106124775750612495565b601f0160209004906000526020600020908101906124959190612506565b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106124d957805160ff1916838001178555612441565b82800160010185558215612441579182015b828111156124415782518255916020019190600101906124eb565b5b8082111561244d576000815560010161250756fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a264697066735822122024a5756ff0e604bc135a2037facf5c4686f335f8dc1abbe817e7692aad56d19764736f6c634300060c003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [2] : 697066733a2f2f00000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
63395:2551:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19394:142;;;;;;;;;;;;;;;;-1:-1:-1;19394:142:0;-1:-1:-1;;;;;;19394:142:0;;:::i;:::-;;;;;;;;;;;;;;;;;;50713:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53400:213;;;;;;;;;;;;;;;;-1:-1:-1;53400:213:0;;:::i;:::-;;;;-1:-1:-1;;;;;53400:213:0;;;;;;;;;;;;;;52944:390;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52944:390:0;;;;;;;;:::i;:::-;;52438:203;;;:::i;:::-;;;;;;;;;;;;;;;;64374:154;;;;;;;;;;;;;;;;-1:-1:-1;64374:154:0;;;;:::i;54274:305::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;54274:305:0;;;;;;;;;;;;;;;;;:::i;64618:209::-;;;;;;;;;;;;;;;;-1:-1:-1;64618:209:0;;:::i;52208:154::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52208:154:0;;;;;;;;:::i;54650:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;54650:151:0;;;;;;;;;;;;;;;;;:::i;65662:281::-;;;;;;;;;;;;;;;;-1:-1:-1;65662:281:0;;:::i;52718:164::-;;;;;;;;;;;;;;;;-1:-1:-1;52718:164:0;;:::i;65431:150::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65431:150:0;;-1:-1:-1;65431:150:0;-1:-1:-1;65431:150:0;:::i;50477:169::-;;;;;;;;;;;;;;;;-1:-1:-1;50477:169:0;;:::i;64905:417::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;64905:417:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64905:417:0;-1:-1:-1;64905:417:0;;;;:::i;52035:89::-;;;:::i;50200:215::-;;;;;;;;;;;;;;;;-1:-1:-1;50200:215:0;-1:-1:-1;;;;;50200:215:0;;:::i;2714:148::-;;;:::i;2072:79::-;;;:::i;50874:96::-;;;:::i;63535:43::-;;;;;;;;;;;;;;;;-1:-1:-1;63535:43:0;;;;:::i;53685:295::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;53685:295:0;;;;;;;;;;:::i;54872:285::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54872:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54872:285:0;;-1:-1:-1;54872:285:0;;-1:-1:-1;;;;;54872:285:0:i;64170:112::-;;;;;;;;;;;;;;;;-1:-1:-1;64170:112:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;51041:755;;;;;;;;;;;;;;;;-1:-1:-1;51041:755:0;;:::i;63638:47::-;;;;;;;;;;;;;;;;-1:-1:-1;63638:47:0;;;;:::i;54051:156::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;54051:156:0;;;;;;;;;;:::i;3017:244::-;;;;;;;;;;;;;;;;-1:-1:-1;3017:244:0;-1:-1:-1;;;;;3017:244:0;;:::i;19394:142::-;-1:-1:-1;;;;;;19495:33:0;;19471:4;19495:33;;;;;;;;;;;;;19394:142;;;;:::o;50713:92::-;50792:5;50785:12;;;;;;;;-1:-1:-1;;50785:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50759:13;;50785:12;;50792:5;;50785:12;;50792:5;50785:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50713:92;:::o;53400:213::-;53468:7;53496:16;53504:7;53496;:16::i;:::-;53488:73;;;;-1:-1:-1;;;53488:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53581:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;53581:24:0;;53400:213::o;52944:390::-;53025:13;53041:16;53049:7;53041;:16::i;:::-;53025:32;;53082:5;-1:-1:-1;;;;;53076:11:0;:2;-1:-1:-1;;;;;53076:11:0;;;53068:57;;;;-1:-1:-1;;;53068:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53162:5;-1:-1:-1;;;;;53146:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;53146:21:0;;:62;;;;53171:37;53188:5;53195:12;:10;:12::i;:::-;53171:16;:37::i;:::-;53138:154;;;;-1:-1:-1;;;53138:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53305:21;53314:2;53318:7;53305:8;:21::i;:::-;52944:390;;;:::o;52438:203::-;52491:7;52612:21;:12;:19;:21::i;:::-;52605:28;;52438:203;:::o;64374:154::-;64500:20;;;;;;;:10;:20;;;;;;;;;64493:27;;;;;;-1:-1:-1;;64493:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64462:13;;64493:27;;;64500:20;64493:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64374:154;;;:::o;54274:305::-;54435:41;54454:12;:10;:12::i;:::-;54468:7;54435:18;:41::i;:::-;54427:103;;;;-1:-1:-1;;;54427:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54543:28;54553:4;54559:2;54563:7;54543:9;:28::i;64618:209::-;64748:13;64764:18;;;:8;:18;;;;;;;;;;;64800:19;;;:10;:19;;;;;;64793:26;;;;;;-1:-1:-1;;64764:18:0;64793:26;;;64764:18;64793:26;;;;;;;;;;;;;;;;;;;;;;;;;;;64717:13;;64764:18;64793:26;;64800:19;64793:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64618:209;;;:::o;52208:154::-;-1:-1:-1;;;;;52324:20:0;;52297:7;52324:20;;;:13;:20;;;;;:30;;52348:5;52324:23;:30::i;:::-;52317:37;;52208:154;;;;;:::o;54650:151::-;54754:39;54771:4;54777:2;54781:7;54754:39;;;;;;;;;;;;:16;:39::i;65662:281::-;2294:12;:10;:12::i;:::-;2284:6;;-1:-1:-1;;;;;2284:6:0;;;:22;;;2276:67;;;;;-1:-1:-1;;;2276:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2276:67:0;;;;;;;;;;;;;;;65724:18:::1;65745::::0;;;:8:::1;:18;::::0;;;;;;;;::::1;;65801:24:::0;;;:10:::1;:24:::0;;;;;;;:31:::1;::::0;65745:18;65801:28:::1;:31::i;:::-;65774:24;::::0;::::1;;::::0;;;:10:::1;:24;::::0;;;;;;;:58;;;;65874:14:::1;:28:::0;;;;:35:::1;::::0;65907:1:::1;65874:32;:35::i;:::-;65843:28;::::0;::::1;;::::0;;;:14:::1;:28;::::0;;;;:66;65920:15:::1;65926:8:::0;65920:5:::1;:15::i;:::-;2354:1;65662:281:::0;:::o;52718:164::-;52785:7;;52827:22;:12;52843:5;52827:15;:22::i;:::-;-1:-1:-1;52805:44:0;52718:164;-1:-1:-1;;;52718:164:0:o;65431:150::-;2294:12;:10;:12::i;:::-;2284:6;;-1:-1:-1;;;;;2284:6:0;;;:22;;;2276:67;;;;;-1:-1:-1;;;2276:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2276:67:0;;;;;;;;;;;;;;;65545:20:::1;::::0;::::1;;::::0;;;:10:::1;:20;::::0;;;;:28:::1;::::0;65568:5;;65545:28:::1;:::i;:::-;;65431:150:::0;;;:::o;50477:169::-;50541:7;50568:70;50585:7;50568:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;64905:417::-;65037:7;2294:12;:10;:12::i;:::-;2284:6;;-1:-1:-1;;;;;2284:6:0;;;:22;;;2276:67;;;;;-1:-1:-1;;;2276:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2276:67:0;;;;;;;;;;;;;;;65057:13:::1;65073:19;:9;:17;:19::i;:::-;65057:35;;65103:21;:9;:19;:21::i;:::-;65135:15;::::0;;;:8:::1;:15;::::0;;;;;;;:26;;-1:-1:-1;;65135:26:0::1;;::::0;::::1;::::0;;::::1;::::0;;;65195:20;;:10:::1;:20:::0;;;;;;:27:::1;::::0;-1:-1:-1;65195:24:0::1;:27::i;:::-;65172:20;::::0;::::1;;::::0;;;:10:::1;:20;::::0;;;;:50;65233:17:::1;65239:3:::0;65244:5;65233::::1;:17::i;:::-;65261:30;65274:5;65281:9;;65261:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;65261:12:0::1;::::0;-1:-1:-1;;;65261:30:0:i:1;:::-;65309:5:::0;-1:-1:-1;2354:1:0::1;64905:417:::0;;;;;;:::o;52035:89::-;52108:8;52101:15;;;;;;;;-1:-1:-1;;52101:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52075:13;;52101:15;;52108:8;;52101:15;;52108:8;52101:15;;;;;;;;;;;;;;;;;;;;;;;;50200:215;50264:7;-1:-1:-1;;;;;50292:19:0;;50284:74;;;;-1:-1:-1;;;50284:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50378:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;2714:148::-;2294:12;:10;:12::i;:::-;2284:6;;-1:-1:-1;;;;;2284:6:0;;;:22;;;2276:67;;;;;-1:-1:-1;;;2276:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2276:67:0;;;;;;;;;;;;;;;2805:6:::1;::::0;2784:40:::1;::::0;2821:1:::1;::::0;-1:-1:-1;;;;;2805:6:0::1;::::0;2784:40:::1;::::0;2821:1;;2784:40:::1;2835:6;:19:::0;;-1:-1:-1;;;;;;2835:19:0::1;::::0;;2714:148::o;2072:79::-;2137:6;;-1:-1:-1;;;;;2137:6:0;2072:79;:::o;50874:96::-;50955:7;50948:14;;;;;;;;-1:-1:-1;;50948:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50922:13;;50948:14;;50955:7;;50948:14;;50955:7;50948:14;;;;;;;;;;;;;;;;;;;;;;;;63535:43;;;;;;;;;;;;;:::o;53685:295::-;53800:12;:10;:12::i;:::-;-1:-1:-1;;;;;53788:24:0;:8;-1:-1:-1;;;;;53788:24:0;;;53780:62;;;;;-1:-1:-1;;;53780:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;53900:8;53855:18;:32;53874:12;:10;:12::i;:::-;-1:-1:-1;;;;;53855:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;53855:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;53855:53:0;;;;;;;;;;;53939:12;:10;:12::i;:::-;-1:-1:-1;;;;;53924:48:0;;53963:8;53924:48;;;;;;;;;;;;;;;;;;;;53685:295;;:::o;54872:285::-;55004:41;55023:12;:10;:12::i;:::-;55037:7;55004:18;:41::i;:::-;54996:103;;;;-1:-1:-1;;;54996:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55110:39;55124:4;55130:2;55134:7;55143:5;55110:13;:39::i;64170:112::-;64231:5;64256:18;;;:8;:18;;;;;;;;;64170:112::o;51041:755::-;51106:13;51140:16;51148:7;51140;:16::i;:::-;51132:76;;;;-1:-1:-1;;;51132:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51247:19;;;;:10;:19;;;;;;;;;51221:45;;;;;;-1:-1:-1;;51221:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;51247:19;51221:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51348:8:0;51342:22;51221:45;;-1:-1:-1;;;;51342:22:0;-1:-1:-1;;51342:22:0;;;;;;;;;;;51338:76;;51393:9;-1:-1:-1;51386:16:0;;51338:76;51518:23;;:27;51514:112;;51593:8;51603:9;51576:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51576:37:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51576:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51562:52;;;;;51514:112;51758:8;51768:18;:7;:16;:18::i;:::-;51741:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51741:46:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51741:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51727:61;;;51041:755;;;:::o;63638:47::-;;;;;;;;;;;;;:::o;54051:156::-;-1:-1:-1;;;;;54164:25:0;;;54140:4;54164:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54051:156::o;3017:244::-;2294:12;:10;:12::i;:::-;2284:6;;-1:-1:-1;;;;;2284:6:0;;;:22;;;2276:67;;;;;-1:-1:-1;;;2276:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2276:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3106:22:0;::::1;3098:73;;;;-1:-1:-1::0;;;3098:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3208:6;::::0;3187:38:::1;::::0;-1:-1:-1;;;;;3187:38:0;;::::1;::::0;3208:6:::1;::::0;3187:38:::1;::::0;3208:6:::1;::::0;3187:38:::1;3236:6;:17:::0;;-1:-1:-1;;;;;;3236:17:0::1;-1:-1:-1::0;;;;;3236:17:0;;;::::1;::::0;;;::::1;::::0;;3017:244::o;56624:119::-;56681:4;56705:30;:12;56727:7;56705:21;:30::i;611:106::-;699:10;611:106;:::o;62451:158::-;62517:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;62517:29:0;-1:-1:-1;;;;;62517:29:0;;;;;;;;:24;;62571:16;62517:24;62571:7;:16::i;:::-;-1:-1:-1;;;;;62562:39:0;;;;;;;;;;;62451:158;;:::o;44109:123::-;44178:7;44205:19;44213:3;44205:7;:19::i;56910:333::-;56995:4;57020:16;57028:7;57020;:16::i;:::-;57012:73;;;;-1:-1:-1;;;57012:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57096:13;57112:16;57120:7;57112;:16::i;:::-;57096:32;;57158:5;-1:-1:-1;;;;;57147:16:0;:7;-1:-1:-1;;;;;57147:16:0;;:51;;;;57191:7;-1:-1:-1;;;;;57167:31:0;:20;57179:7;57167:11;:20::i;:::-;-1:-1:-1;;;;;57167:31:0;;57147:51;:87;;;;57202:32;57219:5;57226:7;57202:16;:32::i;59999:574::-;60117:4;-1:-1:-1;;;;;60097:24:0;:16;60105:7;60097;:16::i;:::-;-1:-1:-1;;;;;60097:24:0;;60089:78;;;;-1:-1:-1;;;60089:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60186:16:0;;60178:65;;;;-1:-1:-1;;;60178:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60256:39;60277:4;60283:2;60287:7;60256:20;:39::i;:::-;60360:29;60377:1;60381:7;60360:8;:29::i;:::-;-1:-1:-1;;;;;60402:19:0;;;;;;:13;:19;;;;;:35;;60429:7;60402:26;:35::i;:::-;-1:-1:-1;;;;;;60448:17:0;;;;;;:13;:17;;;;;:30;;60470:7;60448:21;:30::i;:::-;-1:-1:-1;60491:29:0;:12;60508:7;60517:2;60491:16;:29::i;:::-;;60557:7;60553:2;-1:-1:-1;;;;;60538:27:0;60547:4;-1:-1:-1;;;;;60538:27:0;;;;;;;;;;;59999:574;;;:::o;36708:137::-;36779:7;36814:22;36818:3;36830:5;36814:3;:22::i;4661:136::-;4719:7;4746:43;4750:1;4753;4746:43;;;;;;;;;;;;;;;;;:3;:43::i;4197:181::-;4255:7;4287:5;;;4311:6;;;;4303:46;;;;;-1:-1:-1;;;4303:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;59142:520;59202:13;59218:16;59226:7;59218;:16::i;:::-;59202:32;;59247:48;59268:5;59283:1;59287:7;59247:20;:48::i;:::-;59336:29;59353:1;59357:7;59336:8;:29::i;:::-;59424:19;;;;:10;:19;;;;;59418:33;;-1:-1:-1;;59418:33:0;;;;;;;;;;;:38;59414:97;;59480:19;;;;:10;:19;;;;;59473:26;;;:::i;:::-;-1:-1:-1;;;;;59523:20:0;;;;;;:13;:20;;;;;:36;;59551:7;59523:27;:36::i;:::-;-1:-1:-1;59572:28:0;:12;59592:7;59572:19;:28::i;:::-;-1:-1:-1;59618:36:0;;59646:7;;59642:1;;-1:-1:-1;;;;;59618:36:0;;;;;59642:1;;59618:36;59142:520;;:::o;44571:227::-;44651:7;;;;44711:22;44715:3;44727:5;44711:3;:22::i;:::-;44680:53;;;;-1:-1:-1;44571:227:0;-1:-1:-1;;;;;44571:227:0:o;45233:204::-;45340:7;45383:44;45388:3;45408;45414:12;45383:4;:44::i;:::-;45375:53;-1:-1:-1;45233:204:0;;;;;;:::o;9778:114::-;9870:14;;9778:114::o;9900:181::-;10054:19;;10072:1;10054:19;;;9900:181::o;58509:404::-;-1:-1:-1;;;;;58589:16:0;;58581:61;;;;;-1:-1:-1;;;58581:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58662:16;58670:7;58662;:16::i;:::-;58661:17;58653:58;;;;;-1:-1:-1;;;58653:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;58724:45;58753:1;58757:2;58761:7;58724:20;:45::i;:::-;-1:-1:-1;;;;;58782:17:0;;;;;;:13;:17;;;;;:30;;58804:7;58782:21;:30::i;:::-;-1:-1:-1;58825:29:0;:12;58842:7;58851:2;58825:16;:29::i;:::-;-1:-1:-1;58872:33:0;;58897:7;;-1:-1:-1;;;;;58872:33:0;;;58889:1;;58872:33;;58889:1;;58872:33;58509:404;;:::o;60729:215::-;60829:16;60837:7;60829;:16::i;:::-;60821:73;;;;-1:-1:-1;;;60821:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60905:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;56039:272::-;56153:28;56163:4;56169:2;56173:7;56153:9;:28::i;:::-;56200:48;56223:4;56229:2;56233:7;56242:5;56200:22;:48::i;:::-;56192:111;;;;-1:-1:-1;;;56192:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45684:744;45740:13;45961:10;45957:53;;-1:-1:-1;45988:10:0;;;;;;;;;;;;-1:-1:-1;;;45988:10:0;;;;;;45957:53;46035:5;46020:12;46076:78;46083:9;;46076:78;;46109:8;;46140:2;46132:10;;;;46076:78;;;46164:19;46196:6;46186:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46186:17:0;-1:-1:-1;46258:5:0;;-1:-1:-1;46164:39:0;-1:-1:-1;;;46230:10:0;;46274:115;46281:9;;46274:115;;46348:2;46341:4;:9;46336:2;:14;46325:27;;46307:6;46314:7;;;;;;;46307:15;;;;;;;;;;;:45;-1:-1:-1;;;;;46307:45:0;;;;;;;;-1:-1:-1;46375:2:0;46367:10;;;;46274:115;;;-1:-1:-1;46413:6:0;45684:744;-1:-1:-1;;;;45684:744:0:o;43870:151::-;43954:4;43978:35;43988:3;44008;43978:9;:35::i;35795:137::-;35865:4;35889:35;35897:3;35917:5;35889:7;:35::i;35488:131::-;35555:4;35579:32;35584:3;35604:5;35579:4;:32::i;43302:176::-;43391:4;43415:55;43420:3;43440;-1:-1:-1;;;;;43454:14:0;;43415:4;:55::i;31782:204::-;31877:18;;31849:7;;31877:26;-1:-1:-1;31869:73:0;;;;-1:-1:-1;;;31869:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31960:3;:11;;31972:5;31960:18;;;;;;;;;;;;;;;;31953:25;;31782:204;;;;:::o;5100:192::-;5186:7;5222:12;5214:6;;;;5206:29;;;;-1:-1:-1;;;5206:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5258:5:0;;;5100:192::o;43644:142::-;43721:4;43745:33;43753:3;43773;43745:7;:33::i;41957:279::-;42061:19;;42024:7;;;;42061:27;-1:-1:-1;42053:74:0;;;;-1:-1:-1;;;42053:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42140:22;42165:3;:12;;42178:5;42165:19;;;;;;;;;;;;;;;;;;42140:44;;42203:5;:10;;;42215:5;:12;;;42195:33;;;;;41957:279;;;;;:::o;42659:319::-;42753:7;42792:17;;;:12;;;:17;;;;;;42843:12;42828:13;42820:36;;;;-1:-1:-1;;;42820:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42910:3;:12;;42934:1;42923:8;:12;42910:26;;;;;;;;;;;;;;;;;;:33;;;42903:40;;;42659:319;;;;;:::o;61839:604::-;61960:4;61987:15;:2;-1:-1:-1;;;;;61987:13:0;;:15::i;:::-;61982:60;;-1:-1:-1;62026:4:0;62019:11;;61982:60;62052:23;62078:252;-1:-1:-1;;;62191:12:0;:10;:12::i;:::-;62218:4;62237:7;62259:5;62094:181;;;;;;-1:-1:-1;;;;;62094:181:0;;;;;;-1:-1:-1;;;;;62094:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62094:181:0;;;;;;;-1:-1:-1;;;;;62094:181:0;;;;;;;;;;;62078:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62078:15:0;;;:252;:15;:252::i;:::-;62052:278;;62341:13;62368:10;62357:32;;;;;;;;;;;;;;;-1:-1:-1;62357:32:0;-1:-1:-1;;;;;;62408:26:0;-1:-1:-1;;;62408:26:0;;-1:-1:-1;;;61839:604:0;;;;;;:::o;41272:125::-;41343:4;41367:17;;;:12;;;;;:17;;;;;;:22;;;41272:125::o;29484:1544::-;29550:4;29689:19;;;:12;;;:19;;;;;;29725:15;;29721:1300;;30160:18;;-1:-1:-1;;30111:14:0;;;;30160:22;;;;30087:21;;30160:3;;:22;;30447;;;;;;;;;;;;;;30427:42;;30593:9;30564:3;:11;;30576:13;30564:26;;;;;;;;;;;;;;;;;;;:38;;;;30670:23;;;30712:1;30670:12;;;:23;;;;;;30696:17;;;30670:43;;30822:17;;30670:3;;30822:17;;;;;;;;;;;;;;;;;;;;;;30917:3;:12;;:19;30930:5;30917:19;;;;;;;;;;;30910:26;;;30960:4;30953:11;;;;;;;;29721:1300;31004:5;30997:12;;;;;28894:414;28957:4;28979:21;28989:3;28994:5;28979:9;:21::i;:::-;28974:327;;-1:-1:-1;29017:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;29200:18;;29178:19;;;:12;;;:19;;;;;;:40;;;;29233:11;;28974:327;-1:-1:-1;29284:5:0;29277:12;;38772:692;38848:4;38983:17;;;:12;;;:17;;;;;;39017:13;39013:444;;-1:-1:-1;;39102:38:0;;;;;;;;;;;;;;;;;;39084:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;39299:19;;39279:17;;;:12;;;:17;;;;;;;:39;39333:11;;39013:444;39413:5;39377:3;:12;;39401:1;39390:8;:12;39377:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;39440:5;39433:12;;;;;39639:1549;39703:4;39838:17;;;:12;;;:17;;;;;;39872:13;;39868:1313;;40304:19;;-1:-1:-1;;40257:12:0;;;;40304:23;;;;40233:21;;40304:3;;:23;;40601;;;;;;;;;;;;;;;;40572:52;;40749:9;40719:3;:12;;40732:13;40719:27;;;;;;;;;;;;;;;;:39;;:27;;;;;:39;;;;;;;;;;;;;;;40839:14;;40826:28;;:12;;;:28;;;;;40857:17;;;40826:48;;40983:18;;40826:3;;40983:18;;;;;;;;;;;;;;-1:-1:-1;;40983:18:0;;;;;;;;;;;;;;;;;;;;;41079:17;;;:12;;;:17;;;;;;41072:24;;;;40983:18;-1:-1:-1;41113:11:0;;-1:-1:-1;;;;41113:11:0;20921:422;21288:20;21327:8;;;20921:422::o;23839:195::-;23942:12;23974:52;23996:6;24004:4;24010:1;24013:12;23942;25143:18;25154:6;25143:10;:18::i;:::-;25135:60;;;;;-1:-1:-1;;;25135:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25269:12;25283:23;25310:6;-1:-1:-1;;;;;25310:11:0;25330:5;25338:4;25310:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25310:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25268:75;;;;25361:52;25379:7;25388:10;25400:12;25361:17;:52::i;:::-;25354:59;24891:530;-1:-1:-1;;;;;;;24891:530:0:o;26427:742::-;26542:12;26571:7;26567:595;;;-1:-1:-1;26602:10:0;26595:17;;26567:595;26716:17;;:21;26712:439;;26979:10;26973:17;27040:15;27027:10;27023:2;27019:19;27012:44;26927:148;27115:20;;-1:-1:-1;;;27115:20:0;;;;;;;;;;;;;;;;;27122:12;;27115:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://24a5756ff0e604bc135a2037facf5c4686f335f8dc1abbe817e7692aad56d197
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.