ERC-721
Overview
Max Total Supply
1,110 GG12
Holders
844
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GG12Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VFToken
Compiler Version
v0.8.17+commit.8df45f5f
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.4; import "../token/ERC721VF.sol"; import "./VFTokenAllExtensions.sol"; contract VFToken is ERC721VF, VFTokenAllExtensions { //Token base URI string private _baseUri; /** * @dev Initializes the contract by setting a `initialBaseUri`, `name`, `symbol`, * and a `controlContractAddress` to the token collection. */ constructor( string memory initialBaseUri, string memory name, string memory symbol, address controlContractAddress, address royaltiesContractAddress, address renderingContractAddress ) ERC721VF(name, symbol) VFTokenAllExtensions( controlContractAddress, royaltiesContractAddress, renderingContractAddress ) { string memory contractAddress = Strings.toHexString( uint160(address(this)), 20 ); setBaseURI( string( abi.encodePacked(initialBaseUri, contractAddress, "/tokens/") ) ); } /** * @dev Get the base token URI */ function _baseURI() internal view virtual override returns (string memory) { return _baseUri; } /** * @dev Update the base token URI * * Requirements: * * - the caller must be an admin role */ function setBaseURI(string memory baseUri) public onlyRole(getAdminRole()) { _baseUri = baseUri; } /** * @dev Permanently lock minting * * Requirements: * * - the caller must be an admin role */ function lockMintingPermanently() external onlyRole(getAdminRole()) { _lockMintingPermanently(); } /** * @dev Set the active/inactive state of minting * * Requirements: * * - the caller must be an admin role */ function toggleMintActive() external onlyRole(getAdminRole()) { _toggleMintActive(); } /** * @dev Set the active/inactive state of burning * * Requirements: * * - the caller must be an admin role */ function toggleBurnActive() external onlyRole(getAdminRole()) { _toggleBurnActive(); } /** * @dev Airdrop `addresses` for `quantity` starting at `startTokenId` * * Requirements: * * - the caller must be a minter role * - minting must not be locked and must be active * - `addresses` and `quantities` must have the same length */ function airdrop( address[] calldata addresses, uint256[] calldata quantities, uint256 startTokenId ) external onlyRoles(getMinterRoles()) notLocked mintActive { _airdrop(addresses, quantities, startTokenId); } /** * @dev mint batch `to` for `quantity` starting at `startTokenId` * * Requirements: * * - the caller must be a minter role * - minting must not be locked and must be active */ function mintBatch( address to, uint8 quantity, uint256 startTokenId ) external onlyRoles(getMinterRoles()) notLocked mintActive { _mintBatch(to, quantity, startTokenId); } /** * @dev mint `to` token `tokenId` * * Requirements: * * - the caller must be a minter role * - minting must not be locked and must be active */ function mint( address to, uint256 tokenId ) external onlyRoles(getMinterRoles()) notLocked mintActive { _mint(to, tokenId); } /** * @dev burn `from` token `tokenId` * * Requirements: * * - the caller must be a burner role * - burning must be active */ function burn( address from, uint256 tokenId ) external onlyRole(getBurnerRole()) burnActive { _burn(from, tokenId, false); } /** * @dev If renderingContract is set then returns its tokenURI(tokenId) * return value, otherwise returns the standard baseTokenURI + tokenId. */ function tokenURI( uint256 tokenId ) public view override returns (string memory) { if (getRenderingContract() != address(0)) { return renderingContractTokenURI(tokenId); } return super.tokenURI(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) 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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) 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`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface 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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface 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 // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface IAccessControlVF { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged( bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole ); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function checkRole(bytes32 role, address account) external view; /** * @dev Returns bytes of default admin role */ function getAdminRole() external view returns (bytes32); /** * @dev Returns bytes of token contract role */ function getTokenContractRole() external view returns (bytes32); /** * @dev Returns bytes of sales contract role */ function getSalesContractRole() external view returns (bytes32); /** * @dev Returns bytes of burner role */ function getBurnerRole() external view returns (bytes32); /** * @dev Returns bytes of minter role */ function getMinterRole() external view returns (bytes32); /** * @dev Returns a bytes array of roles that can be minters */ function getMinterRoles() external view returns (bytes32[] memory); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; /** * @dev Selects the next minter from the minters array using the current minter index. * The current minter index should be incremented after each selection. If the * current minter index + 1 is equal to the minters array length then the current * minter index should be set back to 0 * * Requirements: * * - the caller must be an admin role */ function selectNextMinter() external returns (address payable); /** * @dev Grants `minter` minter role and adds `minter` to minters array * * Requirements: * * - the caller must be an admin role */ function grantMinterRole(address minter) external; /** * @dev Revokes minter role from `minter` and removes `minter` from minters array * * Requirements: * * - the caller must be an admin role */ function revokeMinterRole(address minter) external; /** * @dev Distributes ETH evenly to all addresses in minters array */ function fundMinters() external payable; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {AccessControlVFExtension} from "../extensions/accesscontrol/AccessControlVFExtension.sol"; import {RoyaltiesVFExtension} from "../extensions/royalties/RoyaltiesVFExtension.sol"; import {TokenURIGeneratorVFExtension} from "../extensions/tokenurigenerator/TokenURIGeneratorVFExtension.sol"; import {WithdrawVFExtension} from "../extensions/withdraw/WithdrawVFExtension.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; abstract contract VFTokenAllExtensions is AccessControlVFExtension, RoyaltiesVFExtension, TokenURIGeneratorVFExtension, WithdrawVFExtension, Ownable { constructor( address controlContractAddress, address royaltiesContractAddress, address renderingContractAddress ) AccessControlVFExtension(controlContractAddress) RoyaltiesVFExtension(royaltiesContractAddress) TokenURIGeneratorVFExtension(renderingContractAddress) {} function setRoyaltiesContract( address royaltiesContractAddress ) external onlyRole(getAdminRole()) { super._setRoyaltiesContract(royaltiesContractAddress); } function setRenderingContract( address renderContractAddress ) external onlyRole(getAdminRole()) { super._setRenderingContract(renderContractAddress); } function withdrawMoney() external onlyRole(getAdminRole()) { super._withdrawMoney(); } function withdrawToken( address contractAddress, address to, uint256 tokenId ) external onlyRole(getAdminRole()) { super._withdrawToken(contractAddress, to, tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IAccessControlVF} from "../../access/IAccessControlVF.sol"; import {Context} from "@openzeppelin/contracts/utils/Context.sol"; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; abstract contract AccessControlVFExtension is Context, IERC165 { //Contract for function access control IAccessControlVF private _controlContract; constructor(address controlContractAddress) { _controlContract = IAccessControlVF(controlContractAddress); } modifier onlyRole(bytes32 role) virtual { _controlContract.checkRole(role, _msgSender()); _; } modifier onlyRoles(bytes32[] memory roles) virtual { bool hasRequiredRole = false; for (uint256 i; i < roles.length; i++) { bytes32 role = roles[i]; if (_controlContract.hasRole(role, _msgSender())) { hasRequiredRole = true; break; } } require(hasRequiredRole, "Missing required role"); _; } function getAdminRole() public view returns (bytes32) { return _controlContract.getAdminRole(); } function getMinterRoles() public view returns (bytes32[] memory) { return _controlContract.getMinterRoles(); } function getBurnerRole() public view returns (bytes32) { return _controlContract.getBurnerRole(); } /** * @dev Update the access control contract * * Requirements: * * - the caller must be an admin role * - `controlContractAddress` must support the IVFAccesControl interface */ function setControlContract(address controlContractAddress) external onlyRole(_controlContract.getAdminRole()) { require( IERC165(controlContractAddress).supportsInterface( type(IAccessControlVF).interfaceId ), "Contract does not support required interface" ); _controlContract = IAccessControlVF(controlContractAddress); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IRoyaltiesVF} from "../../royalties/IRoyaltiesVF.sol"; import {Context} from "@openzeppelin/contracts/utils/Context.sol"; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import {IERC2981} from "@openzeppelin/contracts/interfaces/IERC2981.sol"; abstract contract RoyaltiesVFExtension is Context, IERC165, IERC2981 { //Contract for function access control IRoyaltiesVF private _royaltiesContract; constructor(address royaltiesContractAddress) { _royaltiesContract = IRoyaltiesVF(royaltiesContractAddress); } /** * @dev Get royalty information for a token based on the `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount) { return _royaltiesContract.royaltyInfo(tokenId, address(this), salePrice); } /** * @dev Update the royalties contract * * Requirements: * * - the caller must be an admin role * - `royaltiesContractAddress` must support the IRoyaltiesVF interface */ function _setRoyaltiesContract(address royaltiesContractAddress) internal { require( IERC165(royaltiesContractAddress).supportsInterface( type(IRoyaltiesVF).interfaceId ), "Contract does not support required interface" ); _royaltiesContract = IRoyaltiesVF(royaltiesContractAddress); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {ITokenURIGeneratorVF} from "../../urigenerator/ITokenURIGeneratorVF.sol"; import {Context} from "@openzeppelin/contracts/utils/Context.sol"; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; abstract contract TokenURIGeneratorVFExtension is Context, IERC165 { //Contract for function access control ITokenURIGeneratorVF private _tokenURIGeneratorContract; constructor(address tokenURIGeneratorContractAddress) { if (tokenURIGeneratorContractAddress != address(0)) { _tokenURIGeneratorContract = ITokenURIGeneratorVF( tokenURIGeneratorContractAddress ); } } function renderingContractTokenURI(uint256 tokenId) public view returns (string memory) { return _tokenURIGeneratorContract.tokenURI(tokenId); } function getRenderingContract() public view returns (address) { return address(_tokenURIGeneratorContract); } /** * @dev Update the royalties contract * * Requirements: * * - the caller must be an admin role * - `tokenURIGeneratorContractAddress` must support the IRoyaltiesVF interface */ function _setRenderingContract(address tokenURIGeneratorContractAddress) internal { require( IERC165(tokenURIGeneratorContractAddress).supportsInterface( type(ITokenURIGeneratorVF).interfaceId ), "Contract does not support required interface" ); _tokenURIGeneratorContract = ITokenURIGeneratorVF( tokenURIGeneratorContractAddress ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import {Context} from "@openzeppelin/contracts/utils/Context.sol"; abstract contract WithdrawVFExtension is Context { constructor() {} /** * @dev Withdraw balance on contact to msg sender * * Requirements: * * - the caller must be an admin role */ function _withdrawMoney() internal { address payable to = payable(_msgSender()); to.transfer(address(this).balance); } /** * @dev Withdraw token if we need to refund * * Requirements: * * - `contractAddress` must support the IVFToken interface * - the caller must be an admin role */ function _withdrawToken( address contractAddress, address to, uint256 tokenId ) internal { IERC721(contractAddress).transferFrom(address(this), to, tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface IRoyaltiesVF { /** * @dev Update the access control contract * * Requirements: * * - the caller must be an admin role * - `controlContractAddress` must support the IVFAccesControl interface */ function setControlContract(address controlContractAddress) external; /** * @dev Get royalty information for a contract based on the `salePrice` of a token */ function royaltyInfo( uint256, address contractAddress, uint256 salePrice ) external view returns (address receiver, uint256 royaltyAmount); /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function setDefaultRoyalty(address receiver, uint96 feeNumerator) external; /** * @dev Removes default royalty information. */ function deleteDefaultRoyalty() external; /** * @dev Sets the royalty information for `contractAddress`. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function setContractRoyalties( address contractAddress, address receiver, uint96 feeNumerator ) external; /** * @dev Removes royalty information for `contractAddress`. */ function resetContractRoyalty(address contractAddress) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721VF.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. */ contract ERC721VF is Context, ERC165, IERC721VF, DefaultOperatorFilterer { 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; // The number of tokens minted uint256 private _mintCounter; // The number of tokens burned uint256 private _burnCounter; //Flag to permanently lock minting bool public mintingPermanentlyLocked = false; //Flag to activate or disable minting bool public isMintActive = false; //Flag to activate or disable burning bool public isBurnActive = false; /** * @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_; } modifier notLocked() virtual { if (mintingPermanentlyLocked) { revert ERC721VFMintingPermanentlyLocked(); } _; } modifier mintActive() virtual { if (!isMintActive) { revert ERC721VFMintIsNotActive(); } _; } modifier burnActive() virtual { if (!isBurnActive) { revert ERC721VFBurnIsNotActive(); } _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721 interfaceId == 0x5b5e139f || // ERC165 interface ID for ERC721Metadata interfaceId == type(IERC721VF).interfaceId || // ERC165 interface ID for ERC721VF. super.supportsInterface(interfaceId); // ERC165 interface ID for ERC165 } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) { revert ERC721VFAddressZeroIsNotAValidOwner(); } return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); if (owner == address(0)) { revert ERC721VFInvalidTokenID(tokenId); } 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) { _requireMinted(tokenId); 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 overridden 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 onlyAllowedOperatorApproval(to) { address owner = ERC721VF.ownerOf(tokenId); if (to == owner) { revert ERC721VFApprovalToCurrentOwner(to, tokenId); } if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ERC721VFApproveCallerIsNotTokenOwnerOrApprovedForAll( to, tokenId ); } _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override onlyAllowedOperatorApproval(operator) { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override onlyAllowedOperator(from) { _transferFrom(from, to, tokenId, true); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override onlyAllowedOperator(from) { _safeTransferFrom(from, to, tokenId, true); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override onlyAllowedOperator(from) { _safeTransferFrom(from, to, tokenId, true, data); } /** * @dev See {IERC721VF-totalSupply}. */ function totalSupply() public view returns (uint256) { unchecked { return _mintCounter - _burnCounter; } } /** * @dev See {IERC721VF-totalMinted}. */ function totalMinted() public view returns (uint256) { unchecked { return _mintCounter; } } /** * @dev See {IERC721VF-totalBurned}. */ function totalBurned() public view returns (uint256) { unchecked { return _burnCounter; } } /** * @dev See {IERC721VF-tokensOfOwner}. */ function tokensOfOwner(address owner) public view returns (uint256[] memory ownerTokens) { address currentOwnerAddress; uint256 tokenCount = balanceOf(owner); if (tokenCount == 0) { return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 resultIndex = 0; uint256 index; for (index = 0; resultIndex != tokenCount; index++) { currentOwnerAddress = _owners[index]; if (currentOwnerAddress == owner) { result[resultIndex++] = index; } } return result; } } /** * @dev See {IERC721VF-tokensOfOwnerIn}. */ function tokensOfOwnerIn( address owner, uint256 startIndex, uint256 endIndex ) public view returns (uint256[] memory ownerTokens) { address currentOwnerAddress; uint256 tokenCount = balanceOf(owner); if (tokenCount == 0) { return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 resultIndex = 0; uint256 index = startIndex; for (index; index <= endIndex; index++) { currentOwnerAddress = _owners[index]; if (currentOwnerAddress == owner) { result[resultIndex++] = index; } } // Downsize the array to fit. assembly { mstore(result, resultIndex) } return result; } } /** * @dev See {IERC721-transferFrom}. */ function _transferFrom( address from, address to, uint256 tokenId, bool approvalCheck ) internal virtual { //solhint-disable-next-line max-line-length if (approvalCheck) { if (!_isApprovedOrOwner(_msgSender(), tokenId)) { revert ERC721VFCallerIsNotTokenOwnerOrApproved( from, to, tokenId ); } } _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function _safeTransferFrom( address from, address to, uint256 tokenId, bool approvalCheck ) internal virtual { _safeTransferFrom(from, to, tokenId, approvalCheck, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function _safeTransferFrom( address from, address to, uint256 tokenId, bool approvalCheck, bytes memory data ) internal virtual { if (approvalCheck) { if (!_isApprovedOrOwner(_msgSender(), tokenId)) { revert ERC721VFCallerIsNotTokenOwnerOrApproved( from, to, tokenId ); } } _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); if (!_checkOnERC721Received(from, to, tokenId, data)) { revert ERC721VFTransferToNonERC721VFReceiverImplementer( to, tokenId ); } } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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 _ownerOf(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) { address owner = ERC721VF.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Permanently lock minting * * Requirements: * * - the caller must be an admin role */ function _lockMintingPermanently() internal { mintingPermanentlyLocked = true; } /** * @dev Set the active/inactive state of minting * * Requirements: * * - the caller must be an admin role */ function _toggleMintActive() internal { isMintActive = !isMintActive; } /** * @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); if (!_checkOnERC721Received(address(0), to, tokenId, data)) { revert ERC721VFTransferToNonERC721VFReceiverImplementer( to, tokenId ); } } /** * @dev Safely batch mints tokens starting at `startTokenId` until `quantity` is met and transfers them 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. * - Transfer to only ERC721Reciever implementers * * Emits a {Transfer} event. */ function _safeMintBatch( address to, uint256 quantity, uint256 startTokenId ) internal returns (uint256 endToken) { uint256 tokenId = startTokenId; for (uint256 i; i < quantity; i++) { if (to == address(0)) { revert ERC721VFMintToTheZeroAddress(); } if (_exists(tokenId)) { revert ERC721VFTokenAlreadyMinted(tokenId); } _beforeTokenTransfer(address(0), to, tokenId, 1); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); if (!_checkOnERC721Received(address(0), to, tokenId, "")) { revert ERC721VFTransferToNonERC721VFReceiverImplementer( to, tokenId ); } tokenId++; } unchecked { _mintCounter += quantity; } return tokenId; } /** * @dev Airdrop `addresses` for `quantity` starting at `startTokenId` * * Requirements: * * - the caller must be a minter role * - minting must not be locked and must be active * - `addresses` and `quantities` must have the same length */ function _airdrop( address[] calldata addresses, uint256[] calldata quantities, uint256 startTokenId ) internal virtual { if (addresses.length != quantities.length) { revert ERC721VFAddressAndQuantitiesNeedToBeEqualLength(); } for (uint256 i; i < addresses.length; i++) { startTokenId = _mintBatch( addresses[i], quantities[i], startTokenId ); } } /** * @dev Batch mints tokens starting at `startTokenId` until `quantity` is met and transfers them 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 _mintBatch( address to, uint256 quantity, uint256 startTokenId ) internal virtual returns (uint256 endToken) { uint256 tokenId = startTokenId; for (uint256 i; i < quantity; i++) { if (to == address(0)) { revert ERC721VFMintToTheZeroAddress(); } if (_exists(tokenId)) { revert ERC721VFTokenAlreadyMinted(tokenId); } _beforeTokenTransfer(address(0), to, tokenId, 1); _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); tokenId++; } unchecked { _balances[to] += quantity; _mintCounter += quantity; } return tokenId; } /** * @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 { if (to == address(0)) { revert ERC721VFMintToTheZeroAddress(); } if (_exists(tokenId)) { revert ERC721VFTokenAlreadyMinted(tokenId); } _beforeTokenTransfer(address(0), to, tokenId, 1); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; unchecked { _mintCounter++; } emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Set the active/inactive state of burning * * Requirements: * * - the caller must be an admin role */ function _toggleBurnActive() internal { isBurnActive = !isBurnActive; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn( address from, uint256 tokenId, bool approvalCheck ) internal virtual { if (approvalCheck) { if (!_isApprovedOrOwner(from, tokenId)) { revert ERC721VFBurnCallerIsNotTokenOwnerOrApproved( from, tokenId ); } } _burn(tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721VF.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; unchecked { _burnCounter++; } emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @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 { if (to == address(0)) { revert ERC721VFTransferToTheZeroAddress(); } if (ERC721VF.ownerOf(tokenId) != from) { revert ERC721VFTransferFromIncorrectOwner(from, tokenId); } _beforeTokenTransfer(from, to, tokenId, 1); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721VF.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { if (owner == operator) { revert ERC721VFApproveToCaller(); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { if (!_exists(tokenId)) { revert ERC721VFInvalidTokenID(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 ERC721VFTransferToNonERC721VFReceiverImplementer( to, tokenId ); } else { /// @solidity memory-safe-assembly 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. * - `batchSize` is non-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, uint256 batchSize ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721VF compliant contract. */ interface IERC721VF is IERC165 { error ERC721VFAddressZeroIsNotAValidOwner(); error ERC721VFInvalidTokenID(uint256 tokenId); error ERC721VFApprovalToCurrentOwner(address to, uint256 tokenId); error ERC721VFApproveCallerIsNotTokenOwnerOrApprovedForAll( address to, uint256 tokenId ); error ERC721VFCallerIsNotTokenOwnerOrApproved( address from, address to, uint256 tokenId ); error ERC721VFTransferToNonERC721VFReceiverImplementer( address to, uint256 tokenId ); error ERC721VFAddressAndQuantitiesNeedToBeEqualLength(); error ERC721VFMintToTheZeroAddress(); error ERC721VFTokenAlreadyMinted(uint256 tokenId); error ERC721VFTransferToTheZeroAddress(); error ERC721VFTransferFromIncorrectOwner(address from, uint256 tokenId); error ERC721VFApproveToCaller(); error ERC721VFBurnCallerIsNotTokenOwnerOrApproved( address from, uint256 tokenId ); error ERC721VFMintingPermanentlyLocked(); error ERC721VFMintIsNotActive(); error ERC721VFBurnIsNotActive(); /** * @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 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); /** * @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`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface ITokenURIGeneratorVF { /** * @dev Update the access control contract * * Requirements: * * - the caller must be an admin role * - `controlContractAddress` must support the IVFAccesControl interface */ function setControlContract(address controlContractAddress) external; function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"initialBaseUri","type":"string"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"controlContractAddress","type":"address"},{"internalType":"address","name":"royaltiesContractAddress","type":"address"},{"internalType":"address","name":"renderingContractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ERC721VFAddressAndQuantitiesNeedToBeEqualLength","type":"error"},{"inputs":[],"name":"ERC721VFAddressZeroIsNotAValidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721VFApprovalToCurrentOwner","type":"error"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721VFApproveCallerIsNotTokenOwnerOrApprovedForAll","type":"error"},{"inputs":[],"name":"ERC721VFApproveToCaller","type":"error"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721VFBurnCallerIsNotTokenOwnerOrApproved","type":"error"},{"inputs":[],"name":"ERC721VFBurnIsNotActive","type":"error"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721VFCallerIsNotTokenOwnerOrApproved","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721VFInvalidTokenID","type":"error"},{"inputs":[],"name":"ERC721VFMintIsNotActive","type":"error"},{"inputs":[],"name":"ERC721VFMintToTheZeroAddress","type":"error"},{"inputs":[],"name":"ERC721VFMintingPermanentlyLocked","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721VFTokenAlreadyMinted","type":"error"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721VFTransferFromIncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721VFTransferToNonERC721VFReceiverImplementer","type":"error"},{"inputs":[],"name":"ERC721VFTransferToTheZeroAddress","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"internalType":"uint256","name":"startTokenId","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAdminRole","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnerRole","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterRoles","outputs":[{"internalType":"bytes32[]","name":"","type":"bytes32[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRenderingContract","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":"isBurnActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMintingPermanently","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint8","name":"quantity","type":"uint8"},{"internalType":"uint256","name":"startTokenId","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingPermanentlyLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"renderingContractTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"controlContractAddress","type":"address"}],"name":"setControlContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"renderContractAddress","type":"address"}],"name":"setRenderingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltiesContractAddress","type":"address"}],"name":"setRoyaltiesContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleBurnActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"startIndex","type":"uint256"},{"internalType":"uint256","name":"endIndex","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055506000600860026101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040516200690638038062006906833981810160405281019062000088919062000ad8565b8282828082848a8a733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200029c57801562000162576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200012892919062000be2565b600060405180830381600087803b1580156200014357600080fd5b505af115801562000158573d6000803e3d6000fd5b505050506200029b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200021c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620001e292919062000be2565b600060405180830381600087803b158015620001fd57600080fd5b505af115801562000212573d6000803e3d6000fd5b505050506200029a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000265919062000c0f565b600060405180830381600087803b1580156200028057600080fd5b505af115801562000295573d6000803e3d6000fd5b505050505b5b5b50508160009081620002af919062000e77565b508060019081620002c1919062000e77565b50505080600860036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614620003bf5780600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50620003e0620003d46200045660201b60201c565b6200045e60201b60201c565b5050506000620004133073ffffffffffffffffffffffffffffffffffffffff1660146200052460201b620024171760201c565b90506200044987826040516020016200042e92919062000ff0565b6040516020818303038152906040526200077f60201b60201c565b5050505050505062001265565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000600283600262000539919062001054565b6200054591906200109f565b67ffffffffffffffff8111156200056157620005606200090f565b5b6040519080825280601f01601f191660200182016040528015620005945781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110620005cf57620005ce620010da565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110620006365762000635620010da565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262000678919062001054565b6200068491906200109f565b90505b60018111156200072e577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110620006ca57620006c9620010da565b5b1a60f81b828281518110620006e457620006e3620010da565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080620007269062001109565b905062000687565b506000841462000775576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076c9062001198565b60405180910390fd5b8091505092915050565b6200078f6200084560201b60201c565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82620007de6200045660201b60201c565b6040518363ffffffff1660e01b8152600401620007fd929190620011d5565b60006040518083038186803b1580156200081657600080fd5b505afa1580156200082b573d6000803e3d6000fd5b5050505081600c908162000840919062000e77565b505050565b6000600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b3ecf2366040518163ffffffff1660e01b8152600401602060405180830381865afa158015620008b5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008db919062001233565b905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200094982620008fe565b810181811067ffffffffffffffff821117156200096b576200096a6200090f565b5b80604052505050565b600062000980620008e0565b90506200098e82826200093e565b919050565b600067ffffffffffffffff821115620009b157620009b06200090f565b5b620009bc82620008fe565b9050602081019050919050565b60005b83811015620009e9578082015181840152602081019050620009cc565b60008484015250505050565b600062000a0c62000a068462000993565b62000974565b90508281526020810184848401111562000a2b5762000a2a620008f9565b5b62000a38848285620009c9565b509392505050565b600082601f83011262000a585762000a57620008f4565b5b815162000a6a848260208601620009f5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000aa08262000a73565b9050919050565b62000ab28162000a93565b811462000abe57600080fd5b50565b60008151905062000ad28162000aa7565b92915050565b60008060008060008060c0878903121562000af85762000af7620008ea565b5b600087015167ffffffffffffffff81111562000b195762000b18620008ef565b5b62000b2789828a0162000a40565b965050602087015167ffffffffffffffff81111562000b4b5762000b4a620008ef565b5b62000b5989828a0162000a40565b955050604087015167ffffffffffffffff81111562000b7d5762000b7c620008ef565b5b62000b8b89828a0162000a40565b945050606062000b9e89828a0162000ac1565b935050608062000bb189828a0162000ac1565b92505060a062000bc489828a0162000ac1565b9150509295509295509295565b62000bdc8162000a93565b82525050565b600060408201905062000bf9600083018562000bd1565b62000c08602083018462000bd1565b9392505050565b600060208201905062000c26600083018462000bd1565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c7f57607f821691505b60208210810362000c955762000c9462000c37565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cc0565b62000d0b868362000cc0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d5862000d5262000d4c8462000d23565b62000d2d565b62000d23565b9050919050565b6000819050919050565b62000d748362000d37565b62000d8c62000d838262000d5f565b84845462000ccd565b825550505050565b600090565b62000da362000d94565b62000db081848462000d69565b505050565b5b8181101562000dd85762000dcc60008262000d99565b60018101905062000db6565b5050565b601f82111562000e275762000df18162000c9b565b62000dfc8462000cb0565b8101602085101562000e0c578190505b62000e2462000e1b8562000cb0565b83018262000db5565b50505b505050565b600082821c905092915050565b600062000e4c6000198460080262000e2c565b1980831691505092915050565b600062000e67838362000e39565b9150826002028217905092915050565b62000e828262000c2c565b67ffffffffffffffff81111562000e9e5762000e9d6200090f565b5b62000eaa825462000c66565b62000eb782828562000ddc565b600060209050601f83116001811462000eef576000841562000eda578287015190505b62000ee6858262000e59565b86555062000f56565b601f19841662000eff8662000c9b565b60005b8281101562000f295784890151825560018201915060208501945060208101905062000f02565b8683101562000f49578489015162000f45601f89168262000e39565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b600062000f768262000c2c565b62000f82818562000f5e565b935062000f94818560208601620009c9565b80840191505092915050565b7f2f746f6b656e732f000000000000000000000000000000000000000000000000600082015250565b600062000fd860088362000f5e565b915062000fe58262000fa0565b600882019050919050565b600062000ffe828562000f69565b91506200100c828462000f69565b9150620010198262000fc9565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010618262000d23565b91506200106e8362000d23565b92508282026200107e8162000d23565b9150828204841483151762001098576200109762001025565b5b5092915050565b6000620010ac8262000d23565b9150620010b98362000d23565b9250828201905080821115620010d457620010d362001025565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000620011168262000d23565b9150600082036200112c576200112b62001025565b5b600182039050919050565b600082825260208201905092915050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006200118060208362001137565b91506200118d8262001148565b602082019050919050565b60006020820190508181036000830152620011b38162001171565b9050919050565b6000819050919050565b620011cf81620011ba565b82525050565b6000604082019050620011ec6000830185620011c4565b620011fb602083018462000bd1565b9392505050565b6200120d81620011ba565b81146200121957600080fd5b50565b6000815190506200122d8162001202565b92915050565b6000602082840312156200124c576200124b620008ea565b5b60006200125c848285016200121c565b91505092915050565b61569180620012756000396000f3fe608060405234801561001057600080fd5b50600436106102745760003560e01c806395d89b4111610151578063bb7648b6116100c3578063d2f235d411610087578063d2f235d414610710578063d89135cd1461072e578063dd5adf0c1461074c578063e985e9c51461076a578063f2fde38b1461079a578063f5e92b95146107b657610274565b8063bb7648b614610692578063c5b66dc91461069c578063c87b56dd146106ba578063ca35e8a0146106ea578063d02c2bf21461070657610274565b8063ac44600211610115578063ac446002146105f8578063b166da4214610602578063b1a6676e1461061e578063b3ecf2361461063c578063b7f1d0721461065a578063b88d4fde1461067657610274565b806395d89b411461055457806399a2557a146105725780639dc29fac146105a2578063a22cb465146105be578063a2309ff8146105da57610274565b806342842e0e116101ea5780636352211e116101ae5780636352211e1461048057806370a08231146104b0578063715018a6146104e0578063731186eb146104ea5780638462151c146105065780638da5cb5b1461053657610274565b806342842e0e1461040457806349324be11461042057806355f804b31461043c5780635b92ac0d146104585780635bc0997c1461047657610274565b806318160ddd1161023c57806318160ddd1461032f57806323b872dd1461034d5780632a55205a146103695780632b2389bf1461039a57806340c10f19146103ca57806341f43434146103e657610274565b806301e336671461027957806301ffc9a71461029557806306fdde03146102c5578063081812fc146102e3578063095ea7b314610313575b600080fd5b610293600480360381019061028e9190613fb7565b6107d4565b005b6102af60048036038101906102aa9190614062565b610881565b6040516102bc91906140aa565b60405180910390f35b6102cd61095b565b6040516102da9190614155565b60405180910390f35b6102fd60048036038101906102f89190614177565b6109ed565b60405161030a91906141b3565b60405180910390f35b61032d600480360381019061032891906141ce565b610a33565b005b610337610b61565b604051610344919061421d565b60405180910390f35b61036760048036038101906103629190613fb7565b610b6f565b005b610383600480360381019061037e9190614238565b610bc0565b604051610391929190614278565b60405180910390f35b6103b460048036038101906103af9190614177565b610c6d565b6040516103c19190614155565b60405180910390f35b6103e460048036038101906103df91906141ce565b610d17565b005b6103ee610ef1565b6040516103fb9190614300565b60405180910390f35b61041e60048036038101906104199190613fb7565b610f03565b005b61043a60048036038101906104359190614354565b610f54565b005b610456600480360381019061045191906144dc565b611134565b005b6104606111e4565b60405161046d91906140aa565b60405180910390f35b61047e6111f7565b005b61049a60048036038101906104959190614177565b61129e565b6040516104a791906141b3565b60405180910390f35b6104ca60048036038101906104c59190614525565b611326565b6040516104d7919061421d565b60405180910390f35b6104e86113d4565b005b61050460048036038101906104ff9190614608565b6113e8565b005b610520600480360381019061051b9190614525565b6115c8565b60405161052d919061475b565b60405180910390f35b61053e611742565b60405161054b91906141b3565b60405180910390f35b61055c61176c565b6040516105699190614155565b60405180910390f35b61058c6004803603810190610587919061477d565b6117fe565b604051610599919061475b565b60405180910390f35b6105bc60048036038101906105b791906141ce565b611980565b005b6105d860048036038101906105d391906147fc565b611a73565b005b6105e2611a94565b6040516105ef919061421d565b60405180910390f35b610600611a9e565b005b61061c60048036038101906106179190614525565b611b45565b005b610626611bee565b60405161063391906140aa565b60405180910390f35b610644611c01565b6040516106519190614855565b60405180910390f35b610674600480360381019061066f9190614525565b611c99565b005b610690600480360381019061068b9190614911565b611d42565b005b61069a611d95565b005b6106a4611e3c565b6040516106b19190614855565b60405180910390f35b6106d460048036038101906106cf9190614177565b611ed4565b6040516106e19190614155565b60405180910390f35b61070460048036038101906106ff9190614525565b611f32565b005b61070e612175565b005b61071861221c565b60405161072591906141b3565b60405180910390f35b610736612246565b604051610743919061421d565b60405180910390f35b610754612250565b6040516107619190614a52565b60405180910390f35b610784600480360381019061077f9190614a74565b6122ed565b60405161079191906140aa565b60405180910390f35b6107b460048036038101906107af9190614525565b612381565b005b6107be612404565b6040516107cb91906140aa565b60405180910390f35b6107dc611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82610823612653565b6040518363ffffffff1660e01b8152600401610840929190614ab4565b60006040518083038186803b15801561085857600080fd5b505afa15801561086c573d6000803e3d6000fd5b5050505061087b84848461265b565b50505050565b60006380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094457507fdbf24b52000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109545750610953826126cf565b5b9050919050565b60606000805461096a90614b0c565b80601f016020809104026020016040519081016040528092919081815260200182805461099690614b0c565b80156109e35780601f106109b8576101008083540402835291602001916109e3565b820191906000526020600020905b8154815290600101906020018083116109c657829003601f168201915b5050505050905090565b60006109f882612739565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a3d81612786565b6000610a488361129e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610abc5783836040517f26ac089f000000000000000000000000000000000000000000000000000000008152600401610ab3929190614278565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adb612653565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b0d5750610b0b81610b06612653565b6122ed565b155b15610b515783836040517fb1ab84a4000000000000000000000000000000000000000000000000000000008152600401610b48929190614278565b60405180910390fd5b610b5b8484612883565b50505050565b600060075460065403905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bad57610bac33612786565b5b610bba848484600161293c565b50505050565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b8ca29d58530866040518463ffffffff1660e01b8152600401610c2293929190614b3d565b6040805180830381865afa158015610c3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c629190614b9e565b915091509250929050565b6060600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b8152600401610cca919061421d565b600060405180830381865afa158015610ce7573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610d109190614c4e565b9050919050565b610d1f612250565b6000805b8251811015610e13576000838281518110610d4157610d40614c97565b5b60200260200101519050600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d1485482610d92612653565b6040518363ffffffff1660e01b8152600401610daf929190614ab4565b602060405180830381865afa158015610dcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df09190614cdb565b15610dff576001925050610e13565b508080610e0b90614d37565b915050610d23565b5080610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90614dcb565b60405180910390fd5b600860009054906101000a900460ff1615610e9b576040517fb8ef635100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860019054906101000a900460ff16610ee1576040517f59e4eebe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eeb84846129aa565b50505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f4157610f4033612786565b5b610f4e8484846001612b89565b50505050565b610f5c612250565b6000805b8251811015611050576000838281518110610f7e57610f7d614c97565b5b60200260200101519050600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d1485482610fcf612653565b6040518363ffffffff1660e01b8152600401610fec929190614ab4565b602060405180830381865afa158015611009573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102d9190614cdb565b1561103c576001925050611050565b50808061104890614d37565b915050610f60565b5080611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890614dcb565b60405180910390fd5b600860009054906101000a900460ff16156110d8576040517fb8ef635100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860019054906101000a900460ff1661111e576040517f59e4eebe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61112c858560ff1685612bab565b505050505050565b61113c611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82611183612653565b6040518363ffffffff1660e01b81526004016111a0929190614ab4565b60006040518083038186803b1580156111b857600080fd5b505afa1580156111cc573d6000803e3d6000fd5b5050505081600c90816111df9190614f8d565b505050565b600860019054906101000a900460ff1681565b6111ff611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82611246612653565b6040518363ffffffff1660e01b8152600401611263929190614ab4565b60006040518083038186803b15801561127b57600080fd5b505afa15801561128f573d6000803e3d6000fd5b5050505061129b612dc1565b50565b6000806112aa83612ded565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361131d57826040517fb718b687000000000000000000000000000000000000000000000000000000008152600401611314919061421d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361138d576040517f560440d000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113dc612e2a565b6113e66000612ea8565b565b6113f0612250565b6000805b82518110156114e457600083828151811061141257611411614c97565b5b60200260200101519050600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d1485482611463612653565b6040518363ffffffff1660e01b8152600401611480929190614ab4565b602060405180830381865afa15801561149d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c19190614cdb565b156114d05760019250506114e4565b5080806114dc90614d37565b9150506113f4565b5080611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90614dcb565b60405180910390fd5b600860009054906101000a900460ff161561156c576040517fb8ef635100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860019054906101000a900460ff166115b2576040517f59e4eebe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115bf8787878787612f6e565b50505050505050565b60606000806115d684611326565b90506000810361163357600067ffffffffffffffff8111156115fb576115fa6143b1565b5b6040519080825280602002602001820160405280156116295781602001602082028036833780820191505090505b509250505061173d565b60008167ffffffffffffffff81111561164f5761164e6143b1565b5b60405190808252806020026020018201604052801561167d5781602001602082028036833780820191505090505b5090506000805b838214611734576002600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1694508673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611721578083838061170190614d37565b94508151811061171457611713614c97565b5b6020026020010181815250505b808061172c90614d37565b915050611684565b82955050505050505b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461177b90614b0c565b80601f01602080910402602001604051908101604052809291908181526020018280546117a790614b0c565b80156117f45780601f106117c9576101008083540402835291602001916117f4565b820191906000526020600020905b8154815290600101906020018083116117d757829003601f168201915b5050505050905090565b606060008061180c86611326565b90506000810361186957600067ffffffffffffffff811115611831576118306143b1565b5b60405190808252806020026020018201604052801561185f5781602001602082028036833780820191505090505b5092505050611979565b60008167ffffffffffffffff811115611885576118846143b1565b5b6040519080825280602002602001820160405280156118b35781602001602082028036833780820191505090505b5090506000808790505b86811161196d576002600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1694508873ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361195a578083838061193a90614d37565b94508151811061194d5761194c614c97565b5b6020026020010181815250505b808061196590614d37565b9150506118bd565b81835282955050505050505b9392505050565b611988611e3c565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad826119cf612653565b6040518363ffffffff1660e01b81526004016119ec929190614ab4565b60006040518083038186803b158015611a0457600080fd5b505afa158015611a18573d6000803e3d6000fd5b50505050600860029054906101000a900460ff16611a62576040517febb5afac00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a6e83836000613023565b505050565b81611a7d81612786565b611a8f611a88612653565b8484613085565b505050565b6000600654905090565b611aa6611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82611aed612653565b6040518363ffffffff1660e01b8152600401611b0a929190614ab4565b60006040518083038186803b158015611b2257600080fd5b505afa158015611b36573d6000803e3d6000fd5b50505050611b426131e8565b50565b611b4d611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82611b94612653565b6040518363ffffffff1660e01b8152600401611bb1929190614ab4565b60006040518083038186803b158015611bc957600080fd5b505afa158015611bdd573d6000803e3d6000fd5b50505050611bea8261323e565b5050565b600860029054906101000a900460ff1681565b6000600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b3ecf2366040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c94919061508b565b905090565b611ca1611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82611ce8612653565b6040518363ffffffff1660e01b8152600401611d05929190614ab4565b60006040518083038186803b158015611d1d57600080fd5b505afa158015611d31573d6000803e3d6000fd5b50505050611d3e8261335b565b5050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d8057611d7f33612786565b5b611d8e858585600186613478565b5050505050565b611d9d611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82611de4612653565b6040518363ffffffff1660e01b8152600401611e01929190614ab4565b60006040518083038186803b158015611e1957600080fd5b505afa158015611e2d573d6000803e3d6000fd5b50505050611e396134e8565b50565b6000600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c5b66dc96040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ecf919061508b565b905090565b6060600073ffffffffffffffffffffffffffffffffffffffff16611ef661221c565b73ffffffffffffffffffffffffffffffffffffffff1614611f2157611f1a82610c6d565b9050611f2d565b611f2a82613505565b90505b919050565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b3ecf2366040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fc3919061508b565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad8261200a612653565b6040518363ffffffff1660e01b8152600401612027929190614ab4565b60006040518083038186803b15801561203f57600080fd5b505afa158015612053573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff166301ffc9a77f0b7162d4000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016120b091906150c7565b602060405180830381865afa1580156120cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f19190614cdb565b612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790615154565b60405180910390fd5b81600860036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61217d611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad826121c4612653565b6040518363ffffffff1660e01b81526004016121e1929190614ab4565b60006040518083038186803b1580156121f957600080fd5b505afa15801561220d573d6000803e3d6000fd5b5050505061221961356d565b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600754905090565b6060600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd5adf0c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156122bf573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906122e89190615237565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612389612e2a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef906152f2565b60405180910390fd5b61240181612ea8565b50565b600860009054906101000a900460ff1681565b60606000600283600261242a9190615312565b6124349190615354565b67ffffffffffffffff81111561244d5761244c6143b1565b5b6040519080825280601f01601f19166020018201604052801561247f5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106124b7576124b6614c97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061251b5761251a614c97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261255b9190615312565b6125659190615354565b90505b6001811115612605577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106125a7576125a6614c97565b5b1a60f81b8282815181106125be576125bd614c97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806125fe90615388565b9050612568565b5060008414612649576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612640906153fd565b60405180910390fd5b8091505092915050565b600033905090565b8273ffffffffffffffffffffffffffffffffffffffff166323b872dd3084846040518463ffffffff1660e01b81526004016126989392919061541d565b600060405180830381600087803b1580156126b257600080fd5b505af11580156126c6573d6000803e3d6000fd5b50505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61274281613599565b61278357806040517fb718b68700000000000000000000000000000000000000000000000000000000815260040161277a919061421d565b60405180910390fd5b50565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612880576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016127fd929190615454565b602060405180830381865afa15801561281a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061283e9190614cdb565b61287f57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161287691906141b3565b60405180910390fd5b5b50565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128f68361129e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80156129995761295361294d612653565b836135da565b612998578383836040517f0957569f00000000000000000000000000000000000000000000000000000000815260040161298f9392919061541d565b60405180910390fd5b5b6129a484848461366f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a10576040517fe7070eb700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a1981613599565b15612a5b57806040517f3dd6ca50000000000000000000000000000000000000000000000000000000008152600401612a52919061421d565b60405180910390fd5b612a696000838360016138ed565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660008154809291906001019190505550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b856000838360016138f3565b5050565b612ba58484848460405180602001604052806000815250613478565b50505050565b60008082905060005b84811015612d5857600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603612c22576040517fe7070eb700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c2b82613599565b15612c6d57816040517f3dd6ca50000000000000000000000000000000000000000000000000000000008152600401612c64919061421d565b60405180910390fd5b612c7b6000878460016138ed565b856002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d376000878460016138f3565b8180612d4290614d37565b9250508080612d5090614d37565b915050612bb4565b5083600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555083600660008282540192505081905550809150509392505050565b600860029054906101000a900460ff1615600860026101000a81548160ff021916908315150217905550565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b612e32612653565b73ffffffffffffffffffffffffffffffffffffffff16612e50611742565b73ffffffffffffffffffffffffffffffffffffffff1614612ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9d906154c9565b60405180910390fd5b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828290508585905014612fad576040517fa21d27a000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8585905081101561301b57613006868683818110612fd157612fd0614c97565b5b9050602002016020810190612fe69190614525565b858584818110612ff957612ff8614c97565b5b9050602002013584612bab565b9150808061301390614d37565b915050612fb0565b505050505050565b80156130775761303383836135da565b6130765782826040517fb2b70f8900000000000000000000000000000000000000000000000000000000815260040161306d929190614278565b60405180910390fd5b5b613080826138f9565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036130ea576040517ffa447c3800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131db91906140aa565b60405180910390a3505050565b60006131f2612653565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561323a573d6000803e3d6000fd5b5050565b8073ffffffffffffffffffffffffffffffffffffffff166301ffc9a77f84648494000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161329791906150c7565b602060405180830381865afa1580156132b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132d89190614cdb565b613317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330e90615154565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8073ffffffffffffffffffffffffffffffffffffffff166301ffc9a77f024ebe7d000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016133b491906150c7565b602060405180830381865afa1580156133d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133f59190614cdb565b613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342b90615154565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b81156134d55761348f613489612653565b846135da565b6134d4578484846040517f0957569f0000000000000000000000000000000000000000000000000000000081526004016134cb9392919061541d565b60405180910390fd5b5b6134e185858584613a4e565b5050505050565b6001600860006101000a81548160ff021916908315150217905550565b606061351082612739565b600061351a613aae565b9050600081511161353a5760405180602001604052806000815250613565565b8061354484613b40565b604051602001613555929190615525565b6040516020818303038152906040525b915050919050565b600860019054906101000a900460ff1615600860016101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff166135bb83612ded565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000806135e68361129e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613628575061362781856122ed565b5b8061366657508373ffffffffffffffffffffffffffffffffffffffff1661364e846109ed565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036136d5576040517fa4aa808000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166136f58261129e565b73ffffffffffffffffffffffffffffffffffffffff161461374f5782816040517fb04a7806000000000000000000000000000000000000000000000000000000008152600401613746929190614278565b60405180910390fd5b61375c83838360016138ed565b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138e883838360016138f3565b505050565b50505050565b50505050565b60006139048261129e565b90506139148160008460016138ed565b6004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560076000815480929190600101919050555081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a4a8160008460016138f3565b5050565b613a5984848461366f565b613a6584848484613c0e565b613aa85782826040517ffbf98f28000000000000000000000000000000000000000000000000000000008152600401613a9f929190614278565b60405180910390fd5b50505050565b6060600c8054613abd90614b0c565b80601f0160208091040260200160405190810160405280929190818152602001828054613ae990614b0c565b8015613b365780601f10613b0b57610100808354040283529160200191613b36565b820191906000526020600020905b815481529060010190602001808311613b1957829003601f168201915b5050505050905090565b606060006001613b4f84613d99565b01905060008167ffffffffffffffff811115613b6e57613b6d6143b1565b5b6040519080825280601f01601f191660200182016040528015613ba05781602001600182028036833780820191505090505b509050600082602001820190505b600115613c03578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581613bf757613bf6615549565b5b04945060008503613bae575b819350505050919050565b6000613c2f8473ffffffffffffffffffffffffffffffffffffffff16613eec565b15613d8c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613c58612653565b8786866040518563ffffffff1660e01b8152600401613c7a94939291906155cd565b6020604051808303816000875af1925050508015613cb657506040513d601f19601f82011682018060405250810190613cb3919061562e565b60015b613d3c573d8060008114613ce6576040519150601f19603f3d011682016040523d82523d6000602084013e613ceb565b606091505b506000815103613d345784846040517ffbf98f28000000000000000000000000000000000000000000000000000000008152600401613d2b929190614278565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613d91565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613df7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381613ded57613dec615549565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613e34576d04ee2d6d415b85acef81000000008381613e2a57613e29615549565b5b0492506020810190505b662386f26fc100008310613e6357662386f26fc100008381613e5957613e58615549565b5b0492506010810190505b6305f5e1008310613e8c576305f5e1008381613e8257613e81615549565b5b0492506008810190505b6127108310613eb1576127108381613ea757613ea6615549565b5b0492506004810190505b60648310613ed45760648381613eca57613ec9615549565b5b0492506002810190505b600a8310613ee3576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f4e82613f23565b9050919050565b613f5e81613f43565b8114613f6957600080fd5b50565b600081359050613f7b81613f55565b92915050565b6000819050919050565b613f9481613f81565b8114613f9f57600080fd5b50565b600081359050613fb181613f8b565b92915050565b600080600060608486031215613fd057613fcf613f19565b5b6000613fde86828701613f6c565b9350506020613fef86828701613f6c565b925050604061400086828701613fa2565b9150509250925092565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61403f8161400a565b811461404a57600080fd5b50565b60008135905061405c81614036565b92915050565b60006020828403121561407857614077613f19565b5b60006140868482850161404d565b91505092915050565b60008115159050919050565b6140a48161408f565b82525050565b60006020820190506140bf600083018461409b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156140ff5780820151818401526020810190506140e4565b60008484015250505050565b6000601f19601f8301169050919050565b6000614127826140c5565b61413181856140d0565b93506141418185602086016140e1565b61414a8161410b565b840191505092915050565b6000602082019050818103600083015261416f818461411c565b905092915050565b60006020828403121561418d5761418c613f19565b5b600061419b84828501613fa2565b91505092915050565b6141ad81613f43565b82525050565b60006020820190506141c860008301846141a4565b92915050565b600080604083850312156141e5576141e4613f19565b5b60006141f385828601613f6c565b925050602061420485828601613fa2565b9150509250929050565b61421781613f81565b82525050565b6000602082019050614232600083018461420e565b92915050565b6000806040838503121561424f5761424e613f19565b5b600061425d85828601613fa2565b925050602061426e85828601613fa2565b9150509250929050565b600060408201905061428d60008301856141a4565b61429a602083018461420e565b9392505050565b6000819050919050565b60006142c66142c16142bc84613f23565b6142a1565b613f23565b9050919050565b60006142d8826142ab565b9050919050565b60006142ea826142cd565b9050919050565b6142fa816142df565b82525050565b600060208201905061431560008301846142f1565b92915050565b600060ff82169050919050565b6143318161431b565b811461433c57600080fd5b50565b60008135905061434e81614328565b92915050565b60008060006060848603121561436d5761436c613f19565b5b600061437b86828701613f6c565b935050602061438c8682870161433f565b925050604061439d86828701613fa2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6143e98261410b565b810181811067ffffffffffffffff82111715614408576144076143b1565b5b80604052505050565b600061441b613f0f565b905061442782826143e0565b919050565b600067ffffffffffffffff821115614447576144466143b1565b5b6144508261410b565b9050602081019050919050565b82818337600083830152505050565b600061447f61447a8461442c565b614411565b90508281526020810184848401111561449b5761449a6143ac565b5b6144a684828561445d565b509392505050565b600082601f8301126144c3576144c26143a7565b5b81356144d384826020860161446c565b91505092915050565b6000602082840312156144f2576144f1613f19565b5b600082013567ffffffffffffffff8111156145105761450f613f1e565b5b61451c848285016144ae565b91505092915050565b60006020828403121561453b5761453a613f19565b5b600061454984828501613f6c565b91505092915050565b600080fd5b600080fd5b60008083601f840112614572576145716143a7565b5b8235905067ffffffffffffffff81111561458f5761458e614552565b5b6020830191508360208202830111156145ab576145aa614557565b5b9250929050565b60008083601f8401126145c8576145c76143a7565b5b8235905067ffffffffffffffff8111156145e5576145e4614552565b5b60208301915083602082028301111561460157614600614557565b5b9250929050565b60008060008060006060868803121561462457614623613f19565b5b600086013567ffffffffffffffff81111561464257614641613f1e565b5b61464e8882890161455c565b9550955050602086013567ffffffffffffffff81111561467157614670613f1e565b5b61467d888289016145b2565b9350935050604061469088828901613fa2565b9150509295509295909350565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146d281613f81565b82525050565b60006146e483836146c9565b60208301905092915050565b6000602082019050919050565b60006147088261469d565b61471281856146a8565b935061471d836146b9565b8060005b8381101561474e57815161473588826146d8565b9750614740836146f0565b925050600181019050614721565b5085935050505092915050565b6000602082019050818103600083015261477581846146fd565b905092915050565b60008060006060848603121561479657614795613f19565b5b60006147a486828701613f6c565b93505060206147b586828701613fa2565b92505060406147c686828701613fa2565b9150509250925092565b6147d98161408f565b81146147e457600080fd5b50565b6000813590506147f6816147d0565b92915050565b6000806040838503121561481357614812613f19565b5b600061482185828601613f6c565b9250506020614832858286016147e7565b9150509250929050565b6000819050919050565b61484f8161483c565b82525050565b600060208201905061486a6000830184614846565b92915050565b600067ffffffffffffffff82111561488b5761488a6143b1565b5b6148948261410b565b9050602081019050919050565b60006148b46148af84614870565b614411565b9050828152602081018484840111156148d0576148cf6143ac565b5b6148db84828561445d565b509392505050565b600082601f8301126148f8576148f76143a7565b5b81356149088482602086016148a1565b91505092915050565b6000806000806080858703121561492b5761492a613f19565b5b600061493987828801613f6c565b945050602061494a87828801613f6c565b935050604061495b87828801613fa2565b925050606085013567ffffffffffffffff81111561497c5761497b613f1e565b5b614988878288016148e3565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149c98161483c565b82525050565b60006149db83836149c0565b60208301905092915050565b6000602082019050919050565b60006149ff82614994565b614a09818561499f565b9350614a14836149b0565b8060005b83811015614a45578151614a2c88826149cf565b9750614a37836149e7565b925050600181019050614a18565b5085935050505092915050565b60006020820190508181036000830152614a6c81846149f4565b905092915050565b60008060408385031215614a8b57614a8a613f19565b5b6000614a9985828601613f6c565b9250506020614aaa85828601613f6c565b9150509250929050565b6000604082019050614ac96000830185614846565b614ad660208301846141a4565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614b2457607f821691505b602082108103614b3757614b36614add565b5b50919050565b6000606082019050614b52600083018661420e565b614b5f60208301856141a4565b614b6c604083018461420e565b949350505050565b600081519050614b8381613f55565b92915050565b600081519050614b9881613f8b565b92915050565b60008060408385031215614bb557614bb4613f19565b5b6000614bc385828601614b74565b9250506020614bd485828601614b89565b9150509250929050565b6000614bf1614bec8461442c565b614411565b905082815260208101848484011115614c0d57614c0c6143ac565b5b614c188482856140e1565b509392505050565b600082601f830112614c3557614c346143a7565b5b8151614c45848260208601614bde565b91505092915050565b600060208284031215614c6457614c63613f19565b5b600082015167ffffffffffffffff811115614c8257614c81613f1e565b5b614c8e84828501614c20565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614cd5816147d0565b92915050565b600060208284031215614cf157614cf0613f19565b5b6000614cff84828501614cc6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d4282613f81565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d7457614d73614d08565b5b600182019050919050565b7f4d697373696e6720726571756972656420726f6c650000000000000000000000600082015250565b6000614db56015836140d0565b9150614dc082614d7f565b602082019050919050565b60006020820190508181036000830152614de481614da8565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614e4d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e10565b614e578683614e10565b95508019841693508086168417925050509392505050565b6000614e8a614e85614e8084613f81565b6142a1565b613f81565b9050919050565b6000819050919050565b614ea483614e6f565b614eb8614eb082614e91565b848454614e1d565b825550505050565b600090565b614ecd614ec0565b614ed8818484614e9b565b505050565b5b81811015614efc57614ef1600082614ec5565b600181019050614ede565b5050565b601f821115614f4157614f1281614deb565b614f1b84614e00565b81016020851015614f2a578190505b614f3e614f3685614e00565b830182614edd565b50505b505050565b600082821c905092915050565b6000614f6460001984600802614f46565b1980831691505092915050565b6000614f7d8383614f53565b9150826002028217905092915050565b614f96826140c5565b67ffffffffffffffff811115614faf57614fae6143b1565b5b614fb98254614b0c565b614fc4828285614f00565b600060209050601f831160018114614ff75760008415614fe5578287015190505b614fef8582614f71565b865550615057565b601f19841661500586614deb565b60005b8281101561502d57848901518255600182019150602085019450602081019050615008565b8683101561504a5784890151615046601f891682614f53565b8355505b6001600288020188555050505b505050505050565b6150688161483c565b811461507357600080fd5b50565b6000815190506150858161505f565b92915050565b6000602082840312156150a1576150a0613f19565b5b60006150af84828501615076565b91505092915050565b6150c18161400a565b82525050565b60006020820190506150dc60008301846150b8565b92915050565b7f436f6e747261637420646f6573206e6f7420737570706f72742072657175697260008201527f656420696e746572666163650000000000000000000000000000000000000000602082015250565b600061513e602c836140d0565b9150615149826150e2565b604082019050919050565b6000602082019050818103600083015261516d81615131565b9050919050565b600067ffffffffffffffff82111561518f5761518e6143b1565b5b602082029050602081019050919050565b60006151b36151ae84615174565b614411565b905080838252602082019050602084028301858111156151d6576151d5614557565b5b835b818110156151ff57806151eb8882615076565b8452602084019350506020810190506151d8565b5050509392505050565b600082601f83011261521e5761521d6143a7565b5b815161522e8482602086016151a0565b91505092915050565b60006020828403121561524d5761524c613f19565b5b600082015167ffffffffffffffff81111561526b5761526a613f1e565b5b61527784828501615209565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152dc6026836140d0565b91506152e782615280565b604082019050919050565b6000602082019050818103600083015261530b816152cf565b9050919050565b600061531d82613f81565b915061532883613f81565b925082820261533681613f81565b9150828204841483151761534d5761534c614d08565b5b5092915050565b600061535f82613f81565b915061536a83613f81565b925082820190508082111561538257615381614d08565b5b92915050565b600061539382613f81565b9150600082036153a6576153a5614d08565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006153e76020836140d0565b91506153f2826153b1565b602082019050919050565b60006020820190508181036000830152615416816153da565b9050919050565b600060608201905061543260008301866141a4565b61543f60208301856141a4565b61544c604083018461420e565b949350505050565b600060408201905061546960008301856141a4565b61547660208301846141a4565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006154b36020836140d0565b91506154be8261547d565b602082019050919050565b600060208201905081810360008301526154e2816154a6565b9050919050565b600081905092915050565b60006154ff826140c5565b61550981856154e9565b93506155198185602086016140e1565b80840191505092915050565b600061553182856154f4565b915061553d82846154f4565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061559f82615578565b6155a98185615583565b93506155b98185602086016140e1565b6155c28161410b565b840191505092915050565b60006080820190506155e260008301876141a4565b6155ef60208301866141a4565b6155fc604083018561420e565b818103606083015261560e8184615594565b905095945050505050565b60008151905061562881614036565b92915050565b60006020828403121561564457615643613f19565b5b600061565284828501615619565b9150509291505056fea2646970667358221220c1a9341d92617fef0579bc8bdb5c8bcff3c74dd5c18e043e01d051c07b918d4464736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000176a7899e782609b30a04f84a6978cc99b280a9700000000000000000000000021bbb2f84053197a2455a6c230c2883030b15d0c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f6d657461646174612e766565667269656e64732e636f6d2f76322f636f6c6c656374696f6e732f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013426565706c65205820566565467269656e64730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044747313200000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102745760003560e01c806395d89b4111610151578063bb7648b6116100c3578063d2f235d411610087578063d2f235d414610710578063d89135cd1461072e578063dd5adf0c1461074c578063e985e9c51461076a578063f2fde38b1461079a578063f5e92b95146107b657610274565b8063bb7648b614610692578063c5b66dc91461069c578063c87b56dd146106ba578063ca35e8a0146106ea578063d02c2bf21461070657610274565b8063ac44600211610115578063ac446002146105f8578063b166da4214610602578063b1a6676e1461061e578063b3ecf2361461063c578063b7f1d0721461065a578063b88d4fde1461067657610274565b806395d89b411461055457806399a2557a146105725780639dc29fac146105a2578063a22cb465146105be578063a2309ff8146105da57610274565b806342842e0e116101ea5780636352211e116101ae5780636352211e1461048057806370a08231146104b0578063715018a6146104e0578063731186eb146104ea5780638462151c146105065780638da5cb5b1461053657610274565b806342842e0e1461040457806349324be11461042057806355f804b31461043c5780635b92ac0d146104585780635bc0997c1461047657610274565b806318160ddd1161023c57806318160ddd1461032f57806323b872dd1461034d5780632a55205a146103695780632b2389bf1461039a57806340c10f19146103ca57806341f43434146103e657610274565b806301e336671461027957806301ffc9a71461029557806306fdde03146102c5578063081812fc146102e3578063095ea7b314610313575b600080fd5b610293600480360381019061028e9190613fb7565b6107d4565b005b6102af60048036038101906102aa9190614062565b610881565b6040516102bc91906140aa565b60405180910390f35b6102cd61095b565b6040516102da9190614155565b60405180910390f35b6102fd60048036038101906102f89190614177565b6109ed565b60405161030a91906141b3565b60405180910390f35b61032d600480360381019061032891906141ce565b610a33565b005b610337610b61565b604051610344919061421d565b60405180910390f35b61036760048036038101906103629190613fb7565b610b6f565b005b610383600480360381019061037e9190614238565b610bc0565b604051610391929190614278565b60405180910390f35b6103b460048036038101906103af9190614177565b610c6d565b6040516103c19190614155565b60405180910390f35b6103e460048036038101906103df91906141ce565b610d17565b005b6103ee610ef1565b6040516103fb9190614300565b60405180910390f35b61041e60048036038101906104199190613fb7565b610f03565b005b61043a60048036038101906104359190614354565b610f54565b005b610456600480360381019061045191906144dc565b611134565b005b6104606111e4565b60405161046d91906140aa565b60405180910390f35b61047e6111f7565b005b61049a60048036038101906104959190614177565b61129e565b6040516104a791906141b3565b60405180910390f35b6104ca60048036038101906104c59190614525565b611326565b6040516104d7919061421d565b60405180910390f35b6104e86113d4565b005b61050460048036038101906104ff9190614608565b6113e8565b005b610520600480360381019061051b9190614525565b6115c8565b60405161052d919061475b565b60405180910390f35b61053e611742565b60405161054b91906141b3565b60405180910390f35b61055c61176c565b6040516105699190614155565b60405180910390f35b61058c6004803603810190610587919061477d565b6117fe565b604051610599919061475b565b60405180910390f35b6105bc60048036038101906105b791906141ce565b611980565b005b6105d860048036038101906105d391906147fc565b611a73565b005b6105e2611a94565b6040516105ef919061421d565b60405180910390f35b610600611a9e565b005b61061c60048036038101906106179190614525565b611b45565b005b610626611bee565b60405161063391906140aa565b60405180910390f35b610644611c01565b6040516106519190614855565b60405180910390f35b610674600480360381019061066f9190614525565b611c99565b005b610690600480360381019061068b9190614911565b611d42565b005b61069a611d95565b005b6106a4611e3c565b6040516106b19190614855565b60405180910390f35b6106d460048036038101906106cf9190614177565b611ed4565b6040516106e19190614155565b60405180910390f35b61070460048036038101906106ff9190614525565b611f32565b005b61070e612175565b005b61071861221c565b60405161072591906141b3565b60405180910390f35b610736612246565b604051610743919061421d565b60405180910390f35b610754612250565b6040516107619190614a52565b60405180910390f35b610784600480360381019061077f9190614a74565b6122ed565b60405161079191906140aa565b60405180910390f35b6107b460048036038101906107af9190614525565b612381565b005b6107be612404565b6040516107cb91906140aa565b60405180910390f35b6107dc611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82610823612653565b6040518363ffffffff1660e01b8152600401610840929190614ab4565b60006040518083038186803b15801561085857600080fd5b505afa15801561086c573d6000803e3d6000fd5b5050505061087b84848461265b565b50505050565b60006380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094457507fdbf24b52000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109545750610953826126cf565b5b9050919050565b60606000805461096a90614b0c565b80601f016020809104026020016040519081016040528092919081815260200182805461099690614b0c565b80156109e35780601f106109b8576101008083540402835291602001916109e3565b820191906000526020600020905b8154815290600101906020018083116109c657829003601f168201915b5050505050905090565b60006109f882612739565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a3d81612786565b6000610a488361129e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610abc5783836040517f26ac089f000000000000000000000000000000000000000000000000000000008152600401610ab3929190614278565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adb612653565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b0d5750610b0b81610b06612653565b6122ed565b155b15610b515783836040517fb1ab84a4000000000000000000000000000000000000000000000000000000008152600401610b48929190614278565b60405180910390fd5b610b5b8484612883565b50505050565b600060075460065403905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bad57610bac33612786565b5b610bba848484600161293c565b50505050565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b8ca29d58530866040518463ffffffff1660e01b8152600401610c2293929190614b3d565b6040805180830381865afa158015610c3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c629190614b9e565b915091509250929050565b6060600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b8152600401610cca919061421d565b600060405180830381865afa158015610ce7573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610d109190614c4e565b9050919050565b610d1f612250565b6000805b8251811015610e13576000838281518110610d4157610d40614c97565b5b60200260200101519050600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d1485482610d92612653565b6040518363ffffffff1660e01b8152600401610daf929190614ab4565b602060405180830381865afa158015610dcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df09190614cdb565b15610dff576001925050610e13565b508080610e0b90614d37565b915050610d23565b5080610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90614dcb565b60405180910390fd5b600860009054906101000a900460ff1615610e9b576040517fb8ef635100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860019054906101000a900460ff16610ee1576040517f59e4eebe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eeb84846129aa565b50505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f4157610f4033612786565b5b610f4e8484846001612b89565b50505050565b610f5c612250565b6000805b8251811015611050576000838281518110610f7e57610f7d614c97565b5b60200260200101519050600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d1485482610fcf612653565b6040518363ffffffff1660e01b8152600401610fec929190614ab4565b602060405180830381865afa158015611009573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102d9190614cdb565b1561103c576001925050611050565b50808061104890614d37565b915050610f60565b5080611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890614dcb565b60405180910390fd5b600860009054906101000a900460ff16156110d8576040517fb8ef635100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860019054906101000a900460ff1661111e576040517f59e4eebe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61112c858560ff1685612bab565b505050505050565b61113c611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82611183612653565b6040518363ffffffff1660e01b81526004016111a0929190614ab4565b60006040518083038186803b1580156111b857600080fd5b505afa1580156111cc573d6000803e3d6000fd5b5050505081600c90816111df9190614f8d565b505050565b600860019054906101000a900460ff1681565b6111ff611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82611246612653565b6040518363ffffffff1660e01b8152600401611263929190614ab4565b60006040518083038186803b15801561127b57600080fd5b505afa15801561128f573d6000803e3d6000fd5b5050505061129b612dc1565b50565b6000806112aa83612ded565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361131d57826040517fb718b687000000000000000000000000000000000000000000000000000000008152600401611314919061421d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361138d576040517f560440d000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113dc612e2a565b6113e66000612ea8565b565b6113f0612250565b6000805b82518110156114e457600083828151811061141257611411614c97565b5b60200260200101519050600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d1485482611463612653565b6040518363ffffffff1660e01b8152600401611480929190614ab4565b602060405180830381865afa15801561149d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c19190614cdb565b156114d05760019250506114e4565b5080806114dc90614d37565b9150506113f4565b5080611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90614dcb565b60405180910390fd5b600860009054906101000a900460ff161561156c576040517fb8ef635100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860019054906101000a900460ff166115b2576040517f59e4eebe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115bf8787878787612f6e565b50505050505050565b60606000806115d684611326565b90506000810361163357600067ffffffffffffffff8111156115fb576115fa6143b1565b5b6040519080825280602002602001820160405280156116295781602001602082028036833780820191505090505b509250505061173d565b60008167ffffffffffffffff81111561164f5761164e6143b1565b5b60405190808252806020026020018201604052801561167d5781602001602082028036833780820191505090505b5090506000805b838214611734576002600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1694508673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611721578083838061170190614d37565b94508151811061171457611713614c97565b5b6020026020010181815250505b808061172c90614d37565b915050611684565b82955050505050505b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461177b90614b0c565b80601f01602080910402602001604051908101604052809291908181526020018280546117a790614b0c565b80156117f45780601f106117c9576101008083540402835291602001916117f4565b820191906000526020600020905b8154815290600101906020018083116117d757829003601f168201915b5050505050905090565b606060008061180c86611326565b90506000810361186957600067ffffffffffffffff811115611831576118306143b1565b5b60405190808252806020026020018201604052801561185f5781602001602082028036833780820191505090505b5092505050611979565b60008167ffffffffffffffff811115611885576118846143b1565b5b6040519080825280602002602001820160405280156118b35781602001602082028036833780820191505090505b5090506000808790505b86811161196d576002600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1694508873ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361195a578083838061193a90614d37565b94508151811061194d5761194c614c97565b5b6020026020010181815250505b808061196590614d37565b9150506118bd565b81835282955050505050505b9392505050565b611988611e3c565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad826119cf612653565b6040518363ffffffff1660e01b81526004016119ec929190614ab4565b60006040518083038186803b158015611a0457600080fd5b505afa158015611a18573d6000803e3d6000fd5b50505050600860029054906101000a900460ff16611a62576040517febb5afac00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a6e83836000613023565b505050565b81611a7d81612786565b611a8f611a88612653565b8484613085565b505050565b6000600654905090565b611aa6611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82611aed612653565b6040518363ffffffff1660e01b8152600401611b0a929190614ab4565b60006040518083038186803b158015611b2257600080fd5b505afa158015611b36573d6000803e3d6000fd5b50505050611b426131e8565b50565b611b4d611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82611b94612653565b6040518363ffffffff1660e01b8152600401611bb1929190614ab4565b60006040518083038186803b158015611bc957600080fd5b505afa158015611bdd573d6000803e3d6000fd5b50505050611bea8261323e565b5050565b600860029054906101000a900460ff1681565b6000600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b3ecf2366040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c94919061508b565b905090565b611ca1611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82611ce8612653565b6040518363ffffffff1660e01b8152600401611d05929190614ab4565b60006040518083038186803b158015611d1d57600080fd5b505afa158015611d31573d6000803e3d6000fd5b50505050611d3e8261335b565b5050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d8057611d7f33612786565b5b611d8e858585600186613478565b5050505050565b611d9d611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad82611de4612653565b6040518363ffffffff1660e01b8152600401611e01929190614ab4565b60006040518083038186803b158015611e1957600080fd5b505afa158015611e2d573d6000803e3d6000fd5b50505050611e396134e8565b50565b6000600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c5b66dc96040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ecf919061508b565b905090565b6060600073ffffffffffffffffffffffffffffffffffffffff16611ef661221c565b73ffffffffffffffffffffffffffffffffffffffff1614611f2157611f1a82610c6d565b9050611f2d565b611f2a82613505565b90505b919050565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b3ecf2366040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fc3919061508b565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad8261200a612653565b6040518363ffffffff1660e01b8152600401612027929190614ab4565b60006040518083038186803b15801561203f57600080fd5b505afa158015612053573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff166301ffc9a77f0b7162d4000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016120b091906150c7565b602060405180830381865afa1580156120cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f19190614cdb565b612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790615154565b60405180910390fd5b81600860036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61217d611c01565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9a6ad826121c4612653565b6040518363ffffffff1660e01b81526004016121e1929190614ab4565b60006040518083038186803b1580156121f957600080fd5b505afa15801561220d573d6000803e3d6000fd5b5050505061221961356d565b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600754905090565b6060600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd5adf0c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156122bf573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906122e89190615237565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612389612e2a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef906152f2565b60405180910390fd5b61240181612ea8565b50565b600860009054906101000a900460ff1681565b60606000600283600261242a9190615312565b6124349190615354565b67ffffffffffffffff81111561244d5761244c6143b1565b5b6040519080825280601f01601f19166020018201604052801561247f5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106124b7576124b6614c97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061251b5761251a614c97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261255b9190615312565b6125659190615354565b90505b6001811115612605577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106125a7576125a6614c97565b5b1a60f81b8282815181106125be576125bd614c97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806125fe90615388565b9050612568565b5060008414612649576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612640906153fd565b60405180910390fd5b8091505092915050565b600033905090565b8273ffffffffffffffffffffffffffffffffffffffff166323b872dd3084846040518463ffffffff1660e01b81526004016126989392919061541d565b600060405180830381600087803b1580156126b257600080fd5b505af11580156126c6573d6000803e3d6000fd5b50505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61274281613599565b61278357806040517fb718b68700000000000000000000000000000000000000000000000000000000815260040161277a919061421d565b60405180910390fd5b50565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612880576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016127fd929190615454565b602060405180830381865afa15801561281a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061283e9190614cdb565b61287f57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161287691906141b3565b60405180910390fd5b5b50565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128f68361129e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80156129995761295361294d612653565b836135da565b612998578383836040517f0957569f00000000000000000000000000000000000000000000000000000000815260040161298f9392919061541d565b60405180910390fd5b5b6129a484848461366f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a10576040517fe7070eb700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a1981613599565b15612a5b57806040517f3dd6ca50000000000000000000000000000000000000000000000000000000008152600401612a52919061421d565b60405180910390fd5b612a696000838360016138ed565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660008154809291906001019190505550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b856000838360016138f3565b5050565b612ba58484848460405180602001604052806000815250613478565b50505050565b60008082905060005b84811015612d5857600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603612c22576040517fe7070eb700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c2b82613599565b15612c6d57816040517f3dd6ca50000000000000000000000000000000000000000000000000000000008152600401612c64919061421d565b60405180910390fd5b612c7b6000878460016138ed565b856002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d376000878460016138f3565b8180612d4290614d37565b9250508080612d5090614d37565b915050612bb4565b5083600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555083600660008282540192505081905550809150509392505050565b600860029054906101000a900460ff1615600860026101000a81548160ff021916908315150217905550565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b612e32612653565b73ffffffffffffffffffffffffffffffffffffffff16612e50611742565b73ffffffffffffffffffffffffffffffffffffffff1614612ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9d906154c9565b60405180910390fd5b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828290508585905014612fad576040517fa21d27a000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8585905081101561301b57613006868683818110612fd157612fd0614c97565b5b9050602002016020810190612fe69190614525565b858584818110612ff957612ff8614c97565b5b9050602002013584612bab565b9150808061301390614d37565b915050612fb0565b505050505050565b80156130775761303383836135da565b6130765782826040517fb2b70f8900000000000000000000000000000000000000000000000000000000815260040161306d929190614278565b60405180910390fd5b5b613080826138f9565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036130ea576040517ffa447c3800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131db91906140aa565b60405180910390a3505050565b60006131f2612653565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561323a573d6000803e3d6000fd5b5050565b8073ffffffffffffffffffffffffffffffffffffffff166301ffc9a77f84648494000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161329791906150c7565b602060405180830381865afa1580156132b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132d89190614cdb565b613317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330e90615154565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8073ffffffffffffffffffffffffffffffffffffffff166301ffc9a77f024ebe7d000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016133b491906150c7565b602060405180830381865afa1580156133d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133f59190614cdb565b613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342b90615154565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b81156134d55761348f613489612653565b846135da565b6134d4578484846040517f0957569f0000000000000000000000000000000000000000000000000000000081526004016134cb9392919061541d565b60405180910390fd5b5b6134e185858584613a4e565b5050505050565b6001600860006101000a81548160ff021916908315150217905550565b606061351082612739565b600061351a613aae565b9050600081511161353a5760405180602001604052806000815250613565565b8061354484613b40565b604051602001613555929190615525565b6040516020818303038152906040525b915050919050565b600860019054906101000a900460ff1615600860016101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff166135bb83612ded565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000806135e68361129e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613628575061362781856122ed565b5b8061366657508373ffffffffffffffffffffffffffffffffffffffff1661364e846109ed565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036136d5576040517fa4aa808000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166136f58261129e565b73ffffffffffffffffffffffffffffffffffffffff161461374f5782816040517fb04a7806000000000000000000000000000000000000000000000000000000008152600401613746929190614278565b60405180910390fd5b61375c83838360016138ed565b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138e883838360016138f3565b505050565b50505050565b50505050565b60006139048261129e565b90506139148160008460016138ed565b6004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560076000815480929190600101919050555081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a4a8160008460016138f3565b5050565b613a5984848461366f565b613a6584848484613c0e565b613aa85782826040517ffbf98f28000000000000000000000000000000000000000000000000000000008152600401613a9f929190614278565b60405180910390fd5b50505050565b6060600c8054613abd90614b0c565b80601f0160208091040260200160405190810160405280929190818152602001828054613ae990614b0c565b8015613b365780601f10613b0b57610100808354040283529160200191613b36565b820191906000526020600020905b815481529060010190602001808311613b1957829003601f168201915b5050505050905090565b606060006001613b4f84613d99565b01905060008167ffffffffffffffff811115613b6e57613b6d6143b1565b5b6040519080825280601f01601f191660200182016040528015613ba05781602001600182028036833780820191505090505b509050600082602001820190505b600115613c03578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581613bf757613bf6615549565b5b04945060008503613bae575b819350505050919050565b6000613c2f8473ffffffffffffffffffffffffffffffffffffffff16613eec565b15613d8c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613c58612653565b8786866040518563ffffffff1660e01b8152600401613c7a94939291906155cd565b6020604051808303816000875af1925050508015613cb657506040513d601f19601f82011682018060405250810190613cb3919061562e565b60015b613d3c573d8060008114613ce6576040519150601f19603f3d011682016040523d82523d6000602084013e613ceb565b606091505b506000815103613d345784846040517ffbf98f28000000000000000000000000000000000000000000000000000000008152600401613d2b929190614278565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613d91565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613df7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381613ded57613dec615549565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613e34576d04ee2d6d415b85acef81000000008381613e2a57613e29615549565b5b0492506020810190505b662386f26fc100008310613e6357662386f26fc100008381613e5957613e58615549565b5b0492506010810190505b6305f5e1008310613e8c576305f5e1008381613e8257613e81615549565b5b0492506008810190505b6127108310613eb1576127108381613ea757613ea6615549565b5b0492506004810190505b60648310613ed45760648381613eca57613ec9615549565b5b0492506002810190505b600a8310613ee3576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f4e82613f23565b9050919050565b613f5e81613f43565b8114613f6957600080fd5b50565b600081359050613f7b81613f55565b92915050565b6000819050919050565b613f9481613f81565b8114613f9f57600080fd5b50565b600081359050613fb181613f8b565b92915050565b600080600060608486031215613fd057613fcf613f19565b5b6000613fde86828701613f6c565b9350506020613fef86828701613f6c565b925050604061400086828701613fa2565b9150509250925092565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61403f8161400a565b811461404a57600080fd5b50565b60008135905061405c81614036565b92915050565b60006020828403121561407857614077613f19565b5b60006140868482850161404d565b91505092915050565b60008115159050919050565b6140a48161408f565b82525050565b60006020820190506140bf600083018461409b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156140ff5780820151818401526020810190506140e4565b60008484015250505050565b6000601f19601f8301169050919050565b6000614127826140c5565b61413181856140d0565b93506141418185602086016140e1565b61414a8161410b565b840191505092915050565b6000602082019050818103600083015261416f818461411c565b905092915050565b60006020828403121561418d5761418c613f19565b5b600061419b84828501613fa2565b91505092915050565b6141ad81613f43565b82525050565b60006020820190506141c860008301846141a4565b92915050565b600080604083850312156141e5576141e4613f19565b5b60006141f385828601613f6c565b925050602061420485828601613fa2565b9150509250929050565b61421781613f81565b82525050565b6000602082019050614232600083018461420e565b92915050565b6000806040838503121561424f5761424e613f19565b5b600061425d85828601613fa2565b925050602061426e85828601613fa2565b9150509250929050565b600060408201905061428d60008301856141a4565b61429a602083018461420e565b9392505050565b6000819050919050565b60006142c66142c16142bc84613f23565b6142a1565b613f23565b9050919050565b60006142d8826142ab565b9050919050565b60006142ea826142cd565b9050919050565b6142fa816142df565b82525050565b600060208201905061431560008301846142f1565b92915050565b600060ff82169050919050565b6143318161431b565b811461433c57600080fd5b50565b60008135905061434e81614328565b92915050565b60008060006060848603121561436d5761436c613f19565b5b600061437b86828701613f6c565b935050602061438c8682870161433f565b925050604061439d86828701613fa2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6143e98261410b565b810181811067ffffffffffffffff82111715614408576144076143b1565b5b80604052505050565b600061441b613f0f565b905061442782826143e0565b919050565b600067ffffffffffffffff821115614447576144466143b1565b5b6144508261410b565b9050602081019050919050565b82818337600083830152505050565b600061447f61447a8461442c565b614411565b90508281526020810184848401111561449b5761449a6143ac565b5b6144a684828561445d565b509392505050565b600082601f8301126144c3576144c26143a7565b5b81356144d384826020860161446c565b91505092915050565b6000602082840312156144f2576144f1613f19565b5b600082013567ffffffffffffffff8111156145105761450f613f1e565b5b61451c848285016144ae565b91505092915050565b60006020828403121561453b5761453a613f19565b5b600061454984828501613f6c565b91505092915050565b600080fd5b600080fd5b60008083601f840112614572576145716143a7565b5b8235905067ffffffffffffffff81111561458f5761458e614552565b5b6020830191508360208202830111156145ab576145aa614557565b5b9250929050565b60008083601f8401126145c8576145c76143a7565b5b8235905067ffffffffffffffff8111156145e5576145e4614552565b5b60208301915083602082028301111561460157614600614557565b5b9250929050565b60008060008060006060868803121561462457614623613f19565b5b600086013567ffffffffffffffff81111561464257614641613f1e565b5b61464e8882890161455c565b9550955050602086013567ffffffffffffffff81111561467157614670613f1e565b5b61467d888289016145b2565b9350935050604061469088828901613fa2565b9150509295509295909350565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146d281613f81565b82525050565b60006146e483836146c9565b60208301905092915050565b6000602082019050919050565b60006147088261469d565b61471281856146a8565b935061471d836146b9565b8060005b8381101561474e57815161473588826146d8565b9750614740836146f0565b925050600181019050614721565b5085935050505092915050565b6000602082019050818103600083015261477581846146fd565b905092915050565b60008060006060848603121561479657614795613f19565b5b60006147a486828701613f6c565b93505060206147b586828701613fa2565b92505060406147c686828701613fa2565b9150509250925092565b6147d98161408f565b81146147e457600080fd5b50565b6000813590506147f6816147d0565b92915050565b6000806040838503121561481357614812613f19565b5b600061482185828601613f6c565b9250506020614832858286016147e7565b9150509250929050565b6000819050919050565b61484f8161483c565b82525050565b600060208201905061486a6000830184614846565b92915050565b600067ffffffffffffffff82111561488b5761488a6143b1565b5b6148948261410b565b9050602081019050919050565b60006148b46148af84614870565b614411565b9050828152602081018484840111156148d0576148cf6143ac565b5b6148db84828561445d565b509392505050565b600082601f8301126148f8576148f76143a7565b5b81356149088482602086016148a1565b91505092915050565b6000806000806080858703121561492b5761492a613f19565b5b600061493987828801613f6c565b945050602061494a87828801613f6c565b935050604061495b87828801613fa2565b925050606085013567ffffffffffffffff81111561497c5761497b613f1e565b5b614988878288016148e3565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149c98161483c565b82525050565b60006149db83836149c0565b60208301905092915050565b6000602082019050919050565b60006149ff82614994565b614a09818561499f565b9350614a14836149b0565b8060005b83811015614a45578151614a2c88826149cf565b9750614a37836149e7565b925050600181019050614a18565b5085935050505092915050565b60006020820190508181036000830152614a6c81846149f4565b905092915050565b60008060408385031215614a8b57614a8a613f19565b5b6000614a9985828601613f6c565b9250506020614aaa85828601613f6c565b9150509250929050565b6000604082019050614ac96000830185614846565b614ad660208301846141a4565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614b2457607f821691505b602082108103614b3757614b36614add565b5b50919050565b6000606082019050614b52600083018661420e565b614b5f60208301856141a4565b614b6c604083018461420e565b949350505050565b600081519050614b8381613f55565b92915050565b600081519050614b9881613f8b565b92915050565b60008060408385031215614bb557614bb4613f19565b5b6000614bc385828601614b74565b9250506020614bd485828601614b89565b9150509250929050565b6000614bf1614bec8461442c565b614411565b905082815260208101848484011115614c0d57614c0c6143ac565b5b614c188482856140e1565b509392505050565b600082601f830112614c3557614c346143a7565b5b8151614c45848260208601614bde565b91505092915050565b600060208284031215614c6457614c63613f19565b5b600082015167ffffffffffffffff811115614c8257614c81613f1e565b5b614c8e84828501614c20565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614cd5816147d0565b92915050565b600060208284031215614cf157614cf0613f19565b5b6000614cff84828501614cc6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d4282613f81565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d7457614d73614d08565b5b600182019050919050565b7f4d697373696e6720726571756972656420726f6c650000000000000000000000600082015250565b6000614db56015836140d0565b9150614dc082614d7f565b602082019050919050565b60006020820190508181036000830152614de481614da8565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614e4d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e10565b614e578683614e10565b95508019841693508086168417925050509392505050565b6000614e8a614e85614e8084613f81565b6142a1565b613f81565b9050919050565b6000819050919050565b614ea483614e6f565b614eb8614eb082614e91565b848454614e1d565b825550505050565b600090565b614ecd614ec0565b614ed8818484614e9b565b505050565b5b81811015614efc57614ef1600082614ec5565b600181019050614ede565b5050565b601f821115614f4157614f1281614deb565b614f1b84614e00565b81016020851015614f2a578190505b614f3e614f3685614e00565b830182614edd565b50505b505050565b600082821c905092915050565b6000614f6460001984600802614f46565b1980831691505092915050565b6000614f7d8383614f53565b9150826002028217905092915050565b614f96826140c5565b67ffffffffffffffff811115614faf57614fae6143b1565b5b614fb98254614b0c565b614fc4828285614f00565b600060209050601f831160018114614ff75760008415614fe5578287015190505b614fef8582614f71565b865550615057565b601f19841661500586614deb565b60005b8281101561502d57848901518255600182019150602085019450602081019050615008565b8683101561504a5784890151615046601f891682614f53565b8355505b6001600288020188555050505b505050505050565b6150688161483c565b811461507357600080fd5b50565b6000815190506150858161505f565b92915050565b6000602082840312156150a1576150a0613f19565b5b60006150af84828501615076565b91505092915050565b6150c18161400a565b82525050565b60006020820190506150dc60008301846150b8565b92915050565b7f436f6e747261637420646f6573206e6f7420737570706f72742072657175697260008201527f656420696e746572666163650000000000000000000000000000000000000000602082015250565b600061513e602c836140d0565b9150615149826150e2565b604082019050919050565b6000602082019050818103600083015261516d81615131565b9050919050565b600067ffffffffffffffff82111561518f5761518e6143b1565b5b602082029050602081019050919050565b60006151b36151ae84615174565b614411565b905080838252602082019050602084028301858111156151d6576151d5614557565b5b835b818110156151ff57806151eb8882615076565b8452602084019350506020810190506151d8565b5050509392505050565b600082601f83011261521e5761521d6143a7565b5b815161522e8482602086016151a0565b91505092915050565b60006020828403121561524d5761524c613f19565b5b600082015167ffffffffffffffff81111561526b5761526a613f1e565b5b61527784828501615209565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152dc6026836140d0565b91506152e782615280565b604082019050919050565b6000602082019050818103600083015261530b816152cf565b9050919050565b600061531d82613f81565b915061532883613f81565b925082820261533681613f81565b9150828204841483151761534d5761534c614d08565b5b5092915050565b600061535f82613f81565b915061536a83613f81565b925082820190508082111561538257615381614d08565b5b92915050565b600061539382613f81565b9150600082036153a6576153a5614d08565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006153e76020836140d0565b91506153f2826153b1565b602082019050919050565b60006020820190508181036000830152615416816153da565b9050919050565b600060608201905061543260008301866141a4565b61543f60208301856141a4565b61544c604083018461420e565b949350505050565b600060408201905061546960008301856141a4565b61547660208301846141a4565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006154b36020836140d0565b91506154be8261547d565b602082019050919050565b600060208201905081810360008301526154e2816154a6565b9050919050565b600081905092915050565b60006154ff826140c5565b61550981856154e9565b93506155198185602086016140e1565b80840191505092915050565b600061553182856154f4565b915061553d82846154f4565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061559f82615578565b6155a98185615583565b93506155b98185602086016140e1565b6155c28161410b565b840191505092915050565b60006080820190506155e260008301876141a4565b6155ef60208301866141a4565b6155fc604083018561420e565b818103606083015261560e8184615594565b905095945050505050565b60008151905061562881614036565b92915050565b60006020828403121561564457615643613f19565b5b600061565284828501615619565b9150509291505056fea2646970667358221220c1a9341d92617fef0579bc8bdb5c8bcff3c74dd5c18e043e01d051c07b918d4464736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000176a7899e782609b30a04f84a6978cc99b280a9700000000000000000000000021bbb2f84053197a2455a6c230c2883030b15d0c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f6d657461646174612e766565667269656e64732e636f6d2f76322f636f6c6c656374696f6e732f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013426565706c65205820566565467269656e64730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044747313200000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initialBaseUri (string): https://metadata.veefriends.com/v2/collections/
Arg [1] : name (string): Beeple X VeeFriends
Arg [2] : symbol (string): GG12
Arg [3] : controlContractAddress (address): 0x176a7899e782609b30a04f84A6978CC99b280A97
Arg [4] : royaltiesContractAddress (address): 0x21bbB2F84053197A2455a6C230C2883030B15d0c
Arg [5] : renderingContractAddress (address): 0x0000000000000000000000000000000000000000
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 000000000000000000000000176a7899e782609b30a04f84a6978cc99b280a97
Arg [4] : 00000000000000000000000021bbb2f84053197a2455a6c230c2883030b15d0c
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [7] : 68747470733a2f2f6d657461646174612e766565667269656e64732e636f6d2f
Arg [8] : 76322f636f6c6c656374696f6e732f0000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [10] : 426565706c65205820566565467269656e647300000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [12] : 4747313200000000000000000000000000000000000000000000000000000000
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.