ERC-721
Overview
Max Total Supply
1,284 FRENS
Holders
335
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 FRENSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Froggies
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-21 */ pragma solidity ^0.6.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); } /** * @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); } } /* * @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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } 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; } } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of NFTs in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the NFT specified by `tokenId`. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * * * Requirements: * - `from`, `to` cannot be zero. * - `tokenId` must be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this * NFT by either {approve} or {setApprovalForAll}. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * Requirements: * - If the caller is not `from`, it must be approved to move this NFT by * either {approve} or {setApprovalForAll}. */ function transferFrom(address from, address to, uint256 tokenId) external; function approve(address to, uint256 tokenId) external; function getApproved(uint256 tokenId) external view returns (address operator); function setApprovalForAll(address operator, bool _approved) external; function isApprovedForAll(address owner, address operator) external view returns (bool); function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { function totalSupply() external view returns (uint256); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); function tokenByIndex(uint256 index) external view returns (uint256); } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ abstract contract IERC721Receiver { /** * @notice Handle the receipt of an NFT * @dev The ERC721 smart contract calls this function on the recipient * after a {IERC721-safeTransferFrom}. This function MUST return the function selector, * otherwise the caller will revert the transaction. The selector to be * returned can be obtained as `this.onERC721Received.selector`. This * function MAY throw to revert and reject the transfer. * Note: the ERC721 contract address is always the message sender. * @param operator The address which called `safeTransferFrom` function * @param from The address which previously owned the token * @param tokenId The NFT identifier which is being transferred * @param data Additional data with no specified format * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` */ function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data) public virtual returns (bytes4); } /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ 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; } } /** * @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) { // Solidity only automatically asserts when dividing by 0 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; } } /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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 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.0.0, only sets of type `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]; } // 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)); } } /** * @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))); } } /** * @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 ^ 0xe985e9c ^ 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; 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 Gets the balance of the specified address. * @param owner address to query the balance of * @return uint256 representing the amount owned by the passed address */ 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 Gets the owner of the specified token ID. * @param tokenId uint256 ID of the token to query the owner of * @return address currently marked as the owner of the given token ID */ function ownerOf(uint256 tokenId) public view override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev Gets the token name. * @return string representing the token name */ function name() public view override returns (string memory) { return _name; } /** * @dev Gets the token symbol. * @return string representing the token symbol */ function symbol() public view override returns (string memory) { return _symbol; } /** * @dev Returns the URI for a given token ID. May return an empty string. * * If a base URI is set (via {_setBaseURI}), it is added as a prefix to the * token's own URI (via {_setTokenURI}). * * If there is a base URI but no token URI, the token's ID will be used as * its URI when appending it to the base URI. This pattern for autogenerated * token URIs can lead to large gas savings. * * .Examples * |=== * |`_setBaseURI()` |`_setTokenURI()` |`tokenURI()` * | "" * | "" * | "" * | "" * | "token.uri/123" * | "token.uri/123" * | "token.uri/" * | "123" * | "token.uri/123" * | "token.uri/" * | "" * | "token.uri/<tokenId>" * |=== * * Requirements: * * - `tokenId` must exist. */ 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 Gets the token ID at a given index of the tokens list of the requested owner. * @param owner address owning the tokens list to be accessed * @param index uint256 representing the index to be accessed of the requested tokens list * @return uint256 token ID at the given index of the tokens list owned by the requested address */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev Gets the total amount of tokens stored by the contract. * @return uint256 representing the total amount of tokens */ function totalSupply() public view override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev Gets the token ID at a given index of all the tokens in this contract * Reverts if the index is greater or equal to the total number of tokens. * @param index uint256 representing the index to be accessed of the tokens list * @return uint256 token ID at the given index of the tokens list */ function tokenByIndex(uint256 index) public view override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev Approves another address to transfer the given token ID * The zero address indicates there is no approved address. * There can only be one approved address per token at a given time. * Can only be called by the token owner or an approved operator. * @param to address to be approved for the given token ID * @param tokenId uint256 ID of the token to be approved */ 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 Gets the approved address for a token ID, or zero if no address set * Reverts if the token ID does not exist. * @param tokenId uint256 ID of the token to query the approval of * @return address currently approved for the given token ID */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev Sets or unsets the approval of a given operator * An operator is allowed to transfer all tokens of the sender on their behalf. * @param operator operator address to set the approval * @param approved representing the status of the approval to be set */ 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 Tells whether an operator is approved by a given owner. * @param owner owner address which you want to query the approval of * @param operator operator address which you want to query the approval of * @return bool whether the given operator is approved by the given owner */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Transfers the ownership of a given token ID to another address. * Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * Requires the msg.sender to be the owner, approved, or operator. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ 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 Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the _msgSender() to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ 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 the ownership of a given token ID to another address * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ 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 the specified token exists. * @param tokenId uint256 ID of the token to query the existence of * @return bool whether the token exists */ function _exists(uint256 tokenId) internal view returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether the given spender can transfer a given token ID. * @param spender address of the spender to query * @param tokenId uint256 ID of the token to be transferred * @return bool whether the msg.sender is approved for the given token ID, * is an operator of the owner, or is the owner of the token */ 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 Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted * @param _data bytes data to send along with a safe transfer check */ 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 Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ 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 Internal function to burn a specific token. * Reverts if the token does not exist. * @param tokenId uint256 ID of the token being burned */ 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 Internal function to transfer ownership of a given token ID to another address. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ 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 Internal function to set the token URI for a given token. * * Reverts if the token ID does not exist. * * TIP: If all token IDs share a prefix (for example, if your URIs look like * `https://api.myproject.com/token/<id>`), use {_setBaseURI} to store * it and save gas. */ 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; } // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = to.call(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data )); if (!success) { if (returndata.length > 0) { // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert("ERC721: transfer to non ERC721Receiver implementer"); } } else { 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` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } /* SPDX-License-Identifier: <SPDX-License> */ contract Froggies is ERC721("Froggie Frens", "FRENS"){ address public owner; uint256 public price = 50000000000000000; // 0.05 eth uint256 public maxSupply = 10000; uint256 public maxPublicAvailableFroggies = 6969; uint256 public maxBurnAvailableFroggies = maxSupply - maxPublicAvailableFroggies; uint256 public froggiesMintedFromBurn; uint256 public froggiesMinted; bool public rerollEnabled; uint256 release; uint256 public counter = 0; constructor(uint256 _release) public { require(block.timestamp < _release); _setBaseURI("https://froggiefrens.xyz/token/"); release = _release; owner = msg.sender; rerollEnabled = false; } function swamp(uint256 _amount) public payable{ require(block.timestamp >= release, "Not yet available"); require(_amount <= 5, "Only 5 per tx!"); require((froggiesMinted + _amount) <= maxPublicAvailableFroggies, "Public Mint Sold Out"); require(msg.value == (price * _amount), "Invalid Pricing"); for(uint256 i = 0; i < _amount; i++) { _mint(msg.sender, counter); froggiesMinted += 1; counter += 1; } } function reroll(uint256[] memory _tokens) public { require(_tokens.length > 1); require(rerollEnabled || froggiesMinted == maxPublicAvailableFroggies, "Reroll not yet available"); require(froggiesMintedFromBurn + (_tokens.length - 1) < maxBurnAvailableFroggies, "Invalid amount"); for (uint256 i = 0; i < _tokens.length; i++) { require(ownerOf(_tokens[i]) == msg.sender, "You don't own these tokens!"); _burn(_tokens[i]); } for(uint256 i = 0; i < _tokens.length - 1; i++) { _mint(msg.sender, counter); counter += 1; froggiesMintedFromBurn += 1; } } function mintCustom(address _to, uint256 _tokenID) public { require(msg.sender == owner); require(_tokenID > maxSupply); _mint(_to, _tokenID); } function enableReroll() public { require(msg.sender == owner); rerollEnabled = true; } function setURI(string memory _uri) public { require(msg.sender == owner); _setBaseURI(_uri); } function changeOwner(address _newOwner) public { require(msg.sender == owner); owner = _newOwner; } function claimETH() public { require(msg.sender == owner); payable(owner).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_release","type":"uint256"}],"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":"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":"address","name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableReroll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"froggiesMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"froggiesMintedFromBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBurnAvailableFroggies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicAvailableFroggies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"mintCustom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokens","type":"uint256[]"}],"name":"reroll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rerollEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"swamp","outputs":[],"stateMutability":"payable","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"}]
Contract Creation Code
608060405266b1a2bc2ec50000600b55612710600c55611b39600d55610bd7600e5560006013553480156200003357600080fd5b506040516200288f3803806200288f833981810160405260208110156200005957600080fd5b5051604080518082018252600d81526c46726f67676965204672656e7360981b602082810191909152825180840190935260058352644652454e5360d81b9083015290620000ae6301ffc9a760e01b62000183565b8151620000c390600690602085019062000221565b508051620000d990600790602084019062000221565b50620000ec6380ac58cd60e01b62000183565b620000fe635b5e139f60e01b62000183565b6200011063780e9d6360e01b62000183565b50508042106200011f57600080fd5b60408051808201909152601f81527f68747470733a2f2f66726f676769656672656e732e78797a2f746f6b656e2f0060208201526200015e9062000208565b601255600a80546001600160a01b031916331790556011805460ff19169055620002bd565b6001600160e01b03198082161415620001e3576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b80516200021d90600990602084019062000221565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200026457805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029457825182559160200191906001019062000277565b50620002a2929150620002a6565b5090565b5b80821115620002a25760008155600101620002a7565b6125c280620002cd6000396000f3fe6080604052600436106101ee5760003560e01c8063672729991161010d578063a0ba6292116100a0578063bb1703a41161006f578063bb1703a4146107e4578063c32ffe1b146107f9578063c87b56dd146108a9578063d5abeb01146108d3578063e985e9c5146108e8576101ee565b8063a0ba62921461068e578063a22cb465146106a3578063a6f9dae1146106de578063b88d4fde14610711576101ee565b80638923d78a116100dc5780638923d78a146106325780638da5cb5b1461064f57806395d89b4114610664578063a035b1fe14610679576101ee565b806367272999146105c05780636c0360eb146105d557806370a08231146105ea57806384b6d3b51461061d576101ee565b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461054257806353a30ca91461056c57806361bc221a146105815780636352211e14610596576101ee565b80632f745c591461047857806341e79359146104b157806342842e0e146104ea5780634c400d221461052d576101ee565b8063095ea7b3116101c1578063095ea7b3146103c0578063173d6146146103f957806318160ddd1461040e57806323b872dd14610435576101ee565b806301ffc9a7146101f357806302fe53051461023b57806306fdde03146102f0578063081812fc1461037a575b600080fd5b3480156101ff57600080fd5b506102276004803603602081101561021657600080fd5b50356001600160e01b031916610923565b604080519115158252519081900360200190f35b34801561024757600080fd5b506102ee6004803603602081101561025e57600080fd5b81019060208101813564010000000081111561027957600080fd5b82018360208201111561028b57600080fd5b803590602001918460018302840111640100000000831117156102ad57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610946945050505050565b005b3480156102fc57600080fd5b50610305610969565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561033f578181015183820152602001610327565b50505050905090810190601f16801561036c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038657600080fd5b506103a46004803603602081101561039d57600080fd5b50356109ff565b604080516001600160a01b039092168252519081900360200190f35b3480156103cc57600080fd5b506102ee600480360360408110156103e357600080fd5b506001600160a01b038135169060200135610a61565b34801561040557600080fd5b50610227610b3c565b34801561041a57600080fd5b50610423610b45565b60408051918252519081900360200190f35b34801561044157600080fd5b506102ee6004803603606081101561045857600080fd5b506001600160a01b03813581169160208101359091169060400135610b56565b34801561048457600080fd5b506104236004803603604081101561049b57600080fd5b506001600160a01b038135169060200135610bad565b3480156104bd57600080fd5b506102ee600480360360408110156104d457600080fd5b506001600160a01b038135169060200135610bd8565b3480156104f657600080fd5b506102ee6004803603606081101561050d57600080fd5b506001600160a01b03813581169160208101359091169060400135610c0b565b34801561053957600080fd5b506102ee610c26565b34801561054e57600080fd5b506104236004803603602081101561056557600080fd5b5035610c4c565b34801561057857600080fd5b50610423610c62565b34801561058d57600080fd5b50610423610c68565b3480156105a257600080fd5b506103a4600480360360208110156105b957600080fd5b5035610c6e565b3480156105cc57600080fd5b506102ee610c96565b3480156105e157600080fd5b50610305610ce6565b3480156105f657600080fd5b506104236004803603602081101561060d57600080fd5b50356001600160a01b0316610d47565b34801561062957600080fd5b50610423610daf565b6102ee6004803603602081101561064857600080fd5b5035610db5565b34801561065b57600080fd5b506103a4610f14565b34801561067057600080fd5b50610305610f23565b34801561068557600080fd5b50610423610f84565b34801561069a57600080fd5b50610423610f8a565b3480156106af57600080fd5b506102ee600480360360408110156106c657600080fd5b506001600160a01b0381351690602001351515610f90565b3480156106ea57600080fd5b506102ee6004803603602081101561070157600080fd5b50356001600160a01b0316611095565b34801561071d57600080fd5b506102ee6004803603608081101561073457600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561076f57600080fd5b82018360208201111561078157600080fd5b803590602001918460018302840111640100000000831117156107a357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506110ce945050505050565b3480156107f057600080fd5b5061042361112c565b34801561080557600080fd5b506102ee6004803603602081101561081c57600080fd5b81019060208101813564010000000081111561083757600080fd5b82018360208201111561084957600080fd5b8035906020019184602083028401116401000000008311171561086b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611132945050505050565b3480156108b557600080fd5b50610305600480360360208110156108cc57600080fd5b50356112db565b3480156108df57600080fd5b50610423611582565b3480156108f457600080fd5b506102276004803603604081101561090b57600080fd5b506001600160a01b0381358116916020013516611588565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b600a546001600160a01b0316331461095d57600080fd5b610966816115b6565b50565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109f55780601f106109ca576101008083540402835291602001916109f5565b820191906000526020600020905b8154815290600101906020018083116109d857829003601f168201915b5050505050905090565b6000610a0a826115c9565b610a455760405162461bcd60e51b815260040180806020018281038252602c8152602001806124b7602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a6c82610c6e565b9050806001600160a01b0316836001600160a01b03161415610abf5760405162461bcd60e51b815260040180806020018281038252602181526020018061253b6021913960400191505060405180910390fd5b806001600160a01b0316610ad16115d6565b6001600160a01b03161480610af25750610af281610aed6115d6565b611588565b610b2d5760405162461bcd60e51b815260040180806020018281038252603881526020018061240a6038913960400191505060405180910390fd5b610b3783836115da565b505050565b60115460ff1681565b6000610b516002611648565b905090565b610b67610b616115d6565b82611653565b610ba25760405162461bcd60e51b815260040180806020018281038252603181526020018061255c6031913960400191505060405180910390fd5b610b378383836116f7565b6001600160a01b0382166000908152600160205260408120610bcf9083611843565b90505b92915050565b600a546001600160a01b03163314610bef57600080fd5b600c548111610bfd57600080fd5b610c07828261184f565b5050565b610b37838383604051806020016040528060008152506110ce565b600a546001600160a01b03163314610c3d57600080fd5b6011805460ff19166001179055565b600080610c5a60028461197d565b509392505050565b60105481565b60135481565b6000610bd28260405180606001604052806029815260200161246c6029913960029190611999565b600a546001600160a01b03163314610cad57600080fd5b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610966573d6000803e3d6000fd5b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109f55780601f106109ca576101008083540402835291602001916109f5565b60006001600160a01b038216610d8e5760405162461bcd60e51b815260040180806020018281038252602a815260200180612442602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020610bd290611648565b600d5481565b601254421015610e00576040805162461bcd60e51b81526020600482015260116024820152704e6f742079657420617661696c61626c6560781b604482015290519081900360640190fd5b6005811115610e47576040805162461bcd60e51b815260206004820152600e60248201526d4f6e6c792035207065722074782160901b604482015290519081900360640190fd5b600d5481601054011115610e99576040805162461bcd60e51b8152602060048201526014602482015273141d589b1a58c8135a5b9d0814dbdb190813dd5d60621b604482015290519081900360640190fd5b80600b54023414610ee3576040805162461bcd60e51b815260206004820152600f60248201526e496e76616c69642050726963696e6760881b604482015290519081900360640190fd5b60005b81811015610c0757610efa3360135461184f565b601080546001908101909155601380548201905501610ee6565b600a546001600160a01b031681565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109f55780601f106109ca576101008083540402835291602001916109f5565b600b5481565b600e5481565b610f986115d6565b6001600160a01b0316826001600160a01b03161415610ffe576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b806005600061100b6115d6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561104f6115d6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600a546001600160a01b031633146110ac57600080fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6110df6110d96115d6565b83611653565b61111a5760405162461bcd60e51b815260040180806020018281038252603181526020018061255c6031913960400191505060405180910390fd5b611126848484846119b0565b50505050565b600f5481565b600181511161114057600080fd5b60115460ff16806111545750600d54601054145b6111a5576040805162461bcd60e51b815260206004820152601860248201527f5265726f6c6c206e6f742079657420617661696c61626c650000000000000000604482015290519081900360640190fd5b600e546001825103600f5401106111f4576040805162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015290519081900360640190fd5b60005b81518110156112a557336001600160a01b031661122683838151811061121957fe5b6020026020010151610c6e565b6001600160a01b031614611281576040805162461bcd60e51b815260206004820152601b60248201527f596f7520646f6e2774206f776e20746865736520746f6b656e73210000000000604482015290519081900360640190fd5b61129d82828151811061129057fe5b6020026020010151611a02565b6001016111f7565b5060005b6001825103811015610c07576112c13360135461184f565b601380546001908101909155600f805482019055016112a9565b60606112e6826115c9565b6113215760405162461bcd60e51b815260040180806020018281038252602f81526020018061250c602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156113b65780601f1061138b576101008083540402835291602001916113b6565b820191906000526020600020905b81548152906001019060200180831161139957829003601f168201915b5050600954939450505050600260001961010060018416150201909116046113df579050610941565b8051156114b05760098160405160200180838054600181600116156101000203166002900480156114475780601f10611425576101008083540402835291820191611447565b820191906000526020600020905b815481529060010190602001808311611433575b5050825160208401908083835b602083106114735780518252601f199092019160209182019101611454565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050610941565b60096114bb84611acf565b60405160200180838054600181600116156101000203166002900480156115195780601f106114f7576101008083540402835291820191611519565b820191906000526020600020905b815481529060010190602001808311611505575b5050825160208401908083835b602083106115455780518252601f199092019160209182019101611526565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050919050565b600c5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b8051610c07906009906020840190612292565b6000610bd2600283611baa565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160f82610c6e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610bd282611bb6565b600061165e826115c9565b6116995760405162461bcd60e51b815260040180806020018281038252602c8152602001806123de602c913960400191505060405180910390fd5b60006116a483610c6e565b9050806001600160a01b0316846001600160a01b031614806116df5750836001600160a01b03166116d4846109ff565b6001600160a01b0316145b806116ef57506116ef8185611588565b949350505050565b826001600160a01b031661170a82610c6e565b6001600160a01b03161461174f5760405162461bcd60e51b81526004018080602001828103825260298152602001806124e36029913960400191505060405180910390fd5b6001600160a01b0382166117945760405162461bcd60e51b81526004018080602001828103825260248152602001806123ba6024913960400191505060405180910390fd5b61179f838383610b37565b6117aa6000826115da565b6001600160a01b03831660009081526001602052604090206117cc9082611bba565b506001600160a01b03821660009081526001602052604090206117ef9082611bc6565b506117fc60028284611bd2565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610bcf8383611be8565b6001600160a01b0382166118aa576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6118b3816115c9565b15611905576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b61191160008383610b37565b6001600160a01b03821660009081526001602052604090206119339082611bc6565b5061194060028284611bd2565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080808061198c8686611c4c565b9097909650945050505050565b60006119a6848484611cc7565b90505b9392505050565b6119bb8484846116f7565b6119c784848484611d91565b6111265760405162461bcd60e51b81526004018080602001828103825260328152602001806123886032913960400191505060405180910390fd5b6000611a0d82610c6e565b9050611a1b81600084610b37565b611a266000836115da565b6000828152600860205260409020546002600019610100600184161502019091160415611a64576000828152600860205260408120611a6491612310565b6001600160a01b0381166000908152600160205260409020611a869083611bba565b50611a92600283611fba565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081611af457506040805180820190915260018152600360fc1b6020820152610941565b8160005b8115611b0c57600101600a82049150611af8565b60608167ffffffffffffffff81118015611b2557600080fd5b506040519080825280601f01601f191660200182016040528015611b50576020820181803683370190505b50859350905060001982015b8315611ba157600a840660300160f81b82828060019003935081518110611b7f57fe5b60200101906001600160f81b031916908160001a905350600a84049350611b5c565b50949350505050565b6000610bcf8383611fc6565b5490565b6000610bcf8383611fde565b6000610bcf83836120a4565b60006119a684846001600160a01b0385166120ee565b81546000908210611c2a5760405162461bcd60e51b81526004018080602001828103825260228152602001806123666022913960400191505060405180910390fd5b826000018281548110611c3957fe5b9060005260206000200154905092915050565b815460009081908310611c905760405162461bcd60e51b81526004018080602001828103825260228152602001806124956022913960400191505060405180910390fd5b6000846000018481548110611ca157fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611d625760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d27578181015183820152602001611d0f565b50505050905090810190601f168015611d545780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110611d7557fe5b9060005260206000209060020201600101549150509392505050565b6000611da5846001600160a01b0316612185565b611db1575060016116ef565b600060606001600160a01b038616630a85bd0160e11b611dcf6115d6565b89888860405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611e36578181015183820152602001611e1e565b50505050905090810190601f168015611e635780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b60208310611ecb5780518252601f199092019160209182019101611eac565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611f2d576040519150601f19603f3d011682016040523d82523d6000602084013e611f32565b606091505b509150915081611f8357805115611f4c5780518082602001fd5b60405162461bcd60e51b81526004018080602001828103825260328152602001806123886032913960400191505060405180910390fd5b6000818060200190516020811015611f9a57600080fd5b50516001600160e01b031916630a85bd0160e11b1493506116ef92505050565b6000610bcf83836121be565b60009081526001919091016020526040902054151590565b6000818152600183016020526040812054801561209a578354600019808301919081019060009087908390811061201157fe5b906000526020600020015490508087600001848154811061202e57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061205e57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610bd2565b6000915050610bd2565b60006120b08383611fc6565b6120e657508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610bd2565b506000610bd2565b6000828152600184016020526040812054806121535750506040805180820182528381526020808201848152865460018181018955600089815284812095516002909302909501918255915190820155865486845281880190925292909120556119a9565b8285600001600183038154811061216657fe5b90600052602060002090600202016001018190555060009150506119a9565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906116ef575050151592915050565b6000818152600183016020526040812054801561209a57835460001980830191908101906000908790839081106121f157fe5b906000526020600020906002020190508087600001848154811061221157fe5b60009182526020808320845460029093020191825560019384015491840191909155835482528983019052604090209084019055865487908061225057fe5b6000828152602080822060026000199094019384020182815560019081018390559290935588815289820190925260408220919091559450610bd29350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106122d357805160ff1916838001178555612300565b82800160010185558215612300579182015b828111156123005782518255916020019190600101906122e5565b5061230c929150612350565b5090565b50805460018160011615610100020316600290046000825580601f106123365750610966565b601f01602090049060005260206000209081019061096691905b5b8082111561230c576000815560010161235156fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a26469706673582212207caad0b7a5bd21305c8d9439bea542bc71acc7762e4959cc8050f44dfb3cffe364736f6c634300060c0033000000000000000000000000000000000000000000000000000000006170bb90
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063672729991161010d578063a0ba6292116100a0578063bb1703a41161006f578063bb1703a4146107e4578063c32ffe1b146107f9578063c87b56dd146108a9578063d5abeb01146108d3578063e985e9c5146108e8576101ee565b8063a0ba62921461068e578063a22cb465146106a3578063a6f9dae1146106de578063b88d4fde14610711576101ee565b80638923d78a116100dc5780638923d78a146106325780638da5cb5b1461064f57806395d89b4114610664578063a035b1fe14610679576101ee565b806367272999146105c05780636c0360eb146105d557806370a08231146105ea57806384b6d3b51461061d576101ee565b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461054257806353a30ca91461056c57806361bc221a146105815780636352211e14610596576101ee565b80632f745c591461047857806341e79359146104b157806342842e0e146104ea5780634c400d221461052d576101ee565b8063095ea7b3116101c1578063095ea7b3146103c0578063173d6146146103f957806318160ddd1461040e57806323b872dd14610435576101ee565b806301ffc9a7146101f357806302fe53051461023b57806306fdde03146102f0578063081812fc1461037a575b600080fd5b3480156101ff57600080fd5b506102276004803603602081101561021657600080fd5b50356001600160e01b031916610923565b604080519115158252519081900360200190f35b34801561024757600080fd5b506102ee6004803603602081101561025e57600080fd5b81019060208101813564010000000081111561027957600080fd5b82018360208201111561028b57600080fd5b803590602001918460018302840111640100000000831117156102ad57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610946945050505050565b005b3480156102fc57600080fd5b50610305610969565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561033f578181015183820152602001610327565b50505050905090810190601f16801561036c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038657600080fd5b506103a46004803603602081101561039d57600080fd5b50356109ff565b604080516001600160a01b039092168252519081900360200190f35b3480156103cc57600080fd5b506102ee600480360360408110156103e357600080fd5b506001600160a01b038135169060200135610a61565b34801561040557600080fd5b50610227610b3c565b34801561041a57600080fd5b50610423610b45565b60408051918252519081900360200190f35b34801561044157600080fd5b506102ee6004803603606081101561045857600080fd5b506001600160a01b03813581169160208101359091169060400135610b56565b34801561048457600080fd5b506104236004803603604081101561049b57600080fd5b506001600160a01b038135169060200135610bad565b3480156104bd57600080fd5b506102ee600480360360408110156104d457600080fd5b506001600160a01b038135169060200135610bd8565b3480156104f657600080fd5b506102ee6004803603606081101561050d57600080fd5b506001600160a01b03813581169160208101359091169060400135610c0b565b34801561053957600080fd5b506102ee610c26565b34801561054e57600080fd5b506104236004803603602081101561056557600080fd5b5035610c4c565b34801561057857600080fd5b50610423610c62565b34801561058d57600080fd5b50610423610c68565b3480156105a257600080fd5b506103a4600480360360208110156105b957600080fd5b5035610c6e565b3480156105cc57600080fd5b506102ee610c96565b3480156105e157600080fd5b50610305610ce6565b3480156105f657600080fd5b506104236004803603602081101561060d57600080fd5b50356001600160a01b0316610d47565b34801561062957600080fd5b50610423610daf565b6102ee6004803603602081101561064857600080fd5b5035610db5565b34801561065b57600080fd5b506103a4610f14565b34801561067057600080fd5b50610305610f23565b34801561068557600080fd5b50610423610f84565b34801561069a57600080fd5b50610423610f8a565b3480156106af57600080fd5b506102ee600480360360408110156106c657600080fd5b506001600160a01b0381351690602001351515610f90565b3480156106ea57600080fd5b506102ee6004803603602081101561070157600080fd5b50356001600160a01b0316611095565b34801561071d57600080fd5b506102ee6004803603608081101561073457600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561076f57600080fd5b82018360208201111561078157600080fd5b803590602001918460018302840111640100000000831117156107a357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506110ce945050505050565b3480156107f057600080fd5b5061042361112c565b34801561080557600080fd5b506102ee6004803603602081101561081c57600080fd5b81019060208101813564010000000081111561083757600080fd5b82018360208201111561084957600080fd5b8035906020019184602083028401116401000000008311171561086b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611132945050505050565b3480156108b557600080fd5b50610305600480360360208110156108cc57600080fd5b50356112db565b3480156108df57600080fd5b50610423611582565b3480156108f457600080fd5b506102276004803603604081101561090b57600080fd5b506001600160a01b0381358116916020013516611588565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b600a546001600160a01b0316331461095d57600080fd5b610966816115b6565b50565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109f55780601f106109ca576101008083540402835291602001916109f5565b820191906000526020600020905b8154815290600101906020018083116109d857829003601f168201915b5050505050905090565b6000610a0a826115c9565b610a455760405162461bcd60e51b815260040180806020018281038252602c8152602001806124b7602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a6c82610c6e565b9050806001600160a01b0316836001600160a01b03161415610abf5760405162461bcd60e51b815260040180806020018281038252602181526020018061253b6021913960400191505060405180910390fd5b806001600160a01b0316610ad16115d6565b6001600160a01b03161480610af25750610af281610aed6115d6565b611588565b610b2d5760405162461bcd60e51b815260040180806020018281038252603881526020018061240a6038913960400191505060405180910390fd5b610b3783836115da565b505050565b60115460ff1681565b6000610b516002611648565b905090565b610b67610b616115d6565b82611653565b610ba25760405162461bcd60e51b815260040180806020018281038252603181526020018061255c6031913960400191505060405180910390fd5b610b378383836116f7565b6001600160a01b0382166000908152600160205260408120610bcf9083611843565b90505b92915050565b600a546001600160a01b03163314610bef57600080fd5b600c548111610bfd57600080fd5b610c07828261184f565b5050565b610b37838383604051806020016040528060008152506110ce565b600a546001600160a01b03163314610c3d57600080fd5b6011805460ff19166001179055565b600080610c5a60028461197d565b509392505050565b60105481565b60135481565b6000610bd28260405180606001604052806029815260200161246c6029913960029190611999565b600a546001600160a01b03163314610cad57600080fd5b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610966573d6000803e3d6000fd5b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109f55780601f106109ca576101008083540402835291602001916109f5565b60006001600160a01b038216610d8e5760405162461bcd60e51b815260040180806020018281038252602a815260200180612442602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020610bd290611648565b600d5481565b601254421015610e00576040805162461bcd60e51b81526020600482015260116024820152704e6f742079657420617661696c61626c6560781b604482015290519081900360640190fd5b6005811115610e47576040805162461bcd60e51b815260206004820152600e60248201526d4f6e6c792035207065722074782160901b604482015290519081900360640190fd5b600d5481601054011115610e99576040805162461bcd60e51b8152602060048201526014602482015273141d589b1a58c8135a5b9d0814dbdb190813dd5d60621b604482015290519081900360640190fd5b80600b54023414610ee3576040805162461bcd60e51b815260206004820152600f60248201526e496e76616c69642050726963696e6760881b604482015290519081900360640190fd5b60005b81811015610c0757610efa3360135461184f565b601080546001908101909155601380548201905501610ee6565b600a546001600160a01b031681565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109f55780601f106109ca576101008083540402835291602001916109f5565b600b5481565b600e5481565b610f986115d6565b6001600160a01b0316826001600160a01b03161415610ffe576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b806005600061100b6115d6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561104f6115d6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600a546001600160a01b031633146110ac57600080fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6110df6110d96115d6565b83611653565b61111a5760405162461bcd60e51b815260040180806020018281038252603181526020018061255c6031913960400191505060405180910390fd5b611126848484846119b0565b50505050565b600f5481565b600181511161114057600080fd5b60115460ff16806111545750600d54601054145b6111a5576040805162461bcd60e51b815260206004820152601860248201527f5265726f6c6c206e6f742079657420617661696c61626c650000000000000000604482015290519081900360640190fd5b600e546001825103600f5401106111f4576040805162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015290519081900360640190fd5b60005b81518110156112a557336001600160a01b031661122683838151811061121957fe5b6020026020010151610c6e565b6001600160a01b031614611281576040805162461bcd60e51b815260206004820152601b60248201527f596f7520646f6e2774206f776e20746865736520746f6b656e73210000000000604482015290519081900360640190fd5b61129d82828151811061129057fe5b6020026020010151611a02565b6001016111f7565b5060005b6001825103811015610c07576112c13360135461184f565b601380546001908101909155600f805482019055016112a9565b60606112e6826115c9565b6113215760405162461bcd60e51b815260040180806020018281038252602f81526020018061250c602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156113b65780601f1061138b576101008083540402835291602001916113b6565b820191906000526020600020905b81548152906001019060200180831161139957829003601f168201915b5050600954939450505050600260001961010060018416150201909116046113df579050610941565b8051156114b05760098160405160200180838054600181600116156101000203166002900480156114475780601f10611425576101008083540402835291820191611447565b820191906000526020600020905b815481529060010190602001808311611433575b5050825160208401908083835b602083106114735780518252601f199092019160209182019101611454565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050610941565b60096114bb84611acf565b60405160200180838054600181600116156101000203166002900480156115195780601f106114f7576101008083540402835291820191611519565b820191906000526020600020905b815481529060010190602001808311611505575b5050825160208401908083835b602083106115455780518252601f199092019160209182019101611526565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050919050565b600c5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b8051610c07906009906020840190612292565b6000610bd2600283611baa565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160f82610c6e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610bd282611bb6565b600061165e826115c9565b6116995760405162461bcd60e51b815260040180806020018281038252602c8152602001806123de602c913960400191505060405180910390fd5b60006116a483610c6e565b9050806001600160a01b0316846001600160a01b031614806116df5750836001600160a01b03166116d4846109ff565b6001600160a01b0316145b806116ef57506116ef8185611588565b949350505050565b826001600160a01b031661170a82610c6e565b6001600160a01b03161461174f5760405162461bcd60e51b81526004018080602001828103825260298152602001806124e36029913960400191505060405180910390fd5b6001600160a01b0382166117945760405162461bcd60e51b81526004018080602001828103825260248152602001806123ba6024913960400191505060405180910390fd5b61179f838383610b37565b6117aa6000826115da565b6001600160a01b03831660009081526001602052604090206117cc9082611bba565b506001600160a01b03821660009081526001602052604090206117ef9082611bc6565b506117fc60028284611bd2565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610bcf8383611be8565b6001600160a01b0382166118aa576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6118b3816115c9565b15611905576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b61191160008383610b37565b6001600160a01b03821660009081526001602052604090206119339082611bc6565b5061194060028284611bd2565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080808061198c8686611c4c565b9097909650945050505050565b60006119a6848484611cc7565b90505b9392505050565b6119bb8484846116f7565b6119c784848484611d91565b6111265760405162461bcd60e51b81526004018080602001828103825260328152602001806123886032913960400191505060405180910390fd5b6000611a0d82610c6e565b9050611a1b81600084610b37565b611a266000836115da565b6000828152600860205260409020546002600019610100600184161502019091160415611a64576000828152600860205260408120611a6491612310565b6001600160a01b0381166000908152600160205260409020611a869083611bba565b50611a92600283611fba565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081611af457506040805180820190915260018152600360fc1b6020820152610941565b8160005b8115611b0c57600101600a82049150611af8565b60608167ffffffffffffffff81118015611b2557600080fd5b506040519080825280601f01601f191660200182016040528015611b50576020820181803683370190505b50859350905060001982015b8315611ba157600a840660300160f81b82828060019003935081518110611b7f57fe5b60200101906001600160f81b031916908160001a905350600a84049350611b5c565b50949350505050565b6000610bcf8383611fc6565b5490565b6000610bcf8383611fde565b6000610bcf83836120a4565b60006119a684846001600160a01b0385166120ee565b81546000908210611c2a5760405162461bcd60e51b81526004018080602001828103825260228152602001806123666022913960400191505060405180910390fd5b826000018281548110611c3957fe5b9060005260206000200154905092915050565b815460009081908310611c905760405162461bcd60e51b81526004018080602001828103825260228152602001806124956022913960400191505060405180910390fd5b6000846000018481548110611ca157fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611d625760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d27578181015183820152602001611d0f565b50505050905090810190601f168015611d545780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110611d7557fe5b9060005260206000209060020201600101549150509392505050565b6000611da5846001600160a01b0316612185565b611db1575060016116ef565b600060606001600160a01b038616630a85bd0160e11b611dcf6115d6565b89888860405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611e36578181015183820152602001611e1e565b50505050905090810190601f168015611e635780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b60208310611ecb5780518252601f199092019160209182019101611eac565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611f2d576040519150601f19603f3d011682016040523d82523d6000602084013e611f32565b606091505b509150915081611f8357805115611f4c5780518082602001fd5b60405162461bcd60e51b81526004018080602001828103825260328152602001806123886032913960400191505060405180910390fd5b6000818060200190516020811015611f9a57600080fd5b50516001600160e01b031916630a85bd0160e11b1493506116ef92505050565b6000610bcf83836121be565b60009081526001919091016020526040902054151590565b6000818152600183016020526040812054801561209a578354600019808301919081019060009087908390811061201157fe5b906000526020600020015490508087600001848154811061202e57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061205e57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610bd2565b6000915050610bd2565b60006120b08383611fc6565b6120e657508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610bd2565b506000610bd2565b6000828152600184016020526040812054806121535750506040805180820182528381526020808201848152865460018181018955600089815284812095516002909302909501918255915190820155865486845281880190925292909120556119a9565b8285600001600183038154811061216657fe5b90600052602060002090600202016001018190555060009150506119a9565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906116ef575050151592915050565b6000818152600183016020526040812054801561209a57835460001980830191908101906000908790839081106121f157fe5b906000526020600020906002020190508087600001848154811061221157fe5b60009182526020808320845460029093020191825560019384015491840191909155835482528983019052604090209084019055865487908061225057fe5b6000828152602080822060026000199094019384020182815560019081018390559290935588815289820190925260408220919091559450610bd29350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106122d357805160ff1916838001178555612300565b82800160010185558215612300579182015b828111156123005782518255916020019190600101906122e5565b5061230c929150612350565b5090565b50805460018160011615610100020316600290046000825580601f106123365750610966565b601f01602090049060005260206000209081019061096691905b5b8082111561230c576000815560010161235156fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a26469706673582212207caad0b7a5bd21305c8d9439bea542bc71acc7762e4959cc8050f44dfb3cffe364736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000006170bb90
-----Decoded View---------------
Arg [0] : _release (uint256): 1634778000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000006170bb90
Deployed Bytecode Sourcemap
55227:2646:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7703:142;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7703:142:0;-1:-1:-1;;;;;;7703:142:0;;:::i;:::-;;;;;;;;;;;;;;;;;;57479:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57479:118:0;;-1:-1:-1;57479:118:0;;-1:-1:-1;;;;;57479:118:0:i;:::-;;37283:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42067:213;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42067:213:0;;:::i;:::-;;;;-1:-1:-1;;;;;42067:213:0;;;;;;;;;;;;;;41384:390;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41384:390:0;;;;;;;;:::i;55640:25::-;;;;;;;;;;;;;:::i;40240:203::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;43815:305;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;43815:305:0;;;;;;;;;;;;;;;;;:::i;39927:154::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39927:154:0;;;;;;;;:::i;57177:177::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;57177:177:0;;;;;;;;:::i;44782:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44782:151:0;;;;;;;;;;;;;;;;;:::i;57362:109::-;;;;;;;;;;;;;:::i;40789:164::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40789:164:0;;:::i;55602:29::-;;;;;;;;;;;;;:::i;55694:26::-;;;;;;;;;;;;;:::i;37003:169::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37003:169:0;;:::i;57735:131::-;;;;;;;;;;;;;:::i;39456:89::-;;;;;;;;;;;;;:::i;36562:215::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36562:215:0;-1:-1:-1;;;;;36562:215:0;;:::i;55414:48::-;;;;;;;;;;;;;:::i;55975:503::-;;;;;;;;;;;;;;;;-1:-1:-1;55975:503:0;;:::i;55289:20::-;;;;;;;;;;;;;:::i;37490:96::-;;;;;;;;;;;;;:::i;55316:40::-;;;;;;;;;;;;;:::i;55469:80::-;;;;;;;;;;;;;:::i;42587:295::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42587:295:0;;;;;;;;;;:::i;57605:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57605:122:0;-1:-1:-1;;;;;57605:122:0;;:::i;45670:285::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45670:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45670:285:0;;-1:-1:-1;45670:285:0;;-1:-1:-1;;;;;45670:285:0:i;55558:37::-;;;;;;;;;;;;;:::i;56486:683::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56486:683:0;;-1:-1:-1;56486:683:0;;-1:-1:-1;;;;;56486:683:0:i;38462:755::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38462:755:0;;:::i;55375:32::-;;;;;;;;;;;;;:::i;43212:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;43212:156:0;;;;;;;;;;:::i;7703:142::-;-1:-1:-1;;;;;;7804:33:0;;7780:4;7804:33;;;;;;;;;;;;;7703:142;;;;:::o;57479:118::-;57555:5;;-1:-1:-1;;;;;57555:5:0;57541:10;:19;57533:28;;;;;;57572:17;57584:4;57572:11;:17::i;:::-;57479:118;:::o;37283:92::-;37362:5;37355:12;;;;;;;;-1:-1:-1;;37355:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37329:13;;37355:12;;37362:5;;37355:12;;37362:5;37355:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37283:92;:::o;42067:213::-;42135:7;42163:16;42171:7;42163;:16::i;:::-;42155:73;;;;-1:-1:-1;;;42155:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42248:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42248:24:0;;42067:213::o;41384:390::-;41465:13;41481:16;41489:7;41481;:16::i;:::-;41465:32;;41522:5;-1:-1:-1;;;;;41516:11:0;:2;-1:-1:-1;;;;;41516:11:0;;;41508:57;;;;-1:-1:-1;;;41508:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41602:5;-1:-1:-1;;;;;41586:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;41586:21:0;;:62;;;;41611:37;41628:5;41635:12;:10;:12::i;:::-;41611:16;:37::i;:::-;41578:154;;;;-1:-1:-1;;;41578:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41745:21;41754:2;41758:7;41745:8;:21::i;:::-;41384:390;;;:::o;55640:25::-;;;;;;:::o;40240:203::-;40293:7;40414:21;:12;:19;:21::i;:::-;40407:28;;40240:203;:::o;43815:305::-;43976:41;43995:12;:10;:12::i;:::-;44009:7;43976:18;:41::i;:::-;43968:103;;;;-1:-1:-1;;;43968:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44084:28;44094:4;44100:2;44104:7;44084:9;:28::i;39927:154::-;-1:-1:-1;;;;;40043:20:0;;40016:7;40043:20;;;:13;:20;;;;;:30;;40067:5;40043:23;:30::i;:::-;40036:37;;39927:154;;;;;:::o;57177:177::-;57268:5;;-1:-1:-1;;;;;57268:5:0;57254:10;:19;57246:28;;;;;;57304:9;;57293:8;:20;57285:29;;;;;;57325:20;57331:3;57336:8;57325:5;:20::i;:::-;57177:177;;:::o;44782:151::-;44886:39;44903:4;44909:2;44913:7;44886:39;;;;;;;;;;;;:16;:39::i;57362:109::-;57426:5;;-1:-1:-1;;;;;57426:5:0;57412:10;:19;57404:28;;;;;;57443:13;:20;;-1:-1:-1;;57443:20:0;57459:4;57443:20;;;57362:109::o;40789:164::-;40856:7;;40898:22;:12;40914:5;40898:15;:22::i;:::-;-1:-1:-1;40876:44:0;40789:164;-1:-1:-1;;;40789:164:0:o;55602:29::-;;;;:::o;55694:26::-;;;;:::o;37003:169::-;37067:7;37094:70;37111:7;37094:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;57735:131::-;57795:5;;-1:-1:-1;;;;;57795:5:0;57781:10;:19;57773:28;;;;;;57820:5;;57812:46;;-1:-1:-1;;;;;57820:5:0;;;;57836:21;57812:46;;;;;57820:5;57812:46;57820:5;57812:46;57836:21;57820:5;57812:46;;;;;;;;;;;;;;;;;;;39456:89;39529:8;39522:15;;;;;;;;-1:-1:-1;;39522:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39496:13;;39522:15;;39529:8;;39522:15;;39529:8;39522:15;;;;;;;;;;;;;;;;;;;;;;;;36562:215;36626:7;-1:-1:-1;;;;;36654:19:0;;36646:74;;;;-1:-1:-1;;;36646:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36740:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;55414:48::-;;;;:::o;55975:503::-;56059:7;;56040:15;:26;;56032:56;;;;;-1:-1:-1;;;56032:56:0;;;;;;;;;;;;-1:-1:-1;;;56032:56:0;;;;;;;;;;;;;;;56118:1;56107:7;:12;;56099:39;;;;;-1:-1:-1;;;56099:39:0;;;;;;;;;;;;-1:-1:-1;;;56099:39:0;;;;;;;;;;;;;;;56187:26;;56175:7;56158:14;;:24;56157:56;;56149:89;;;;;-1:-1:-1;;;56149:89:0;;;;;;;;;;;;-1:-1:-1;;;56149:89:0;;;;;;;;;;;;;;;56279:7;56271:5;;:15;56257:9;:30;56249:58;;;;;-1:-1:-1;;;56249:58:0;;;;;;;;;;;;-1:-1:-1;;;56249:58:0;;;;;;;;;;;;;;;56324:9;56320:151;56343:7;56339:1;:11;56320:151;;;56372:26;56378:10;56390:7;;56372:5;:26::i;:::-;56413:14;:19;;56431:1;56413:19;;;;;;56447:7;:12;;;;;;56352:3;56320:151;;55289:20;;;-1:-1:-1;;;;;55289:20:0;;:::o;37490:96::-;37571:7;37564:14;;;;;;;;-1:-1:-1;;37564:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37538:13;;37564:14;;37571:7;;37564:14;;37571:7;37564:14;;;;;;;;;;;;;;;;;;;;;;;;55316:40;;;;:::o;55469:80::-;;;;:::o;42587:295::-;42702:12;:10;:12::i;:::-;-1:-1:-1;;;;;42690:24:0;:8;-1:-1:-1;;;;;42690:24:0;;;42682:62;;;;;-1:-1:-1;;;42682:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;42802:8;42757:18;:32;42776:12;:10;:12::i;:::-;-1:-1:-1;;;;;42757:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;42757:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;42757:53:0;;;;;;;;;;;42841:12;:10;:12::i;:::-;-1:-1:-1;;;;;42826:48:0;;42865:8;42826:48;;;;;;;;;;;;;;;;;;;;42587:295;;:::o;57605:122::-;57685:5;;-1:-1:-1;;;;;57685:5:0;57671:10;:19;57663:28;;;;;;57702:5;:17;;-1:-1:-1;;;;;;57702:17:0;-1:-1:-1;;;;;57702:17:0;;;;;;;;;;57605:122::o;45670:285::-;45802:41;45821:12;:10;:12::i;:::-;45835:7;45802:18;:41::i;:::-;45794:103;;;;-1:-1:-1;;;45794:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45908:39;45922:4;45928:2;45932:7;45941:5;45908:13;:39::i;:::-;45670:285;;;;:::o;55558:37::-;;;;:::o;56486:683::-;56571:1;56554:7;:14;:18;56546:27;;;;;;56592:13;;;;;:61;;;56627:26;;56609:14;;:44;56592:61;56584:98;;;;;-1:-1:-1;;;56584:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;56749:24;;56744:1;56727:7;:14;:18;56701:22;;:45;:72;56693:99;;;;;-1:-1:-1;;;56693:99:0;;;;;;;;;;;;-1:-1:-1;;;56693:99:0;;;;;;;;;;;;;;;56808:9;56803:177;56827:7;:14;56823:1;:18;56803:177;;;56894:10;-1:-1:-1;;;;;56871:33:0;:19;56879:7;56887:1;56879:10;;;;;;;;;;;;;;56871:7;:19::i;:::-;-1:-1:-1;;;;;56871:33:0;;56863:73;;;;;-1:-1:-1;;;56863:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;56951:17;56957:7;56965:1;56957:10;;;;;;;;;;;;;;56951:5;:17::i;:::-;56843:3;;56803:177;;;;56996:9;56992:170;57032:1;57015:7;:14;:18;57011:1;:22;56992:170;;;57055:26;57061:10;57073:7;;57055:5;:26::i;:::-;57096:7;:12;;57107:1;57096:12;;;;;;57123:22;:27;;;;;;57035:3;56992:170;;38462:755;38527:13;38561:16;38569:7;38561;:16::i;:::-;38553:76;;;;-1:-1:-1;;;38553:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38668:19;;;;:10;:19;;;;;;;;;38642:45;;;;;;-1:-1:-1;;38642:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;38668:19;38642:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38769:8:0;38763:22;38642:45;;-1:-1:-1;;;;38763:22:0;-1:-1:-1;;38763:22:0;;;;;;;;;;;38759:76;;38814:9;-1:-1:-1;38807:16:0;;38759:76;38939:23;;:27;38935:112;;39014:8;39024:9;38997:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38997:37:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38997:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38983:52;;;;;38935:112;39179:8;39189:18;:7;:16;:18::i;:::-;39162:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39162:46:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39162:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39148:61;;;38462:755;;;:::o;55375:32::-;;;;:::o;43212:156::-;-1:-1:-1;;;;;43325:25:0;;;43301:4;43325:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43212:156::o;52599:100::-;52672:19;;;;:8;;:19;;;;;:::i;47148:119::-;47205:4;47229:30;:12;47251:7;47229:21;:30::i;2414:106::-;2502:10;2414:106;:::o;54350:158::-;54416:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;54416:29:0;-1:-1:-1;;;;;54416:29:0;;;;;;;;:24;;54470:16;54416:24;54470:7;:16::i;:::-;-1:-1:-1;;;;;54461:39:0;;;;;;;;;;;54350:158;;:::o;31550:123::-;31619:7;31646:19;31654:3;31646:7;:19::i;47637:333::-;47722:4;47747:16;47755:7;47747;:16::i;:::-;47739:73;;;;-1:-1:-1;;;47739:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47823:13;47839:16;47847:7;47839;:16::i;:::-;47823:32;;47885:5;-1:-1:-1;;;;;47874:16:0;:7;-1:-1:-1;;;;;47874:16:0;;:51;;;;47918:7;-1:-1:-1;;;;;47894:31:0;:20;47906:7;47894:11;:20::i;:::-;-1:-1:-1;;;;;47894:31:0;;47874:51;:87;;;;47929:32;47946:5;47953:7;47929:16;:32::i;:::-;47866:96;47637:333;-1:-1:-1;;;;47637:333:0:o;51236:574::-;51354:4;-1:-1:-1;;;;;51334:24:0;:16;51342:7;51334;:16::i;:::-;-1:-1:-1;;;;;51334:24:0;;51326:78;;;;-1:-1:-1;;;51326:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51423:16:0;;51415:65;;;;-1:-1:-1;;;51415:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51493:39;51514:4;51520:2;51524:7;51493:20;:39::i;:::-;51597:29;51614:1;51618:7;51597:8;:29::i;:::-;-1:-1:-1;;;;;51639:19:0;;;;;;:13;:19;;;;;:35;;51666:7;51639:26;:35::i;:::-;-1:-1:-1;;;;;;51685:17:0;;;;;;:13;:17;;;;;:30;;51707:7;51685:21;:30::i;:::-;-1:-1:-1;51728:29:0;:12;51745:7;51754:2;51728:16;:29::i;:::-;;51794:7;51790:2;-1:-1:-1;;;;;51775:27:0;51784:4;-1:-1:-1;;;;;51775:27:0;;;;;;;;;;;51236:574;;;:::o;24240:137::-;24311:7;24346:22;24350:3;24362:5;24346:3;:22::i;49738:404::-;-1:-1:-1;;;;;49818:16:0;;49810:61;;;;;-1:-1:-1;;;49810:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49891:16;49899:7;49891;:16::i;:::-;49890:17;49882:58;;;;;-1:-1:-1;;;49882:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;49953:45;49982:1;49986:2;49990:7;49953:20;:45::i;:::-;-1:-1:-1;;;;;50011:17:0;;;;;;:13;:17;;;;;:30;;50033:7;50011:21;:30::i;:::-;-1:-1:-1;50054:29:0;:12;50071:7;50080:2;50054:16;:29::i;:::-;-1:-1:-1;50101:33:0;;50126:7;;-1:-1:-1;;;;;50101:33:0;;;50118:1;;50101:33;;50118:1;;50101:33;49738:404;;:::o;32012:227::-;32092:7;;;;32152:22;32156:3;32168:5;32152:3;:22::i;:::-;32121:53;;;;-1:-1:-1;32012:227:0;-1:-1:-1;;;;;32012:227:0:o;32674:204::-;32781:7;32824:44;32829:3;32849;32855:12;32824:4;:44::i;:::-;32816:53;-1:-1:-1;32674:204:0;;;;;;:::o;46674:272::-;46788:28;46798:4;46804:2;46808:7;46788:9;:28::i;:::-;46835:48;46858:4;46864:2;46868:7;46877:5;46835:22;:48::i;:::-;46827:111;;;;-1:-1:-1;;;46827:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50330:520;50390:13;50406:16;50414:7;50406;:16::i;:::-;50390:32;;50435:48;50456:5;50471:1;50475:7;50435:20;:48::i;:::-;50524:29;50541:1;50545:7;50524:8;:29::i;:::-;50612:19;;;;:10;:19;;;;;50606:33;;-1:-1:-1;;50606:33:0;;;;;;;;;;;:38;50602:97;;50668:19;;;;:10;:19;;;;;50661:26;;;:::i;:::-;-1:-1:-1;;;;;50711:20:0;;;;;;:13;:20;;;;;:36;;50739:7;50711:27;:36::i;:::-;-1:-1:-1;50760:28:0;:12;50780:7;50760:19;:28::i;:::-;-1:-1:-1;50806:36:0;;50834:7;;50830:1;;-1:-1:-1;;;;;50806:36:0;;;;;50830:1;;50806:36;50330:520;;:::o;930:744::-;986:13;1207:10;1203:53;;-1:-1:-1;1234:10:0;;;;;;;;;;;;-1:-1:-1;;;1234:10:0;;;;;;1203:53;1281:5;1266:12;1322:78;1329:9;;1322:78;;1355:8;;1386:2;1378:10;;;;1322:78;;;1410:19;1442:6;1432:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1432:17:0;-1:-1:-1;1504:5:0;;-1:-1:-1;1410:39:0;-1:-1:-1;;;1476:10:0;;1520:115;1527:9;;1520:115;;1594:2;1587:4;:9;1582:2;:14;1571:27;;1553:6;1560:7;;;;;;;1553:15;;;;;;;;;;;:45;-1:-1:-1;;;;;1553:45:0;;;;;;;;-1:-1:-1;1621:2:0;1613:10;;;;1520:115;;;-1:-1:-1;1659:6:0;930:744;-1:-1:-1;;;;930:744:0:o;31311:151::-;31395:4;31419:35;31429:3;31449;31419:9;:35::i;28933:110::-;29016:19;;28933:110::o;23327:137::-;23397:4;23421:35;23429:3;23449:5;23421:7;:35::i;23020:131::-;23087:4;23111:32;23116:3;23136:5;23111:4;:32::i;30743:176::-;30832:4;30856:55;30861:3;30881;-1:-1:-1;;;;;30895:14:0;;30856:4;:55::i;20904:204::-;20999:18;;20971:7;;20999:26;-1:-1:-1;20991:73:0;;;;-1:-1:-1;;;20991:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21082:3;:11;;21094:5;21082:18;;;;;;;;;;;;;;;;21075:25;;20904:204;;;;:::o;29398:279::-;29502:19;;29465:7;;;;29502:27;-1:-1:-1;29494:74:0;;;;-1:-1:-1;;;29494:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29581:22;29606:3;:12;;29619:5;29606:19;;;;;;;;;;;;;;;;;;29581:44;;29644:5;:10;;;29656:5;:12;;;29636:33;;;;;29398:279;;;;;:::o;30100:319::-;30194:7;30233:17;;;:12;;;:17;;;;;;30284:12;30269:13;30261:36;;;;-1:-1:-1;;;30261:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30351:3;:12;;30375:1;30364:8;:12;30351:26;;;;;;;;;;;;;;;;;;:33;;;30344:40;;;30100:319;;;;;:::o;53264:1078::-;53385:4;53412:15;:2;-1:-1:-1;;;;;53412:13:0;;:15::i;:::-;53407:60;;-1:-1:-1;53451:4:0;53444:11;;53407:60;53538:12;53552:23;-1:-1:-1;;;;;53579:7:0;;-1:-1:-1;;;53684:12:0;:10;:12::i;:::-;53711:4;53730:7;53752:5;53587:181;;;;;;-1:-1:-1;;;;;53587:181:0;;;;;;-1:-1:-1;;;;;53587:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53587:181:0;;;-1:-1:-1;;53587:181:0;;;;;;;;;;;;;;-1:-1:-1;;;;;53587:181:0;-1:-1:-1;;;;;;53587:181:0;;;;;;;;;53579:190;;;53587:181;;53579:190;;-1:-1:-1;53579:190:0;;-1:-1:-1;53587:181:0;-1:-1:-1;53579:190:0;-1:-1:-1;53579:190:0;;-1:-1:-1;53579:190:0;;-1:-1:-1;53587:181:0;53579:190;;;;;;;;;;-1:-1:-1;;53579:190:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53537:232;;;;53785:7;53780:555;;53813:17;;:21;53809:384;;53981:10;53975:17;54042:15;54029:10;54025:2;54021:19;54014:44;53929:148;54117:60;;-1:-1:-1;;;54117:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53780:555;54225:13;54252:10;54241:32;;;;;;;;;;;;;;;-1:-1:-1;54241:32:0;-1:-1:-1;;;;;;54296:26:0;-1:-1:-1;;;54296:26:0;;-1:-1:-1;54288:35:0;;-1:-1:-1;;;54288:35:0;31085:142;31162:4;31186:33;31194:3;31214;31186:7;:33::i;28713:125::-;28784:4;28808:17;;;:12;;;;;:17;;;;;;:22;;;28713:125::o;18606:1544::-;18672:4;18811:19;;;:12;;;:19;;;;;;18847:15;;18843:1300;;19282:18;;-1:-1:-1;;19233:14:0;;;;19282:22;;;;19209:21;;19282:3;;:22;;19569;;;;;;;;;;;;;;19549:42;;19715:9;19686:3;:11;;19698:13;19686:26;;;;;;;;;;;;;;;;;;;:38;;;;19792:23;;;19834:1;19792:12;;;:23;;;;;;19818:17;;;19792:43;;19944:17;;19792:3;;19944:17;;;;;;;;;;;;;;;;;;;;;;20039:3;:12;;:19;20052:5;20039:19;;;;;;;;;;;20032:26;;;20082:4;20075:11;;;;;;;;18843:1300;20126:5;20119:12;;;;;18016:414;18079:4;18101:21;18111:3;18116:5;18101:9;:21::i;:::-;18096:327;;-1:-1:-1;18139:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;18322:18;;18300:19;;;:12;;;:19;;;;;;:40;;;;18355:11;;18096:327;-1:-1:-1;18406:5:0;18399:12;;26213:692;26289:4;26424:17;;;:12;;;:17;;;;;;26458:13;26454:444;;-1:-1:-1;;26543:38:0;;;;;;;;;;;;;;;;;;26525:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;26740:19;;26720:17;;;:12;;;:17;;;;;;;:39;26774:11;;26454:444;26854:5;26818:3;:12;;26842:1;26831:8;:12;26818:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;26881:5;26874:12;;;;;14452:619;14512:4;14980:20;;14823:66;15020:23;;;;;;:42;;-1:-1:-1;;15047:15:0;;;15012:51;-1:-1:-1;;14452:619:0:o;27080:1549::-;27144:4;27279:17;;;:12;;;:17;;;;;;27313:13;;27309:1313;;27745:19;;-1:-1:-1;;27698:12:0;;;;27745:23;;;;27674:21;;27745:3;;:23;;28042;;;;;;;;;;;;;;;;28013:52;;28190:9;28160:3;:12;;28173:13;28160:27;;;;;;;;;;;;;;;;:39;;:27;;;;;:39;;;;;;;;;;;;;;;28280:14;;28267:28;;:12;;;:28;;;;;28298:17;;;28267:48;;28424:18;;28267:3;;28424:18;;;;;;;;;;;;;;-1:-1:-1;;28424:18:0;;;;;;;;;;;;;;;;;;;;;28520:17;;;:12;;;:17;;;;;;28513:24;;;;28424:18;-1:-1:-1;28554:11:0;;-1:-1:-1;;;;28554:11:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://7caad0b7a5bd21305c8d9439bea542bc71acc7762e4959cc8050f44dfb3cffe3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.