Overview
TokenID
156
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CCR
Compiler Version
v0.8.3+commit.8d00100c
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract CCR is AccessControlEnumerable, ERC721Enumerable { using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; uint public constant MINT_PRICE = 0.04 ether; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); uint public constant _DEC_1_2021_16_00_00 = 1_638_345_600; string private _baseTokenURI; uint256 public _whitelistEndDate; uint256 public _maxSupply; address private _fundAddress; mapping (address => bool) public whitelist; mapping (address => uint) public minted; constructor(string memory baseTokenURI) ERC721("CryptoChasers Robot", "CCR"){ _maxSupply = 500; _fundAddress = msg.sender; _baseTokenURI = baseTokenURI; _whitelistEndDate = _DEC_1_2021_16_00_00; _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); } // modifier admin has admin role can call this function modifier onlyAdmin { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Only admin can call function"); _; } // get token URL function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { return string(super.tokenURI(tokenId)); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } // admin can change baseTokenURI function setBaseTokenURI(string memory baseTokenURI) onlyAdmin external{ _baseTokenURI = baseTokenURI; } function _mintProxy(address to) internal { _mint(to, _tokenIdTracker.current()); _tokenIdTracker.increment(); minted[to] += 1; } // admin can direct mint NFT to any address function mintByAdmin(address[] calldata recievers) onlyAdmin external { require(_maxSupply >= totalSupply() + recievers.length, "Max supply reached"); for (uint i = 0; i < recievers.length; i++) { _mintProxy(recievers[i]); } } // Users will have to spend ETH to mint NFT // max mint 2 per sender // should set a blockheight, before height should verify if in whitelist, // after it any address can mint freely function mint() external payable { require(minted[msg.sender] < 2, "Max mint 2 per sender"); require(_maxSupply >= totalSupply(), "Max supply reached"); if(whitelist[msg.sender]) { require(hasRole(MINTER_ROLE, _msgSender()), "must have minter role to mint"); if(minted[msg.sender] == 0){ _mintProxy(msg.sender); }else{ require(msg.value == MINT_PRICE, "Need to send 0.04 ether"); _mintProxy(msg.sender); } } else{ require(block.timestamp >= _whitelistEndDate, "only in whitelist can mint now"); require(msg.value == MINT_PRICE, "Need to send 0.04 ether"); _mintProxy(msg.sender); } } // admin can set whitelistEndDate function setwhitelistEndDate(uint256 whitelistEndDate) onlyAdmin external { _whitelistEndDate = whitelistEndDate; } // admin can set maxSupply function setMaxSupply(uint256 maxSupply) onlyAdmin external { _maxSupply = maxSupply; } // admin can set addresses array as MINTER_ROLE function addToWhitelist(address[] memory _whiteListAddresses) onlyAdmin external { for (uint i = 0; i < _whiteListAddresses.length; i++) { whitelist[_whiteListAddresses[i]] = true; super.grantRole(MINTER_ROLE, _whiteListAddresses[i]); } } // check if address is in whitelist function isInWhitelist(address _address) external view returns (bool) { return whitelist[_address]; } // get remaining supply function getRemainingSupply() external view returns (uint256) { return _maxSupply - totalSupply(); } // get minted count function getMintedCount(address _address) external view returns (uint256) { return minted[_address]; } // withdraw ethers function withdrawAll() external onlyAdmin { payable(_fundAddress).transfer(address(this).balance); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT 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 EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT 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 Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControlEnumerable.sol"; import "./AccessControl.sol"; import "../utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_DEC_1_2021_16_00_00","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelistEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whiteListAddresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isInWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recievers","type":"address[]"}],"name":"mintByAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"whitelistEndDate","type":"uint256"}],"name":"setwhitelistEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162005aa138038062005aa1833981810160405281019062000037919062000569565b6040518060400160405280601381526020017f43727970746f4368617365727320526f626f74000000000000000000000000008152506040518060400160405280600381526020017f43435200000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb92919062000447565b508060039080519060200190620000d492919062000447565b5050506101f4600f8190555033601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d90805190602001906200013992919062000447565b506361a72b80600e81905550620001696000801b6200015d620001b160201b60201c565b620001b960201b60201c565b620001aa7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200019e620001b160201b60201c565b620001b960201b60201c565b506200071e565b600033905090565b620001d082826200020160201b62001ca11760201c565b620001fc81600160008581526020019081526020016000206200021760201b62001caf1790919060201c565b505050565b6200021382826200024f60201b60201c565b5050565b600062000247836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200034060201b60201c565b905092915050565b620002618282620003ba60201b60201c565b6200033c57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002e1620001b160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200035483836200042460201b60201c565b620003af578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620003b4565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620004559062000643565b90600052602060002090601f016020900481019282620004795760008555620004c5565b82601f106200049457805160ff1916838001178555620004c5565b82800160010185558215620004c5579182015b82811115620004c4578251825591602001919060010190620004a7565b5b509050620004d49190620004d8565b5090565b5b80821115620004f3576000816000905550600101620004d9565b5090565b60006200050e6200050884620005d7565b620005ae565b9050828152602081018484840111156200052757600080fd5b620005348482856200060d565b509392505050565b600082601f8301126200054e57600080fd5b815162000560848260208601620004f7565b91505092915050565b6000602082840312156200057c57600080fd5b600082015167ffffffffffffffff8111156200059757600080fd5b620005a5848285016200053c565b91505092915050565b6000620005ba620005cd565b9050620005c8828262000679565b919050565b6000604051905090565b600067ffffffffffffffff821115620005f557620005f4620006de565b5b62000600826200070d565b9050602081019050919050565b60005b838110156200062d57808201518184015260208101905062000610565b838111156200063d576000848401525b50505050565b600060028204905060018216806200065c57607f821691505b60208210811415620006735762000672620006af565b5b50919050565b62000684826200070d565b810181811067ffffffffffffffff82111715620006a657620006a5620006de565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615373806200072e6000396000f3fe6080604052600436106102465760003560e01c806363810b6c116101395780639b19251a116100b6578063c87b56dd1161007a578063c87b56dd146108c9578063ca15c87314610906578063d539139314610943578063d547741f1461096e578063e4b7fb7314610997578063e985e9c5146109c257610246565b80639b19251a146107e4578063a217fddf14610821578063a22cb4651461084c578063b88d4fde14610875578063c002d23d1461089e57610246565b8063853828b6116100fd578063853828b6146106eb5780639010d07c1461070257806391d148541461073f57806395d89b411461077c57806397d6696b146107a757610246565b806363810b6c146106085780636f8b44b01461063157806370a082311461065a5780637ca3b31b146106975780637f649783146106c257610246565b806323b872dd116101c757806336568abe1161018b57806336568abe146105115780633da647731461053a57806342842e0e146105655780634f6ccce71461058e5780636352211e146105cb57610246565b806323b872dd1461041c578063248a9ca3146104455780632f2ff15d146104825780632f745c59146104ab57806330176e13146104e857610246565b8063114579101161020e57806311457910146103565780631249c58b1461037f57806318160ddd146103895780631e7269c5146103b457806322f4596f146103f157610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806309fd821214610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613e8c565b6109ff565b60405161027f919061447a565b60405180910390f35b34801561029457600080fd5b5061029d610a11565b6040516102aa91906144b0565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613f1f565b610aa3565b6040516102e79190614413565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613d29565b610b28565b005b34801561032557600080fd5b50610340600480360381019061033b9190613bbe565b610c40565b60405161034d919061447a565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613d65565b610c96565b005b610387610dbf565b005b34801561039557600080fd5b5061039e611097565b6040516103ab91906147d2565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190613bbe565b6110a4565b6040516103e891906147d2565b60405180910390f35b3480156103fd57600080fd5b506104066110bc565b60405161041391906147d2565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190613c23565b6110c2565b005b34801561045157600080fd5b5061046c60048036038101906104679190613deb565b611122565b6040516104799190614495565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190613e14565b611141565b005b3480156104b757600080fd5b506104d260048036038101906104cd9190613d29565b611175565b6040516104df91906147d2565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613ede565b61121a565b005b34801561051d57600080fd5b5061053860048036038101906105339190613e14565b611287565b005b34801561054657600080fd5b5061054f6112bb565b60405161055c91906147d2565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613c23565b6112c1565b005b34801561059a57600080fd5b506105b560048036038101906105b09190613f1f565b6112e1565b6040516105c291906147d2565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190613f1f565b611378565b6040516105ff9190614413565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613f1f565b61142a565b005b34801561063d57600080fd5b5061065860048036038101906106539190613f1f565b611487565b005b34801561066657600080fd5b50610681600480360381019061067c9190613bbe565b6114e4565b60405161068e91906147d2565b60405180910390f35b3480156106a357600080fd5b506106ac61159c565b6040516106b991906147d2565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e49190613daa565b6115a4565b005b3480156106f757600080fd5b5061070061171c565b005b34801561070e57600080fd5b5061072960048036038101906107249190613e50565b6117da565b6040516107369190614413565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190613e14565b611809565b604051610773919061447a565b60405180910390f35b34801561078857600080fd5b50610791611873565b60405161079e91906144b0565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c99190613bbe565b611905565b6040516107db91906147d2565b60405180910390f35b3480156107f057600080fd5b5061080b60048036038101906108069190613bbe565b61194e565b604051610818919061447a565b60405180910390f35b34801561082d57600080fd5b5061083661196e565b6040516108439190614495565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190613ced565b611975565b005b34801561088157600080fd5b5061089c60048036038101906108979190613c72565b611af6565b005b3480156108aa57600080fd5b506108b3611b58565b6040516108c091906147d2565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb9190613f1f565b611b63565b6040516108fd91906144b0565b60405180910390f35b34801561091257600080fd5b5061092d60048036038101906109289190613deb565b611b75565b60405161093a91906147d2565b60405180910390f35b34801561094f57600080fd5b50610958611b99565b6040516109659190614495565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190613e14565b611bbd565b005b3480156109a357600080fd5b506109ac611bf1565b6040516109b991906147d2565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e49190613be7565b611c0d565b6040516109f6919061447a565b60405180910390f35b6000610a0a82611cdf565b9050919050565b606060028054610a2090614ae2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c90614ae2565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b6000610aae82611d59565b610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490614692565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3382611378565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b906146f2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc3611dc5565b73ffffffffffffffffffffffffffffffffffffffff161480610bf25750610bf181610bec611dc5565b611c0d565b5b610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c28906145b2565b60405180910390fd5b610c3b8383611dcd565b505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610caa6000801b610ca5611dc5565b611809565b610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090614612565b60405180910390fd5b81819050610cf5611097565b610cff91906148e3565b600f541015610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90614732565b60405180910390fd5b60005b82829050811015610dba57610da7838383818110610d8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610da29190613bbe565b611e86565b8080610db290614b45565b915050610d46565b505050565b6002601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890614792565b60405180910390fd5b610e49611097565b600f541015610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490614732565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ffd57610f107f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610f0b611dc5565b611809565b610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690614752565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610fa557610fa033611e86565b610ff8565b668e1bc9bf0400003414610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590614632565b60405180910390fd5b610ff733611e86565b5b611095565b600e54421015611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990614652565b60405180910390fd5b668e1bc9bf040000341461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290614632565b60405180910390fd5b61109433611e86565b5b565b6000600a80549050905090565b60126020528060005260406000206000915090505481565b600f5481565b6110d36110cd611dc5565b82611efd565b611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990614712565b60405180910390fd5b61111d838383611fdb565b505050565b6000806000838152602001908152602001600020600101549050919050565b61114b8282612237565b6111708160016000858152602001908152602001600020611caf90919063ffffffff16565b505050565b6000611180836114e4565b82106111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b8906144f2565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61122e6000801b611229611dc5565b611809565b61126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490614612565b60405180910390fd5b80600d90805190602001906112839291906138ed565b5050565b6112918282612260565b6112b681600160008581526020019081526020016000206122e390919063ffffffff16565b505050565b600e5481565b6112dc83838360405180602001604052806000815250611af6565b505050565b60006112eb611097565b821061132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390614772565b60405180910390fd5b600a8281548110611366577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906145f2565b60405180910390fd5b80915050919050565b61143e6000801b611439611dc5565b611809565b61147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490614612565b60405180910390fd5b80600e8190555050565b61149b6000801b611496611dc5565b611809565b6114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190614612565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906145d2565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6361a72b8081565b6115b86000801b6115b3611dc5565b611809565b6115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90614612565b60405180910390fd5b60005b815181101561171857600160116000848481518110611642577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117057f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a68383815181106116f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611141565b808061171090614b45565b9150506115fa565b5050565b6117306000801b61172b611dc5565b611809565b61176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690614612565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156117d7573d6000803e3d6000fd5b50565b6000611801826001600086815260200190815260200160002061231390919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606003805461188290614ae2565b80601f01602080910402602001604051908101604052809291908181526020018280546118ae90614ae2565b80156118fb5780601f106118d0576101008083540402835291602001916118fb565b820191906000526020600020905b8154815290600101906020018083116118de57829003601f168201915b5050505050905090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60116020528060005260406000206000915054906101000a900460ff1681565b6000801b81565b61197d611dc5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290614572565b60405180910390fd5b80600760006119f8611dc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aa5611dc5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aea919061447a565b60405180910390a35050565b611b07611b01611dc5565b83611efd565b611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90614712565b60405180910390fd5b611b528484848461232d565b50505050565b668e1bc9bf04000081565b6060611b6e82612389565b9050919050565b6000611b9260016000848152602001908152602001600020612430565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611bc78282612445565b611bec81600160008581526020019081526020016000206122e390919063ffffffff16565b505050565b6000611bfb611097565b600f54611c0891906149c4565b905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cab828261246e565b5050565b6000611cd7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61254e565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d525750611d51826125be565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e4083611378565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e9981611e94600c6126a0565b6126ae565b611ea3600c61287c565b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ef391906148e3565b9250508190555050565b6000611f0882611d59565b611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e90614592565b60405180910390fd5b6000611f5283611378565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fc157508373ffffffffffffffffffffffffffffffffffffffff16611fa984610aa3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fd25750611fd18185611c0d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ffb82611378565b73ffffffffffffffffffffffffffffffffffffffff1614612051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612048906146b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b890614552565b60405180910390fd5b6120cc838383612892565b6120d7600082611dcd565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461212791906149c4565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461217e91906148e3565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61224082611122565b6122518161224c611dc5565b6129a6565b61225b838361246e565b505050565b612268611dc5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc906147b2565b60405180910390fd5b6122df8282612a43565b5050565b600061230b836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612b24565b905092915050565b60006123228360000183612caa565b60001c905092915050565b612338848484611fdb565b61234484848484612cfb565b612383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237a90614512565b60405180910390fd5b50505050565b606061239482611d59565b6123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca906146d2565b60405180910390fd5b60006123dd612e92565b905060008151116123fd5760405180602001604052806000815250612428565b8061240784612f24565b6040516020016124189291906143b5565b6040516020818303038152906040525b915050919050565b600061243e826000016130d1565b9050919050565b61244e82611122565b61245f8161245a611dc5565b6129a6565b6124698383612a43565b505050565b6124788282611809565b61254a57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506124ef611dc5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061255a83836130e2565b6125b35782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506125b8565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061268957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612699575061269882613105565b5b9050919050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590614672565b60405180910390fd5b61272781611d59565b15612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e90614532565b60405180910390fd5b61277360008383612892565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127c391906148e3565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6001816000016000828254019250508190555050565b61289d83838361317f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128e0576128db81613184565b61291f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461291e5761291d83826131cd565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129625761295d8161333a565b6129a1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129a05761299f828261347d565b5b5b505050565b6129b08282611809565b612a3f576129d58173ffffffffffffffffffffffffffffffffffffffff1660146134fc565b6129e38360001c60206134fc565b6040516020016129f49291906143d9565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3691906144b0565b60405180910390fd5b5050565b612a4d8282611809565b15612b2057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612ac5611dc5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114612c9e576000600182612b5691906149c4565b9050600060018660000180549050612b6e91906149c4565b9050818114612c29576000866000018281548110612bb5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612bff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612c63577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612ca4565b60009150505b92915050565b6000826000018281548110612ce8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6000612d1c8473ffffffffffffffffffffffffffffffffffffffff166137f6565b15612e85578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d45611dc5565b8786866040518563ffffffff1660e01b8152600401612d67949392919061442e565b602060405180830381600087803b158015612d8157600080fd5b505af1925050508015612db257506040513d601f19601f82011682018060405250810190612daf9190613eb5565b60015b612e35573d8060008114612de2576040519150601f19603f3d011682016040523d82523d6000602084013e612de7565b606091505b50600081511415612e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2490614512565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e8a565b600190505b949350505050565b6060600d8054612ea190614ae2565b80601f0160208091040260200160405190810160405280929190818152602001828054612ecd90614ae2565b8015612f1a5780601f10612eef57610100808354040283529160200191612f1a565b820191906000526020600020905b815481529060010190602001808311612efd57829003601f168201915b5050505050905090565b60606000821415612f6c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130cc565b600082905060005b60008214612f9e578080612f8790614b45565b915050600a82612f979190614939565b9150612f74565b60008167ffffffffffffffff811115612fe0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130125781602001600182028036833780820191505090505b5090505b600085146130c55760018261302b91906149c4565b9150600a8561303a9190614b8e565b603061304691906148e3565b60f81b818381518110613082577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130be9190614939565b9450613016565b8093505050505b919050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613178575061317782613809565b5b9050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131da846114e4565b6131e491906149c4565b90506000600960008481526020019081526020016000205490508181146132c9576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a8054905061334e91906149c4565b90506000600b60008481526020019081526020016000205490506000600a83815481106133a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600a83815481106133ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480613461577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613488836114e4565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60606000600283600261350f919061496a565b61351991906148e3565b67ffffffffffffffff811115613558577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561358a5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106135e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613672577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026136b2919061496a565b6136bc91906148e3565b90505b60018111156137a8577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613724577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110613761577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806137a190614ab8565b90506136bf565b50600084146137ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e3906144d2565b60405180910390fd5b8091505092915050565b600080823b905060008111915050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061387c575061387b82613883565b5b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546138f990614ae2565b90600052602060002090601f01602090048101928261391b5760008555613962565b82601f1061393457805160ff1916838001178555613962565b82800160010185558215613962579182015b82811115613961578251825591602001919060010190613946565b5b50905061396f9190613973565b5090565b5b8082111561398c576000816000905550600101613974565b5090565b60006139a361399e84614812565b6147ed565b905080838252602082019050828560208602820111156139c257600080fd5b60005b858110156139f257816139d88882613a78565b8452602084019350602083019250506001810190506139c5565b5050509392505050565b6000613a0f613a0a8461483e565b6147ed565b905082815260208101848484011115613a2757600080fd5b613a32848285614a76565b509392505050565b6000613a4d613a488461486f565b6147ed565b905082815260208101848484011115613a6557600080fd5b613a70848285614a76565b509392505050565b600081359050613a87816152ca565b92915050565b60008083601f840112613a9f57600080fd5b8235905067ffffffffffffffff811115613ab857600080fd5b602083019150836020820283011115613ad057600080fd5b9250929050565b600082601f830112613ae857600080fd5b8135613af8848260208601613990565b91505092915050565b600081359050613b10816152e1565b92915050565b600081359050613b25816152f8565b92915050565b600081359050613b3a8161530f565b92915050565b600081519050613b4f8161530f565b92915050565b600082601f830112613b6657600080fd5b8135613b768482602086016139fc565b91505092915050565b600082601f830112613b9057600080fd5b8135613ba0848260208601613a3a565b91505092915050565b600081359050613bb881615326565b92915050565b600060208284031215613bd057600080fd5b6000613bde84828501613a78565b91505092915050565b60008060408385031215613bfa57600080fd5b6000613c0885828601613a78565b9250506020613c1985828601613a78565b9150509250929050565b600080600060608486031215613c3857600080fd5b6000613c4686828701613a78565b9350506020613c5786828701613a78565b9250506040613c6886828701613ba9565b9150509250925092565b60008060008060808587031215613c8857600080fd5b6000613c9687828801613a78565b9450506020613ca787828801613a78565b9350506040613cb887828801613ba9565b925050606085013567ffffffffffffffff811115613cd557600080fd5b613ce187828801613b55565b91505092959194509250565b60008060408385031215613d0057600080fd5b6000613d0e85828601613a78565b9250506020613d1f85828601613b01565b9150509250929050565b60008060408385031215613d3c57600080fd5b6000613d4a85828601613a78565b9250506020613d5b85828601613ba9565b9150509250929050565b60008060208385031215613d7857600080fd5b600083013567ffffffffffffffff811115613d9257600080fd5b613d9e85828601613a8d565b92509250509250929050565b600060208284031215613dbc57600080fd5b600082013567ffffffffffffffff811115613dd657600080fd5b613de284828501613ad7565b91505092915050565b600060208284031215613dfd57600080fd5b6000613e0b84828501613b16565b91505092915050565b60008060408385031215613e2757600080fd5b6000613e3585828601613b16565b9250506020613e4685828601613a78565b9150509250929050565b60008060408385031215613e6357600080fd5b6000613e7185828601613b16565b9250506020613e8285828601613ba9565b9150509250929050565b600060208284031215613e9e57600080fd5b6000613eac84828501613b2b565b91505092915050565b600060208284031215613ec757600080fd5b6000613ed584828501613b40565b91505092915050565b600060208284031215613ef057600080fd5b600082013567ffffffffffffffff811115613f0a57600080fd5b613f1684828501613b7f565b91505092915050565b600060208284031215613f3157600080fd5b6000613f3f84828501613ba9565b91505092915050565b613f51816149f8565b82525050565b613f6081614a0a565b82525050565b613f6f81614a16565b82525050565b6000613f80826148a0565b613f8a81856148b6565b9350613f9a818560208601614a85565b613fa381614c7b565b840191505092915050565b6000613fb9826148ab565b613fc381856148c7565b9350613fd3818560208601614a85565b613fdc81614c7b565b840191505092915050565b6000613ff2826148ab565b613ffc81856148d8565b935061400c818560208601614a85565b80840191505092915050565b60006140256020836148c7565b915061403082614c8c565b602082019050919050565b6000614048602b836148c7565b915061405382614cb5565b604082019050919050565b600061406b6032836148c7565b915061407682614d04565b604082019050919050565b600061408e601c836148c7565b915061409982614d53565b602082019050919050565b60006140b16024836148c7565b91506140bc82614d7c565b604082019050919050565b60006140d46019836148c7565b91506140df82614dcb565b602082019050919050565b60006140f7602c836148c7565b915061410282614df4565b604082019050919050565b600061411a6038836148c7565b915061412582614e43565b604082019050919050565b600061413d602a836148c7565b915061414882614e92565b604082019050919050565b60006141606029836148c7565b915061416b82614ee1565b604082019050919050565b6000614183601c836148c7565b915061418e82614f30565b602082019050919050565b60006141a66017836148c7565b91506141b182614f59565b602082019050919050565b60006141c9601e836148c7565b91506141d482614f82565b602082019050919050565b60006141ec6020836148c7565b91506141f782614fab565b602082019050919050565b600061420f602c836148c7565b915061421a82614fd4565b604082019050919050565b60006142326029836148c7565b915061423d82615023565b604082019050919050565b6000614255602f836148c7565b915061426082615072565b604082019050919050565b60006142786021836148c7565b9150614283826150c1565b604082019050919050565b600061429b6031836148c7565b91506142a682615110565b604082019050919050565b60006142be6012836148c7565b91506142c98261515f565b602082019050919050565b60006142e1601d836148c7565b91506142ec82615188565b602082019050919050565b6000614304602c836148c7565b915061430f826151b1565b604082019050919050565b60006143276017836148d8565b915061433282615200565b601782019050919050565b600061434a6015836148c7565b915061435582615229565b602082019050919050565b600061436d6011836148d8565b915061437882615252565b601182019050919050565b6000614390602f836148c7565b915061439b8261527b565b604082019050919050565b6143af81614a6c565b82525050565b60006143c18285613fe7565b91506143cd8284613fe7565b91508190509392505050565b60006143e48261431a565b91506143f08285613fe7565b91506143fb82614360565b91506144078284613fe7565b91508190509392505050565b60006020820190506144286000830184613f48565b92915050565b60006080820190506144436000830187613f48565b6144506020830186613f48565b61445d60408301856143a6565b818103606083015261446f8184613f75565b905095945050505050565b600060208201905061448f6000830184613f57565b92915050565b60006020820190506144aa6000830184613f66565b92915050565b600060208201905081810360008301526144ca8184613fae565b905092915050565b600060208201905081810360008301526144eb81614018565b9050919050565b6000602082019050818103600083015261450b8161403b565b9050919050565b6000602082019050818103600083015261452b8161405e565b9050919050565b6000602082019050818103600083015261454b81614081565b9050919050565b6000602082019050818103600083015261456b816140a4565b9050919050565b6000602082019050818103600083015261458b816140c7565b9050919050565b600060208201905081810360008301526145ab816140ea565b9050919050565b600060208201905081810360008301526145cb8161410d565b9050919050565b600060208201905081810360008301526145eb81614130565b9050919050565b6000602082019050818103600083015261460b81614153565b9050919050565b6000602082019050818103600083015261462b81614176565b9050919050565b6000602082019050818103600083015261464b81614199565b9050919050565b6000602082019050818103600083015261466b816141bc565b9050919050565b6000602082019050818103600083015261468b816141df565b9050919050565b600060208201905081810360008301526146ab81614202565b9050919050565b600060208201905081810360008301526146cb81614225565b9050919050565b600060208201905081810360008301526146eb81614248565b9050919050565b6000602082019050818103600083015261470b8161426b565b9050919050565b6000602082019050818103600083015261472b8161428e565b9050919050565b6000602082019050818103600083015261474b816142b1565b9050919050565b6000602082019050818103600083015261476b816142d4565b9050919050565b6000602082019050818103600083015261478b816142f7565b9050919050565b600060208201905081810360008301526147ab8161433d565b9050919050565b600060208201905081810360008301526147cb81614383565b9050919050565b60006020820190506147e760008301846143a6565b92915050565b60006147f7614808565b90506148038282614b14565b919050565b6000604051905090565b600067ffffffffffffffff82111561482d5761482c614c4c565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561485957614858614c4c565b5b61486282614c7b565b9050602081019050919050565b600067ffffffffffffffff82111561488a57614889614c4c565b5b61489382614c7b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148ee82614a6c565b91506148f983614a6c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561492e5761492d614bbf565b5b828201905092915050565b600061494482614a6c565b915061494f83614a6c565b92508261495f5761495e614bee565b5b828204905092915050565b600061497582614a6c565b915061498083614a6c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149b9576149b8614bbf565b5b828202905092915050565b60006149cf82614a6c565b91506149da83614a6c565b9250828210156149ed576149ec614bbf565b5b828203905092915050565b6000614a0382614a4c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614aa3578082015181840152602081019050614a88565b83811115614ab2576000848401525b50505050565b6000614ac382614a6c565b91506000821415614ad757614ad6614bbf565b5b600182039050919050565b60006002820490506001821680614afa57607f821691505b60208210811415614b0e57614b0d614c1d565b5b50919050565b614b1d82614c7b565b810181811067ffffffffffffffff82111715614b3c57614b3b614c4c565b5b80604052505050565b6000614b5082614a6c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b8357614b82614bbf565b5b600182019050919050565b6000614b9982614a6c565b9150614ba483614a6c565b925082614bb457614bb3614bee565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f6e6c792061646d696e2063616e2063616c6c2066756e6374696f6e00000000600082015250565b7f4e65656420746f2073656e6420302e3034206574686572000000000000000000600082015250565b7f6f6e6c7920696e2077686974656c6973742063616e206d696e74206e6f770000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f6d7573742068617665206d696e74657220726f6c6520746f206d696e74000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4d6178206d696e742032207065722073656e6465720000000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6152d3816149f8565b81146152de57600080fd5b50565b6152ea81614a0a565b81146152f557600080fd5b50565b61530181614a16565b811461530c57600080fd5b50565b61531881614a20565b811461532357600080fd5b50565b61532f81614a6c565b811461533a57600080fd5b5056fea264697066735822122053c2f8975f0c7d6861e9cd342861d1b5d85300d9add43f3ed7c83ffad07a780264736f6c6343000803003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52696e6b377a644558705273697834794d7755627964783748664d31464d4e635478565770503365574656622f00000000000000000000
Deployed Bytecode
0x6080604052600436106102465760003560e01c806363810b6c116101395780639b19251a116100b6578063c87b56dd1161007a578063c87b56dd146108c9578063ca15c87314610906578063d539139314610943578063d547741f1461096e578063e4b7fb7314610997578063e985e9c5146109c257610246565b80639b19251a146107e4578063a217fddf14610821578063a22cb4651461084c578063b88d4fde14610875578063c002d23d1461089e57610246565b8063853828b6116100fd578063853828b6146106eb5780639010d07c1461070257806391d148541461073f57806395d89b411461077c57806397d6696b146107a757610246565b806363810b6c146106085780636f8b44b01461063157806370a082311461065a5780637ca3b31b146106975780637f649783146106c257610246565b806323b872dd116101c757806336568abe1161018b57806336568abe146105115780633da647731461053a57806342842e0e146105655780634f6ccce71461058e5780636352211e146105cb57610246565b806323b872dd1461041c578063248a9ca3146104455780632f2ff15d146104825780632f745c59146104ab57806330176e13146104e857610246565b8063114579101161020e57806311457910146103565780631249c58b1461037f57806318160ddd146103895780631e7269c5146103b457806322f4596f146103f157610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806309fd821214610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613e8c565b6109ff565b60405161027f919061447a565b60405180910390f35b34801561029457600080fd5b5061029d610a11565b6040516102aa91906144b0565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613f1f565b610aa3565b6040516102e79190614413565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613d29565b610b28565b005b34801561032557600080fd5b50610340600480360381019061033b9190613bbe565b610c40565b60405161034d919061447a565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613d65565b610c96565b005b610387610dbf565b005b34801561039557600080fd5b5061039e611097565b6040516103ab91906147d2565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190613bbe565b6110a4565b6040516103e891906147d2565b60405180910390f35b3480156103fd57600080fd5b506104066110bc565b60405161041391906147d2565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190613c23565b6110c2565b005b34801561045157600080fd5b5061046c60048036038101906104679190613deb565b611122565b6040516104799190614495565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190613e14565b611141565b005b3480156104b757600080fd5b506104d260048036038101906104cd9190613d29565b611175565b6040516104df91906147d2565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613ede565b61121a565b005b34801561051d57600080fd5b5061053860048036038101906105339190613e14565b611287565b005b34801561054657600080fd5b5061054f6112bb565b60405161055c91906147d2565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613c23565b6112c1565b005b34801561059a57600080fd5b506105b560048036038101906105b09190613f1f565b6112e1565b6040516105c291906147d2565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190613f1f565b611378565b6040516105ff9190614413565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613f1f565b61142a565b005b34801561063d57600080fd5b5061065860048036038101906106539190613f1f565b611487565b005b34801561066657600080fd5b50610681600480360381019061067c9190613bbe565b6114e4565b60405161068e91906147d2565b60405180910390f35b3480156106a357600080fd5b506106ac61159c565b6040516106b991906147d2565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e49190613daa565b6115a4565b005b3480156106f757600080fd5b5061070061171c565b005b34801561070e57600080fd5b5061072960048036038101906107249190613e50565b6117da565b6040516107369190614413565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190613e14565b611809565b604051610773919061447a565b60405180910390f35b34801561078857600080fd5b50610791611873565b60405161079e91906144b0565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c99190613bbe565b611905565b6040516107db91906147d2565b60405180910390f35b3480156107f057600080fd5b5061080b60048036038101906108069190613bbe565b61194e565b604051610818919061447a565b60405180910390f35b34801561082d57600080fd5b5061083661196e565b6040516108439190614495565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190613ced565b611975565b005b34801561088157600080fd5b5061089c60048036038101906108979190613c72565b611af6565b005b3480156108aa57600080fd5b506108b3611b58565b6040516108c091906147d2565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb9190613f1f565b611b63565b6040516108fd91906144b0565b60405180910390f35b34801561091257600080fd5b5061092d60048036038101906109289190613deb565b611b75565b60405161093a91906147d2565b60405180910390f35b34801561094f57600080fd5b50610958611b99565b6040516109659190614495565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190613e14565b611bbd565b005b3480156109a357600080fd5b506109ac611bf1565b6040516109b991906147d2565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e49190613be7565b611c0d565b6040516109f6919061447a565b60405180910390f35b6000610a0a82611cdf565b9050919050565b606060028054610a2090614ae2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c90614ae2565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b6000610aae82611d59565b610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490614692565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3382611378565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b906146f2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc3611dc5565b73ffffffffffffffffffffffffffffffffffffffff161480610bf25750610bf181610bec611dc5565b611c0d565b5b610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c28906145b2565b60405180910390fd5b610c3b8383611dcd565b505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610caa6000801b610ca5611dc5565b611809565b610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090614612565b60405180910390fd5b81819050610cf5611097565b610cff91906148e3565b600f541015610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90614732565b60405180910390fd5b60005b82829050811015610dba57610da7838383818110610d8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610da29190613bbe565b611e86565b8080610db290614b45565b915050610d46565b505050565b6002601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890614792565b60405180910390fd5b610e49611097565b600f541015610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490614732565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ffd57610f107f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610f0b611dc5565b611809565b610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690614752565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610fa557610fa033611e86565b610ff8565b668e1bc9bf0400003414610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590614632565b60405180910390fd5b610ff733611e86565b5b611095565b600e54421015611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990614652565b60405180910390fd5b668e1bc9bf040000341461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290614632565b60405180910390fd5b61109433611e86565b5b565b6000600a80549050905090565b60126020528060005260406000206000915090505481565b600f5481565b6110d36110cd611dc5565b82611efd565b611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990614712565b60405180910390fd5b61111d838383611fdb565b505050565b6000806000838152602001908152602001600020600101549050919050565b61114b8282612237565b6111708160016000858152602001908152602001600020611caf90919063ffffffff16565b505050565b6000611180836114e4565b82106111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b8906144f2565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61122e6000801b611229611dc5565b611809565b61126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490614612565b60405180910390fd5b80600d90805190602001906112839291906138ed565b5050565b6112918282612260565b6112b681600160008581526020019081526020016000206122e390919063ffffffff16565b505050565b600e5481565b6112dc83838360405180602001604052806000815250611af6565b505050565b60006112eb611097565b821061132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390614772565b60405180910390fd5b600a8281548110611366577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906145f2565b60405180910390fd5b80915050919050565b61143e6000801b611439611dc5565b611809565b61147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490614612565b60405180910390fd5b80600e8190555050565b61149b6000801b611496611dc5565b611809565b6114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190614612565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906145d2565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6361a72b8081565b6115b86000801b6115b3611dc5565b611809565b6115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90614612565b60405180910390fd5b60005b815181101561171857600160116000848481518110611642577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117057f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a68383815181106116f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611141565b808061171090614b45565b9150506115fa565b5050565b6117306000801b61172b611dc5565b611809565b61176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690614612565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156117d7573d6000803e3d6000fd5b50565b6000611801826001600086815260200190815260200160002061231390919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606003805461188290614ae2565b80601f01602080910402602001604051908101604052809291908181526020018280546118ae90614ae2565b80156118fb5780601f106118d0576101008083540402835291602001916118fb565b820191906000526020600020905b8154815290600101906020018083116118de57829003601f168201915b5050505050905090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60116020528060005260406000206000915054906101000a900460ff1681565b6000801b81565b61197d611dc5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290614572565b60405180910390fd5b80600760006119f8611dc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aa5611dc5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aea919061447a565b60405180910390a35050565b611b07611b01611dc5565b83611efd565b611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90614712565b60405180910390fd5b611b528484848461232d565b50505050565b668e1bc9bf04000081565b6060611b6e82612389565b9050919050565b6000611b9260016000848152602001908152602001600020612430565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611bc78282612445565b611bec81600160008581526020019081526020016000206122e390919063ffffffff16565b505050565b6000611bfb611097565b600f54611c0891906149c4565b905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cab828261246e565b5050565b6000611cd7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61254e565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d525750611d51826125be565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e4083611378565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e9981611e94600c6126a0565b6126ae565b611ea3600c61287c565b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ef391906148e3565b9250508190555050565b6000611f0882611d59565b611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e90614592565b60405180910390fd5b6000611f5283611378565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fc157508373ffffffffffffffffffffffffffffffffffffffff16611fa984610aa3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fd25750611fd18185611c0d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ffb82611378565b73ffffffffffffffffffffffffffffffffffffffff1614612051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612048906146b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b890614552565b60405180910390fd5b6120cc838383612892565b6120d7600082611dcd565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461212791906149c4565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461217e91906148e3565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61224082611122565b6122518161224c611dc5565b6129a6565b61225b838361246e565b505050565b612268611dc5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc906147b2565b60405180910390fd5b6122df8282612a43565b5050565b600061230b836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612b24565b905092915050565b60006123228360000183612caa565b60001c905092915050565b612338848484611fdb565b61234484848484612cfb565b612383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237a90614512565b60405180910390fd5b50505050565b606061239482611d59565b6123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca906146d2565b60405180910390fd5b60006123dd612e92565b905060008151116123fd5760405180602001604052806000815250612428565b8061240784612f24565b6040516020016124189291906143b5565b6040516020818303038152906040525b915050919050565b600061243e826000016130d1565b9050919050565b61244e82611122565b61245f8161245a611dc5565b6129a6565b6124698383612a43565b505050565b6124788282611809565b61254a57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506124ef611dc5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061255a83836130e2565b6125b35782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506125b8565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061268957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612699575061269882613105565b5b9050919050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590614672565b60405180910390fd5b61272781611d59565b15612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e90614532565b60405180910390fd5b61277360008383612892565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127c391906148e3565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6001816000016000828254019250508190555050565b61289d83838361317f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128e0576128db81613184565b61291f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461291e5761291d83826131cd565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129625761295d8161333a565b6129a1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129a05761299f828261347d565b5b5b505050565b6129b08282611809565b612a3f576129d58173ffffffffffffffffffffffffffffffffffffffff1660146134fc565b6129e38360001c60206134fc565b6040516020016129f49291906143d9565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3691906144b0565b60405180910390fd5b5050565b612a4d8282611809565b15612b2057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612ac5611dc5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114612c9e576000600182612b5691906149c4565b9050600060018660000180549050612b6e91906149c4565b9050818114612c29576000866000018281548110612bb5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612bff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612c63577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612ca4565b60009150505b92915050565b6000826000018281548110612ce8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6000612d1c8473ffffffffffffffffffffffffffffffffffffffff166137f6565b15612e85578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d45611dc5565b8786866040518563ffffffff1660e01b8152600401612d67949392919061442e565b602060405180830381600087803b158015612d8157600080fd5b505af1925050508015612db257506040513d601f19601f82011682018060405250810190612daf9190613eb5565b60015b612e35573d8060008114612de2576040519150601f19603f3d011682016040523d82523d6000602084013e612de7565b606091505b50600081511415612e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2490614512565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e8a565b600190505b949350505050565b6060600d8054612ea190614ae2565b80601f0160208091040260200160405190810160405280929190818152602001828054612ecd90614ae2565b8015612f1a5780601f10612eef57610100808354040283529160200191612f1a565b820191906000526020600020905b815481529060010190602001808311612efd57829003601f168201915b5050505050905090565b60606000821415612f6c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130cc565b600082905060005b60008214612f9e578080612f8790614b45565b915050600a82612f979190614939565b9150612f74565b60008167ffffffffffffffff811115612fe0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130125781602001600182028036833780820191505090505b5090505b600085146130c55760018261302b91906149c4565b9150600a8561303a9190614b8e565b603061304691906148e3565b60f81b818381518110613082577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130be9190614939565b9450613016565b8093505050505b919050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613178575061317782613809565b5b9050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131da846114e4565b6131e491906149c4565b90506000600960008481526020019081526020016000205490508181146132c9576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a8054905061334e91906149c4565b90506000600b60008481526020019081526020016000205490506000600a83815481106133a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600a83815481106133ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480613461577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613488836114e4565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60606000600283600261350f919061496a565b61351991906148e3565b67ffffffffffffffff811115613558577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561358a5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106135e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613672577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026136b2919061496a565b6136bc91906148e3565b90505b60018111156137a8577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613724577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110613761577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806137a190614ab8565b90506136bf565b50600084146137ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e3906144d2565b60405180910390fd5b8091505092915050565b600080823b905060008111915050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061387c575061387b82613883565b5b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546138f990614ae2565b90600052602060002090601f01602090048101928261391b5760008555613962565b82601f1061393457805160ff1916838001178555613962565b82800160010185558215613962579182015b82811115613961578251825591602001919060010190613946565b5b50905061396f9190613973565b5090565b5b8082111561398c576000816000905550600101613974565b5090565b60006139a361399e84614812565b6147ed565b905080838252602082019050828560208602820111156139c257600080fd5b60005b858110156139f257816139d88882613a78565b8452602084019350602083019250506001810190506139c5565b5050509392505050565b6000613a0f613a0a8461483e565b6147ed565b905082815260208101848484011115613a2757600080fd5b613a32848285614a76565b509392505050565b6000613a4d613a488461486f565b6147ed565b905082815260208101848484011115613a6557600080fd5b613a70848285614a76565b509392505050565b600081359050613a87816152ca565b92915050565b60008083601f840112613a9f57600080fd5b8235905067ffffffffffffffff811115613ab857600080fd5b602083019150836020820283011115613ad057600080fd5b9250929050565b600082601f830112613ae857600080fd5b8135613af8848260208601613990565b91505092915050565b600081359050613b10816152e1565b92915050565b600081359050613b25816152f8565b92915050565b600081359050613b3a8161530f565b92915050565b600081519050613b4f8161530f565b92915050565b600082601f830112613b6657600080fd5b8135613b768482602086016139fc565b91505092915050565b600082601f830112613b9057600080fd5b8135613ba0848260208601613a3a565b91505092915050565b600081359050613bb881615326565b92915050565b600060208284031215613bd057600080fd5b6000613bde84828501613a78565b91505092915050565b60008060408385031215613bfa57600080fd5b6000613c0885828601613a78565b9250506020613c1985828601613a78565b9150509250929050565b600080600060608486031215613c3857600080fd5b6000613c4686828701613a78565b9350506020613c5786828701613a78565b9250506040613c6886828701613ba9565b9150509250925092565b60008060008060808587031215613c8857600080fd5b6000613c9687828801613a78565b9450506020613ca787828801613a78565b9350506040613cb887828801613ba9565b925050606085013567ffffffffffffffff811115613cd557600080fd5b613ce187828801613b55565b91505092959194509250565b60008060408385031215613d0057600080fd5b6000613d0e85828601613a78565b9250506020613d1f85828601613b01565b9150509250929050565b60008060408385031215613d3c57600080fd5b6000613d4a85828601613a78565b9250506020613d5b85828601613ba9565b9150509250929050565b60008060208385031215613d7857600080fd5b600083013567ffffffffffffffff811115613d9257600080fd5b613d9e85828601613a8d565b92509250509250929050565b600060208284031215613dbc57600080fd5b600082013567ffffffffffffffff811115613dd657600080fd5b613de284828501613ad7565b91505092915050565b600060208284031215613dfd57600080fd5b6000613e0b84828501613b16565b91505092915050565b60008060408385031215613e2757600080fd5b6000613e3585828601613b16565b9250506020613e4685828601613a78565b9150509250929050565b60008060408385031215613e6357600080fd5b6000613e7185828601613b16565b9250506020613e8285828601613ba9565b9150509250929050565b600060208284031215613e9e57600080fd5b6000613eac84828501613b2b565b91505092915050565b600060208284031215613ec757600080fd5b6000613ed584828501613b40565b91505092915050565b600060208284031215613ef057600080fd5b600082013567ffffffffffffffff811115613f0a57600080fd5b613f1684828501613b7f565b91505092915050565b600060208284031215613f3157600080fd5b6000613f3f84828501613ba9565b91505092915050565b613f51816149f8565b82525050565b613f6081614a0a565b82525050565b613f6f81614a16565b82525050565b6000613f80826148a0565b613f8a81856148b6565b9350613f9a818560208601614a85565b613fa381614c7b565b840191505092915050565b6000613fb9826148ab565b613fc381856148c7565b9350613fd3818560208601614a85565b613fdc81614c7b565b840191505092915050565b6000613ff2826148ab565b613ffc81856148d8565b935061400c818560208601614a85565b80840191505092915050565b60006140256020836148c7565b915061403082614c8c565b602082019050919050565b6000614048602b836148c7565b915061405382614cb5565b604082019050919050565b600061406b6032836148c7565b915061407682614d04565b604082019050919050565b600061408e601c836148c7565b915061409982614d53565b602082019050919050565b60006140b16024836148c7565b91506140bc82614d7c565b604082019050919050565b60006140d46019836148c7565b91506140df82614dcb565b602082019050919050565b60006140f7602c836148c7565b915061410282614df4565b604082019050919050565b600061411a6038836148c7565b915061412582614e43565b604082019050919050565b600061413d602a836148c7565b915061414882614e92565b604082019050919050565b60006141606029836148c7565b915061416b82614ee1565b604082019050919050565b6000614183601c836148c7565b915061418e82614f30565b602082019050919050565b60006141a66017836148c7565b91506141b182614f59565b602082019050919050565b60006141c9601e836148c7565b91506141d482614f82565b602082019050919050565b60006141ec6020836148c7565b91506141f782614fab565b602082019050919050565b600061420f602c836148c7565b915061421a82614fd4565b604082019050919050565b60006142326029836148c7565b915061423d82615023565b604082019050919050565b6000614255602f836148c7565b915061426082615072565b604082019050919050565b60006142786021836148c7565b9150614283826150c1565b604082019050919050565b600061429b6031836148c7565b91506142a682615110565b604082019050919050565b60006142be6012836148c7565b91506142c98261515f565b602082019050919050565b60006142e1601d836148c7565b91506142ec82615188565b602082019050919050565b6000614304602c836148c7565b915061430f826151b1565b604082019050919050565b60006143276017836148d8565b915061433282615200565b601782019050919050565b600061434a6015836148c7565b915061435582615229565b602082019050919050565b600061436d6011836148d8565b915061437882615252565b601182019050919050565b6000614390602f836148c7565b915061439b8261527b565b604082019050919050565b6143af81614a6c565b82525050565b60006143c18285613fe7565b91506143cd8284613fe7565b91508190509392505050565b60006143e48261431a565b91506143f08285613fe7565b91506143fb82614360565b91506144078284613fe7565b91508190509392505050565b60006020820190506144286000830184613f48565b92915050565b60006080820190506144436000830187613f48565b6144506020830186613f48565b61445d60408301856143a6565b818103606083015261446f8184613f75565b905095945050505050565b600060208201905061448f6000830184613f57565b92915050565b60006020820190506144aa6000830184613f66565b92915050565b600060208201905081810360008301526144ca8184613fae565b905092915050565b600060208201905081810360008301526144eb81614018565b9050919050565b6000602082019050818103600083015261450b8161403b565b9050919050565b6000602082019050818103600083015261452b8161405e565b9050919050565b6000602082019050818103600083015261454b81614081565b9050919050565b6000602082019050818103600083015261456b816140a4565b9050919050565b6000602082019050818103600083015261458b816140c7565b9050919050565b600060208201905081810360008301526145ab816140ea565b9050919050565b600060208201905081810360008301526145cb8161410d565b9050919050565b600060208201905081810360008301526145eb81614130565b9050919050565b6000602082019050818103600083015261460b81614153565b9050919050565b6000602082019050818103600083015261462b81614176565b9050919050565b6000602082019050818103600083015261464b81614199565b9050919050565b6000602082019050818103600083015261466b816141bc565b9050919050565b6000602082019050818103600083015261468b816141df565b9050919050565b600060208201905081810360008301526146ab81614202565b9050919050565b600060208201905081810360008301526146cb81614225565b9050919050565b600060208201905081810360008301526146eb81614248565b9050919050565b6000602082019050818103600083015261470b8161426b565b9050919050565b6000602082019050818103600083015261472b8161428e565b9050919050565b6000602082019050818103600083015261474b816142b1565b9050919050565b6000602082019050818103600083015261476b816142d4565b9050919050565b6000602082019050818103600083015261478b816142f7565b9050919050565b600060208201905081810360008301526147ab8161433d565b9050919050565b600060208201905081810360008301526147cb81614383565b9050919050565b60006020820190506147e760008301846143a6565b92915050565b60006147f7614808565b90506148038282614b14565b919050565b6000604051905090565b600067ffffffffffffffff82111561482d5761482c614c4c565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561485957614858614c4c565b5b61486282614c7b565b9050602081019050919050565b600067ffffffffffffffff82111561488a57614889614c4c565b5b61489382614c7b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148ee82614a6c565b91506148f983614a6c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561492e5761492d614bbf565b5b828201905092915050565b600061494482614a6c565b915061494f83614a6c565b92508261495f5761495e614bee565b5b828204905092915050565b600061497582614a6c565b915061498083614a6c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149b9576149b8614bbf565b5b828202905092915050565b60006149cf82614a6c565b91506149da83614a6c565b9250828210156149ed576149ec614bbf565b5b828203905092915050565b6000614a0382614a4c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614aa3578082015181840152602081019050614a88565b83811115614ab2576000848401525b50505050565b6000614ac382614a6c565b91506000821415614ad757614ad6614bbf565b5b600182039050919050565b60006002820490506001821680614afa57607f821691505b60208210811415614b0e57614b0d614c1d565b5b50919050565b614b1d82614c7b565b810181811067ffffffffffffffff82111715614b3c57614b3b614c4c565b5b80604052505050565b6000614b5082614a6c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b8357614b82614bbf565b5b600182019050919050565b6000614b9982614a6c565b9150614ba483614a6c565b925082614bb457614bb3614bee565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f6e6c792061646d696e2063616e2063616c6c2066756e6374696f6e00000000600082015250565b7f4e65656420746f2073656e6420302e3034206574686572000000000000000000600082015250565b7f6f6e6c7920696e2077686974656c6973742063616e206d696e74206e6f770000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f6d7573742068617665206d696e74657220726f6c6520746f206d696e74000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4d6178206d696e742032207065722073656e6465720000000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6152d3816149f8565b81146152de57600080fd5b50565b6152ea81614a0a565b81146152f557600080fd5b50565b61530181614a16565b811461530c57600080fd5b50565b61531881614a20565b811461532357600080fd5b50565b61532f81614a6c565b811461533a57600080fd5b5056fea264697066735822122053c2f8975f0c7d6861e9cd342861d1b5d85300d9add43f3ed7c83ffad07a780264736f6c63430008030033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52696e6b377a644558705273697834794d7755627964783748664d31464d4e635478565770503365574656622f00000000000000000000
-----Decoded View---------------
Arg [0] : baseTokenURI (string): ipfs://QmRink7zdEXpRsix4yMwUbydx7HfM1FMNcTxVWpP3eWFVb/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d52696e6b377a644558705273697834794d775562796478
Arg [3] : 3748664d31464d4e635478565770503365574656622f00000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.