Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MintContract
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.7; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/structs/EnumerableSetUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "./upgradable/ERC721EnumerableUpgradeable.sol"; interface Ipayment { function get_seed(uint256 seedIndex) external view returns (uint256); } interface IStaking { function stakeMany(address account, uint16[] calldata tokenIds) external; function randomHunterOwner(uint256 seed) external view returns (address); } contract MintContract is ReentrancyGuardUpgradeable, ERC721EnumerableUpgradeable, OwnableUpgradeable, PausableUpgradeable { using AddressUpgradeable for address; using EnumerableSetUpgradeable for EnumerableSetUpgradeable.UintSet; using CountersUpgradeable for CountersUpgradeable.Counter; event tokenStolen (address owner, address thief, uint256 tokenId); string public baseURI; uint256 public MAX_TOKENS; uint16 public minted; mapping (address => bool) private whitelistedContracts; IStaking public stakingContract; Ipayment public PaymentContract; function initialize(uint256 _maxTokens) initializer public { __ERC721_init("HeadGame", "HG"); __ERC721Enumerable_init(); __Ownable_init(); __ReentrancyGuard_init(); __Pausable_init(); _pause(); MAX_TOKENS = _maxTokens; } function mint(address recipient) external payable whenNotPaused { address msgSender = _msgSender(); require(minted + 1 <= MAX_TOKENS, "All tokens minted"); require(whitelistedContracts[msgSender], "Only admins can call this"); minted++; if (tx.origin != recipient && recipient != address(stakingContract)) emit tokenStolen(msgSender,recipient,minted); _safeMint(recipient, minted); } function getTokenTraits(uint256 tokenId) public view blockExternalContracts returns (bool) { uint256 last_seed = PaymentContract.get_seed(tokenId); require(last_seed != 0, "seed is not ready"); uint256 seed = uint256(keccak256(abi.encodePacked(last_seed,tokenId))); return (seed & 0xFFFF) % 10 != 0; } function getTokenIds(address _owner) public view blockExternalContracts returns (uint256[] memory _tokensOfOwner) { _tokensOfOwner = new uint256[](balanceOf(_owner)); for (uint256 i;i<balanceOf(_owner);i++){ _tokensOfOwner[i] = tokenOfOwnerByIndex(_owner, i); } } /** ERC 721 Functions */ function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function transferFrom(address from, address to, uint256 tokenId) public virtual override(ERC721Upgradeable) { if(!whitelistedContracts[_msgSender()]) { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); } _transfer(from, to, tokenId); } function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override(ERC721EnumerableUpgradeable) blockExternalContracts returns (uint256) { return super.tokenOfOwnerByIndex(owner, index); } function balanceOf(address owner) public view virtual override(ERC721Upgradeable) blockExternalContracts returns (uint256) { return super.balanceOf(owner); } function ownerOf(uint256 tokenId) public view virtual override(ERC721Upgradeable) blockExternalContracts returns (address) { return super.ownerOf(tokenId); } function tokenByIndex(uint256 index) public view virtual override(ERC721EnumerableUpgradeable) blockExternalContracts returns (uint256) { return super.tokenByIndex(index); } function safeTransferFrom(address from,address to, uint256 tokenId) public virtual override(ERC721Upgradeable){ super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data ) public virtual override(ERC721Upgradeable) { super.safeTransferFrom(from, to, tokenId, _data); } /** ADMIN FUNCTIONS */ function setBaseURI(string memory newUri) public onlyOwner { baseURI = newUri; } function setWhitelistContract(address contract_address, bool status) public onlyOwner{ whitelistedContracts[contract_address] = status; } function setStaking(address _staking) external onlyOwner { stakingContract = IStaking(_staking); } function setInit(address _staking, address _payment) public onlyOwner { stakingContract = IStaking(_staking); PaymentContract = Ipayment(_payment); } function setURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function setPaused(bool _paused) external requireContractsSet onlyOwner { if (_paused) _pause(); else _unpause(); } // Security Functions. modifier requireContractsSet() { require(address(PaymentContract) != address(0) && address(stakingContract) != address(0), "Contracts are not set"); _; } modifier blockExternalContracts() { if (tx.origin != msg.sender) { require(whitelistedContracts[msg.sender], "You're not allowed to call this function"); _; } else { _; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721EnumerableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721EnumerableUpgradeable is Initializable, ERC721Upgradeable, IERC721EnumerableUpgradeable { using AddressUpgradeable for address; function __ERC721Enumerable_init() internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721Enumerable_init_unchained(); } function __ERC721Enumerable_init_unchained() internal initializer { } // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165Upgradeable, ERC721Upgradeable) returns (bool) { return interfaceId == type(IERC721EnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(!_msgSender().isContract(), "Contracts are not allowed big man"); require(index < ERC721Upgradeable.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(!_msgSender().isContract(), "Contracts are not allowed big man"); require(index < ERC721EnumerableUpgradeable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721Upgradeable.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721Upgradeable.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } uint256[46] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSetUpgradeable { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal initializer { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal initializer { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library CountersUpgradeable { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721EnumerableUpgradeable is IERC721Upgradeable { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ function __ERC721_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal initializer { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} uint256[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuardUpgradeable is Initializable { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; function __ReentrancyGuard_init() internal initializer { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal initializer { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal initializer { __Context_init_unchained(); __Pausable_init_unchained(); } function __Pausable_init_unchained() internal initializer { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } uint256[49] private __gap; }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"address","name":"thief","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenStolen","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PaymentContract","outputs":[{"internalType":"contract Ipayment","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIds","outputs":[{"internalType":"uint256[]","name":"_tokensOfOwner","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenTraits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokens","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_staking","type":"address"},{"internalType":"address","name":"_payment","type":"address"}],"name":"setInit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_staking","type":"address"}],"name":"setStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contract_address","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setWhitelistContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"contract IStaking","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50612ef1806100206000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063ce842912116100a0578063ee5f55ad1161006f578063ee5f55ad146105e8578063ee99205c14610608578063f2fde38b14610629578063f47c84c514610649578063fe4b84df1461066057600080fd5b8063ce84291214610531578063cedb363b14610552578063d004b03614610572578063e985e9c51461059f57600080fd5b806394e56847116100e757806394e568471461049c57806395d89b41146104bc578063a22cb465146104d1578063b88d4fde146104f1578063c87b56dd1461051157600080fd5b806370a0823114610429578063715018a6146104495780638da5cb5b1461045e5780638ff390991461047c57600080fd5b80632f745c591161019b57806355f804b31161016a57806355f804b31461023e5780635c975abb146103c85780636352211e146103e15780636a627842146104015780636c0360eb1461041457600080fd5b80632f745c591461033957806342842e0e146103595780634f02c420146103795780634f6ccce7146103a857600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806316c38b3c146102da57806318160ddd146102fa57806323b872dd1461031957600080fd5b806301ffc9a71461020957806302fe53051461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b506102296102243660046129d2565b610680565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004612a0c565b6106ab565b005b34801561026c57600080fd5b506102756106f6565b6040516102359190612b63565b34801561028e57600080fd5b506102a261029d366004612a55565b610788565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d536600461298d565b61081d565b3480156102e657600080fd5b5061025e6102f53660046129b7565b610933565b34801561030657600080fd5b5060cb545b604051908152602001610235565b34801561032557600080fd5b5061025e6103343660046128ab565b6109e0565b34801561034557600080fd5b5061030b61035436600461298d565b610a29565b34801561036557600080fd5b5061025e6103743660046128ab565b610a84565b34801561038557600080fd5b50610161546103959061ffff1681565b60405161ffff9091168152602001610235565b3480156103b457600080fd5b5061030b6103c3366004612a55565b610a8f565b3480156103d457600080fd5b5061012d5460ff16610229565b3480156103ed57600080fd5b506102a26103fc366004612a55565b610ad6565b61025e61040f36600461285d565b610b18565b34801561042057600080fd5b50610275610cf3565b34801561043557600080fd5b5061030b61044436600461285d565b610d82565b34801561045557600080fd5b5061025e610dc4565b34801561046a57600080fd5b5060fb546001600160a01b03166102a2565b34801561048857600080fd5b5061025e61049736600461285d565b610dfa565b3480156104a857600080fd5b506102296104b7366004612a55565b610e47565b3480156104c857600080fd5b50610275610f82565b3480156104dd57600080fd5b5061025e6104ec366004612963565b610f91565b3480156104fd57600080fd5b5061025e61050c3660046128e7565b610f9c565b34801561051d57600080fd5b5061027561052c366004612a55565b610fae565b34801561053d57600080fd5b50610164546102a2906001600160a01b031681565b34801561055e57600080fd5b5061025e61056d366004612963565b611088565b34801561057e57600080fd5b5061059261058d36600461285d565b6110de565b6040516102359190612b1f565b3480156105ab57600080fd5b506102296105ba366004612878565b6001600160a01b039182166000908152609c6020908152604080832093909416825291909152205460ff1690565b3480156105f457600080fd5b5061025e610603366004612878565b61124f565b34801561061457600080fd5b50610163546102a2906001600160a01b031681565b34801561063557600080fd5b5061025e61064436600461285d565b6112a9565b34801561065557600080fd5b5061030b6101605481565b34801561066c57600080fd5b5061025e61067b366004612a55565b611341565b60006001600160e01b0319821663780e9d6360e01b14806106a557506106a58261141f565b92915050565b60fb546001600160a01b031633146106de5760405162461bcd60e51b81526004016106d590612c9f565b60405180910390fd5b80516106f29061015f906020840190612727565b5050565b60606097805461070590612db1565b80601f016020809104026020016040519081016040528092919081815260200182805461073190612db1565b801561077e5780601f106107535761010080835404028352916020019161077e565b820191906000526020600020905b81548152906001019060200180831161076157829003601f168201915b5050505050905090565b6000818152609960205260408120546001600160a01b03166108015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d5565b506000908152609b60205260409020546001600160a01b031690565b60006108288261146f565b9050806001600160a01b0316836001600160a01b031614156108965760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d5565b336001600160a01b03821614806108b257506108b281336105ba565b6109245760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d5565b61092e83836114e6565b505050565b610164546001600160a01b0316158015906109595750610163546001600160a01b031615155b61099d5760405162461bcd60e51b815260206004820152601560248201527410dbdb9d1c9858dd1cc8185c99481b9bdd081cd95d605a1b60448201526064016106d5565b60fb546001600160a01b031633146109c75760405162461bcd60e51b81526004016106d590612c9f565b80156109d8576109d5611554565b50565b6109d56115ee565b336000908152610162602052604090205460ff16610a1e57610a02338261166a565b610a1e5760405162461bcd60e51b81526004016106d590612cd4565b61092e838383611761565b6000323314610a7357336000908152610162602052604090205460ff16610a625760405162461bcd60e51b81526004016106d590612c57565b610a6c838361190c565b90506106a5565b610a7d838361190c565b9392505050565b61092e8383836119d3565b6000323314610ac857336000908152610162602052604090205460ff16610ac85760405162461bcd60e51b81526004016106d590612c57565b6106a5826119ee565b919050565b6000323314610b0f57336000908152610162602052604090205460ff16610b0f5760405162461bcd60e51b81526004016106d590612c57565b6106a58261146f565b61012d5460ff1615610b5f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106d5565b6101605461016154339190610b799061ffff166001612d25565b61ffff161115610bbf5760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b60448201526064016106d5565b6001600160a01b0381166000908152610162602052604090205460ff16610c285760405162461bcd60e51b815260206004820152601960248201527f4f6e6c792061646d696e732063616e2063616c6c20746869730000000000000060448201526064016106d5565b610161805461ffff16906000610c3d83612de6565b91906101000a81548161ffff021916908361ffff16021790555050816001600160a01b0316326001600160a01b031614158015610c895750610163546001600160a01b03838116911614155b15610ce05761016154604080516001600160a01b0384811682528516602082015261ffff90921682820152517f2cddb35ba13ce82de8c6fbf8faa2ca2cb3ff2000ab4e686e40acade0d27345509181900360600190a15b610161546106f290839061ffff16611aa1565b61015f8054610d0190612db1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2d90612db1565b8015610d7a5780601f10610d4f57610100808354040283529160200191610d7a565b820191906000526020600020905b815481529060010190602001808311610d5d57829003601f168201915b505050505081565b6000323314610dbb57336000908152610162602052604090205460ff16610dbb5760405162461bcd60e51b81526004016106d590612c57565b6106a582611abb565b60fb546001600160a01b03163314610dee5760405162461bcd60e51b81526004016106d590612c9f565b610df86000611b42565b565b60fb546001600160a01b03163314610e245760405162461bcd60e51b81526004016106d590612c9f565b61016380546001600160a01b0319166001600160a01b0392909216919091179055565b6000323314610e8057336000908152610162602052604090205460ff16610e805760405162461bcd60e51b81526004016106d590612c57565b61016454604051634b20b5d960e11b8152600481018490526000916001600160a01b0316906396416bb29060240160206040518083038186803b158015610ec657600080fd5b505afa158015610eda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efe9190612a6e565b905080610f415760405162461bcd60e51b815260206004820152601160248201527073656564206973206e6f7420726561647960781b60448201526064016106d5565b60408051602080820184905281830186905282518083038401815260609092019092528051910120610f78600a61ffff8316612e23565b1515949350505050565b60606098805461070590612db1565b6106f2338383611b94565b610fa884848484611c63565b50505050565b6000818152609960205260409020546060906001600160a01b031661102d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d5565b6000611037611c95565b905060008151116110575760405180602001604052806000815250610a7d565b8061106184611ca5565b604051602001611072929190612ab3565b6040516020818303038152906040529392505050565b60fb546001600160a01b031633146110b25760405162461bcd60e51b81526004016106d590612c9f565b6001600160a01b0391909116600090815261016260205260409020805460ff1916911515919091179055565b60603233146111b657336000908152610162602052604090205460ff166111175760405162461bcd60e51b81526004016106d590612c57565b61112082610d82565b67ffffffffffffffff81111561113857611138612e8f565b604051908082528060200260200182016040528015611161578160200160208202803683370190505b50905060005b61117083610d82565b8110156111b0576111818382610a29565b82828151811061119357611193612e79565b6020908102919091010152806111a881612e08565b915050611167565b50919050565b6111bf82610d82565b67ffffffffffffffff8111156111d7576111d7612e8f565b604051908082528060200260200182016040528015611200578160200160208202803683370190505b50905060005b61120f83610d82565b8110156111b0576112208382610a29565b82828151811061123257611232612e79565b60209081029190910101528061124781612e08565b915050611206565b60fb546001600160a01b031633146112795760405162461bcd60e51b81526004016106d590612c9f565b61016380546001600160a01b039384166001600160a01b0319918216179091556101648054929093169116179055565b60fb546001600160a01b031633146112d35760405162461bcd60e51b81526004016106d590612c9f565b6001600160a01b0381166113385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d5565b6109d581611b42565b600054610100900460ff168061135a575060005460ff16155b6113765760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611398576000805461ffff19166101011790555b6113dc604051806040016040528060088152602001674865616447616d6560c01b81525060405180604001604052806002815260200161484760f01b815250611da3565b6113e4611e2a565b6113ec611ead565b6113f4611f14565b6113fc611f73565b611404611554565b61016082905580156106f2576000805461ff00191690555050565b60006001600160e01b031982166380ac58cd60e01b148061145057506001600160e01b03198216635b5e139f60e01b145b806106a557506301ffc9a760e01b6001600160e01b03198316146106a5565b6000818152609960205260408120546001600160a01b0316806106a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d5565b6000818152609b6020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151b8261146f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61012d5460ff161561159b5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106d5565b61012d805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115d13390565b6040516001600160a01b03909116815260200160405180910390a1565b61012d5460ff166116385760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106d5565b61012d805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336115d1565b6000818152609960205260408120546001600160a01b03166116e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d5565b60006116ee8361146f565b9050806001600160a01b0316846001600160a01b031614806117295750836001600160a01b031661171e84610788565b6001600160a01b0316145b8061175957506001600160a01b038082166000908152609c602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117748261146f565b6001600160a01b0316146117dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106d5565b6001600160a01b03821661183e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d5565b611849838383611fda565b6118546000826114e6565b6001600160a01b0383166000908152609a6020526040812080546001929061187d908490612d6e565b90915550506001600160a01b0382166000908152609a602052604081208054600192906118ab908490612d42565b909155505060008181526099602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611922335b6001600160a01b03163b151590565b1561193f5760405162461bcd60e51b81526004016106d590612bc8565b61194883611abb565b82106119aa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106d5565b506001600160a01b0391909116600090815260c960209081526040808320938352929052205490565b61092e83838360405180602001604052806000815250610f9c565b60006119f933611913565b15611a165760405162461bcd60e51b81526004016106d590612bc8565b60cb548210611a7c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106d5565b60cb8281548110611a8f57611a8f612e79565b90600052602060002001549050919050565b6106f2828260405180602001604052806000815250612092565b60006001600160a01b038216611b265760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d5565b506001600160a01b03166000908152609a602052604090205490565b60fb80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611bf65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d5565b6001600160a01b038381166000818152609c6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c6d338361166a565b611c895760405162461bcd60e51b81526004016106d590612cd4565b610fa8848484846120c5565b606061015f805461070590612db1565b606081611cc95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cf35780611cdd81612e08565b9150611cec9050600a83612d5a565b9150611ccd565b60008167ffffffffffffffff811115611d0e57611d0e612e8f565b6040519080825280601f01601f191660200182016040528015611d38576020820181803683370190505b5090505b841561175957611d4d600183612d6e565b9150611d5a600a86612e23565b611d65906030612d42565b60f81b818381518110611d7a57611d7a612e79565b60200101906001600160f81b031916908160001a905350611d9c600a86612d5a565b9450611d3c565b600054610100900460ff1680611dbc575060005460ff16155b611dd85760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611dfa576000805461ffff19166101011790555b611e026120f8565b611e0a6120f8565b611e148383612162565b801561092e576000805461ff0019169055505050565b600054610100900460ff1680611e43575060005460ff16155b611e5f5760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611e81576000805461ffff19166101011790555b611e896120f8565b611e916120f8565b611e996120f8565b80156109d5576000805461ff001916905550565b600054610100900460ff1680611ec6575060005460ff16155b611ee25760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611f04576000805461ffff19166101011790555b611f0c6120f8565b611e996121f7565b600054610100900460ff1680611f2d575060005460ff16155b611f495760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611f6b576000805461ffff19166101011790555b611e99612257565b600054610100900460ff1680611f8c575060005460ff16155b611fa85760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611fca576000805461ffff19166101011790555b611fd26120f8565b611e996122c6565b6001600160a01b038316612035576120308160cb8054600083815260cc60205260408120829055600182018355919091527fa7ce836d032b2bf62b7e2097a8e0a6d8aeb35405ad15271e96d3b0188a1d06fb0155565b612058565b816001600160a01b0316836001600160a01b03161461205857612058838261233c565b6001600160a01b03821661206f5761092e816123d9565b826001600160a01b0316826001600160a01b03161461092e5761092e8282612488565b61209c83836124cc565b6120a9600084848461261a565b61092e5760405162461bcd60e51b81526004016106d590612b76565b6120d0848484611761565b6120dc8484848461261a565b610fa85760405162461bcd60e51b81526004016106d590612b76565b600054610100900460ff1680612111575060005460ff16155b61212d5760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611e99576000805461ffff191661010117905580156109d5576000805461ff001916905550565b600054610100900460ff168061217b575060005460ff16155b6121975760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff161580156121b9576000805461ffff19166101011790555b82516121cc906097906020860190612727565b5081516121e0906098906020850190612727565b50801561092e576000805461ff0019169055505050565b600054610100900460ff1680612210575060005460ff16155b61222c5760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff1615801561224e576000805461ffff19166101011790555b611e9933611b42565b600054610100900460ff1680612270575060005460ff16155b61228c5760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff161580156122ae576000805461ffff19166101011790555b6001805580156109d5576000805461ff001916905550565b600054610100900460ff16806122df575060005460ff16155b6122fb5760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff1615801561231d576000805461ffff19166101011790555b61012d805460ff1916905580156109d5576000805461ff001916905550565b6000600161234984611abb565b6123539190612d6e565b600083815260ca60205260409020549091508082146123a6576001600160a01b038416600090815260c960209081526040808320858452825280832054848452818420819055835260ca90915290208190555b50600091825260ca602090815260408084208490556001600160a01b03909416835260c981528383209183525290812055565b60cb546000906123eb90600190612d6e565b600083815260cc602052604081205460cb805493945090928490811061241357612413612e79565b906000526020600020015490508060cb838154811061243457612434612e79565b600091825260208083209091019290925582815260cc909152604080822084905585825281205560cb80548061246c5761246c612e63565b6001900381819060005260206000200160009055905550505050565b600061249383611abb565b6001600160a01b03909316600090815260c960209081526040808320868452825280832085905593825260ca9052919091209190915550565b6001600160a01b0382166125225760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d5565b6000818152609960205260409020546001600160a01b0316156125875760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d5565b61259360008383611fda565b6001600160a01b0382166000908152609a602052604081208054600192906125bc908490612d42565b909155505060008181526099602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561271c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061265e903390899088908890600401612ae2565b602060405180830381600087803b15801561267857600080fd5b505af19250505080156126a8575060408051601f3d908101601f191682019092526126a5918101906129ef565b60015b612702573d8080156126d6576040519150601f19603f3d011682016040523d82523d6000602084013e6126db565b606091505b5080516126fa5760405162461bcd60e51b81526004016106d590612b76565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611759565b506001949350505050565b82805461273390612db1565b90600052602060002090601f016020900481019282612755576000855561279b565b82601f1061276e57805160ff191683800117855561279b565b8280016001018555821561279b579182015b8281111561279b578251825591602001919060010190612780565b506127a79291506127ab565b5090565b5b808211156127a757600081556001016127ac565b600067ffffffffffffffff808411156127db576127db612e8f565b604051601f8501601f19908116603f0116810190828211818310171561280357612803612e8f565b8160405280935085815286868601111561281c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610ad157600080fd5b80358015158114610ad157600080fd5b60006020828403121561286f57600080fd5b610a7d82612836565b6000806040838503121561288b57600080fd5b61289483612836565b91506128a260208401612836565b90509250929050565b6000806000606084860312156128c057600080fd5b6128c984612836565b92506128d760208501612836565b9150604084013590509250925092565b600080600080608085870312156128fd57600080fd5b61290685612836565b935061291460208601612836565b925060408501359150606085013567ffffffffffffffff81111561293757600080fd5b8501601f8101871361294857600080fd5b612957878235602084016127c0565b91505092959194509250565b6000806040838503121561297657600080fd5b61297f83612836565b91506128a26020840161284d565b600080604083850312156129a057600080fd5b6129a983612836565b946020939093013593505050565b6000602082840312156129c957600080fd5b610a7d8261284d565b6000602082840312156129e457600080fd5b8135610a7d81612ea5565b600060208284031215612a0157600080fd5b8151610a7d81612ea5565b600060208284031215612a1e57600080fd5b813567ffffffffffffffff811115612a3557600080fd5b8201601f81018413612a4657600080fd5b611759848235602084016127c0565b600060208284031215612a6757600080fd5b5035919050565b600060208284031215612a8057600080fd5b5051919050565b60008151808452612a9f816020860160208601612d85565b601f01601f19169290920160200192915050565b60008351612ac5818460208801612d85565b835190830190612ad9818360208801612d85565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b1590830184612a87565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b5757835183529284019291840191600101612b3b565b50909695505050505050565b602081526000610a7d6020830184612a87565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526021908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420626967206d616040820152603760f91b606082015260800190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526028908201527f596f75277265206e6f7420616c6c6f77656420746f2063616c6c207468697320604082015267333ab731ba34b7b760c11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff808316818516808303821115612ad957612ad9612e37565b60008219821115612d5557612d55612e37565b500190565b600082612d6957612d69612e4d565b500490565b600082821015612d8057612d80612e37565b500390565b60005b83811015612da0578181015183820152602001612d88565b83811115610fa85750506000910152565b600181811c90821680612dc557607f821691505b602082108114156111b057634e487b7160e01b600052602260045260246000fd5b600061ffff80831681811415612dfe57612dfe612e37565b6001019392505050565b6000600019821415612e1c57612e1c612e37565b5060010190565b600082612e3257612e32612e4d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109d557600080fdfea2646970667358221220ca2bd362e6bfd19a2d87ef4b3fe424a6e19abd968a64d59721833d3967d0868264736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102045760003560e01c806370a0823111610118578063ce842912116100a0578063ee5f55ad1161006f578063ee5f55ad146105e8578063ee99205c14610608578063f2fde38b14610629578063f47c84c514610649578063fe4b84df1461066057600080fd5b8063ce84291214610531578063cedb363b14610552578063d004b03614610572578063e985e9c51461059f57600080fd5b806394e56847116100e757806394e568471461049c57806395d89b41146104bc578063a22cb465146104d1578063b88d4fde146104f1578063c87b56dd1461051157600080fd5b806370a0823114610429578063715018a6146104495780638da5cb5b1461045e5780638ff390991461047c57600080fd5b80632f745c591161019b57806355f804b31161016a57806355f804b31461023e5780635c975abb146103c85780636352211e146103e15780636a627842146104015780636c0360eb1461041457600080fd5b80632f745c591461033957806342842e0e146103595780634f02c420146103795780634f6ccce7146103a857600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806316c38b3c146102da57806318160ddd146102fa57806323b872dd1461031957600080fd5b806301ffc9a71461020957806302fe53051461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b506102296102243660046129d2565b610680565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004612a0c565b6106ab565b005b34801561026c57600080fd5b506102756106f6565b6040516102359190612b63565b34801561028e57600080fd5b506102a261029d366004612a55565b610788565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d536600461298d565b61081d565b3480156102e657600080fd5b5061025e6102f53660046129b7565b610933565b34801561030657600080fd5b5060cb545b604051908152602001610235565b34801561032557600080fd5b5061025e6103343660046128ab565b6109e0565b34801561034557600080fd5b5061030b61035436600461298d565b610a29565b34801561036557600080fd5b5061025e6103743660046128ab565b610a84565b34801561038557600080fd5b50610161546103959061ffff1681565b60405161ffff9091168152602001610235565b3480156103b457600080fd5b5061030b6103c3366004612a55565b610a8f565b3480156103d457600080fd5b5061012d5460ff16610229565b3480156103ed57600080fd5b506102a26103fc366004612a55565b610ad6565b61025e61040f36600461285d565b610b18565b34801561042057600080fd5b50610275610cf3565b34801561043557600080fd5b5061030b61044436600461285d565b610d82565b34801561045557600080fd5b5061025e610dc4565b34801561046a57600080fd5b5060fb546001600160a01b03166102a2565b34801561048857600080fd5b5061025e61049736600461285d565b610dfa565b3480156104a857600080fd5b506102296104b7366004612a55565b610e47565b3480156104c857600080fd5b50610275610f82565b3480156104dd57600080fd5b5061025e6104ec366004612963565b610f91565b3480156104fd57600080fd5b5061025e61050c3660046128e7565b610f9c565b34801561051d57600080fd5b5061027561052c366004612a55565b610fae565b34801561053d57600080fd5b50610164546102a2906001600160a01b031681565b34801561055e57600080fd5b5061025e61056d366004612963565b611088565b34801561057e57600080fd5b5061059261058d36600461285d565b6110de565b6040516102359190612b1f565b3480156105ab57600080fd5b506102296105ba366004612878565b6001600160a01b039182166000908152609c6020908152604080832093909416825291909152205460ff1690565b3480156105f457600080fd5b5061025e610603366004612878565b61124f565b34801561061457600080fd5b50610163546102a2906001600160a01b031681565b34801561063557600080fd5b5061025e61064436600461285d565b6112a9565b34801561065557600080fd5b5061030b6101605481565b34801561066c57600080fd5b5061025e61067b366004612a55565b611341565b60006001600160e01b0319821663780e9d6360e01b14806106a557506106a58261141f565b92915050565b60fb546001600160a01b031633146106de5760405162461bcd60e51b81526004016106d590612c9f565b60405180910390fd5b80516106f29061015f906020840190612727565b5050565b60606097805461070590612db1565b80601f016020809104026020016040519081016040528092919081815260200182805461073190612db1565b801561077e5780601f106107535761010080835404028352916020019161077e565b820191906000526020600020905b81548152906001019060200180831161076157829003601f168201915b5050505050905090565b6000818152609960205260408120546001600160a01b03166108015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d5565b506000908152609b60205260409020546001600160a01b031690565b60006108288261146f565b9050806001600160a01b0316836001600160a01b031614156108965760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d5565b336001600160a01b03821614806108b257506108b281336105ba565b6109245760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d5565b61092e83836114e6565b505050565b610164546001600160a01b0316158015906109595750610163546001600160a01b031615155b61099d5760405162461bcd60e51b815260206004820152601560248201527410dbdb9d1c9858dd1cc8185c99481b9bdd081cd95d605a1b60448201526064016106d5565b60fb546001600160a01b031633146109c75760405162461bcd60e51b81526004016106d590612c9f565b80156109d8576109d5611554565b50565b6109d56115ee565b336000908152610162602052604090205460ff16610a1e57610a02338261166a565b610a1e5760405162461bcd60e51b81526004016106d590612cd4565b61092e838383611761565b6000323314610a7357336000908152610162602052604090205460ff16610a625760405162461bcd60e51b81526004016106d590612c57565b610a6c838361190c565b90506106a5565b610a7d838361190c565b9392505050565b61092e8383836119d3565b6000323314610ac857336000908152610162602052604090205460ff16610ac85760405162461bcd60e51b81526004016106d590612c57565b6106a5826119ee565b919050565b6000323314610b0f57336000908152610162602052604090205460ff16610b0f5760405162461bcd60e51b81526004016106d590612c57565b6106a58261146f565b61012d5460ff1615610b5f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106d5565b6101605461016154339190610b799061ffff166001612d25565b61ffff161115610bbf5760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b60448201526064016106d5565b6001600160a01b0381166000908152610162602052604090205460ff16610c285760405162461bcd60e51b815260206004820152601960248201527f4f6e6c792061646d696e732063616e2063616c6c20746869730000000000000060448201526064016106d5565b610161805461ffff16906000610c3d83612de6565b91906101000a81548161ffff021916908361ffff16021790555050816001600160a01b0316326001600160a01b031614158015610c895750610163546001600160a01b03838116911614155b15610ce05761016154604080516001600160a01b0384811682528516602082015261ffff90921682820152517f2cddb35ba13ce82de8c6fbf8faa2ca2cb3ff2000ab4e686e40acade0d27345509181900360600190a15b610161546106f290839061ffff16611aa1565b61015f8054610d0190612db1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2d90612db1565b8015610d7a5780601f10610d4f57610100808354040283529160200191610d7a565b820191906000526020600020905b815481529060010190602001808311610d5d57829003601f168201915b505050505081565b6000323314610dbb57336000908152610162602052604090205460ff16610dbb5760405162461bcd60e51b81526004016106d590612c57565b6106a582611abb565b60fb546001600160a01b03163314610dee5760405162461bcd60e51b81526004016106d590612c9f565b610df86000611b42565b565b60fb546001600160a01b03163314610e245760405162461bcd60e51b81526004016106d590612c9f565b61016380546001600160a01b0319166001600160a01b0392909216919091179055565b6000323314610e8057336000908152610162602052604090205460ff16610e805760405162461bcd60e51b81526004016106d590612c57565b61016454604051634b20b5d960e11b8152600481018490526000916001600160a01b0316906396416bb29060240160206040518083038186803b158015610ec657600080fd5b505afa158015610eda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efe9190612a6e565b905080610f415760405162461bcd60e51b815260206004820152601160248201527073656564206973206e6f7420726561647960781b60448201526064016106d5565b60408051602080820184905281830186905282518083038401815260609092019092528051910120610f78600a61ffff8316612e23565b1515949350505050565b60606098805461070590612db1565b6106f2338383611b94565b610fa884848484611c63565b50505050565b6000818152609960205260409020546060906001600160a01b031661102d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d5565b6000611037611c95565b905060008151116110575760405180602001604052806000815250610a7d565b8061106184611ca5565b604051602001611072929190612ab3565b6040516020818303038152906040529392505050565b60fb546001600160a01b031633146110b25760405162461bcd60e51b81526004016106d590612c9f565b6001600160a01b0391909116600090815261016260205260409020805460ff1916911515919091179055565b60603233146111b657336000908152610162602052604090205460ff166111175760405162461bcd60e51b81526004016106d590612c57565b61112082610d82565b67ffffffffffffffff81111561113857611138612e8f565b604051908082528060200260200182016040528015611161578160200160208202803683370190505b50905060005b61117083610d82565b8110156111b0576111818382610a29565b82828151811061119357611193612e79565b6020908102919091010152806111a881612e08565b915050611167565b50919050565b6111bf82610d82565b67ffffffffffffffff8111156111d7576111d7612e8f565b604051908082528060200260200182016040528015611200578160200160208202803683370190505b50905060005b61120f83610d82565b8110156111b0576112208382610a29565b82828151811061123257611232612e79565b60209081029190910101528061124781612e08565b915050611206565b60fb546001600160a01b031633146112795760405162461bcd60e51b81526004016106d590612c9f565b61016380546001600160a01b039384166001600160a01b0319918216179091556101648054929093169116179055565b60fb546001600160a01b031633146112d35760405162461bcd60e51b81526004016106d590612c9f565b6001600160a01b0381166113385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d5565b6109d581611b42565b600054610100900460ff168061135a575060005460ff16155b6113765760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611398576000805461ffff19166101011790555b6113dc604051806040016040528060088152602001674865616447616d6560c01b81525060405180604001604052806002815260200161484760f01b815250611da3565b6113e4611e2a565b6113ec611ead565b6113f4611f14565b6113fc611f73565b611404611554565b61016082905580156106f2576000805461ff00191690555050565b60006001600160e01b031982166380ac58cd60e01b148061145057506001600160e01b03198216635b5e139f60e01b145b806106a557506301ffc9a760e01b6001600160e01b03198316146106a5565b6000818152609960205260408120546001600160a01b0316806106a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d5565b6000818152609b6020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151b8261146f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61012d5460ff161561159b5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106d5565b61012d805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115d13390565b6040516001600160a01b03909116815260200160405180910390a1565b61012d5460ff166116385760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106d5565b61012d805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336115d1565b6000818152609960205260408120546001600160a01b03166116e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d5565b60006116ee8361146f565b9050806001600160a01b0316846001600160a01b031614806117295750836001600160a01b031661171e84610788565b6001600160a01b0316145b8061175957506001600160a01b038082166000908152609c602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117748261146f565b6001600160a01b0316146117dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106d5565b6001600160a01b03821661183e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d5565b611849838383611fda565b6118546000826114e6565b6001600160a01b0383166000908152609a6020526040812080546001929061187d908490612d6e565b90915550506001600160a01b0382166000908152609a602052604081208054600192906118ab908490612d42565b909155505060008181526099602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611922335b6001600160a01b03163b151590565b1561193f5760405162461bcd60e51b81526004016106d590612bc8565b61194883611abb565b82106119aa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106d5565b506001600160a01b0391909116600090815260c960209081526040808320938352929052205490565b61092e83838360405180602001604052806000815250610f9c565b60006119f933611913565b15611a165760405162461bcd60e51b81526004016106d590612bc8565b60cb548210611a7c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106d5565b60cb8281548110611a8f57611a8f612e79565b90600052602060002001549050919050565b6106f2828260405180602001604052806000815250612092565b60006001600160a01b038216611b265760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d5565b506001600160a01b03166000908152609a602052604090205490565b60fb80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611bf65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d5565b6001600160a01b038381166000818152609c6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c6d338361166a565b611c895760405162461bcd60e51b81526004016106d590612cd4565b610fa8848484846120c5565b606061015f805461070590612db1565b606081611cc95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cf35780611cdd81612e08565b9150611cec9050600a83612d5a565b9150611ccd565b60008167ffffffffffffffff811115611d0e57611d0e612e8f565b6040519080825280601f01601f191660200182016040528015611d38576020820181803683370190505b5090505b841561175957611d4d600183612d6e565b9150611d5a600a86612e23565b611d65906030612d42565b60f81b818381518110611d7a57611d7a612e79565b60200101906001600160f81b031916908160001a905350611d9c600a86612d5a565b9450611d3c565b600054610100900460ff1680611dbc575060005460ff16155b611dd85760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611dfa576000805461ffff19166101011790555b611e026120f8565b611e0a6120f8565b611e148383612162565b801561092e576000805461ff0019169055505050565b600054610100900460ff1680611e43575060005460ff16155b611e5f5760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611e81576000805461ffff19166101011790555b611e896120f8565b611e916120f8565b611e996120f8565b80156109d5576000805461ff001916905550565b600054610100900460ff1680611ec6575060005460ff16155b611ee25760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611f04576000805461ffff19166101011790555b611f0c6120f8565b611e996121f7565b600054610100900460ff1680611f2d575060005460ff16155b611f495760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611f6b576000805461ffff19166101011790555b611e99612257565b600054610100900460ff1680611f8c575060005460ff16155b611fa85760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611fca576000805461ffff19166101011790555b611fd26120f8565b611e996122c6565b6001600160a01b038316612035576120308160cb8054600083815260cc60205260408120829055600182018355919091527fa7ce836d032b2bf62b7e2097a8e0a6d8aeb35405ad15271e96d3b0188a1d06fb0155565b612058565b816001600160a01b0316836001600160a01b03161461205857612058838261233c565b6001600160a01b03821661206f5761092e816123d9565b826001600160a01b0316826001600160a01b03161461092e5761092e8282612488565b61209c83836124cc565b6120a9600084848461261a565b61092e5760405162461bcd60e51b81526004016106d590612b76565b6120d0848484611761565b6120dc8484848461261a565b610fa85760405162461bcd60e51b81526004016106d590612b76565b600054610100900460ff1680612111575060005460ff16155b61212d5760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff16158015611e99576000805461ffff191661010117905580156109d5576000805461ff001916905550565b600054610100900460ff168061217b575060005460ff16155b6121975760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff161580156121b9576000805461ffff19166101011790555b82516121cc906097906020860190612727565b5081516121e0906098906020850190612727565b50801561092e576000805461ff0019169055505050565b600054610100900460ff1680612210575060005460ff16155b61222c5760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff1615801561224e576000805461ffff19166101011790555b611e9933611b42565b600054610100900460ff1680612270575060005460ff16155b61228c5760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff161580156122ae576000805461ffff19166101011790555b6001805580156109d5576000805461ff001916905550565b600054610100900460ff16806122df575060005460ff16155b6122fb5760405162461bcd60e51b81526004016106d590612c09565b600054610100900460ff1615801561231d576000805461ffff19166101011790555b61012d805460ff1916905580156109d5576000805461ff001916905550565b6000600161234984611abb565b6123539190612d6e565b600083815260ca60205260409020549091508082146123a6576001600160a01b038416600090815260c960209081526040808320858452825280832054848452818420819055835260ca90915290208190555b50600091825260ca602090815260408084208490556001600160a01b03909416835260c981528383209183525290812055565b60cb546000906123eb90600190612d6e565b600083815260cc602052604081205460cb805493945090928490811061241357612413612e79565b906000526020600020015490508060cb838154811061243457612434612e79565b600091825260208083209091019290925582815260cc909152604080822084905585825281205560cb80548061246c5761246c612e63565b6001900381819060005260206000200160009055905550505050565b600061249383611abb565b6001600160a01b03909316600090815260c960209081526040808320868452825280832085905593825260ca9052919091209190915550565b6001600160a01b0382166125225760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d5565b6000818152609960205260409020546001600160a01b0316156125875760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d5565b61259360008383611fda565b6001600160a01b0382166000908152609a602052604081208054600192906125bc908490612d42565b909155505060008181526099602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561271c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061265e903390899088908890600401612ae2565b602060405180830381600087803b15801561267857600080fd5b505af19250505080156126a8575060408051601f3d908101601f191682019092526126a5918101906129ef565b60015b612702573d8080156126d6576040519150601f19603f3d011682016040523d82523d6000602084013e6126db565b606091505b5080516126fa5760405162461bcd60e51b81526004016106d590612b76565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611759565b506001949350505050565b82805461273390612db1565b90600052602060002090601f016020900481019282612755576000855561279b565b82601f1061276e57805160ff191683800117855561279b565b8280016001018555821561279b579182015b8281111561279b578251825591602001919060010190612780565b506127a79291506127ab565b5090565b5b808211156127a757600081556001016127ac565b600067ffffffffffffffff808411156127db576127db612e8f565b604051601f8501601f19908116603f0116810190828211818310171561280357612803612e8f565b8160405280935085815286868601111561281c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610ad157600080fd5b80358015158114610ad157600080fd5b60006020828403121561286f57600080fd5b610a7d82612836565b6000806040838503121561288b57600080fd5b61289483612836565b91506128a260208401612836565b90509250929050565b6000806000606084860312156128c057600080fd5b6128c984612836565b92506128d760208501612836565b9150604084013590509250925092565b600080600080608085870312156128fd57600080fd5b61290685612836565b935061291460208601612836565b925060408501359150606085013567ffffffffffffffff81111561293757600080fd5b8501601f8101871361294857600080fd5b612957878235602084016127c0565b91505092959194509250565b6000806040838503121561297657600080fd5b61297f83612836565b91506128a26020840161284d565b600080604083850312156129a057600080fd5b6129a983612836565b946020939093013593505050565b6000602082840312156129c957600080fd5b610a7d8261284d565b6000602082840312156129e457600080fd5b8135610a7d81612ea5565b600060208284031215612a0157600080fd5b8151610a7d81612ea5565b600060208284031215612a1e57600080fd5b813567ffffffffffffffff811115612a3557600080fd5b8201601f81018413612a4657600080fd5b611759848235602084016127c0565b600060208284031215612a6757600080fd5b5035919050565b600060208284031215612a8057600080fd5b5051919050565b60008151808452612a9f816020860160208601612d85565b601f01601f19169290920160200192915050565b60008351612ac5818460208801612d85565b835190830190612ad9818360208801612d85565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b1590830184612a87565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b5757835183529284019291840191600101612b3b565b50909695505050505050565b602081526000610a7d6020830184612a87565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526021908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420626967206d616040820152603760f91b606082015260800190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526028908201527f596f75277265206e6f7420616c6c6f77656420746f2063616c6c207468697320604082015267333ab731ba34b7b760c11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff808316818516808303821115612ad957612ad9612e37565b60008219821115612d5557612d55612e37565b500190565b600082612d6957612d69612e4d565b500490565b600082821015612d8057612d80612e37565b500390565b60005b83811015612da0578181015183820152602001612d88565b83811115610fa85750506000910152565b600181811c90821680612dc557607f821691505b602082108114156111b057634e487b7160e01b600052602260045260246000fd5b600061ffff80831681811415612dfe57612dfe612e37565b6001019392505050565b6000600019821415612e1c57612e1c612e37565b5060010190565b600082612e3257612e32612e4d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109d557600080fdfea2646970667358221220ca2bd362e6bfd19a2d87ef4b3fe424a6e19abd968a64d59721833d3967d0868264736f6c63430008070033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.