Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 220 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 20688240 | 78 days ago | IN | 0 ETH | 0.000037 | ||||
Transfer From | 16946729 | 603 days ago | IN | 0 ETH | 0.00122968 | ||||
Set Approval For... | 16361592 | 685 days ago | IN | 0 ETH | 0.00063712 | ||||
Safe Transfer Fr... | 16287732 | 695 days ago | IN | 0 ETH | 0.00240697 | ||||
Safe Transfer Fr... | 16255537 | 700 days ago | IN | 0 ETH | 0.00240742 | ||||
Safe Transfer Fr... | 16250536 | 701 days ago | IN | 0 ETH | 0.00240742 | ||||
Transfer From | 16241193 | 702 days ago | IN | 0 ETH | 0.00125801 | ||||
Transfer From | 16235607 | 703 days ago | IN | 0 ETH | 0.00107089 | ||||
Transfer From | 16234420 | 703 days ago | IN | 0 ETH | 0.0010541 | ||||
Set Approval For... | 16119284 | 719 days ago | IN | 0 ETH | 0.00064784 | ||||
Set Approval For... | 16072624 | 725 days ago | IN | 0 ETH | 0.00055001 | ||||
Safe Transfer Fr... | 16047769 | 729 days ago | IN | 0 ETH | 0.0009574 | ||||
Safe Transfer Fr... | 16047749 | 729 days ago | IN | 0 ETH | 0.00084251 | ||||
Safe Transfer Fr... | 16047737 | 729 days ago | IN | 0 ETH | 0.00085257 | ||||
Set Approval For... | 15568524 | 796 days ago | IN | 0 ETH | 0.0004919 | ||||
Set Approval For... | 15541196 | 800 days ago | IN | 0 ETH | 0.00079343 | ||||
Safe Transfer Fr... | 15541119 | 800 days ago | IN | 0 ETH | 0.00080753 | ||||
Transfer From | 15540805 | 800 days ago | IN | 0 ETH | 0.00138004 | ||||
Set Approval For... | 15540801 | 800 days ago | IN | 0 ETH | 0.00117798 | ||||
Safe Transfer Fr... | 15517927 | 803 days ago | IN | 0 ETH | 0.00035373 | ||||
Safe Transfer Fr... | 15515930 | 804 days ago | IN | 0 ETH | 0.00084352 | ||||
Set Approval For... | 15515648 | 804 days ago | IN | 0 ETH | 0.00078133 | ||||
Safe Transfer Fr... | 15514622 | 804 days ago | IN | 0 ETH | 0.00042066 | ||||
Safe Transfer Fr... | 15514031 | 804 days ago | IN | 0 ETH | 0.00045021 | ||||
Safe Transfer Fr... | 15510728 | 805 days ago | IN | 0 ETH | 0.00061105 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
15379203 | 826 days ago | 0.008 ETH |
Loading...
Loading
Contract Name:
NFTFUDDIES
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-12 */ /** *Submitted for verification at Etherscan.io on 2022-08-11 */ // SPDX-License-Identifier: MIT /** * @title 8lien Punks NFT contract * @dev Extends ERC721A - thanks azuki */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.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 functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/TwistedToonz.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract NFTFUDDIES is ERC721A, Ownable, ReentrancyGuard { string public baseURI; uint public price = 0.001 ether; uint public maxPerTx = 10; uint public maxFreePerWallet = 5; uint public totalFree = 2000; uint public maxSupply = 4999; uint public nextOwnerToExplicitlySet; bool public mintEnabled; constructor() ERC721A("NFTFUDDIES", "NFTFUD"){} modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function freeMint(uint256 amt) external callerIsUser { require(mintEnabled, "Public sale has not begun yet"); require(totalSupply() + amt <= totalFree, "Reached max free supply"); require(amt <= 10, "can not mint this many free at a time"); require(numberMinted(msg.sender) + amt <= maxFreePerWallet,"Too many free per wallet!"); _safeMint(msg.sender, amt); } function mint(uint256 amt) external payable { uint cost = price; require(msg.sender == tx.origin,"Be yourself, stupid degen."); require(msg.value >= amt * cost,"Please send the exact amount."); require(totalSupply() + amt < maxSupply + 1,"No more NFTFUDDIES FOR YOU BUDDY..."); require(mintEnabled, "Minting is not live yet, hold on..."); require( amt < maxPerTx + 1, "Max per TX reached."); _safeMint(msg.sender, amt); } function ownerMint(uint256 amt) external onlyOwner { require(totalSupply() + amt < maxSupply + 1,"too many!"); _safeMint(msg.sender, amt); } function toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setPrice(uint256 price_) external onlyOwner { price = price_; } function setTotalFree(uint256 totalFree_) external onlyOwner { totalFree = totalFree_; } function setMaxPerTx(uint256 maxPerTx_) external onlyOwner { maxPerTx = maxPerTx_; } function setMaxPerWallet(uint256 maxFreePerWallet_) external onlyOwner { maxFreePerWallet = maxFreePerWallet_; } function setmaxSupply(uint256 maxSupply_) external onlyOwner { maxSupply = maxSupply_; } function setBaseURI(string calldata URI) external onlyOwner { baseURI = URI; } function contractURI() public view returns (string memory) { return string(abi.encodePacked(baseURI,"/nftfud/contract.json")); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId),"Token not minted yet"); return string(abi.encodePacked( baseURI,"/nftfud", "/meta/", Strings.toString(tokenId), ".json")); } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { require(quantity != 0, "quantity must be nonzero"); require(currentIndex != 0, "no tokens minted yet"); uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet; require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set"); // Index underflow is impossible. // Counter or index overflow is incredibly unrealistic. unchecked { uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1; // Set the end index to be the last token index if (endIndex + 1 > currentIndex) { endIndex = currentIndex - 1; } for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i].addr = ownership.addr; _ownerships[i].startTimestamp = ownership.startTimestamp; } } nextOwnerToExplicitlySet = endIndex + 1; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxFreePerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","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":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266038d7ea4c68000600a55600a600b556005600c556107d0600d55611387600e553480156200003257600080fd5b50604080518082018252600a8152694e46544655444449455360b01b60208083019182528351808501909452600684526513919511955160d21b908401528151919291620000839160019162000117565b5080516200009990600290602084019062000117565b505050620000b6620000b0620000c160201b60201c565b620000c5565b6001600855620001fa565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012590620001bd565b90600052602060002090601f01602090048101928262000149576000855562000194565b82601f106200016457805160ff191683800117855562000194565b8280016001018555821562000194579182015b828111156200019457825182559160200191906001019062000177565b50620001a2929150620001a6565b5090565b5b80821115620001a25760008155600101620001a7565b600181811c90821680620001d257607f821691505b60208210811415620001f457634e487b7160e01b600052602260045260246000fd5b50919050565b612c07806200020a6000396000f3fe6080604052600436106102d15760003560e01c80638da5cb5b11610179578063c87b56dd116100d6578063e268e4d31161008a578063f19e75d411610064578063f19e75d4146107b4578063f2fde38b146107d4578063f968adbe146107f457600080fd5b8063e268e4d314610736578063e8a3d48514610756578063e985e9c51461076b57600080fd5b8063d5abeb01116100bb578063d5abeb01146106ea578063d7224ba014610700578063dc33e6811461071657600080fd5b8063c87b56dd146106b0578063d1239730146106d057600080fd5b8063a0712d681161012d578063a702735711610112578063a70273571461065a578063b88d4fde14610670578063c6f6f2161461069057600080fd5b8063a0712d6814610627578063a22cb4651461063a57600080fd5b80639231ab2a1161015e5780639231ab2a146105ae57806395d89b41146105fc578063a035b1fe1461061157600080fd5b80638da5cb5b1461057057806391b7f5ed1461058e57600080fd5b80633ccfd60b116102325780636352211e116101e6578063715018a6116101c0578063715018a6146105265780637c928fe91461053b5780637d55094d1461055b57600080fd5b80636352211e146104d15780636c0360eb146104f157806370a082311461050657600080fd5b80634f6ccce7116102175780634f6ccce71461047157806355f804b314610491578063563aaf11146104b157600080fd5b80633ccfd60b1461043c57806342842e0e1461045157600080fd5b8063228025e8116102895780632d20fb601161026e5780632d20fb60146103e65780632f745c5914610406578063333e44e61461042657600080fd5b8063228025e8146103a657806323b872dd146103c657600080fd5b8063081812fc116102ba578063081812fc1461032d578063095ea7b31461036557806318160ddd1461038757600080fd5b806301ffc9a7146102d657806306fdde031461030b575b600080fd5b3480156102e257600080fd5b506102f66102f13660046127df565b61080a565b60405190151581526020015b60405180910390f35b34801561031757600080fd5b50610320610877565b6040516103029190612a38565b34801561033957600080fd5b5061034d61034836600461288b565b610909565b6040516001600160a01b039091168152602001610302565b34801561037157600080fd5b506103856103803660046127b5565b6109a9565b005b34801561039357600080fd5b506000545b604051908152602001610302565b3480156103b257600080fd5b506103856103c136600461288b565b610ac1565b3480156103d257600080fd5b506103856103e1366004612661565b610b0e565b3480156103f257600080fd5b5061038561040136600461288b565b610b19565b34801561041257600080fd5b506103986104213660046127b5565b610bca565b34801561043257600080fd5b50610398600d5481565b34801561044857600080fd5b50610385610d36565b34801561045d57600080fd5b5061038561046c366004612661565b610e6e565b34801561047d57600080fd5b5061039861048c36600461288b565b610e89565b34801561049d57600080fd5b506103856104ac366004612819565b610eeb565b3480156104bd57600080fd5b506103856104cc36600461288b565b610f3f565b3480156104dd57600080fd5b5061034d6104ec36600461288b565b610f8c565b3480156104fd57600080fd5b50610320610f9e565b34801561051257600080fd5b5061039861052136600461260c565b61102c565b34801561053257600080fd5b506103856110d8565b34801561054757600080fd5b5061038561055636600461288b565b61112c565b34801561056757600080fd5b50610385611303565b34801561057c57600080fd5b506007546001600160a01b031661034d565b34801561059a57600080fd5b506103856105a936600461288b565b61135f565b3480156105ba57600080fd5b506105ce6105c936600461288b565b6113ac565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610302565b34801561060857600080fd5b506103206113c9565b34801561061d57600080fd5b50610398600a5481565b61038561063536600461288b565b6113d8565b34801561064657600080fd5b50610385610655366004612779565b6115c6565b34801561066657600080fd5b50610398600c5481565b34801561067c57600080fd5b5061038561068b36600461269d565b61168b565b34801561069c57600080fd5b506103856106ab36600461288b565b611710565b3480156106bc57600080fd5b506103206106cb36600461288b565b61175d565b3480156106dc57600080fd5b506010546102f69060ff1681565b3480156106f657600080fd5b50610398600e5481565b34801561070c57600080fd5b50610398600f5481565b34801561072257600080fd5b5061039861073136600461260c565b6117e8565b34801561074257600080fd5b5061038561075136600461288b565b6117f3565b34801561076257600080fd5b50610320611840565b34801561077757600080fd5b506102f661078636600461262e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107c057600080fd5b506103856107cf36600461288b565b611868565b3480156107e057600080fd5b506103856107ef36600461260c565b61190b565b34801561080057600080fd5b50610398600b5481565b60006001600160e01b031982166380ac58cd60e01b148061083b57506001600160e01b03198216635b5e139f60e01b145b8061085657506001600160e01b0319821663780e9d6360e01b145b8061087157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461088690612ad9565b80601f01602080910402602001604051908101604052809291908181526020018280546108b290612ad9565b80156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b5050505050905090565b6000610916826000541190565b61098d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109b482610f8c565b9050806001600160a01b0316836001600160a01b03161415610a235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610984565b336001600160a01b0382161480610a3f5750610a3f8133610786565b610ab15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610984565b610abc8383836119c1565b505050565b6007546001600160a01b03163314610b095760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b600e55565b610abc838383611a2a565b6007546001600160a01b03163314610b615760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b60026008541415610bb45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610984565b6002600855610bc281611d2c565b506001600855565b6000610bd58361102c565b8210610c2e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610984565b600080549080805b83811015610cc7576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c8957805192505b876001600160a01b0316836001600160a01b03161415610cbe5786841415610cb75750935061087192505050565b6001909301925b50600101610c36565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610984565b6007546001600160a01b03163314610d7e5760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b60026008541415610dd15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610984565b6002600855604051600090339047908381818185875af1925050503d8060008114610e18576040519150601f19603f3d011682016040523d82523d6000602084013e610e1d565b606091505b5050905080610bc25760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610984565b610abc8383836040518060200160405280600081525061168b565b600080548210610ee75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610984565b5090565b6007546001600160a01b03163314610f335760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b610abc60098383612560565b6007546001600160a01b03163314610f875760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b600d55565b6000610f9782611ec4565b5192915050565b60098054610fab90612ad9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd790612ad9565b80156110245780601f10610ff957610100808354040283529160200191611024565b820191906000526020600020905b81548152906001019060200180831161100757829003601f168201915b505050505081565b60006001600160a01b0382166110aa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610984565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6007546001600160a01b031633146111205760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b61112a6000611f9b565b565b32331461117b5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610984565b60105460ff166111cd5760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610984565b600d54816111da60005490565b6111e49190612a4b565b11156112325760405162461bcd60e51b815260206004820152601760248201527f52656163686564206d6178206672656520737570706c790000000000000000006044820152606401610984565b600a8111156112915760405162461bcd60e51b815260206004820152602560248201527f63616e206e6f74206d696e742074686973206d616e79206672656520617420616044820152642074696d6560d81b6064820152608401610984565b600c548161129e336117e8565b6112a89190612a4b565b11156112f65760405162461bcd60e51b815260206004820152601960248201527f546f6f206d616e792066726565207065722077616c6c657421000000000000006044820152606401610984565b6113003382611ffa565b50565b6007546001600160a01b0316331461134b5760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b6010805460ff19811660ff90911615179055565b6007546001600160a01b031633146113a75760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b600a55565b604080518082019091526000808252602082015261087182611ec4565b60606002805461088690612ad9565b600a5433321461142a5760405162461bcd60e51b815260206004820152601a60248201527f426520796f757273656c662c2073747570696420646567656e2e0000000000006044820152606401610984565b6114348183612a77565b3410156114835760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610984565b600e54611491906001612a4b565b8261149b60005490565b6114a59190612a4b565b106114fe5760405162461bcd60e51b815260206004820152602360248201527f4e6f206d6f7265204e46544655444449455320464f5220594f5520425544445960448201526217171760e91b6064820152608401610984565b60105460ff1661155c5760405162461bcd60e51b815260206004820152602360248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60448201526217171760e91b6064820152608401610984565b600b5461156a906001612a4b565b82106115b85760405162461bcd60e51b815260206004820152601360248201527f4d61782070657220545820726561636865642e000000000000000000000000006044820152606401610984565b6115c23383611ffa565b5050565b6001600160a01b03821633141561161f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610984565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611696848484611a2a565b6116a284848484612014565b61170a5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610984565b50505050565b6007546001600160a01b031633146117585760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b600b55565b606061176a826000541190565b6117b65760405162461bcd60e51b815260206004820152601460248201527f546f6b656e206e6f74206d696e746564207965740000000000000000000000006044820152606401610984565b60096117c18361216e565b6040516020016117d292919061296a565b6040516020818303038152906040529050919050565b600061087182612284565b6007546001600160a01b0316331461183b5760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b600c55565b6060600960405160200161185491906129c3565b604051602081830303815290604052905090565b6007546001600160a01b031633146118b05760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b600e546118be906001612a4b565b816118c860005490565b6118d29190612a4b565b106112f65760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b6044820152606401610984565b6007546001600160a01b031633146119535760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b6001600160a01b0381166119b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610984565b61130081611f9b565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a3582611ec4565b80519091506000906001600160a01b0316336001600160a01b03161480611a6c575033611a6184610909565b6001600160a01b0316145b80611a7e57508151611a7e9033610786565b905080611af35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610984565b846001600160a01b031682600001516001600160a01b031614611b675760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610984565b6001600160a01b038416611bcb5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610984565b611bdb60008484600001516119c1565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611ce257611c95816000541190565b15611ce2578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80611d795760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610984565b600054611dc85760405162461bcd60e51b815260206004820152601460248201527f6e6f20746f6b656e73206d696e746564207965740000000000000000000000006044820152606401610984565b600f546000548110611e1c5760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e20736574000000006044820152606401610984565b6000548282016000198101911015611e375750600054600019015b815b818111611eb9576000818152600360205260409020546001600160a01b0316611eb1576000611e6782611ec4565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611e39565b50600101600f555050565b6040805180820190915260008082526020820152611ee3826000541190565b611f425760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610984565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611f91579392505050565b5060001901611f44565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115c2828260405180602001604052806000815250612337565b60006001600160a01b0384163b1561216257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120589033908990889088906004016129fc565b602060405180830381600087803b15801561207257600080fd5b505af19250505080156120a2575060408051601f3d908101601f1916820190925261209f918101906127fc565b60015b612148573d8080156120d0576040519150601f19603f3d011682016040523d82523d6000602084013e6120d5565b606091505b5080516121405760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610984565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612166565b5060015b949350505050565b6060816121925750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121bc57806121a681612b14565b91506121b59050600a83612a63565b9150612196565b60008167ffffffffffffffff8111156121d7576121d7612b85565b6040519080825280601f01601f191660200182016040528015612201576020820181803683370190505b5090505b841561216657612216600183612a96565b9150612223600a86612b2f565b61222e906030612a4b565b60f81b81838151811061224357612243612b6f565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061227d600a86612a63565b9450612205565b60006001600160a01b0382166123025760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610984565b506001600160a01b0316600090815260046020526040902054600160801b90046fffffffffffffffffffffffffffffffff1690565b610abc83838360016000546001600160a01b0385166123a25760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610984565b836124005760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610984565b6001600160a01b03851660008181526004602090815260408083208054600160801b6fffffffffffffffffffffffffffffffff1982166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156125575760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561254b576124e36000888488612014565b61254b5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610984565b60019182019101612490565b50600055611d25565b82805461256c90612ad9565b90600052602060002090601f01602090048101928261258e57600085556125d4565b82601f106125a75782800160ff198235161785556125d4565b828001600101855582156125d4579182015b828111156125d45782358255916020019190600101906125b9565b50610ee79291505b80821115610ee757600081556001016125dc565b80356001600160a01b038116811461260757600080fd5b919050565b60006020828403121561261e57600080fd5b612627826125f0565b9392505050565b6000806040838503121561264157600080fd5b61264a836125f0565b9150612658602084016125f0565b90509250929050565b60008060006060848603121561267657600080fd5b61267f846125f0565b925061268d602085016125f0565b9150604084013590509250925092565b600080600080608085870312156126b357600080fd5b6126bc856125f0565b93506126ca602086016125f0565b925060408501359150606085013567ffffffffffffffff808211156126ee57600080fd5b818701915087601f83011261270257600080fd5b81358181111561271457612714612b85565b604051601f8201601f19908116603f0116810190838211818310171561273c5761273c612b85565b816040528281528a602084870101111561275557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561278c57600080fd5b612795836125f0565b9150602083013580151581146127aa57600080fd5b809150509250929050565b600080604083850312156127c857600080fd5b6127d1836125f0565b946020939093013593505050565b6000602082840312156127f157600080fd5b813561262781612b9b565b60006020828403121561280e57600080fd5b815161262781612b9b565b6000806020838503121561282c57600080fd5b823567ffffffffffffffff8082111561284457600080fd5b818501915085601f83011261285857600080fd5b81358181111561286757600080fd5b86602082850101111561287957600080fd5b60209290920196919550909350505050565b60006020828403121561289d57600080fd5b5035919050565b600081518084526128bc816020860160208601612aad565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806128ea57607f831692505b602080841082141561290c57634e487b7160e01b600052602260045260246000fd5b81801561292057600181146129315761295e565b60ff1986168952848901965061295e565b60008881526020902060005b868110156129565781548b82015290850190830161293d565b505084890196505b50505050505092915050565b600061297682856128d0565b660bdb999d199d5960ca1b8152652f6d6574612f60d01b600782015283516129a581600d840160208801612aad565b64173539b7b760d91b600d9290910191820152601201949350505050565b60006129cf82846128d0565b7f2f6e66746675642f636f6e74726163742e6a736f6e000000000000000000000081526015019392505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612a2e60808301846128a4565b9695505050505050565b60208152600061262760208301846128a4565b60008219821115612a5e57612a5e612b43565b500190565b600082612a7257612a72612b59565b500490565b6000816000190483118215151615612a9157612a91612b43565b500290565b600082821015612aa857612aa8612b43565b500390565b60005b83811015612ac8578181015183820152602001612ab0565b8381111561170a5750506000910152565b600181811c90821680612aed57607f821691505b60208210811415612b0e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b2857612b28612b43565b5060010190565b600082612b3e57612b3e612b59565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461130057600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220307a7b34efd8ee641cc31248bfbd15fd7270ce5ecdc380804c4b0e88bf7a7ea264736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102d15760003560e01c80638da5cb5b11610179578063c87b56dd116100d6578063e268e4d31161008a578063f19e75d411610064578063f19e75d4146107b4578063f2fde38b146107d4578063f968adbe146107f457600080fd5b8063e268e4d314610736578063e8a3d48514610756578063e985e9c51461076b57600080fd5b8063d5abeb01116100bb578063d5abeb01146106ea578063d7224ba014610700578063dc33e6811461071657600080fd5b8063c87b56dd146106b0578063d1239730146106d057600080fd5b8063a0712d681161012d578063a702735711610112578063a70273571461065a578063b88d4fde14610670578063c6f6f2161461069057600080fd5b8063a0712d6814610627578063a22cb4651461063a57600080fd5b80639231ab2a1161015e5780639231ab2a146105ae57806395d89b41146105fc578063a035b1fe1461061157600080fd5b80638da5cb5b1461057057806391b7f5ed1461058e57600080fd5b80633ccfd60b116102325780636352211e116101e6578063715018a6116101c0578063715018a6146105265780637c928fe91461053b5780637d55094d1461055b57600080fd5b80636352211e146104d15780636c0360eb146104f157806370a082311461050657600080fd5b80634f6ccce7116102175780634f6ccce71461047157806355f804b314610491578063563aaf11146104b157600080fd5b80633ccfd60b1461043c57806342842e0e1461045157600080fd5b8063228025e8116102895780632d20fb601161026e5780632d20fb60146103e65780632f745c5914610406578063333e44e61461042657600080fd5b8063228025e8146103a657806323b872dd146103c657600080fd5b8063081812fc116102ba578063081812fc1461032d578063095ea7b31461036557806318160ddd1461038757600080fd5b806301ffc9a7146102d657806306fdde031461030b575b600080fd5b3480156102e257600080fd5b506102f66102f13660046127df565b61080a565b60405190151581526020015b60405180910390f35b34801561031757600080fd5b50610320610877565b6040516103029190612a38565b34801561033957600080fd5b5061034d61034836600461288b565b610909565b6040516001600160a01b039091168152602001610302565b34801561037157600080fd5b506103856103803660046127b5565b6109a9565b005b34801561039357600080fd5b506000545b604051908152602001610302565b3480156103b257600080fd5b506103856103c136600461288b565b610ac1565b3480156103d257600080fd5b506103856103e1366004612661565b610b0e565b3480156103f257600080fd5b5061038561040136600461288b565b610b19565b34801561041257600080fd5b506103986104213660046127b5565b610bca565b34801561043257600080fd5b50610398600d5481565b34801561044857600080fd5b50610385610d36565b34801561045d57600080fd5b5061038561046c366004612661565b610e6e565b34801561047d57600080fd5b5061039861048c36600461288b565b610e89565b34801561049d57600080fd5b506103856104ac366004612819565b610eeb565b3480156104bd57600080fd5b506103856104cc36600461288b565b610f3f565b3480156104dd57600080fd5b5061034d6104ec36600461288b565b610f8c565b3480156104fd57600080fd5b50610320610f9e565b34801561051257600080fd5b5061039861052136600461260c565b61102c565b34801561053257600080fd5b506103856110d8565b34801561054757600080fd5b5061038561055636600461288b565b61112c565b34801561056757600080fd5b50610385611303565b34801561057c57600080fd5b506007546001600160a01b031661034d565b34801561059a57600080fd5b506103856105a936600461288b565b61135f565b3480156105ba57600080fd5b506105ce6105c936600461288b565b6113ac565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610302565b34801561060857600080fd5b506103206113c9565b34801561061d57600080fd5b50610398600a5481565b61038561063536600461288b565b6113d8565b34801561064657600080fd5b50610385610655366004612779565b6115c6565b34801561066657600080fd5b50610398600c5481565b34801561067c57600080fd5b5061038561068b36600461269d565b61168b565b34801561069c57600080fd5b506103856106ab36600461288b565b611710565b3480156106bc57600080fd5b506103206106cb36600461288b565b61175d565b3480156106dc57600080fd5b506010546102f69060ff1681565b3480156106f657600080fd5b50610398600e5481565b34801561070c57600080fd5b50610398600f5481565b34801561072257600080fd5b5061039861073136600461260c565b6117e8565b34801561074257600080fd5b5061038561075136600461288b565b6117f3565b34801561076257600080fd5b50610320611840565b34801561077757600080fd5b506102f661078636600461262e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107c057600080fd5b506103856107cf36600461288b565b611868565b3480156107e057600080fd5b506103856107ef36600461260c565b61190b565b34801561080057600080fd5b50610398600b5481565b60006001600160e01b031982166380ac58cd60e01b148061083b57506001600160e01b03198216635b5e139f60e01b145b8061085657506001600160e01b0319821663780e9d6360e01b145b8061087157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461088690612ad9565b80601f01602080910402602001604051908101604052809291908181526020018280546108b290612ad9565b80156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b5050505050905090565b6000610916826000541190565b61098d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109b482610f8c565b9050806001600160a01b0316836001600160a01b03161415610a235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610984565b336001600160a01b0382161480610a3f5750610a3f8133610786565b610ab15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610984565b610abc8383836119c1565b505050565b6007546001600160a01b03163314610b095760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b600e55565b610abc838383611a2a565b6007546001600160a01b03163314610b615760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b60026008541415610bb45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610984565b6002600855610bc281611d2c565b506001600855565b6000610bd58361102c565b8210610c2e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610984565b600080549080805b83811015610cc7576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c8957805192505b876001600160a01b0316836001600160a01b03161415610cbe5786841415610cb75750935061087192505050565b6001909301925b50600101610c36565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610984565b6007546001600160a01b03163314610d7e5760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b60026008541415610dd15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610984565b6002600855604051600090339047908381818185875af1925050503d8060008114610e18576040519150601f19603f3d011682016040523d82523d6000602084013e610e1d565b606091505b5050905080610bc25760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610984565b610abc8383836040518060200160405280600081525061168b565b600080548210610ee75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610984565b5090565b6007546001600160a01b03163314610f335760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b610abc60098383612560565b6007546001600160a01b03163314610f875760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b600d55565b6000610f9782611ec4565b5192915050565b60098054610fab90612ad9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd790612ad9565b80156110245780601f10610ff957610100808354040283529160200191611024565b820191906000526020600020905b81548152906001019060200180831161100757829003601f168201915b505050505081565b60006001600160a01b0382166110aa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610984565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6007546001600160a01b031633146111205760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b61112a6000611f9b565b565b32331461117b5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610984565b60105460ff166111cd5760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610984565b600d54816111da60005490565b6111e49190612a4b565b11156112325760405162461bcd60e51b815260206004820152601760248201527f52656163686564206d6178206672656520737570706c790000000000000000006044820152606401610984565b600a8111156112915760405162461bcd60e51b815260206004820152602560248201527f63616e206e6f74206d696e742074686973206d616e79206672656520617420616044820152642074696d6560d81b6064820152608401610984565b600c548161129e336117e8565b6112a89190612a4b565b11156112f65760405162461bcd60e51b815260206004820152601960248201527f546f6f206d616e792066726565207065722077616c6c657421000000000000006044820152606401610984565b6113003382611ffa565b50565b6007546001600160a01b0316331461134b5760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b6010805460ff19811660ff90911615179055565b6007546001600160a01b031633146113a75760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b600a55565b604080518082019091526000808252602082015261087182611ec4565b60606002805461088690612ad9565b600a5433321461142a5760405162461bcd60e51b815260206004820152601a60248201527f426520796f757273656c662c2073747570696420646567656e2e0000000000006044820152606401610984565b6114348183612a77565b3410156114835760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610984565b600e54611491906001612a4b565b8261149b60005490565b6114a59190612a4b565b106114fe5760405162461bcd60e51b815260206004820152602360248201527f4e6f206d6f7265204e46544655444449455320464f5220594f5520425544445960448201526217171760e91b6064820152608401610984565b60105460ff1661155c5760405162461bcd60e51b815260206004820152602360248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60448201526217171760e91b6064820152608401610984565b600b5461156a906001612a4b565b82106115b85760405162461bcd60e51b815260206004820152601360248201527f4d61782070657220545820726561636865642e000000000000000000000000006044820152606401610984565b6115c23383611ffa565b5050565b6001600160a01b03821633141561161f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610984565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611696848484611a2a565b6116a284848484612014565b61170a5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610984565b50505050565b6007546001600160a01b031633146117585760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b600b55565b606061176a826000541190565b6117b65760405162461bcd60e51b815260206004820152601460248201527f546f6b656e206e6f74206d696e746564207965740000000000000000000000006044820152606401610984565b60096117c18361216e565b6040516020016117d292919061296a565b6040516020818303038152906040529050919050565b600061087182612284565b6007546001600160a01b0316331461183b5760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b600c55565b6060600960405160200161185491906129c3565b604051602081830303815290604052905090565b6007546001600160a01b031633146118b05760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b600e546118be906001612a4b565b816118c860005490565b6118d29190612a4b565b106112f65760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b6044820152606401610984565b6007546001600160a01b031633146119535760405162461bcd60e51b81526020600482018190526024820152600080516020612bb28339815191526044820152606401610984565b6001600160a01b0381166119b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610984565b61130081611f9b565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a3582611ec4565b80519091506000906001600160a01b0316336001600160a01b03161480611a6c575033611a6184610909565b6001600160a01b0316145b80611a7e57508151611a7e9033610786565b905080611af35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610984565b846001600160a01b031682600001516001600160a01b031614611b675760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610984565b6001600160a01b038416611bcb5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610984565b611bdb60008484600001516119c1565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611ce257611c95816000541190565b15611ce2578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80611d795760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610984565b600054611dc85760405162461bcd60e51b815260206004820152601460248201527f6e6f20746f6b656e73206d696e746564207965740000000000000000000000006044820152606401610984565b600f546000548110611e1c5760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e20736574000000006044820152606401610984565b6000548282016000198101911015611e375750600054600019015b815b818111611eb9576000818152600360205260409020546001600160a01b0316611eb1576000611e6782611ec4565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611e39565b50600101600f555050565b6040805180820190915260008082526020820152611ee3826000541190565b611f425760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610984565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611f91579392505050565b5060001901611f44565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115c2828260405180602001604052806000815250612337565b60006001600160a01b0384163b1561216257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120589033908990889088906004016129fc565b602060405180830381600087803b15801561207257600080fd5b505af19250505080156120a2575060408051601f3d908101601f1916820190925261209f918101906127fc565b60015b612148573d8080156120d0576040519150601f19603f3d011682016040523d82523d6000602084013e6120d5565b606091505b5080516121405760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610984565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612166565b5060015b949350505050565b6060816121925750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121bc57806121a681612b14565b91506121b59050600a83612a63565b9150612196565b60008167ffffffffffffffff8111156121d7576121d7612b85565b6040519080825280601f01601f191660200182016040528015612201576020820181803683370190505b5090505b841561216657612216600183612a96565b9150612223600a86612b2f565b61222e906030612a4b565b60f81b81838151811061224357612243612b6f565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061227d600a86612a63565b9450612205565b60006001600160a01b0382166123025760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610984565b506001600160a01b0316600090815260046020526040902054600160801b90046fffffffffffffffffffffffffffffffff1690565b610abc83838360016000546001600160a01b0385166123a25760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610984565b836124005760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610984565b6001600160a01b03851660008181526004602090815260408083208054600160801b6fffffffffffffffffffffffffffffffff1982166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156125575760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561254b576124e36000888488612014565b61254b5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610984565b60019182019101612490565b50600055611d25565b82805461256c90612ad9565b90600052602060002090601f01602090048101928261258e57600085556125d4565b82601f106125a75782800160ff198235161785556125d4565b828001600101855582156125d4579182015b828111156125d45782358255916020019190600101906125b9565b50610ee79291505b80821115610ee757600081556001016125dc565b80356001600160a01b038116811461260757600080fd5b919050565b60006020828403121561261e57600080fd5b612627826125f0565b9392505050565b6000806040838503121561264157600080fd5b61264a836125f0565b9150612658602084016125f0565b90509250929050565b60008060006060848603121561267657600080fd5b61267f846125f0565b925061268d602085016125f0565b9150604084013590509250925092565b600080600080608085870312156126b357600080fd5b6126bc856125f0565b93506126ca602086016125f0565b925060408501359150606085013567ffffffffffffffff808211156126ee57600080fd5b818701915087601f83011261270257600080fd5b81358181111561271457612714612b85565b604051601f8201601f19908116603f0116810190838211818310171561273c5761273c612b85565b816040528281528a602084870101111561275557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561278c57600080fd5b612795836125f0565b9150602083013580151581146127aa57600080fd5b809150509250929050565b600080604083850312156127c857600080fd5b6127d1836125f0565b946020939093013593505050565b6000602082840312156127f157600080fd5b813561262781612b9b565b60006020828403121561280e57600080fd5b815161262781612b9b565b6000806020838503121561282c57600080fd5b823567ffffffffffffffff8082111561284457600080fd5b818501915085601f83011261285857600080fd5b81358181111561286757600080fd5b86602082850101111561287957600080fd5b60209290920196919550909350505050565b60006020828403121561289d57600080fd5b5035919050565b600081518084526128bc816020860160208601612aad565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806128ea57607f831692505b602080841082141561290c57634e487b7160e01b600052602260045260246000fd5b81801561292057600181146129315761295e565b60ff1986168952848901965061295e565b60008881526020902060005b868110156129565781548b82015290850190830161293d565b505084890196505b50505050505092915050565b600061297682856128d0565b660bdb999d199d5960ca1b8152652f6d6574612f60d01b600782015283516129a581600d840160208801612aad565b64173539b7b760d91b600d9290910191820152601201949350505050565b60006129cf82846128d0565b7f2f6e66746675642f636f6e74726163742e6a736f6e000000000000000000000081526015019392505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612a2e60808301846128a4565b9695505050505050565b60208152600061262760208301846128a4565b60008219821115612a5e57612a5e612b43565b500190565b600082612a7257612a72612b59565b500490565b6000816000190483118215151615612a9157612a91612b43565b500290565b600082821015612aa857612aa8612b43565b500390565b60005b83811015612ac8578181015183820152602001612ab0565b8381111561170a5750506000910152565b600181811c90821680612aed57607f821691505b60208210811415612b0e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b2857612b28612b43565b5060010190565b600082612b3e57612b3e612b59565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461130057600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220307a7b34efd8ee641cc31248bfbd15fd7270ce5ecdc380804c4b0e88bf7a7ea264736f6c63430008070033
Deployed Bytecode Sourcemap
50310:4659:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37170:372;;;;;;;;;;-1:-1:-1;37170:372:0;;;;;:::i;:::-;;:::i;:::-;;;7610:14:1;;7603:22;7585:41;;7573:2;7558:18;37170:372:0;;;;;;;;39056:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40618:214::-;;;;;;;;;;-1:-1:-1;40618:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6862:55:1;;;6844:74;;6832:2;6817:18;40618:214:0;6698:226:1;40139:413:0;;;;;;;;;;-1:-1:-1;40139:413:0;;;;;:::i;:::-;;:::i;:::-;;35427:100;;;;;;;;;;-1:-1:-1;35480:7:0;35507:12;35427:100;;;22253:25:1;;;22241:2;22226:18;35427:100:0;22107:177:1;52583:98:0;;;;;;;;;;-1:-1:-1;52583:98:0;;;;;:::i;:::-;;:::i;41494:170::-;;;;;;;;;;-1:-1:-1;41494:170:0;;;;;:::i;:::-;;:::i;53472:118::-;;;;;;;;;;-1:-1:-1;53472:118:0;;;;;:::i;:::-;;:::i;36091:1007::-;;;;;;;;;;-1:-1:-1;36091:1007:0;;;;;:::i;:::-;;:::i;50559:45::-;;;;;;;;;;;;;;;;53290:176;;;;;;;;;;;;;:::i;41735:185::-;;;;;;;;;;-1:-1:-1;41735:185:0;;;;;:::i;:::-;;:::i;35604:187::-;;;;;;;;;;-1:-1:-1;35604:187:0;;;;;:::i;:::-;;:::i;52687:88::-;;;;;;;;;;-1:-1:-1;52687:88:0;;;;;:::i;:::-;;:::i;52251:98::-;;;;;;;;;;-1:-1:-1;52251:98:0;;;;;:::i;:::-;;:::i;38865:124::-;;;;;;;;;;-1:-1:-1;38865:124:0;;;;;:::i;:::-;;:::i;50374:28::-;;;;;;;;;;;;;:::i;37606:221::-;;;;;;;;;;-1:-1:-1;37606:221:0;;;;;:::i;:::-;;:::i;10562:103::-;;;;;;;;;;;;;:::i;50930:389::-;;;;;;;;;;-1:-1:-1;50930:389:0;;;;;:::i;:::-;;:::i;51959:85::-;;;;;;;;;;;;;:::i;9911:87::-;;;;;;;;;;-1:-1:-1;9984:6:0;;-1:-1:-1;;;;;9984:6:0;9911:87;;52163:82;;;;;;;;;;-1:-1:-1;52163:82:0;;;;;:::i;:::-;;:::i;53596:132::-;;;;;;;;;;-1:-1:-1;53596:132:0;;;;;:::i;:::-;;:::i;:::-;;;;21949:13:1;;-1:-1:-1;;;;;21945:62:1;21927:81;;22068:4;22056:17;;;22050:24;22076:18;22046:49;22024:20;;;22017:79;;;;21900:18;53596:132:0;21717:385:1;39225:104:0;;;;;;;;;;;;;:::i;50407:52::-;;;;;;;;;;;;;;;;51325:464;;;;;;:::i;:::-;;:::i;40904:288::-;;;;;;;;;;-1:-1:-1;40904:288:0;;;;;:::i;:::-;;:::i;50512:42::-;;;;;;;;;;;;;;;;41991:355;;;;;;;;;;-1:-1:-1;41991:355:0;;;;;:::i;:::-;;:::i;52355:94::-;;;;;;;;;;-1:-1:-1;52355:94:0;;;;;:::i;:::-;;:::i;52927:357::-;;;;;;;;;;-1:-1:-1;52927:357:0;;;;;:::i;:::-;;:::i;50709:32::-;;;;;;;;;;-1:-1:-1;50709:32:0;;;;;;;;50609:45;;;;;;;;;;;;;;;;50659;;;;;;;;;;;;;;;;52050:107;;;;;;;;;;-1:-1:-1;52050:107:0;;;;;:::i;:::-;;:::i;52455:122::-;;;;;;;;;;-1:-1:-1;52455:122:0;;;;;:::i;:::-;;:::i;52781:138::-;;;;;;;;;;;;;:::i;41263:164::-;;;;;;;;;;-1:-1:-1;41263:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41384:25:0;;;41360:4;41384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41263:164;51795:158;;;;;;;;;;-1:-1:-1;51795:158:0;;;;;:::i;:::-;;:::i;10820:201::-;;;;;;;;;;-1:-1:-1;10820:201:0;;;;;:::i;:::-;;:::i;50464:43::-;;;;;;;;;;;;;;;;37170:372;37272:4;-1:-1:-1;;;;;;37309:40:0;;-1:-1:-1;;;37309:40:0;;:105;;-1:-1:-1;;;;;;;37366:48:0;;-1:-1:-1;;;37366:48:0;37309:105;:172;;;-1:-1:-1;;;;;;;37431:50:0;;-1:-1:-1;;;37431:50:0;37309:172;:225;;;-1:-1:-1;;;;;;;;;;26799:40:0;;;37498:36;37289:245;37170:372;-1:-1:-1;;37170:372:0:o;39056:100::-;39110:13;39143:5;39136:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39056:100;:::o;40618:214::-;40686:7;40714:16;40722:7;42658:4;42692:12;-1:-1:-1;42682:22:0;42601:111;40714:16;40706:74;;;;-1:-1:-1;;;40706:74:0;;21099:2:1;40706:74:0;;;21081:21:1;21138:2;21118:18;;;21111:30;21177:34;21157:18;;;21150:62;21248:15;21228:18;;;21221:43;21281:19;;40706:74:0;;;;;;;;;-1:-1:-1;40800:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40800:24:0;;40618:214::o;40139:413::-;40212:13;40228:24;40244:7;40228:15;:24::i;:::-;40212:40;;40277:5;-1:-1:-1;;;;;40271:11:0;:2;-1:-1:-1;;;;;40271:11:0;;;40263:58;;;;-1:-1:-1;;;40263:58:0;;17581:2:1;40263:58:0;;;17563:21:1;17620:2;17600:18;;;17593:30;17659:34;17639:18;;;17632:62;-1:-1:-1;;;17710:18:1;;;17703:32;17752:19;;40263:58:0;17379:398:1;40263:58:0;8715:10;-1:-1:-1;;;;;40356:21:0;;;;:62;;-1:-1:-1;40381:37:0;40398:5;8715:10;41263:164;:::i;40381:37::-;40334:169;;;;-1:-1:-1;;;40334:169:0;;13734:2:1;40334:169:0;;;13716:21:1;13773:2;13753:18;;;13746:30;13812:34;13792:18;;;13785:62;13883:27;13863:18;;;13856:55;13928:19;;40334:169:0;13532:421:1;40334:169:0;40516:28;40525:2;40529:7;40538:5;40516:8;:28::i;:::-;40201:351;40139:413;;:::o;52583:98::-;9984:6;;-1:-1:-1;;;;;9984:6:0;8715:10;10131:23;10123:68;;;;-1:-1:-1;;;10123:68:0;;15332:2:1;10123:68:0;;;15314:21:1;;;15351:18;;;15344:30;-1:-1:-1;;;;;;;;;;;15390:18:1;;;15383:62;15462:18;;10123:68:0;15130:356:1;10123:68:0;52653:9:::1;:22:::0;52583:98::o;41494:170::-;41628:28;41638:4;41644:2;41648:7;41628:9;:28::i;53472:118::-;9984:6;;-1:-1:-1;;;;;9984:6:0;8715:10;10131:23;10123:68;;;;-1:-1:-1;;;10123:68:0;;15332:2:1;10123:68:0;;;15314:21:1;;;15351:18;;;15344:30;-1:-1:-1;;;;;;;;;;;15390:18:1;;;15383:62;15462:18;;10123:68:0;15130:356:1;10123:68:0;4885:1:::1;5483:7;;:19;;5475:63;;;::::0;-1:-1:-1;;;5475:63:0;;20323:2:1;5475:63:0::1;::::0;::::1;20305:21:1::0;20362:2;20342:18;;;20335:30;20401:33;20381:18;;;20374:61;20452:18;;5475:63:0::1;20121:355:1::0;5475:63:0::1;4885:1;5616:7;:18:::0;53556:28:::2;53575:8:::0;53556:18:::2;:28::i;:::-;-1:-1:-1::0;4841:1:0::1;5795:7;:22:::0;53472:118::o;36091:1007::-;36180:7;36216:16;36226:5;36216:9;:16::i;:::-;36208:5;:24;36200:71;;;;-1:-1:-1;;;36200:71:0;;8063:2:1;36200:71:0;;;8045:21:1;8102:2;8082:18;;;8075:30;8141:34;8121:18;;;8114:62;-1:-1:-1;;;8192:18:1;;;8185:32;8234:19;;36200:71:0;7861:398:1;36200:71:0;36282:22;35507:12;;;36282:22;;36545:466;36565:14;36561:1;:18;36545:466;;;36605:31;36639:14;;;:11;:14;;;;;;;;;36605:48;;;;;;;;;-1:-1:-1;;;;;36605:48:0;;;;;-1:-1:-1;;;36605:48:0;;;;;;;;;;;;36676:28;36672:111;;36749:14;;;-1:-1:-1;36672:111:0;36826:5;-1:-1:-1;;;;;36805:26:0;:17;-1:-1:-1;;;;;36805:26:0;;36801:195;;;36875:5;36860:11;:20;36856:85;;;-1:-1:-1;36916:1:0;-1:-1:-1;36909:8:0;;-1:-1:-1;;;36909:8:0;36856:85;36963:13;;;;;36801:195;-1:-1:-1;36581:3:0;;36545:466;;;-1:-1:-1;37034:56:0;;-1:-1:-1;;;37034:56:0;;19908:2:1;37034:56:0;;;19890:21:1;19947:2;19927:18;;;19920:30;19986:34;19966:18;;;19959:62;20057:16;20037:18;;;20030:44;20091:19;;37034:56:0;19706:410:1;53290:176:0;9984:6;;-1:-1:-1;;;;;9984:6:0;8715:10;10131:23;10123:68;;;;-1:-1:-1;;;10123:68:0;;15332:2:1;10123:68:0;;;15314:21:1;;;15351:18;;;15344:30;-1:-1:-1;;;;;;;;;;;15390:18:1;;;15383:62;15462:18;;10123:68:0;15130:356:1;10123:68:0;4885:1:::1;5483:7;;:19;;5475:63;;;::::0;-1:-1:-1;;;5475:63:0;;20323:2:1;5475:63:0::1;::::0;::::1;20305:21:1::0;20362:2;20342:18;;;20335:30;20401:33;20381:18;;;20374:61;20452:18;;5475:63:0::1;20121:355:1::0;5475:63:0::1;4885:1;5616:7;:18:::0;53368:49:::2;::::0;53350:12:::2;::::0;53368:10:::2;::::0;53391:21:::2;::::0;53350:12;53368:49;53350:12;53368:49;53391:21;53368:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53349:68;;;53432:7;53424:36;;;::::0;-1:-1:-1;;;53424:36:0;;17984:2:1;53424:36:0::2;::::0;::::2;17966:21:1::0;18023:2;18003:18;;;17996:30;18062:18;18042;;;18035:46;18098:18;;53424:36:0::2;17782:340:1::0;41735:185:0;41873:39;41890:4;41896:2;41900:7;41873:39;;;;;;;;;;;;:16;:39::i;35604:187::-;35671:7;35507:12;;35699:5;:21;35691:69;;;;-1:-1:-1;;;35691:69:0;;11453:2:1;35691:69:0;;;11435:21:1;11492:2;11472:18;;;11465:30;11531:34;11511:18;;;11504:62;-1:-1:-1;;;11582:18:1;;;11575:33;11625:19;;35691:69:0;11251:399:1;35691:69:0;-1:-1:-1;35778:5:0;35604:187::o;52687:88::-;9984:6;;-1:-1:-1;;;;;9984:6:0;8715:10;10131:23;10123:68;;;;-1:-1:-1;;;10123:68:0;;15332:2:1;10123:68:0;;;15314:21:1;;;15351:18;;;15344:30;-1:-1:-1;;;;;;;;;;;15390:18:1;;;15383:62;15462:18;;10123:68:0;15130:356:1;10123:68:0;52756:13:::1;:7;52766:3:::0;;52756:13:::1;:::i;52251:98::-:0;9984:6;;-1:-1:-1;;;;;9984:6:0;8715:10;10131:23;10123:68;;;;-1:-1:-1;;;10123:68:0;;15332:2:1;10123:68:0;;;15314:21:1;;;15351:18;;;15344:30;-1:-1:-1;;;;;;;;;;;15390:18:1;;;15383:62;15462:18;;10123:68:0;15130:356:1;10123:68:0;52321:9:::1;:22:::0;52251:98::o;38865:124::-;38929:7;38956:20;38968:7;38956:11;:20::i;:::-;:25;;38865:124;-1:-1:-1;;38865:124:0:o;50374:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37606:221::-;37670:7;-1:-1:-1;;;;;37698:19:0;;37690:75;;;;-1:-1:-1;;;37690:75:0;;14513:2:1;37690:75:0;;;14495:21:1;14552:2;14532:18;;;14525:30;14591:34;14571:18;;;14564:62;14662:13;14642:18;;;14635:41;14693:19;;37690:75:0;14311:407:1;37690:75:0;-1:-1:-1;;;;;;37791:19:0;;;;;:12;:19;;;;;:27;;;;37606:221::o;10562:103::-;9984:6;;-1:-1:-1;;;;;9984:6:0;8715:10;10131:23;10123:68;;;;-1:-1:-1;;;10123:68:0;;15332:2:1;10123:68:0;;;15314:21:1;;;15351:18;;;15344:30;-1:-1:-1;;;;;;;;;;;15390:18:1;;;15383:62;15462:18;;10123:68:0;15130:356:1;10123:68:0;10627:30:::1;10654:1;10627:18;:30::i;:::-;10562:103::o:0;50930:389::-;50846:9;50859:10;50846:23;50838:66;;;;-1:-1:-1;;;50838:66:0;;13038:2:1;50838:66:0;;;13020:21:1;13077:2;13057:18;;;13050:30;13116:32;13096:18;;;13089:60;13166:18;;50838:66:0;12836:354:1;50838:66:0;50998:11:::1;::::0;::::1;;50990:53;;;::::0;-1:-1:-1;;;50990:53:0;;9219:2:1;50990:53:0::1;::::0;::::1;9201:21:1::0;9258:2;9238:18;;;9231:30;9297:31;9277:18;;;9270:59;9346:18;;50990:53:0::1;9017:353:1::0;50990:53:0::1;51081:9;;51074:3;51058:13;35480:7:::0;35507:12;;35427:100;51058:13:::1;:19;;;;:::i;:::-;:32;;51050:68;;;::::0;-1:-1:-1;;;51050:68:0;;16467:2:1;51050:68:0::1;::::0;::::1;16449:21:1::0;16506:2;16486:18;;;16479:30;16545:25;16525:18;;;16518:53;16588:18;;51050:68:0::1;16265:347:1::0;51050:68:0::1;51140:2;51133:3;:9;;51125:59;;;::::0;-1:-1:-1;;;51125:59:0;;21513:2:1;51125:59:0::1;::::0;::::1;21495:21:1::0;21552:2;21532:18;;;21525:30;21591:34;21571:18;;;21564:62;-1:-1:-1;;;21642:18:1;;;21635:35;21687:19;;51125:59:0::1;21311:401:1::0;51125:59:0::1;51233:16;;51226:3;51199:24;51212:10;51199:12;:24::i;:::-;:30;;;;:::i;:::-;:50;;51191:87;;;::::0;-1:-1:-1;;;51191:87:0;;10744:2:1;51191:87:0::1;::::0;::::1;10726:21:1::0;10783:2;10763:18;;;10756:30;10822:27;10802:18;;;10795:55;10867:18;;51191:87:0::1;10542:349:1::0;51191:87:0::1;51285:26;51295:10;51307:3;51285:9;:26::i;:::-;50930:389:::0;:::o;51959:85::-;9984:6;;-1:-1:-1;;;;;9984:6:0;8715:10;10131:23;10123:68;;;;-1:-1:-1;;;10123:68:0;;15332:2:1;10123:68:0;;;15314:21:1;;;15351:18;;;15344:30;-1:-1:-1;;;;;;;;;;;15390:18:1;;;15383:62;15462:18;;10123:68:0;15130:356:1;10123:68:0;52027:11:::1;::::0;;-1:-1:-1;;52012:26:0;::::1;52027:11;::::0;;::::1;52026:12;52012:26;::::0;;51959:85::o;52163:82::-;9984:6;;-1:-1:-1;;;;;9984:6:0;8715:10;10131:23;10123:68;;;;-1:-1:-1;;;10123:68:0;;15332:2:1;10123:68:0;;;15314:21:1;;;15351:18;;;15344:30;-1:-1:-1;;;;;;;;;;;15390:18:1;;;15383:62;15462:18;;10123:68:0;15130:356:1;10123:68:0;52225:5:::1;:14:::0;52163:82::o;53596:132::-;-1:-1:-1;;;;;;;;;;;;;;;;;53702:20:0;53714:7;53702:11;:20::i;39225:104::-;39281:13;39314:7;39307:14;;;;;:::i;51325:464::-;51391:5;;51411:10;51425:9;51411:23;51403:61;;;;-1:-1:-1;;;51403:61:0;;11098:2:1;51403:61:0;;;11080:21:1;11137:2;11117:18;;;11110:30;11176:28;11156:18;;;11149:56;11222:18;;51403:61:0;10896:350:1;51403:61:0;51492:10;51498:4;51492:3;:10;:::i;:::-;51479:9;:23;;51471:64;;;;-1:-1:-1;;;51471:64:0;;17223:2:1;51471:64:0;;;17205:21:1;17262:2;17242:18;;;17235:30;17301:31;17281:18;;;17274:59;17350:18;;51471:64:0;17021:353:1;51471:64:0;51572:9;;:13;;51584:1;51572:13;:::i;:::-;51566:3;51550:13;35480:7;35507:12;;35427:100;51550:13;:19;;;;:::i;:::-;:35;51542:82;;;;-1:-1:-1;;;51542:82:0;;8815:2:1;51542:82:0;;;8797:21:1;8854:2;8834:18;;;8827:30;8893:34;8873:18;;;8866:62;-1:-1:-1;;;8944:18:1;;;8937:33;8987:19;;51542:82:0;8613:399:1;51542:82:0;51639:11;;;;51631:59;;;;-1:-1:-1;;;51631:59:0;;16819:2:1;51631:59:0;;;16801:21:1;16858:2;16838:18;;;16831:30;16897:34;16877:18;;;16870:62;-1:-1:-1;;;16948:18:1;;;16941:33;16991:19;;51631:59:0;16617:399:1;51631:59:0;51712:8;;:12;;51723:1;51712:12;:::i;:::-;51706:3;:18;51697:51;;;;-1:-1:-1;;;51697:51:0;;19560:2:1;51697:51:0;;;19542:21:1;19599:2;19579:18;;;19572:30;19638:21;19618:18;;;19611:49;19677:18;;51697:51:0;19358:343:1;51697:51:0;51757:26;51767:10;51779:3;51757:9;:26::i;:::-;51372:417;51325:464;:::o;40904:288::-;-1:-1:-1;;;;;40999:24:0;;8715:10;40999:24;;40991:63;;;;-1:-1:-1;;;40991:63:0;;15693:2:1;40991:63:0;;;15675:21:1;15732:2;15712:18;;;15705:30;15771:28;15751:18;;;15744:56;15817:18;;40991:63:0;15491:350:1;40991:63:0;8715:10;41067:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41067:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41067:53:0;;;;;;;;;;41136:48;;7585:41:1;;;41067:42:0;;8715:10;41136:48;;7558:18:1;41136:48:0;;;;;;;40904:288;;:::o;41991:355::-;42150:28;42160:4;42166:2;42170:7;42150:9;:28::i;:::-;42211:48;42234:4;42240:2;42244:7;42253:5;42211:22;:48::i;:::-;42189:149;;;;-1:-1:-1;;;42189:149:0;;18329:2:1;42189:149:0;;;18311:21:1;18368:2;18348:18;;;18341:30;18407:34;18387:18;;;18380:62;-1:-1:-1;;;18458:18:1;;;18451:49;18517:19;;42189:149:0;18127:415:1;42189:149:0;41991:355;;;;:::o;52355:94::-;9984:6;;-1:-1:-1;;;;;9984:6:0;8715:10;10131:23;10123:68;;;;-1:-1:-1;;;10123:68:0;;15332:2:1;10123:68:0;;;15314:21:1;;;15351:18;;;15344:30;-1:-1:-1;;;;;;;;;;;15390:18:1;;;15383:62;15462:18;;10123:68:0;15130:356:1;10123:68:0;52423:8:::1;:20:::0;52355:94::o;52927:357::-;53045:13;53084:16;53092:7;42658:4;42692:12;-1:-1:-1;42682:22:0;42601:111;53084:16;53076:48;;;;-1:-1:-1;;;53076:48:0;;8466:2:1;53076:48:0;;;8448:21:1;8505:2;8485:18;;;8478:30;8544:22;8524:18;;;8517:50;8584:18;;53076:48:0;8264:344:1;53076:48:0;53178:7;53229:25;53246:7;53229:16;:25::i;:::-;53149:126;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53135:141;;52927:357;;;:::o;52050:107::-;52108:7;52131:20;52145:5;52131:13;:20::i;52455:122::-;9984:6;;-1:-1:-1;;;;;9984:6:0;8715:10;10131:23;10123:68;;;;-1:-1:-1;;;10123:68:0;;15332:2:1;10123:68:0;;;15314:21:1;;;15351:18;;;15344:30;-1:-1:-1;;;;;;;;;;;15390:18:1;;;15383:62;15462:18;;10123:68:0;15130:356:1;10123:68:0;52535:16:::1;:36:::0;52455:122::o;52781:138::-;52825:13;52880:7;52863:49;;;;;;;;:::i;:::-;;;;;;;;;;;;;52849:64;;52781:138;:::o;51795:158::-;9984:6;;-1:-1:-1;;;;;9984:6:0;8715:10;10131:23;10123:68;;;;-1:-1:-1;;;10123:68:0;;15332:2:1;10123:68:0;;;15314:21:1;;;15351:18;;;15344:30;-1:-1:-1;;;;;;;;;;;15390:18:1;;;15383:62;15462:18;;10123:68:0;15130:356:1;10123:68:0;51886:9:::1;::::0;:13:::1;::::0;51898:1:::1;51886:13;:::i;:::-;51880:3;51864:13;35480:7:::0;35507:12;;35427:100;51864:13:::1;:19;;;;:::i;:::-;:35;51856:56;;;::::0;-1:-1:-1;;;51856:56:0;;13397:2:1;51856:56:0::1;::::0;::::1;13379:21:1::0;13436:1;13416:18;;;13409:29;-1:-1:-1;;;13454:18:1;;;13447:39;13503:18;;51856:56:0::1;13195:332:1::0;10820:201:0;9984:6;;-1:-1:-1;;;;;9984:6:0;8715:10;10131:23;10123:68;;;;-1:-1:-1;;;10123:68:0;;15332:2:1;10123:68:0;;;15314:21:1;;;15351:18;;;15344:30;-1:-1:-1;;;;;;;;;;;15390:18:1;;;15383:62;15462:18;;10123:68:0;15130:356:1;10123:68:0;-1:-1:-1;;;;;10909:22:0;::::1;10901:73;;;::::0;-1:-1:-1;;;10901:73:0;;9577:2:1;10901:73:0::1;::::0;::::1;9559:21:1::0;9616:2;9596:18;;;9589:30;9655:34;9635:18;;;9628:62;-1:-1:-1;;;9706:18:1;;;9699:36;9752:19;;10901:73:0::1;9375:402:1::0;10901:73:0::1;10985:28;11004:8;10985:18;:28::i;47521:196::-:0;47636:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;47636:29:0;-1:-1:-1;;;;;47636:29:0;;;;;;;;;47681:28;;47636:24;;47681:28;;;;;;;47521:196;;;:::o;45401:2002::-;45516:35;45554:20;45566:7;45554:11;:20::i;:::-;45629:18;;45516:58;;-1:-1:-1;45587:22:0;;-1:-1:-1;;;;;45613:34:0;8715:10;-1:-1:-1;;;;;45613:34:0;;:87;;;-1:-1:-1;8715:10:0;45664:20;45676:7;45664:11;:20::i;:::-;-1:-1:-1;;;;;45664:36:0;;45613:87;:154;;;-1:-1:-1;45734:18:0;;45717:50;;8715:10;41263:164;:::i;45717:50::-;45587:181;;45789:17;45781:80;;;;-1:-1:-1;;;45781:80:0;;16048:2:1;45781:80:0;;;16030:21:1;16087:2;16067:18;;;16060:30;16126:34;16106:18;;;16099:62;16197:20;16177:18;;;16170:48;16235:19;;45781:80:0;15846:414:1;45781:80:0;45904:4;-1:-1:-1;;;;;45882:26:0;:13;:18;;;-1:-1:-1;;;;;45882:26:0;;45874:77;;;;-1:-1:-1;;;45874:77:0;;14925:2:1;45874:77:0;;;14907:21:1;14964:2;14944:18;;;14937:30;15003:34;14983:18;;;14976:62;-1:-1:-1;;;15054:18:1;;;15047:36;15100:19;;45874:77:0;14723:402:1;45874:77:0;-1:-1:-1;;;;;45970:16:0;;45962:66;;;;-1:-1:-1;;;45962:66:0;;11857:2:1;45962:66:0;;;11839:21:1;11896:2;11876:18;;;11869:30;11935:34;11915:18;;;11908:62;-1:-1:-1;;;11986:18:1;;;11979:35;12031:19;;45962:66:0;11655:401:1;45962:66:0;46149:49;46166:1;46170:7;46179:13;:18;;;46149:8;:49::i;:::-;-1:-1:-1;;;;;46494:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;46494:31:0;;;;;;;-1:-1:-1;;46494:31:0;;;;;;;46540:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46540:29:0;;;;;;;;;;;;;46586:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;46631:61:0;;;;-1:-1:-1;;;46676:15:0;46631:61;;;;;;46966:11;;;46996:24;;;;;:29;46966:11;;46996:29;46992:295;;47064:20;47072:11;42658:4;42692:12;-1:-1:-1;42682:22:0;42601:111;47064:20;47060:212;;;47141:18;;;47109:24;;;:11;:24;;;;;;;;:50;;47224:28;;;;47182:70;;-1:-1:-1;;;47182:70:0;-1:-1:-1;;;;;;47182:70:0;;;-1:-1:-1;;;;;47109:50:0;;;47182:70;;;;;;;47060:212;46469:829;47334:7;47330:2;-1:-1:-1;;;;;47315:27:0;47324:4;-1:-1:-1;;;;;47315:27:0;;;;;;;;;;;47353:42;45505:1898;;45401:2002;;;:::o;53836:1130::-;53908:13;53900:50;;;;-1:-1:-1;;;53900:50:0;;14160:2:1;53900:50:0;;;14142:21:1;14199:2;14179:18;;;14172:30;14238:26;14218:18;;;14211:54;14282:18;;53900:50:0;13958:348:1;53900:50:0;53967:12;;53959:50;;;;-1:-1:-1;;;53959:50:0;;10395:2:1;53959:50:0;;;10377:21:1;10434:2;10414:18;;;10407:30;10473:22;10453:18;;;10446:50;10513:18;;53959:50:0;10193:344:1;53959:50:0;54054:24;;54018:33;54123:12;54095:40;;54087:81;;;;-1:-1:-1;;;54087:81:0;;12681:2:1;54087:81:0;;;12663:21:1;12720:2;12700:18;;;12693:30;12759;12739:18;;;12732:58;12807:18;;54087:81:0;12479:352:1;54087:81:0;54306:16;54458:12;54325:36;;;-1:-1:-1;;54325:40:0;;;-1:-1:-1;54439:91:0;;;-1:-1:-1;54500:12:0;;-1:-1:-1;;54500:16:0;54439:91;54561:25;54544:354;54593:8;54588:1;:13;54544:354;;54660:1;54629:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;54629:19:0;54625:260;;54685:31;54719:14;54731:1;54719:11;:14::i;:::-;54776;;;54754;;;:11;:14;;;;;;;;:36;;54843:24;;;;;54811:56;;-1:-1:-1;;;54811:56:0;-1:-1:-1;;;;;;54811:56:0;;;-1:-1:-1;;;;;54754:36:0;;;54811:56;;;;;;;-1:-1:-1;54625:260:0;54603:3;;54544:354;;;-1:-1:-1;54950:1:0;54939:12;54912:24;:39;-1:-1:-1;;53836:1130:0:o;38266:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;38369:16:0;38377:7;42658:4;42692:12;-1:-1:-1;42682:22:0;42601:111;38369:16;38361:71;;;;-1:-1:-1;;;38361:71:0;;9984:2:1;38361:71:0;;;9966:21:1;10023:2;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;-1:-1:-1;;;10113:18:1;;;10106:40;10163:19;;38361:71:0;9782:406:1;38361:71:0;38490:7;38470:245;38537:31;38571:17;;;:11;:17;;;;;;;;;38537:51;;;;;;;;;-1:-1:-1;;;;;38537:51:0;;;;;-1:-1:-1;;;38537:51:0;;;;;;;;;;;;38611:28;38607:93;;38671:9;38266:537;-1:-1:-1;;;38266:537:0:o;38607:93::-;-1:-1:-1;;;38510:6:0;38470:245;;11181:191;11274:6;;;-1:-1:-1;;;;;11291:17:0;;;-1:-1:-1;;11291:17:0;;;;;;;11324:40;;11274:6;;;11291:17;11274:6;;11324:40;;11255:16;;11324:40;11244:128;11181:191;:::o;42720:104::-;42789:27;42799:2;42803:8;42789:27;;;;;;;;;;;;:9;:27::i;48282:804::-;48437:4;-1:-1:-1;;;;;48458:13:0;;12907:19;:23;48454:625;;48494:72;;-1:-1:-1;;;48494:72:0;;-1:-1:-1;;;;;48494:36:0;;;;;:72;;8715:10;;48545:4;;48551:7;;48560:5;;48494:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48494:72:0;;;;;;;;-1:-1:-1;;48494:72:0;;;;;;;;;;;;:::i;:::-;;;48490:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48740:13:0;;48736:273;;48783:61;;-1:-1:-1;;;48783:61:0;;18329:2:1;48783:61:0;;;18311:21:1;18368:2;18348:18;;;18341:30;18407:34;18387:18;;;18380:62;-1:-1:-1;;;18458:18:1;;;18451:49;18517:19;;48783:61:0;18127:415:1;48736:273:0;48959:6;48953:13;48944:6;48940:2;48936:15;48929:38;48490:534;-1:-1:-1;;;;;;48617:55:0;-1:-1:-1;;;48617:55:0;;-1:-1:-1;48610:62:0;;48454:625;-1:-1:-1;49063:4:0;48454:625;48282:804;;;;;;:::o;6197:723::-;6253:13;6474:10;6470:53;;-1:-1:-1;;6501:10:0;;;;;;;;;;;;-1:-1:-1;;;6501:10:0;;;;;6197:723::o;6470:53::-;6548:5;6533:12;6589:78;6596:9;;6589:78;;6622:8;;;;:::i;:::-;;-1:-1:-1;6645:10:0;;-1:-1:-1;6653:2:0;6645:10;;:::i;:::-;;;6589:78;;;6677:19;6709:6;6699:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6699:17:0;;6677:39;;6727:154;6734:10;;6727:154;;6761:11;6771:1;6761:11;;:::i;:::-;;-1:-1:-1;6830:10:0;6838:2;6830:5;:10;:::i;:::-;6817:24;;:2;:24;:::i;:::-;6804:39;;6787:6;6794;6787:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;6858:11:0;6867:2;6858:11;;:::i;:::-;;;6727:154;;37835:229;37896:7;-1:-1:-1;;;;;37924:19:0;;37916:81;;;;-1:-1:-1;;;37916:81:0;;12263:2:1;37916:81:0;;;12245:21:1;12302:2;12282:18;;;12275:30;12341:34;12321:18;;;12314:62;12412:19;12392:18;;;12385:47;12449:19;;37916:81:0;12061:413:1;37916:81:0;-1:-1:-1;;;;;;38023:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;38023:32:0;;;;;37835:229::o;43187:163::-;43310:32;43316:2;43320:8;43330:5;43337:4;43748:20;43771:12;-1:-1:-1;;;;;43802:16:0;;43794:62;;;;-1:-1:-1;;;43794:62:0;;18749:2:1;43794:62:0;;;18731:21:1;18788:2;18768:18;;;18761:30;18827:34;18807:18;;;18800:62;-1:-1:-1;;;18878:18:1;;;18871:31;18919:19;;43794:62:0;18547:397:1;43794:62:0;43875:13;43867:66;;;;-1:-1:-1;;;43867:66:0;;19151:2:1;43867:66:0;;;19133:21:1;19190:2;19170:18;;;19163:30;19229:34;19209:18;;;19202:62;-1:-1:-1;;;19280:18:1;;;19273:38;19328:19;;43867:66:0;18949:404:1;43867:66:0;-1:-1:-1;;;;;44285:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;44285:45:0;;;;;;;;;;;;;44345:50;;;;;;;;;;;;;;44412:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44462:66:0;;;;-1:-1:-1;;;44512:15:0;44462:66;;;;;;;44412:25;;44597:415;44617:8;44613:1;:12;44597:415;;;44656:38;;44681:12;;-1:-1:-1;;;;;44656:38:0;;;44673:1;;44656:38;;44673:1;;44656:38;44717:4;44713:249;;;44780:59;44811:1;44815:2;44819:12;44833:5;44780:22;:59::i;:::-;44746:196;;;;-1:-1:-1;;;44746:196:0;;18329:2:1;44746:196:0;;;18311:21:1;18368:2;18348:18;;;18341:30;18407:34;18387:18;;;18380:62;-1:-1:-1;;;18458:18:1;;;18451:49;18517:19;;44746:196:0;18127:415:1;44746:196:0;44982:14;;;;;44627:3;44597:415;;;-1:-1:-1;45028:12:0;:27;45079:60;41991:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;:::-;356:39;215:186;-1:-1:-1;;;215:186:1:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:52;;;551:1;548;541:12;503:52;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;406:260;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:52;;;833:1;830;823:12;785:52;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;671:328;;;;;:::o;1004:1138::-;1099:6;1107;1115;1123;1176:3;1164:9;1155:7;1151:23;1147:33;1144:53;;;1193:1;1190;1183:12;1144:53;1216:29;1235:9;1216:29;:::i;:::-;1206:39;;1264:38;1298:2;1287:9;1283:18;1264:38;:::i;:::-;1254:48;;1349:2;1338:9;1334:18;1321:32;1311:42;;1404:2;1393:9;1389:18;1376:32;1427:18;1468:2;1460:6;1457:14;1454:34;;;1484:1;1481;1474:12;1454:34;1522:6;1511:9;1507:22;1497:32;;1567:7;1560:4;1556:2;1552:13;1548:27;1538:55;;1589:1;1586;1579:12;1538:55;1625:2;1612:16;1647:2;1643;1640:10;1637:36;;;1653:18;;:::i;:::-;1728:2;1722:9;1696:2;1782:13;;-1:-1:-1;;1778:22:1;;;1802:2;1774:31;1770:40;1758:53;;;1826:18;;;1846:22;;;1823:46;1820:72;;;1872:18;;:::i;:::-;1912:10;1908:2;1901:22;1947:2;1939:6;1932:18;1987:7;1982:2;1977;1973;1969:11;1965:20;1962:33;1959:53;;;2008:1;2005;1998:12;1959:53;2064:2;2059;2055;2051:11;2046:2;2038:6;2034:15;2021:46;2109:1;2104:2;2099;2091:6;2087:15;2083:24;2076:35;2130:6;2120:16;;;;;;;1004:1138;;;;;;;:::o;2147:347::-;2212:6;2220;2273:2;2261:9;2252:7;2248:23;2244:32;2241:52;;;2289:1;2286;2279:12;2241:52;2312:29;2331:9;2312:29;:::i;:::-;2302:39;;2391:2;2380:9;2376:18;2363:32;2438:5;2431:13;2424:21;2417:5;2414:32;2404:60;;2460:1;2457;2450:12;2404:60;2483:5;2473:15;;;2147:347;;;;;:::o;2499:254::-;2567:6;2575;2628:2;2616:9;2607:7;2603:23;2599:32;2596:52;;;2644:1;2641;2634:12;2596:52;2667:29;2686:9;2667:29;:::i;:::-;2657:39;2743:2;2728:18;;;;2715:32;;-1:-1:-1;;;2499:254:1:o;2758:245::-;2816:6;2869:2;2857:9;2848:7;2844:23;2840:32;2837:52;;;2885:1;2882;2875:12;2837:52;2924:9;2911:23;2943:30;2967:5;2943:30;:::i;3008:249::-;3077:6;3130:2;3118:9;3109:7;3105:23;3101:32;3098:52;;;3146:1;3143;3136:12;3098:52;3178:9;3172:16;3197:30;3221:5;3197:30;:::i;3262:592::-;3333:6;3341;3394:2;3382:9;3373:7;3369:23;3365:32;3362:52;;;3410:1;3407;3400:12;3362:52;3450:9;3437:23;3479:18;3520:2;3512:6;3509:14;3506:34;;;3536:1;3533;3526:12;3506:34;3574:6;3563:9;3559:22;3549:32;;3619:7;3612:4;3608:2;3604:13;3600:27;3590:55;;3641:1;3638;3631:12;3590:55;3681:2;3668:16;3707:2;3699:6;3696:14;3693:34;;;3723:1;3720;3713:12;3693:34;3768:7;3763:2;3754:6;3750:2;3746:15;3742:24;3739:37;3736:57;;;3789:1;3786;3779:12;3736:57;3820:2;3812:11;;;;;3842:6;;-1:-1:-1;3262:592:1;;-1:-1:-1;;;;3262:592:1:o;3859:180::-;3918:6;3971:2;3959:9;3950:7;3946:23;3942:32;3939:52;;;3987:1;3984;3977:12;3939:52;-1:-1:-1;4010:23:1;;3859:180;-1:-1:-1;3859:180:1:o;4044:257::-;4085:3;4123:5;4117:12;4150:6;4145:3;4138:19;4166:63;4222:6;4215:4;4210:3;4206:14;4199:4;4192:5;4188:16;4166:63;:::i;:::-;4283:2;4262:15;-1:-1:-1;;4258:29:1;4249:39;;;;4290:4;4245:50;;4044:257;-1:-1:-1;;4044:257:1:o;4306:973::-;4391:12;;4356:3;;4446:1;4466:18;;;;4519;;;;4546:61;;4600:4;4592:6;4588:17;4578:27;;4546:61;4626:2;4674;4666:6;4663:14;4643:18;4640:38;4637:161;;;4720:10;4715:3;4711:20;4708:1;4701:31;4755:4;4752:1;4745:15;4783:4;4780:1;4773:15;4637:161;4814:18;4841:104;;;;4959:1;4954:319;;;;4807:466;;4841:104;-1:-1:-1;;4874:24:1;;4862:37;;4919:16;;;;-1:-1:-1;4841:104:1;;4954:319;22362:1;22355:14;;;22399:4;22386:18;;5048:1;5062:165;5076:6;5073:1;5070:13;5062:165;;;5154:14;;5141:11;;;5134:35;5197:16;;;;5091:10;;5062:165;;;5066:3;;5256:6;5251:3;5247:16;5240:23;;4807:466;;;;;;;4306:973;;;;:::o;5284:822::-;5763:3;5791:38;5825:3;5817:6;5791:38;:::i;:::-;-1:-1:-1;;;5845:2:1;5838:21;-1:-1:-1;;;5883:1:1;5879:2;5875:10;5868:28;5925:6;5919:13;5941:61;5995:6;5990:2;5986;5982:11;5975:4;5967:6;5963:17;5941:61;:::i;:::-;-1:-1:-1;;;6060:2:1;6021:15;;;;6052:11;;;6045:28;6097:2;6089:11;;5284:822;-1:-1:-1;;;;5284:822:1:o;6111:372::-;6340:3;6368:38;6402:3;6394:6;6368:38;:::i;:::-;6426:23;6415:35;;6474:2;6466:11;;6111:372;-1:-1:-1;;;6111:372:1:o;6929:511::-;7123:4;-1:-1:-1;;;;;7233:2:1;7225:6;7221:15;7210:9;7203:34;7285:2;7277:6;7273:15;7268:2;7257:9;7253:18;7246:43;;7325:6;7320:2;7309:9;7305:18;7298:34;7368:3;7363:2;7352:9;7348:18;7341:31;7389:45;7429:3;7418:9;7414:19;7406:6;7389:45;:::i;:::-;7381:53;6929:511;-1:-1:-1;;;;;;6929:511:1:o;7637:219::-;7786:2;7775:9;7768:21;7749:4;7806:44;7846:2;7835:9;7831:18;7823:6;7806:44;:::i;22415:128::-;22455:3;22486:1;22482:6;22479:1;22476:13;22473:39;;;22492:18;;:::i;:::-;-1:-1:-1;22528:9:1;;22415:128::o;22548:120::-;22588:1;22614;22604:35;;22619:18;;:::i;:::-;-1:-1:-1;22653:9:1;;22548:120::o;22673:168::-;22713:7;22779:1;22775;22771:6;22767:14;22764:1;22761:21;22756:1;22749:9;22742:17;22738:45;22735:71;;;22786:18;;:::i;:::-;-1:-1:-1;22826:9:1;;22673:168::o;22846:125::-;22886:4;22914:1;22911;22908:8;22905:34;;;22919:18;;:::i;:::-;-1:-1:-1;22956:9:1;;22846:125::o;22976:258::-;23048:1;23058:113;23072:6;23069:1;23066:13;23058:113;;;23148:11;;;23142:18;23129:11;;;23122:39;23094:2;23087:10;23058:113;;;23189:6;23186:1;23183:13;23180:48;;;-1:-1:-1;;23224:1:1;23206:16;;23199:27;22976:258::o;23239:380::-;23318:1;23314:12;;;;23361;;;23382:61;;23436:4;23428:6;23424:17;23414:27;;23382:61;23489:2;23481:6;23478:14;23458:18;23455:38;23452:161;;;23535:10;23530:3;23526:20;23523:1;23516:31;23570:4;23567:1;23560:15;23598:4;23595:1;23588:15;23452:161;;23239:380;;;:::o;23624:135::-;23663:3;-1:-1:-1;;23684:17:1;;23681:43;;;23704:18;;:::i;:::-;-1:-1:-1;23751:1:1;23740:13;;23624:135::o;23764:112::-;23796:1;23822;23812:35;;23827:18;;:::i;:::-;-1:-1:-1;23861:9:1;;23764:112::o;23881:127::-;23942:10;23937:3;23933:20;23930:1;23923:31;23973:4;23970:1;23963:15;23997:4;23994:1;23987:15;24013:127;24074:10;24069:3;24065:20;24062:1;24055:31;24105:4;24102:1;24095:15;24129:4;24126:1;24119:15;24145:127;24206:10;24201:3;24197:20;24194:1;24187:31;24237:4;24234:1;24227:15;24261:4;24258:1;24251:15;24277:127;24338:10;24333:3;24329:20;24326:1;24319:31;24369:4;24366:1;24359:15;24393:4;24390:1;24383:15;24409:131;-1:-1:-1;;;;;;24483:32:1;;24473:43;;24463:71;;24530:1;24527;24520:12
Swarm Source
ipfs://307a7b34efd8ee641cc31248bfbd15fd7270ce5ecdc380804c4b0e88bf7a7ea2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.