ERC-721
NFT
Overview
Max Total Supply
3,009 LAND
Holders
1,208
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 LANDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GOBLand
Compiler Version
v0.8.2+commit.661d1103
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.2; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; interface LandPassContract { function burnFromRedeem(address account, uint256 id, uint256 amount) external; function balanceOf(address account, uint256 id) external view returns (uint256); } contract GOBLand is ERC721, ERC721Enumerable, Pausable, Ownable { using Counters for Counters.Counter; using SafeMath for uint256; using Strings for uint256; uint256 public startingIndexBlock; uint256 public startingIndex; uint256 public maxLands; bytes32 public merkleRoot; mapping(address => uint256) public claimed; LandPassContract public landPassContract; Counters.Counter private _tokenIdCounter; mapping (address => bool) public authorizedContracts; bool public landpassRedeemable = false; string public baseURI; event Redeemed(address indexed account, uint256 amount); constructor(string memory uri, uint256 ml, address landPassAddress) ERC721("GOBLand", "LAND") { baseURI = uri; landPassContract = LandPassContract(landPassAddress); maxLands = ml; } modifier onlyAuthorizedContracts() { require(authorizedContracts[msg.sender] == true, "Only allowed from authorized contracts"); _; } modifier whenLandPassIsRedeemable() { require(landpassRedeemable == true, "Landpass exchange must be opened"); _; } function updateBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(baseURI, tokenId.toString())); } function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) { return MerkleProof.verify(proof, merkleRoot, leaf); } function authorizeContract(address addr) public onlyOwner { authorizedContracts[addr] = true; } function updateLandPassRedeemable(bool value) public { landpassRedeemable = value; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function _leaf(address account, uint256 amount) internal pure returns (bytes32) { return keccak256(abi.encodePacked(account, amount)); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function updateLandPass(address addr) public onlyOwner { landPassContract = LandPassContract(addr); } function _checkSupply(uint256 amount) private view { require(amount > 0, "Amount must be greater than 0"); require((totalSupply().add(amount)) <= maxLands, "Max lands exceeded"); } // MINT function forceMint(address account, uint256 amount) public onlyOwner { for (uint256 i = 0; i < amount; i++) { safeMint(account); } } function whitelistMint(uint256 amount, bytes32[] calldata proof) public whenNotPaused { _checkSupply(amount); require(claimed[msg.sender] < amount, "Claim: Not allowed to claim given amount"); require(_verify(_leaf(msg.sender, amount), proof), "Invalid merkle proof"); uint256 numberToClaim = amount.sub(claimed[msg.sender]); claimed[msg.sender] = claimed[msg.sender].add(numberToClaim); for(uint256 i = 0; i < numberToClaim; i++) { safeMint(msg.sender); } } function externalMint(address addr, uint256 amount) public onlyAuthorizedContracts whenNotPaused { _checkSupply(amount); for(uint256 i = 0; i < amount; i++) { safeMint(addr); } } function safeMint(address to) private { _safeMint(to, _tokenIdCounter.current()); _tokenIdCounter.increment(); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } // The following functions are overrides required by Solidity. function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } /** * Set the starting index block for the collection, essentially unblocking * setting starting index */ function emergencySetStartingIndexBlock() public onlyOwner { require(startingIndex == 0, "Starting index is already set"); startingIndexBlock = block.number; } function setSupply(uint256 value) public onlyOwner { maxLands = value; } /** * Set the starting index for the collection */ function setStartingIndex() public { require(startingIndex == 0, "Starting index is already set"); require(startingIndexBlock != 0, "Starting index block must be set"); startingIndex = uint(blockhash(startingIndexBlock)) % maxLands; // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes) if (block.number.sub(startingIndexBlock) > 255) { startingIndex = uint(blockhash(block.number - 1)) % maxLands; } // Prevent default sequence if (startingIndex == 0) { startingIndex = startingIndex.add(1); } } function redeem() external whenNotPaused whenLandPassIsRedeemable { require(msg.sender == tx.origin, "Redeem: not allowed from contract"); uint256 amount = landPassContract.balanceOf(msg.sender, 0); _checkSupply(amount); landPassContract.burnFromRedeem(msg.sender, 0, amount); for(uint256 i = 0; i < amount; i++) { safeMint(msg.sender); } emit Redeemed(msg.sender, amount); if (startingIndexBlock == 0 && totalSupply() == maxLands) { startingIndexBlock = block.number; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev 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 These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
// 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 "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "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":"uri","type":"string"},{"internalType":"uint256","name":"ml","type":"uint256"},{"internalType":"address","name":"landPassAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Redeemed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"authorizeContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorizedContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"externalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"forceMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"landPassContract","outputs":[{"internalType":"contract LandPassContract","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"landpassRedeemable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLands","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"updateLandPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"updateLandPassRedeemable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000601360006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040516200593f3803806200593f8339818101604052810190620000529190620003b5565b6040518060400160405280600781526020017f474f424c616e64000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c414e44000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d692919062000265565b508060019080519060200190620000ef92919062000265565b5050506000600a60006101000a81548160ff0219169083151502179055506200012d620001216200019760201b60201c565b6200019f60201b60201c565b82601490805190602001906200014592919062000265565b5080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d8190555050505062000606565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027390620004f7565b90600052602060002090601f016020900481019282620002975760008555620002e3565b82601f10620002b257805160ff1916838001178555620002e3565b82800160010185558215620002e3579182015b82811115620002e2578251825591602001919060010190620002c5565b5b509050620002f29190620002f6565b5090565b5b8082111562000311576000816000905550600101620002f7565b5090565b60006200032c62000326846200044d565b62000424565b9050828152602081018484840111156200034557600080fd5b62000352848285620004c1565b509392505050565b6000815190506200036b81620005d2565b92915050565b600082601f8301126200038357600080fd5b81516200039584826020860162000315565b91505092915050565b600081519050620003af81620005ec565b92915050565b600080600060608486031215620003cb57600080fd5b600084015167ffffffffffffffff811115620003e657600080fd5b620003f48682870162000371565b935050602062000407868287016200039e565b92505060406200041a868287016200035a565b9150509250925092565b60006200043062000443565b90506200043e82826200052d565b919050565b6000604051905090565b600067ffffffffffffffff8211156200046b576200046a62000592565b5b6200047682620005c1565b9050602081019050919050565b6000620004908262000497565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620004e1578082015181840152602081019050620004c4565b83811115620004f1576000848401525b50505050565b600060028204905060018216806200051057607f821691505b6020821081141562000527576200052662000563565b5b50919050565b6200053882620005c1565b810181811067ffffffffffffffff821117156200055a576200055962000592565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005dd8162000483565b8114620005e957600080fd5b50565b620005f781620004b7565b81146200060357600080fd5b50565b61532980620006166000396000f3fe608060405234801561001057600080fd5b50600436106102695760003560e01c80637d17fcbe11610151578063c884ef83116100c3578063e5123c4d11610087578063e5123c4d146106e6578063e985e9c514610704578063e986655014610734578063ea4b9b4c1461073e578063f2fde38b1461075c578063fd11090a1461077857610269565b8063c884ef831461062e578063cb774d471461065e578063d2cab0561461067c578063d5b9221b14610698578063e36d6498146106c857610269565b806399f988981161011557806399f9889814610584578063a22cb465146105a0578063b7524518146105bc578063b88d4fde146105d8578063be040fb0146105f4578063c87b56dd146105fe57610269565b80637d17fcbe146105185780638456cb59146105225780638da5cb5b1461052c578063931688cb1461054a57806395d89b411461056657610269565b806340e24ea3116101ea57806367561d93116101ae57806367561d931461046c5780636a9d5c84146104885780636c0360eb146104a457806370a08231146104c2578063715018a6146104f25780637cb64759146104fc57610269565b806340e24ea3146103b657806342842e0e146103d25780634f6ccce7146103ee5780635c975abb1461041e5780636352211e1461043c57610269565b806323b872dd1161023157806323b872dd146103265780632eb4a7ab146103425780632f745c59146103605780633b4c4b25146103905780633f4ba83a146103ac57610269565b806301ffc9a71461026e57806306fdde031461029e578063081812fc146102bc578063095ea7b3146102ec57806318160ddd14610308575b600080fd5b61028860048036038101906102839190613a70565b610796565b60405161029591906142a8565b60405180910390f35b6102a66107a8565b6040516102b391906142f9565b60405180910390f35b6102d660048036038101906102d19190613b03565b61083a565b6040516102e391906141e1565b60405180910390f35b610306600480360381019061030191906139e2565b6108bf565b005b6103106109d7565b60405161031d91906146bb565b60405180910390f35b610340600480360381019061033b91906138dc565b6109e4565b005b61034a610a44565b60405161035791906142c3565b60405180910390f35b61037a600480360381019061037591906139e2565b610a4a565b60405161038791906146bb565b60405180910390f35b6103aa60048036038101906103a59190613b03565b610aef565b005b6103b4610b75565b005b6103d060048036038101906103cb9190613877565b610bfb565b005b6103ec60048036038101906103e791906138dc565b610cbb565b005b61040860048036038101906104039190613b03565b610cdb565b60405161041591906146bb565b60405180910390f35b610426610d72565b60405161043391906142a8565b60405180910390f35b61045660048036038101906104519190613b03565b610d89565b60405161046391906141e1565b60405180910390f35b61048660048036038101906104819190613877565b610e3b565b005b6104a2600480360381019061049d91906139e2565b610f12565b005b6104ac610fba565b6040516104b991906142f9565b60405180910390f35b6104dc60048036038101906104d79190613877565b611048565b6040516104e991906146bb565b60405180910390f35b6104fa611100565b005b61051660048036038101906105119190613a47565b611188565b005b61052061120e565b005b61052a6112d8565b005b61053461135e565b60405161054191906141e1565b60405180910390f35b610564600480360381019061055f9190613ac2565b611388565b005b61056e61141e565b60405161057b91906142f9565b60405180910390f35b61059e600480360381019061059991906139e2565b6114b0565b005b6105ba60048036038101906105b591906139a6565b6115c0565b005b6105d660048036038101906105d19190613a1e565b611741565b005b6105f260048036038101906105ed919061392b565b61175e565b005b6105fc6117c0565b005b61061860048036038101906106139190613b03565b611ab8565b60405161062591906142f9565b60405180910390f35b61064860048036038101906106439190613877565b611b34565b60405161065591906146bb565b60405180910390f35b610666611b4c565b60405161067391906146bb565b60405180910390f35b61069660048036038101906106919190613b55565b611b52565b005b6106b260048036038101906106ad9190613877565b611dd0565b6040516106bf91906142a8565b60405180910390f35b6106d0611df0565b6040516106dd91906146bb565b60405180910390f35b6106ee611df6565b6040516106fb91906146bb565b60405180910390f35b61071e600480360381019061071991906138a0565b611dfc565b60405161072b91906142a8565b60405180910390f35b61073c611e90565b005b610746611fa1565b60405161075391906142a8565b60405180910390f35b61077660048036038101906107719190613877565b611fb4565b005b6107806120ac565b60405161078d91906142de565b60405180910390f35b60006107a1826120d2565b9050919050565b6060600080546107b790614966565b80601f01602080910402602001604051908101604052809291908181526020018280546107e390614966565b80156108305780601f1061080557610100808354040283529160200191610830565b820191906000526020600020905b81548152906001019060200180831161081357829003601f168201915b5050505050905090565b60006108458261214c565b610884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087b9061455b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ca82610d89565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109329061461b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095a6121b8565b73ffffffffffffffffffffffffffffffffffffffff1614806109895750610988816109836121b8565b611dfc565b5b6109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf906144db565b60405180910390fd5b6109d283836121c0565b505050565b6000600880549050905090565b6109f56109ef6121b8565b82612279565b610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b9061467b565b60405180910390fd5b610a3f838383612357565b505050565b600e5481565b6000610a5583611048565b8210610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d9061435b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af76121b8565b73ffffffffffffffffffffffffffffffffffffffff16610b1561135e565b73ffffffffffffffffffffffffffffffffffffffff1614610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b629061457b565b60405180910390fd5b80600d8190555050565b610b7d6121b8565b73ffffffffffffffffffffffffffffffffffffffff16610b9b61135e565b73ffffffffffffffffffffffffffffffffffffffff1614610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be89061457b565b60405180910390fd5b610bf96125b3565b565b610c036121b8565b73ffffffffffffffffffffffffffffffffffffffff16610c2161135e565b73ffffffffffffffffffffffffffffffffffffffff1614610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061457b565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cd68383836040518060200160405280600081525061175e565b505050565b6000610ce56109d7565b8210610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d9061469b565b60405180910390fd5b60088281548110610d60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e299061451b565b60405180910390fd5b80915050919050565b610e436121b8565b73ffffffffffffffffffffffffffffffffffffffff16610e6161135e565b73ffffffffffffffffffffffffffffffffffffffff1614610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae9061457b565b60405180910390fd5b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f1a6121b8565b73ffffffffffffffffffffffffffffffffffffffff16610f3861135e565b73ffffffffffffffffffffffffffffffffffffffff1614610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f859061457b565b60405180910390fd5b60005b81811015610fb557610fa283612655565b8080610fad906149c9565b915050610f91565b505050565b60148054610fc790614966565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff390614966565b80156110405780601f1061101557610100808354040283529160200191611040565b820191906000526020600020905b81548152906001019060200180831161102357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b0906144fb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111086121b8565b73ffffffffffffffffffffffffffffffffffffffff1661112661135e565b73ffffffffffffffffffffffffffffffffffffffff161461117c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111739061457b565b60405180910390fd5b6111866000612675565b565b6111906121b8565b73ffffffffffffffffffffffffffffffffffffffff166111ae61135e565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb9061457b565b60405180910390fd5b80600e8190555050565b6112166121b8565b73ffffffffffffffffffffffffffffffffffffffff1661123461135e565b73ffffffffffffffffffffffffffffffffffffffff161461128a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112819061457b565b60405180910390fd5b6000600c54146112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061449b565b60405180910390fd5b43600b81905550565b6112e06121b8565b73ffffffffffffffffffffffffffffffffffffffff166112fe61135e565b73ffffffffffffffffffffffffffffffffffffffff1614611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b9061457b565b60405180910390fd5b61135c61273b565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113906121b8565b73ffffffffffffffffffffffffffffffffffffffff166113ae61135e565b73ffffffffffffffffffffffffffffffffffffffff1614611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb9061457b565b60405180910390fd5b806014908051906020019061141a929190613627565b5050565b60606001805461142d90614966565b80601f016020809104026020016040519081016040528092919081815260200182805461145990614966565b80156114a65780601f1061147b576101008083540402835291602001916114a6565b820191906000526020600020905b81548152906001019060200180831161148957829003601f168201915b5050505050905090565b60011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a9061463b565b60405180910390fd5b61154b610d72565b1561158b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611582906144bb565b60405180910390fd5b611594816127de565b60005b818110156115bb576115a883612655565b80806115b3906149c9565b915050611597565b505050565b6115c86121b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d9061443b565b60405180910390fd5b80600560006116436121b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116f06121b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161173591906142a8565b60405180910390a35050565b80601360006101000a81548160ff02191690831515021790555050565b61176f6117696121b8565b83612279565b6117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a59061467b565b60405180910390fd5b6117ba84848484612882565b50505050565b6117c8610d72565b15611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff906144bb565b60405180910390fd5b60011515601360009054906101000a900460ff1615151461185e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118559061433b565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c39061445b565b60405180910390fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360006040518363ffffffff1660e01b815260040161192b929190614248565b60206040518083038186803b15801561194357600080fd5b505afa158015611957573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061197b9190613b2c565b9050611986816127de565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633aeca210336000846040518463ffffffff1660e01b81526004016119e693929190614271565b600060405180830381600087803b158015611a0057600080fd5b505af1158015611a14573d6000803e3d6000fd5b5050505060005b81811015611a3f57611a2c33612655565b8080611a37906149c9565b915050611a1b565b503373ffffffffffffffffffffffffffffffffffffffff167f4896181ff8f4543cc00db9fe9b6fb7e6f032b7eb772c72ab1ec1b4d2e03b936982604051611a8691906146bb565b60405180910390a26000600b54148015611aa85750600d54611aa66109d7565b145b15611ab55743600b819055505b50565b6060611ac38261214c565b611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af9906145fb565b60405180910390fd5b6014611b0d836128de565b604051602001611b1e9291906141bd565b6040516020818303038152906040529050919050565b600f6020528060005260406000206000915090505481565b600c5481565b611b5a610d72565b15611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b91906144bb565b60405180910390fd5b611ba3836127de565b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b9061439b565b60405180910390fd5b611c78611c313385612a8b565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612abe565b611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae906145bb565b60405180910390fd5b6000611d0b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612ad590919063ffffffff16565b9050611d5f81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aeb90919063ffffffff16565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b81811015611dc957611db633612655565b8080611dc1906149c9565b915050611da5565b5050505050565b60126020528060005260406000206000915054906101000a900460ff1681565b600b5481565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600c5414611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc9061449b565b60405180910390fd5b6000600b541415611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f129061465b565b60405180910390fd5b600d54600b544060001c611f2f9190614a4a565b600c8190555060ff611f4c600b5443612ad590919063ffffffff16565b1115611f7757600d54600143611f62919061483c565b4060001c611f709190614a4a565b600c819055505b6000600c541415611f9f57611f986001600c54612aeb90919063ffffffff16565b600c819055505b565b601360009054906101000a900460ff1681565b611fbc6121b8565b73ffffffffffffffffffffffffffffffffffffffff16611fda61135e565b73ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120279061457b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612097906143bb565b60405180910390fd5b6120a981612675565b50565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612145575061214482612b01565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661223383610d89565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122848261214c565b6122c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ba9061447b565b60405180910390fd5b60006122ce83610d89565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061233d57508373ffffffffffffffffffffffffffffffffffffffff166123258461083a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061234e575061234d8185611dfc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661237782610d89565b73ffffffffffffffffffffffffffffffffffffffff16146123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c4906145db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561243d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124349061441b565b60405180910390fd5b612448838383612be3565b6124536000826121c0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124a3919061483c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124fa91906147b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125bb610d72565b6125fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f19061431b565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61263e6121b8565b60405161264b91906141e1565b60405180910390a1565b612668816126636011612c3b565b612c49565b6126726011612c67565b50565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612743610d72565b15612783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277a906144bb565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127c76121b8565b6040516127d491906141e1565b60405180910390a1565b60008111612821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612818906143fb565b60405180910390fd5b600d5461283e826128306109d7565b612aeb90919063ffffffff16565b111561287f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128769061459b565b60405180910390fd5b50565b61288d848484612357565b61289984848484612c7d565b6128d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cf9061437b565b60405180910390fd5b50505050565b60606000821415612926576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a86565b600082905060005b60008214612958578080612941906149c9565b915050600a82612951919061480b565b915061292e565b60008167ffffffffffffffff81111561299a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129cc5781602001600182028036833780820191505090505b5090505b60008514612a7f576001826129e5919061483c565b9150600a856129f49190614a4a565b6030612a0091906147b5565b60f81b818381518110612a3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a78919061480b565b94506129d0565b8093505050505b919050565b60008282604051602001612aa0929190614165565b60405160208183030381529060405280519060200120905092915050565b6000612acd82600e5485612e14565b905092915050565b60008183612ae3919061483c565b905092915050565b60008183612af991906147b5565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bcc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bdc5750612bdb82612ef0565b5b9050919050565b612beb610d72565b15612c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c22906144bb565b60405180910390fd5b612c36838383612f5a565b505050565b600081600001549050919050565b612c6382826040518060200160405280600081525061306e565b5050565b6001816000016000828254019250508190555050565b6000612c9e8473ffffffffffffffffffffffffffffffffffffffff166130c9565b15612e07578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cc76121b8565b8786866040518563ffffffff1660e01b8152600401612ce994939291906141fc565b602060405180830381600087803b158015612d0357600080fd5b505af1925050508015612d3457506040513d601f19601f82011682018060405250810190612d319190613a99565b60015b612db7573d8060008114612d64576040519150601f19603f3d011682016040523d82523d6000602084013e612d69565b606091505b50600081511415612daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da69061437b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e0c565b600190505b949350505050565b60008082905060005b8551811015612ee2576000868281518110612e61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612ea2578281604051602001612e85929190614191565b604051602081830303815290604052805190602001209250612ece565b8083604051602001612eb5929190614191565b6040516020818303038152906040528051906020012092505b508080612eda906149c9565b915050612e1d565b508381149150509392505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f658383836130dc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fa857612fa3816130e1565b612fe7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612fe657612fe5838261312a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561302a5761302581613297565b613069565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130685761306782826133da565b5b5b505050565b6130788383613459565b6130856000848484612c7d565b6130c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bb9061437b565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161313784611048565b613141919061483c565b9050600060076000848152602001908152602001600020549050818114613226576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506132ab919061483c565b9050600060096000848152602001908152602001600020549050600060088381548110613301577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613349577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133be577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006133e583611048565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c09061453b565b60405180910390fd5b6134d28161214c565b15613512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613509906143db565b60405180910390fd5b61351e60008383612be3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461356e91906147b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461363390614966565b90600052602060002090601f016020900481019282613655576000855561369c565b82601f1061366e57805160ff191683800117855561369c565b8280016001018555821561369c579182015b8281111561369b578251825591602001919060010190613680565b5b5090506136a991906136ad565b5090565b5b808211156136c65760008160009055506001016136ae565b5090565b60006136dd6136d8846146fb565b6146d6565b9050828152602081018484840111156136f557600080fd5b613700848285614924565b509392505050565b600061371b6137168461472c565b6146d6565b90508281526020810184848401111561373357600080fd5b61373e848285614924565b509392505050565b60008135905061375581615280565b92915050565b60008083601f84011261376d57600080fd5b8235905067ffffffffffffffff81111561378657600080fd5b60208301915083602082028301111561379e57600080fd5b9250929050565b6000813590506137b481615297565b92915050565b6000813590506137c9816152ae565b92915050565b6000813590506137de816152c5565b92915050565b6000815190506137f3816152c5565b92915050565b600082601f83011261380a57600080fd5b813561381a8482602086016136ca565b91505092915050565b600082601f83011261383457600080fd5b8135613844848260208601613708565b91505092915050565b60008135905061385c816152dc565b92915050565b600081519050613871816152dc565b92915050565b60006020828403121561388957600080fd5b600061389784828501613746565b91505092915050565b600080604083850312156138b357600080fd5b60006138c185828601613746565b92505060206138d285828601613746565b9150509250929050565b6000806000606084860312156138f157600080fd5b60006138ff86828701613746565b935050602061391086828701613746565b92505060406139218682870161384d565b9150509250925092565b6000806000806080858703121561394157600080fd5b600061394f87828801613746565b945050602061396087828801613746565b93505060406139718782880161384d565b925050606085013567ffffffffffffffff81111561398e57600080fd5b61399a878288016137f9565b91505092959194509250565b600080604083850312156139b957600080fd5b60006139c785828601613746565b92505060206139d8858286016137a5565b9150509250929050565b600080604083850312156139f557600080fd5b6000613a0385828601613746565b9250506020613a148582860161384d565b9150509250929050565b600060208284031215613a3057600080fd5b6000613a3e848285016137a5565b91505092915050565b600060208284031215613a5957600080fd5b6000613a67848285016137ba565b91505092915050565b600060208284031215613a8257600080fd5b6000613a90848285016137cf565b91505092915050565b600060208284031215613aab57600080fd5b6000613ab9848285016137e4565b91505092915050565b600060208284031215613ad457600080fd5b600082013567ffffffffffffffff811115613aee57600080fd5b613afa84828501613823565b91505092915050565b600060208284031215613b1557600080fd5b6000613b238482850161384d565b91505092915050565b600060208284031215613b3e57600080fd5b6000613b4c84828501613862565b91505092915050565b600080600060408486031215613b6a57600080fd5b6000613b788682870161384d565b935050602084013567ffffffffffffffff811115613b9557600080fd5b613ba18682870161375b565b92509250509250925092565b613bb681614870565b82525050565b613bcd613bc882614870565b614a12565b82525050565b613bdc81614882565b82525050565b613beb8161488e565b82525050565b613c02613bfd8261488e565b614a24565b82525050565b6000613c1382614772565b613c1d8185614788565b9350613c2d818560208601614933565b613c3681614b37565b840191505092915050565b613c4a816148ee565b82525050565b613c5981614912565b82525050565b6000613c6a8261477d565b613c748185614799565b9350613c84818560208601614933565b613c8d81614b37565b840191505092915050565b6000613ca38261477d565b613cad81856147aa565b9350613cbd818560208601614933565b80840191505092915050565b60008154613cd681614966565b613ce081866147aa565b94506001821660008114613cfb5760018114613d0c57613d3f565b60ff19831686528186019350613d3f565b613d158561475d565b60005b83811015613d3757815481890152600182019150602081019050613d18565b838801955050505b50505092915050565b6000613d55601483614799565b9150613d6082614b55565b602082019050919050565b6000613d78602083614799565b9150613d8382614b7e565b602082019050919050565b6000613d9b602b83614799565b9150613da682614ba7565b604082019050919050565b6000613dbe603283614799565b9150613dc982614bf6565b604082019050919050565b6000613de1602883614799565b9150613dec82614c45565b604082019050919050565b6000613e04602683614799565b9150613e0f82614c94565b604082019050919050565b6000613e27601c83614799565b9150613e3282614ce3565b602082019050919050565b6000613e4a601d83614799565b9150613e5582614d0c565b602082019050919050565b6000613e6d602483614799565b9150613e7882614d35565b604082019050919050565b6000613e90601983614799565b9150613e9b82614d84565b602082019050919050565b6000613eb3602183614799565b9150613ebe82614dad565b604082019050919050565b6000613ed6602c83614799565b9150613ee182614dfc565b604082019050919050565b6000613ef9601d83614799565b9150613f0482614e4b565b602082019050919050565b6000613f1c601083614799565b9150613f2782614e74565b602082019050919050565b6000613f3f603883614799565b9150613f4a82614e9d565b604082019050919050565b6000613f62602a83614799565b9150613f6d82614eec565b604082019050919050565b6000613f85602983614799565b9150613f9082614f3b565b604082019050919050565b6000613fa8602083614799565b9150613fb382614f8a565b602082019050919050565b6000613fcb602c83614799565b9150613fd682614fb3565b604082019050919050565b6000613fee602083614799565b9150613ff982615002565b602082019050919050565b6000614011601283614799565b915061401c8261502b565b602082019050919050565b6000614034601483614799565b915061403f82615054565b602082019050919050565b6000614057602983614799565b91506140628261507d565b604082019050919050565b600061407a602f83614799565b9150614085826150cc565b604082019050919050565b600061409d602183614799565b91506140a88261511b565b604082019050919050565b60006140c0602683614799565b91506140cb8261516a565b604082019050919050565b60006140e3602083614799565b91506140ee826151b9565b602082019050919050565b6000614106603183614799565b9150614111826151e2565b604082019050919050565b6000614129602c83614799565b915061413482615231565b604082019050919050565b614148816148e4565b82525050565b61415f61415a826148e4565b614a40565b82525050565b60006141718285613bbc565b601482019150614181828461414e565b6020820191508190509392505050565b600061419d8285613bf1565b6020820191506141ad8284613bf1565b6020820191508190509392505050565b60006141c98285613cc9565b91506141d58284613c98565b91508190509392505050565b60006020820190506141f66000830184613bad565b92915050565b60006080820190506142116000830187613bad565b61421e6020830186613bad565b61422b604083018561413f565b818103606083015261423d8184613c08565b905095945050505050565b600060408201905061425d6000830185613bad565b61426a6020830184613c50565b9392505050565b60006060820190506142866000830186613bad565b6142936020830185613c50565b6142a0604083018461413f565b949350505050565b60006020820190506142bd6000830184613bd3565b92915050565b60006020820190506142d86000830184613be2565b92915050565b60006020820190506142f36000830184613c41565b92915050565b600060208201905081810360008301526143138184613c5f565b905092915050565b6000602082019050818103600083015261433481613d48565b9050919050565b6000602082019050818103600083015261435481613d6b565b9050919050565b6000602082019050818103600083015261437481613d8e565b9050919050565b6000602082019050818103600083015261439481613db1565b9050919050565b600060208201905081810360008301526143b481613dd4565b9050919050565b600060208201905081810360008301526143d481613df7565b9050919050565b600060208201905081810360008301526143f481613e1a565b9050919050565b6000602082019050818103600083015261441481613e3d565b9050919050565b6000602082019050818103600083015261443481613e60565b9050919050565b6000602082019050818103600083015261445481613e83565b9050919050565b6000602082019050818103600083015261447481613ea6565b9050919050565b6000602082019050818103600083015261449481613ec9565b9050919050565b600060208201905081810360008301526144b481613eec565b9050919050565b600060208201905081810360008301526144d481613f0f565b9050919050565b600060208201905081810360008301526144f481613f32565b9050919050565b6000602082019050818103600083015261451481613f55565b9050919050565b6000602082019050818103600083015261453481613f78565b9050919050565b6000602082019050818103600083015261455481613f9b565b9050919050565b6000602082019050818103600083015261457481613fbe565b9050919050565b6000602082019050818103600083015261459481613fe1565b9050919050565b600060208201905081810360008301526145b481614004565b9050919050565b600060208201905081810360008301526145d481614027565b9050919050565b600060208201905081810360008301526145f48161404a565b9050919050565b600060208201905081810360008301526146148161406d565b9050919050565b6000602082019050818103600083015261463481614090565b9050919050565b60006020820190508181036000830152614654816140b3565b9050919050565b60006020820190508181036000830152614674816140d6565b9050919050565b60006020820190508181036000830152614694816140f9565b9050919050565b600060208201905081810360008301526146b48161411c565b9050919050565b60006020820190506146d0600083018461413f565b92915050565b60006146e06146f1565b90506146ec8282614998565b919050565b6000604051905090565b600067ffffffffffffffff82111561471657614715614b08565b5b61471f82614b37565b9050602081019050919050565b600067ffffffffffffffff82111561474757614746614b08565b5b61475082614b37565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006147c0826148e4565b91506147cb836148e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614800576147ff614a7b565b5b828201905092915050565b6000614816826148e4565b9150614821836148e4565b92508261483157614830614aaa565b5b828204905092915050565b6000614847826148e4565b9150614852836148e4565b92508282101561486557614864614a7b565b5b828203905092915050565b600061487b826148c4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006148f982614900565b9050919050565b600061490b826148c4565b9050919050565b600061491d826148e4565b9050919050565b82818337600083830152505050565b60005b83811015614951578082015181840152602081019050614936565b83811115614960576000848401525b50505050565b6000600282049050600182168061497e57607f821691505b6020821081141561499257614991614ad9565b5b50919050565b6149a182614b37565b810181811067ffffffffffffffff821117156149c0576149bf614b08565b5b80604052505050565b60006149d4826148e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a0757614a06614a7b565b5b600182019050919050565b6000614a1d82614a2e565b9050919050565b6000819050919050565b6000614a3982614b48565b9050919050565b6000819050919050565b6000614a55826148e4565b9150614a60836148e4565b925082614a7057614a6f614aaa565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4c616e64706173732065786368616e6765206d757374206265206f70656e6564600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f436c61696d3a204e6f7420616c6c6f77656420746f20636c61696d206769766560008201527f6e20616d6f756e74000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f416d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f52656465656d3a206e6f7420616c6c6f7765642066726f6d20636f6e7472616360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178206c616e64732065786365656465640000000000000000000000000000600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920616c6c6f7765642066726f6d20617574686f72697a656420636f6e60008201527f7472616374730000000000000000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61528981614870565b811461529457600080fd5b50565b6152a081614882565b81146152ab57600080fd5b50565b6152b78161488e565b81146152c257600080fd5b50565b6152ce81614898565b81146152d957600080fd5b50565b6152e5816148e4565b81146152f057600080fd5b5056fea26469706673582212207a854502bcf05bab1ccf595ab8aae9908202a1a6b31f9a5cd116eb281709001d64736f6c6343000802003300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000b5f7d50defe738f7c73bf965cd369ac15fa77de9000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f67616d656f66626c6f636b732e696f2f6170692f6c616e64732f000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102695760003560e01c80637d17fcbe11610151578063c884ef83116100c3578063e5123c4d11610087578063e5123c4d146106e6578063e985e9c514610704578063e986655014610734578063ea4b9b4c1461073e578063f2fde38b1461075c578063fd11090a1461077857610269565b8063c884ef831461062e578063cb774d471461065e578063d2cab0561461067c578063d5b9221b14610698578063e36d6498146106c857610269565b806399f988981161011557806399f9889814610584578063a22cb465146105a0578063b7524518146105bc578063b88d4fde146105d8578063be040fb0146105f4578063c87b56dd146105fe57610269565b80637d17fcbe146105185780638456cb59146105225780638da5cb5b1461052c578063931688cb1461054a57806395d89b411461056657610269565b806340e24ea3116101ea57806367561d93116101ae57806367561d931461046c5780636a9d5c84146104885780636c0360eb146104a457806370a08231146104c2578063715018a6146104f25780637cb64759146104fc57610269565b806340e24ea3146103b657806342842e0e146103d25780634f6ccce7146103ee5780635c975abb1461041e5780636352211e1461043c57610269565b806323b872dd1161023157806323b872dd146103265780632eb4a7ab146103425780632f745c59146103605780633b4c4b25146103905780633f4ba83a146103ac57610269565b806301ffc9a71461026e57806306fdde031461029e578063081812fc146102bc578063095ea7b3146102ec57806318160ddd14610308575b600080fd5b61028860048036038101906102839190613a70565b610796565b60405161029591906142a8565b60405180910390f35b6102a66107a8565b6040516102b391906142f9565b60405180910390f35b6102d660048036038101906102d19190613b03565b61083a565b6040516102e391906141e1565b60405180910390f35b610306600480360381019061030191906139e2565b6108bf565b005b6103106109d7565b60405161031d91906146bb565b60405180910390f35b610340600480360381019061033b91906138dc565b6109e4565b005b61034a610a44565b60405161035791906142c3565b60405180910390f35b61037a600480360381019061037591906139e2565b610a4a565b60405161038791906146bb565b60405180910390f35b6103aa60048036038101906103a59190613b03565b610aef565b005b6103b4610b75565b005b6103d060048036038101906103cb9190613877565b610bfb565b005b6103ec60048036038101906103e791906138dc565b610cbb565b005b61040860048036038101906104039190613b03565b610cdb565b60405161041591906146bb565b60405180910390f35b610426610d72565b60405161043391906142a8565b60405180910390f35b61045660048036038101906104519190613b03565b610d89565b60405161046391906141e1565b60405180910390f35b61048660048036038101906104819190613877565b610e3b565b005b6104a2600480360381019061049d91906139e2565b610f12565b005b6104ac610fba565b6040516104b991906142f9565b60405180910390f35b6104dc60048036038101906104d79190613877565b611048565b6040516104e991906146bb565b60405180910390f35b6104fa611100565b005b61051660048036038101906105119190613a47565b611188565b005b61052061120e565b005b61052a6112d8565b005b61053461135e565b60405161054191906141e1565b60405180910390f35b610564600480360381019061055f9190613ac2565b611388565b005b61056e61141e565b60405161057b91906142f9565b60405180910390f35b61059e600480360381019061059991906139e2565b6114b0565b005b6105ba60048036038101906105b591906139a6565b6115c0565b005b6105d660048036038101906105d19190613a1e565b611741565b005b6105f260048036038101906105ed919061392b565b61175e565b005b6105fc6117c0565b005b61061860048036038101906106139190613b03565b611ab8565b60405161062591906142f9565b60405180910390f35b61064860048036038101906106439190613877565b611b34565b60405161065591906146bb565b60405180910390f35b610666611b4c565b60405161067391906146bb565b60405180910390f35b61069660048036038101906106919190613b55565b611b52565b005b6106b260048036038101906106ad9190613877565b611dd0565b6040516106bf91906142a8565b60405180910390f35b6106d0611df0565b6040516106dd91906146bb565b60405180910390f35b6106ee611df6565b6040516106fb91906146bb565b60405180910390f35b61071e600480360381019061071991906138a0565b611dfc565b60405161072b91906142a8565b60405180910390f35b61073c611e90565b005b610746611fa1565b60405161075391906142a8565b60405180910390f35b61077660048036038101906107719190613877565b611fb4565b005b6107806120ac565b60405161078d91906142de565b60405180910390f35b60006107a1826120d2565b9050919050565b6060600080546107b790614966565b80601f01602080910402602001604051908101604052809291908181526020018280546107e390614966565b80156108305780601f1061080557610100808354040283529160200191610830565b820191906000526020600020905b81548152906001019060200180831161081357829003601f168201915b5050505050905090565b60006108458261214c565b610884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087b9061455b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ca82610d89565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109329061461b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095a6121b8565b73ffffffffffffffffffffffffffffffffffffffff1614806109895750610988816109836121b8565b611dfc565b5b6109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf906144db565b60405180910390fd5b6109d283836121c0565b505050565b6000600880549050905090565b6109f56109ef6121b8565b82612279565b610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b9061467b565b60405180910390fd5b610a3f838383612357565b505050565b600e5481565b6000610a5583611048565b8210610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d9061435b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af76121b8565b73ffffffffffffffffffffffffffffffffffffffff16610b1561135e565b73ffffffffffffffffffffffffffffffffffffffff1614610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b629061457b565b60405180910390fd5b80600d8190555050565b610b7d6121b8565b73ffffffffffffffffffffffffffffffffffffffff16610b9b61135e565b73ffffffffffffffffffffffffffffffffffffffff1614610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be89061457b565b60405180910390fd5b610bf96125b3565b565b610c036121b8565b73ffffffffffffffffffffffffffffffffffffffff16610c2161135e565b73ffffffffffffffffffffffffffffffffffffffff1614610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061457b565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cd68383836040518060200160405280600081525061175e565b505050565b6000610ce56109d7565b8210610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d9061469b565b60405180910390fd5b60088281548110610d60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e299061451b565b60405180910390fd5b80915050919050565b610e436121b8565b73ffffffffffffffffffffffffffffffffffffffff16610e6161135e565b73ffffffffffffffffffffffffffffffffffffffff1614610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae9061457b565b60405180910390fd5b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f1a6121b8565b73ffffffffffffffffffffffffffffffffffffffff16610f3861135e565b73ffffffffffffffffffffffffffffffffffffffff1614610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f859061457b565b60405180910390fd5b60005b81811015610fb557610fa283612655565b8080610fad906149c9565b915050610f91565b505050565b60148054610fc790614966565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff390614966565b80156110405780601f1061101557610100808354040283529160200191611040565b820191906000526020600020905b81548152906001019060200180831161102357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b0906144fb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111086121b8565b73ffffffffffffffffffffffffffffffffffffffff1661112661135e565b73ffffffffffffffffffffffffffffffffffffffff161461117c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111739061457b565b60405180910390fd5b6111866000612675565b565b6111906121b8565b73ffffffffffffffffffffffffffffffffffffffff166111ae61135e565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb9061457b565b60405180910390fd5b80600e8190555050565b6112166121b8565b73ffffffffffffffffffffffffffffffffffffffff1661123461135e565b73ffffffffffffffffffffffffffffffffffffffff161461128a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112819061457b565b60405180910390fd5b6000600c54146112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061449b565b60405180910390fd5b43600b81905550565b6112e06121b8565b73ffffffffffffffffffffffffffffffffffffffff166112fe61135e565b73ffffffffffffffffffffffffffffffffffffffff1614611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b9061457b565b60405180910390fd5b61135c61273b565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113906121b8565b73ffffffffffffffffffffffffffffffffffffffff166113ae61135e565b73ffffffffffffffffffffffffffffffffffffffff1614611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb9061457b565b60405180910390fd5b806014908051906020019061141a929190613627565b5050565b60606001805461142d90614966565b80601f016020809104026020016040519081016040528092919081815260200182805461145990614966565b80156114a65780601f1061147b576101008083540402835291602001916114a6565b820191906000526020600020905b81548152906001019060200180831161148957829003601f168201915b5050505050905090565b60011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a9061463b565b60405180910390fd5b61154b610d72565b1561158b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611582906144bb565b60405180910390fd5b611594816127de565b60005b818110156115bb576115a883612655565b80806115b3906149c9565b915050611597565b505050565b6115c86121b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d9061443b565b60405180910390fd5b80600560006116436121b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116f06121b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161173591906142a8565b60405180910390a35050565b80601360006101000a81548160ff02191690831515021790555050565b61176f6117696121b8565b83612279565b6117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a59061467b565b60405180910390fd5b6117ba84848484612882565b50505050565b6117c8610d72565b15611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff906144bb565b60405180910390fd5b60011515601360009054906101000a900460ff1615151461185e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118559061433b565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c39061445b565b60405180910390fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360006040518363ffffffff1660e01b815260040161192b929190614248565b60206040518083038186803b15801561194357600080fd5b505afa158015611957573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061197b9190613b2c565b9050611986816127de565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633aeca210336000846040518463ffffffff1660e01b81526004016119e693929190614271565b600060405180830381600087803b158015611a0057600080fd5b505af1158015611a14573d6000803e3d6000fd5b5050505060005b81811015611a3f57611a2c33612655565b8080611a37906149c9565b915050611a1b565b503373ffffffffffffffffffffffffffffffffffffffff167f4896181ff8f4543cc00db9fe9b6fb7e6f032b7eb772c72ab1ec1b4d2e03b936982604051611a8691906146bb565b60405180910390a26000600b54148015611aa85750600d54611aa66109d7565b145b15611ab55743600b819055505b50565b6060611ac38261214c565b611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af9906145fb565b60405180910390fd5b6014611b0d836128de565b604051602001611b1e9291906141bd565b6040516020818303038152906040529050919050565b600f6020528060005260406000206000915090505481565b600c5481565b611b5a610d72565b15611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b91906144bb565b60405180910390fd5b611ba3836127de565b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b9061439b565b60405180910390fd5b611c78611c313385612a8b565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612abe565b611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae906145bb565b60405180910390fd5b6000611d0b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612ad590919063ffffffff16565b9050611d5f81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aeb90919063ffffffff16565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b81811015611dc957611db633612655565b8080611dc1906149c9565b915050611da5565b5050505050565b60126020528060005260406000206000915054906101000a900460ff1681565b600b5481565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600c5414611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc9061449b565b60405180910390fd5b6000600b541415611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f129061465b565b60405180910390fd5b600d54600b544060001c611f2f9190614a4a565b600c8190555060ff611f4c600b5443612ad590919063ffffffff16565b1115611f7757600d54600143611f62919061483c565b4060001c611f709190614a4a565b600c819055505b6000600c541415611f9f57611f986001600c54612aeb90919063ffffffff16565b600c819055505b565b601360009054906101000a900460ff1681565b611fbc6121b8565b73ffffffffffffffffffffffffffffffffffffffff16611fda61135e565b73ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120279061457b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612097906143bb565b60405180910390fd5b6120a981612675565b50565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612145575061214482612b01565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661223383610d89565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122848261214c565b6122c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ba9061447b565b60405180910390fd5b60006122ce83610d89565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061233d57508373ffffffffffffffffffffffffffffffffffffffff166123258461083a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061234e575061234d8185611dfc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661237782610d89565b73ffffffffffffffffffffffffffffffffffffffff16146123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c4906145db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561243d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124349061441b565b60405180910390fd5b612448838383612be3565b6124536000826121c0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124a3919061483c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124fa91906147b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125bb610d72565b6125fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f19061431b565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61263e6121b8565b60405161264b91906141e1565b60405180910390a1565b612668816126636011612c3b565b612c49565b6126726011612c67565b50565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612743610d72565b15612783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277a906144bb565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127c76121b8565b6040516127d491906141e1565b60405180910390a1565b60008111612821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612818906143fb565b60405180910390fd5b600d5461283e826128306109d7565b612aeb90919063ffffffff16565b111561287f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128769061459b565b60405180910390fd5b50565b61288d848484612357565b61289984848484612c7d565b6128d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cf9061437b565b60405180910390fd5b50505050565b60606000821415612926576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a86565b600082905060005b60008214612958578080612941906149c9565b915050600a82612951919061480b565b915061292e565b60008167ffffffffffffffff81111561299a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129cc5781602001600182028036833780820191505090505b5090505b60008514612a7f576001826129e5919061483c565b9150600a856129f49190614a4a565b6030612a0091906147b5565b60f81b818381518110612a3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a78919061480b565b94506129d0565b8093505050505b919050565b60008282604051602001612aa0929190614165565b60405160208183030381529060405280519060200120905092915050565b6000612acd82600e5485612e14565b905092915050565b60008183612ae3919061483c565b905092915050565b60008183612af991906147b5565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bcc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bdc5750612bdb82612ef0565b5b9050919050565b612beb610d72565b15612c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c22906144bb565b60405180910390fd5b612c36838383612f5a565b505050565b600081600001549050919050565b612c6382826040518060200160405280600081525061306e565b5050565b6001816000016000828254019250508190555050565b6000612c9e8473ffffffffffffffffffffffffffffffffffffffff166130c9565b15612e07578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cc76121b8565b8786866040518563ffffffff1660e01b8152600401612ce994939291906141fc565b602060405180830381600087803b158015612d0357600080fd5b505af1925050508015612d3457506040513d601f19601f82011682018060405250810190612d319190613a99565b60015b612db7573d8060008114612d64576040519150601f19603f3d011682016040523d82523d6000602084013e612d69565b606091505b50600081511415612daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da69061437b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e0c565b600190505b949350505050565b60008082905060005b8551811015612ee2576000868281518110612e61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612ea2578281604051602001612e85929190614191565b604051602081830303815290604052805190602001209250612ece565b8083604051602001612eb5929190614191565b6040516020818303038152906040528051906020012092505b508080612eda906149c9565b915050612e1d565b508381149150509392505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f658383836130dc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fa857612fa3816130e1565b612fe7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612fe657612fe5838261312a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561302a5761302581613297565b613069565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130685761306782826133da565b5b5b505050565b6130788383613459565b6130856000848484612c7d565b6130c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bb9061437b565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161313784611048565b613141919061483c565b9050600060076000848152602001908152602001600020549050818114613226576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506132ab919061483c565b9050600060096000848152602001908152602001600020549050600060088381548110613301577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613349577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133be577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006133e583611048565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c09061453b565b60405180910390fd5b6134d28161214c565b15613512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613509906143db565b60405180910390fd5b61351e60008383612be3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461356e91906147b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461363390614966565b90600052602060002090601f016020900481019282613655576000855561369c565b82601f1061366e57805160ff191683800117855561369c565b8280016001018555821561369c579182015b8281111561369b578251825591602001919060010190613680565b5b5090506136a991906136ad565b5090565b5b808211156136c65760008160009055506001016136ae565b5090565b60006136dd6136d8846146fb565b6146d6565b9050828152602081018484840111156136f557600080fd5b613700848285614924565b509392505050565b600061371b6137168461472c565b6146d6565b90508281526020810184848401111561373357600080fd5b61373e848285614924565b509392505050565b60008135905061375581615280565b92915050565b60008083601f84011261376d57600080fd5b8235905067ffffffffffffffff81111561378657600080fd5b60208301915083602082028301111561379e57600080fd5b9250929050565b6000813590506137b481615297565b92915050565b6000813590506137c9816152ae565b92915050565b6000813590506137de816152c5565b92915050565b6000815190506137f3816152c5565b92915050565b600082601f83011261380a57600080fd5b813561381a8482602086016136ca565b91505092915050565b600082601f83011261383457600080fd5b8135613844848260208601613708565b91505092915050565b60008135905061385c816152dc565b92915050565b600081519050613871816152dc565b92915050565b60006020828403121561388957600080fd5b600061389784828501613746565b91505092915050565b600080604083850312156138b357600080fd5b60006138c185828601613746565b92505060206138d285828601613746565b9150509250929050565b6000806000606084860312156138f157600080fd5b60006138ff86828701613746565b935050602061391086828701613746565b92505060406139218682870161384d565b9150509250925092565b6000806000806080858703121561394157600080fd5b600061394f87828801613746565b945050602061396087828801613746565b93505060406139718782880161384d565b925050606085013567ffffffffffffffff81111561398e57600080fd5b61399a878288016137f9565b91505092959194509250565b600080604083850312156139b957600080fd5b60006139c785828601613746565b92505060206139d8858286016137a5565b9150509250929050565b600080604083850312156139f557600080fd5b6000613a0385828601613746565b9250506020613a148582860161384d565b9150509250929050565b600060208284031215613a3057600080fd5b6000613a3e848285016137a5565b91505092915050565b600060208284031215613a5957600080fd5b6000613a67848285016137ba565b91505092915050565b600060208284031215613a8257600080fd5b6000613a90848285016137cf565b91505092915050565b600060208284031215613aab57600080fd5b6000613ab9848285016137e4565b91505092915050565b600060208284031215613ad457600080fd5b600082013567ffffffffffffffff811115613aee57600080fd5b613afa84828501613823565b91505092915050565b600060208284031215613b1557600080fd5b6000613b238482850161384d565b91505092915050565b600060208284031215613b3e57600080fd5b6000613b4c84828501613862565b91505092915050565b600080600060408486031215613b6a57600080fd5b6000613b788682870161384d565b935050602084013567ffffffffffffffff811115613b9557600080fd5b613ba18682870161375b565b92509250509250925092565b613bb681614870565b82525050565b613bcd613bc882614870565b614a12565b82525050565b613bdc81614882565b82525050565b613beb8161488e565b82525050565b613c02613bfd8261488e565b614a24565b82525050565b6000613c1382614772565b613c1d8185614788565b9350613c2d818560208601614933565b613c3681614b37565b840191505092915050565b613c4a816148ee565b82525050565b613c5981614912565b82525050565b6000613c6a8261477d565b613c748185614799565b9350613c84818560208601614933565b613c8d81614b37565b840191505092915050565b6000613ca38261477d565b613cad81856147aa565b9350613cbd818560208601614933565b80840191505092915050565b60008154613cd681614966565b613ce081866147aa565b94506001821660008114613cfb5760018114613d0c57613d3f565b60ff19831686528186019350613d3f565b613d158561475d565b60005b83811015613d3757815481890152600182019150602081019050613d18565b838801955050505b50505092915050565b6000613d55601483614799565b9150613d6082614b55565b602082019050919050565b6000613d78602083614799565b9150613d8382614b7e565b602082019050919050565b6000613d9b602b83614799565b9150613da682614ba7565b604082019050919050565b6000613dbe603283614799565b9150613dc982614bf6565b604082019050919050565b6000613de1602883614799565b9150613dec82614c45565b604082019050919050565b6000613e04602683614799565b9150613e0f82614c94565b604082019050919050565b6000613e27601c83614799565b9150613e3282614ce3565b602082019050919050565b6000613e4a601d83614799565b9150613e5582614d0c565b602082019050919050565b6000613e6d602483614799565b9150613e7882614d35565b604082019050919050565b6000613e90601983614799565b9150613e9b82614d84565b602082019050919050565b6000613eb3602183614799565b9150613ebe82614dad565b604082019050919050565b6000613ed6602c83614799565b9150613ee182614dfc565b604082019050919050565b6000613ef9601d83614799565b9150613f0482614e4b565b602082019050919050565b6000613f1c601083614799565b9150613f2782614e74565b602082019050919050565b6000613f3f603883614799565b9150613f4a82614e9d565b604082019050919050565b6000613f62602a83614799565b9150613f6d82614eec565b604082019050919050565b6000613f85602983614799565b9150613f9082614f3b565b604082019050919050565b6000613fa8602083614799565b9150613fb382614f8a565b602082019050919050565b6000613fcb602c83614799565b9150613fd682614fb3565b604082019050919050565b6000613fee602083614799565b9150613ff982615002565b602082019050919050565b6000614011601283614799565b915061401c8261502b565b602082019050919050565b6000614034601483614799565b915061403f82615054565b602082019050919050565b6000614057602983614799565b91506140628261507d565b604082019050919050565b600061407a602f83614799565b9150614085826150cc565b604082019050919050565b600061409d602183614799565b91506140a88261511b565b604082019050919050565b60006140c0602683614799565b91506140cb8261516a565b604082019050919050565b60006140e3602083614799565b91506140ee826151b9565b602082019050919050565b6000614106603183614799565b9150614111826151e2565b604082019050919050565b6000614129602c83614799565b915061413482615231565b604082019050919050565b614148816148e4565b82525050565b61415f61415a826148e4565b614a40565b82525050565b60006141718285613bbc565b601482019150614181828461414e565b6020820191508190509392505050565b600061419d8285613bf1565b6020820191506141ad8284613bf1565b6020820191508190509392505050565b60006141c98285613cc9565b91506141d58284613c98565b91508190509392505050565b60006020820190506141f66000830184613bad565b92915050565b60006080820190506142116000830187613bad565b61421e6020830186613bad565b61422b604083018561413f565b818103606083015261423d8184613c08565b905095945050505050565b600060408201905061425d6000830185613bad565b61426a6020830184613c50565b9392505050565b60006060820190506142866000830186613bad565b6142936020830185613c50565b6142a0604083018461413f565b949350505050565b60006020820190506142bd6000830184613bd3565b92915050565b60006020820190506142d86000830184613be2565b92915050565b60006020820190506142f36000830184613c41565b92915050565b600060208201905081810360008301526143138184613c5f565b905092915050565b6000602082019050818103600083015261433481613d48565b9050919050565b6000602082019050818103600083015261435481613d6b565b9050919050565b6000602082019050818103600083015261437481613d8e565b9050919050565b6000602082019050818103600083015261439481613db1565b9050919050565b600060208201905081810360008301526143b481613dd4565b9050919050565b600060208201905081810360008301526143d481613df7565b9050919050565b600060208201905081810360008301526143f481613e1a565b9050919050565b6000602082019050818103600083015261441481613e3d565b9050919050565b6000602082019050818103600083015261443481613e60565b9050919050565b6000602082019050818103600083015261445481613e83565b9050919050565b6000602082019050818103600083015261447481613ea6565b9050919050565b6000602082019050818103600083015261449481613ec9565b9050919050565b600060208201905081810360008301526144b481613eec565b9050919050565b600060208201905081810360008301526144d481613f0f565b9050919050565b600060208201905081810360008301526144f481613f32565b9050919050565b6000602082019050818103600083015261451481613f55565b9050919050565b6000602082019050818103600083015261453481613f78565b9050919050565b6000602082019050818103600083015261455481613f9b565b9050919050565b6000602082019050818103600083015261457481613fbe565b9050919050565b6000602082019050818103600083015261459481613fe1565b9050919050565b600060208201905081810360008301526145b481614004565b9050919050565b600060208201905081810360008301526145d481614027565b9050919050565b600060208201905081810360008301526145f48161404a565b9050919050565b600060208201905081810360008301526146148161406d565b9050919050565b6000602082019050818103600083015261463481614090565b9050919050565b60006020820190508181036000830152614654816140b3565b9050919050565b60006020820190508181036000830152614674816140d6565b9050919050565b60006020820190508181036000830152614694816140f9565b9050919050565b600060208201905081810360008301526146b48161411c565b9050919050565b60006020820190506146d0600083018461413f565b92915050565b60006146e06146f1565b90506146ec8282614998565b919050565b6000604051905090565b600067ffffffffffffffff82111561471657614715614b08565b5b61471f82614b37565b9050602081019050919050565b600067ffffffffffffffff82111561474757614746614b08565b5b61475082614b37565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006147c0826148e4565b91506147cb836148e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614800576147ff614a7b565b5b828201905092915050565b6000614816826148e4565b9150614821836148e4565b92508261483157614830614aaa565b5b828204905092915050565b6000614847826148e4565b9150614852836148e4565b92508282101561486557614864614a7b565b5b828203905092915050565b600061487b826148c4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006148f982614900565b9050919050565b600061490b826148c4565b9050919050565b600061491d826148e4565b9050919050565b82818337600083830152505050565b60005b83811015614951578082015181840152602081019050614936565b83811115614960576000848401525b50505050565b6000600282049050600182168061497e57607f821691505b6020821081141561499257614991614ad9565b5b50919050565b6149a182614b37565b810181811067ffffffffffffffff821117156149c0576149bf614b08565b5b80604052505050565b60006149d4826148e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a0757614a06614a7b565b5b600182019050919050565b6000614a1d82614a2e565b9050919050565b6000819050919050565b6000614a3982614b48565b9050919050565b6000819050919050565b6000614a55826148e4565b9150614a60836148e4565b925082614a7057614a6f614aaa565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4c616e64706173732065786368616e6765206d757374206265206f70656e6564600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f436c61696d3a204e6f7420616c6c6f77656420746f20636c61696d206769766560008201527f6e20616d6f756e74000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f416d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f52656465656d3a206e6f7420616c6c6f7765642066726f6d20636f6e7472616360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178206c616e64732065786365656465640000000000000000000000000000600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920616c6c6f7765642066726f6d20617574686f72697a656420636f6e60008201527f7472616374730000000000000000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61528981614870565b811461529457600080fd5b50565b6152a081614882565b81146152ab57600080fd5b50565b6152b78161488e565b81146152c257600080fd5b50565b6152ce81614898565b81146152d957600080fd5b50565b6152e5816148e4565b81146152f057600080fd5b5056fea26469706673582212207a854502bcf05bab1ccf595ab8aae9908202a1a6b31f9a5cd116eb281709001d64736f6c63430008020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000b5f7d50defe738f7c73bf965cd369ac15fa77de9000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f67616d656f66626c6f636b732e696f2f6170692f6c616e64732f000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : uri (string): https://gameofblocks.io/api/lands/
Arg [1] : ml (uint256): 3200
Arg [2] : landPassAddress (address): 0xB5F7d50defe738f7c73Bf965cD369ac15fA77DE9
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000c80
Arg [2] : 000000000000000000000000b5f7d50defe738f7c73bf965cd369ac15fa77de9
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [4] : 68747470733a2f2f67616d656f66626c6f636b732e696f2f6170692f6c616e64
Arg [5] : 732f000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.