ERC-721
Overview
Max Total Supply
5,500 DTD
Holders
504
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 DTDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DenzelTheDuck
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-26 */ // SPDX-License-Identifier: MIT // 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/DenzelTheDuck.sol 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 DenzelTheDuck is ERC721A, Ownable, ReentrancyGuard { string public baseURI; uint public price = 0.02 ether; uint public maxPerTx = 20; uint public maxPerWallet = 50; uint public totalFree = 500; uint public maxSupply = 5500; uint public nextOwnerToExplicitlySet; bool public mintEnabled; constructor() ERC721A("DenzelTheDuck", "DTD"){} modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function freeMint(uint256 amt) external callerIsUser { require(mintEnabled, "Public sale has not started"); require(totalSupply() + amt <= totalFree, "Max free Denzel"); require(amt <= 10, "Can not mint this many free at a time"); require(numberMinted(msg.sender) + amt <= maxPerWallet,"Too many per wallet!"); _safeMint(msg.sender, amt); } function mint(uint256 amt) external payable { uint cost = price; require(msg.sender == tx.origin,"Be yourself, anon."); require(msg.value >= amt * cost,"Please send the exact amount."); require(totalSupply() + amt < maxSupply + 1,"No more Denzel The Ducks..."); require(mintEnabled, "Minting is not live yet"); require( amt < maxPerTx + 1, "Max per TX reached."); _safeMint(msg.sender, amt); } function ownerBatchMint(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 setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } 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 maxPerWallet_) external onlyOwner { maxPerWallet = maxPerWallet_; } function setmaxSupply(uint256 maxSupply_) external onlyOwner { maxSupply = maxSupply_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } 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":[{"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"ownerBatchMint","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":"baseURI_","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":"maxPerWallet_","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
608060405266470de4df820000600a556014600b556032600c556101f4600d5561157c600e553480156200003257600080fd5b50604080518082018252600d81526c44656e7a656c5468654475636b60981b60208083019182528351808501909452600384526211151160ea1b908401528151919291620000839160019162000117565b5080516200009990600290602084019062000117565b505050620000b6620000b0620000c160201b60201c565b620000c5565b6001600855620001fa565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012590620001bd565b90600052602060002090601f01602090048101928262000149576000855562000194565b82601f106200016457805160ff191683800117855562000194565b8280016001018555821562000194579182015b828111156200019457825182559160200191906001019062000177565b50620001a2929150620001a6565b5090565b5b80821115620001a25760008155600101620001a7565b600181811c90821680620001d257607f821691505b60208210811415620001f457634e487b7160e01b600052602260045260246000fd5b50919050565b612cc1806200020a6000396000f3fe6080604052600436106102c65760003560e01c80637c928fe911610179578063b88d4fde116100d6578063d7224ba01161008a578063e985e9c511610064578063e985e9c51461076b578063f2fde38b146107b4578063f968adbe146107d457600080fd5b8063d7224ba014610715578063dc33e6811461072b578063e268e4d31461074b57600080fd5b8063c87b56dd116100bb578063c87b56dd146106c5578063d1239730146106e5578063d5abeb01146106ff57600080fd5b8063b88d4fde14610685578063c6f6f216146106a557600080fd5b80639231ab2a1161012d578063a035b1fe11610112578063a035b1fe1461063c578063a0712d6814610652578063a22cb4651461066557600080fd5b80639231ab2a146105d957806395d89b411461062757600080fd5b80638da5cb5b1161015e5780638da5cb5b1461057b5780638db89f071461059957806391b7f5ed146105b957600080fd5b80637c928fe9146105465780637d55094d1461056657600080fd5b80633ccfd60b11610227578063563aaf11116101db5780636c0360eb116101c05780636c0360eb146104fc57806370a0823114610511578063715018a61461053157600080fd5b8063563aaf11146104bc5780636352211e146104dc57600080fd5b8063453c23101161020c578063453c2310146104665780634f6ccce71461047c57806355f804b31461049c57600080fd5b80633ccfd60b1461043157806342842e0e1461044657600080fd5b8063228025e81161027e5780632d20fb60116102635780632d20fb60146103db5780632f745c59146103fb578063333e44e61461041b57600080fd5b8063228025e81461039b57806323b872dd146103bb57600080fd5b8063081812fc116102af578063081812fc14610322578063095ea7b31461035a57806318160ddd1461037c57600080fd5b806301ffc9a7146102cb57806306fdde0314610300575b600080fd5b3480156102d757600080fd5b506102eb6102e6366004612996565b6107ea565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b506103156108bb565b6040516102f79190612af2565b34801561032e57600080fd5b5061034261033d366004612a42565b61094d565b6040516001600160a01b0390911681526020016102f7565b34801561036657600080fd5b5061037a61037536600461296c565b6109ed565b005b34801561038857600080fd5b506000545b6040519081526020016102f7565b3480156103a757600080fd5b5061037a6103b6366004612a42565b610b20565b3480156103c757600080fd5b5061037a6103d6366004612818565b610b6d565b3480156103e757600080fd5b5061037a6103f6366004612a42565b610b78565b34801561040757600080fd5b5061038d61041636600461296c565b610c29565b34801561042757600080fd5b5061038d600d5481565b34801561043d57600080fd5b5061037a610db0565b34801561045257600080fd5b5061037a610461366004612818565b610ee8565b34801561047257600080fd5b5061038d600c5481565b34801561048857600080fd5b5061038d610497366004612a42565b610f03565b3480156104a857600080fd5b5061037a6104b73660046129d0565b610f7f565b3480156104c857600080fd5b5061037a6104d7366004612a42565b610fd3565b3480156104e857600080fd5b506103426104f7366004612a42565b611020565b34801561050857600080fd5b50610315611032565b34801561051d57600080fd5b5061038d61052c3660046127ca565b6110c0565b34801561053d57600080fd5b5061037a61116c565b34801561055257600080fd5b5061037a610561366004612a42565b6111c0565b34801561057257600080fd5b5061037a6113af565b34801561058757600080fd5b506007546001600160a01b0316610342565b3480156105a557600080fd5b5061037a6105b4366004612a42565b61140b565b3480156105c557600080fd5b5061037a6105d4366004612a42565b6114c2565b3480156105e557600080fd5b506105f96105f4366004612a42565b61150f565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016102f7565b34801561063357600080fd5b5061031561152c565b34801561064857600080fd5b5061038d600a5481565b61037a610660366004612a42565b61153b565b34801561067157600080fd5b5061037a610680366004612930565b611711565b34801561069157600080fd5b5061037a6106a0366004612854565b6117d6565b3480156106b157600080fd5b5061037a6106c0366004612a42565b611865565b3480156106d157600080fd5b506103156106e0366004612a42565b6118b2565b3480156106f157600080fd5b506010546102eb9060ff1681565b34801561070b57600080fd5b5061038d600e5481565b34801561072157600080fd5b5061038d600f5481565b34801561073757600080fd5b5061038d6107463660046127ca565b61198e565b34801561075757600080fd5b5061037a610766366004612a42565b611999565b34801561077757600080fd5b506102eb6107863660046127e5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107c057600080fd5b5061037a6107cf3660046127ca565b6119e6565b3480156107e057600080fd5b5061038d600b5481565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061084d57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061088157506001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000145b806108b557507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600180546108ca90612b93565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690612b93565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b5050505050905090565b600061095a826000541190565b6109d15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109f882611020565b9050806001600160a01b0316836001600160a01b03161415610a825760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f657200000000000000000000000000000000000000000000000000000000000060648201526084016109c8565b336001600160a01b0382161480610a9e5750610a9e8133610786565b610b105760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109c8565b610b1b838383611ab3565b505050565b6007546001600160a01b03163314610b685760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b600e55565b610b1b838383611b1c565b6007546001600160a01b03163314610bc05760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b60026008541415610c135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109c8565b6002600855610c2181611e4d565b506001600855565b6000610c34836110c0565b8210610ca85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016109c8565b600080549080805b83811015610d41576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d0357805192505b876001600160a01b0316836001600160a01b03161415610d385786841415610d31575093506108b592505050565b6001909301925b50600101610cb0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e64657800000000000000000000000000000000000060648201526084016109c8565b6007546001600160a01b03163314610df85760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b60026008541415610e4b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109c8565b6002600855604051600090339047908381818185875af1925050503d8060008114610e92576040519150601f19603f3d011682016040523d82523d6000602084013e610e97565b606091505b5050905080610c215760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016109c8565b610b1b838383604051806020016040528060008152506117d6565b600080548210610f7b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e6473000000000000000000000000000000000000000000000000000000000060648201526084016109c8565b5090565b6007546001600160a01b03163314610fc75760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b610b1b6009838361271e565b6007546001600160a01b0316331461101b5760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b600d55565b600061102b82611fe5565b5192915050565b6009805461103f90612b93565b80601f016020809104026020016040519081016040528092919081815260200182805461106b90612b93565b80156110b85780601f1061108d576101008083540402835291602001916110b8565b820191906000526020600020905b81548152906001019060200180831161109b57829003601f168201915b505050505081565b60006001600160a01b03821661113e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084016109c8565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6007546001600160a01b031633146111b45760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b6111be60006120cf565b565b32331461120f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109c8565b60105460ff166112615760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f742073746172746564000000000060448201526064016109c8565b600d548161126e60005490565b6112789190612b05565b11156112c65760405162461bcd60e51b815260206004820152600f60248201527f4d617820667265652044656e7a656c000000000000000000000000000000000060448201526064016109c8565b600a81111561133d5760405162461bcd60e51b815260206004820152602560248201527f43616e206e6f74206d696e742074686973206d616e792066726565206174206160448201527f2074696d6500000000000000000000000000000000000000000000000000000060648201526084016109c8565b600c548161134a3361198e565b6113549190612b05565b11156113a25760405162461bcd60e51b815260206004820152601460248201527f546f6f206d616e79207065722077616c6c65742100000000000000000000000060448201526064016109c8565b6113ac338261212e565b50565b6007546001600160a01b031633146113f75760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b6010805460ff19811660ff90911615179055565b6007546001600160a01b031633146114535760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b600e54611461906001612b05565b8161146b60005490565b6114759190612b05565b106113a25760405162461bcd60e51b815260206004820152600960248201527f746f6f206d616e7921000000000000000000000000000000000000000000000060448201526064016109c8565b6007546001600160a01b0316331461150a5760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b600a55565b60408051808201909152600080825260208201526108b582611fe5565b6060600280546108ca90612b93565b600a5433321461158d5760405162461bcd60e51b815260206004820152601260248201527f426520796f757273656c662c20616e6f6e2e000000000000000000000000000060448201526064016109c8565b6115978183612b31565b3410156115e65760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016109c8565b600e546115f4906001612b05565b826115fe60005490565b6116089190612b05565b106116555760405162461bcd60e51b815260206004820152601b60248201527f4e6f206d6f72652044656e7a656c20546865204475636b732e2e2e000000000060448201526064016109c8565b60105460ff166116a75760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206973206e6f74206c6976652079657400000000000000000060448201526064016109c8565b600b546116b5906001612b05565b82106117035760405162461bcd60e51b815260206004820152601360248201527f4d61782070657220545820726561636865642e0000000000000000000000000060448201526064016109c8565b61170d338361212e565b5050565b6001600160a01b03821633141561176a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109c8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117e1848484611b1c565b6117ed84848484612148565b61185f5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016109c8565b50505050565b6007546001600160a01b031633146118ad5760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b600b55565b60606118bf826000541190565b6119315760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109c8565b600061193b6122ac565b905080516000141561195c5760405180602001604052806000815250611987565b80611966846122bb565b604051602001611977929190612a87565b6040516020818303038152906040525b9392505050565b60006108b5826123ed565b6007546001600160a01b031633146119e15760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b600c55565b6007546001600160a01b03163314611a2e5760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b6001600160a01b038116611aaa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109c8565b6113ac816120cf565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b2782611fe5565b80519091506000906001600160a01b0316336001600160a01b03161480611b5e575033611b538461094d565b6001600160a01b0316145b80611b7057508151611b709033610786565b905080611be55760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016109c8565b846001600160a01b031682600001516001600160a01b031614611c705760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e6572000000000000000000000000000000000000000000000000000060648201526084016109c8565b6001600160a01b038416611cec5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109c8565b611cfc6000848460000151611ab3565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611e0357611db6816000541190565b15611e03578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80611e9a5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016109c8565b600054611ee95760405162461bcd60e51b815260206004820152601460248201527f6e6f20746f6b656e73206d696e7465642079657400000000000000000000000060448201526064016109c8565b600f546000548110611f3d5760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e207365740000000060448201526064016109c8565b6000548282016000198101911015611f585750600054600019015b815b818111611fda576000818152600360205260409020546001600160a01b0316611fd2576000611f8882611fe5565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611f5a565b50600101600f555050565b6040805180820190915260008082526020820152612004826000541190565b6120765760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e0000000000000000000000000000000000000000000060648201526084016109c8565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156120c5579392505050565b5060001901612078565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61170d8282604051806020016040528060008152506124ad565b60006001600160a01b0384163b156122a057604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061218c903390899088908890600401612ab6565b602060405180830381600087803b1580156121a657600080fd5b505af19250505080156121d6575060408051601f3d908101601f191682019092526121d3918101906129b3565b60015b612286573d808015612204576040519150601f19603f3d011682016040523d82523d6000602084013e612209565b606091505b50805161227e5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016109c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122a4565b5060015b949350505050565b6060600980546108ca90612b93565b6060816122fb57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612325578061230f81612bce565b915061231e9050600a83612b1d565b91506122ff565b60008167ffffffffffffffff81111561234057612340612c3f565b6040519080825280601f01601f19166020018201604052801561236a576020820181803683370190505b5090505b84156122a45761237f600183612b50565b915061238c600a86612be9565b612397906030612b05565b60f81b8183815181106123ac576123ac612c29565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506123e6600a86612b1d565b945061236e565b60006001600160a01b03821661246b5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f206164647265737300000000000000000000000000000060648201526084016109c8565b506001600160a01b031660009081526004602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b610b1b83838360016000546001600160a01b0385166125345760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016109c8565b836125a75760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e203000000000000000000000000000000000000000000000000060648201526084016109c8565b6001600160a01b038516600081815260046020908152604080832080547001000000000000000000000000000000006fffffffffffffffffffffffffffffffff1982166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156127155760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612709576126976000888488612148565b6127095760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016109c8565b60019182019101612644565b50600055611e46565b82805461272a90612b93565b90600052602060002090601f01602090048101928261274c5760008555612792565b82601f106127655782800160ff19823516178555612792565b82800160010185558215612792579182015b82811115612792578235825591602001919060010190612777565b50610f7b9291505b80821115610f7b576000815560010161279a565b80356001600160a01b03811681146127c557600080fd5b919050565b6000602082840312156127dc57600080fd5b611987826127ae565b600080604083850312156127f857600080fd5b612801836127ae565b915061280f602084016127ae565b90509250929050565b60008060006060848603121561282d57600080fd5b612836846127ae565b9250612844602085016127ae565b9150604084013590509250925092565b6000806000806080858703121561286a57600080fd5b612873856127ae565b9350612881602086016127ae565b925060408501359150606085013567ffffffffffffffff808211156128a557600080fd5b818701915087601f8301126128b957600080fd5b8135818111156128cb576128cb612c3f565b604051601f8201601f19908116603f011681019083821181831017156128f3576128f3612c3f565b816040528281528a602084870101111561290c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561294357600080fd5b61294c836127ae565b91506020830135801515811461296157600080fd5b809150509250929050565b6000806040838503121561297f57600080fd5b612988836127ae565b946020939093013593505050565b6000602082840312156129a857600080fd5b813561198781612c55565b6000602082840312156129c557600080fd5b815161198781612c55565b600080602083850312156129e357600080fd5b823567ffffffffffffffff808211156129fb57600080fd5b818501915085601f830112612a0f57600080fd5b813581811115612a1e57600080fd5b866020828501011115612a3057600080fd5b60209290920196919550909350505050565b600060208284031215612a5457600080fd5b5035919050565b60008151808452612a73816020860160208601612b67565b601f01601f19169290920160200192915050565b60008351612a99818460208801612b67565b835190830190612aad818360208801612b67565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612ae86080830184612a5b565b9695505050505050565b6020815260006119876020830184612a5b565b60008219821115612b1857612b18612bfd565b500190565b600082612b2c57612b2c612c13565b500490565b6000816000190483118215151615612b4b57612b4b612bfd565b500290565b600082821015612b6257612b62612bfd565b500390565b60005b83811015612b82578181015183820152602001612b6a565b8381111561185f5750506000910152565b600181811c90821680612ba757607f821691505b60208210811415612bc857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612be257612be2612bfd565b5060010190565b600082612bf857612bf8612c13565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113ac57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220369299ddb1e325f5c04feb4df2c14ccea56e6eacb731613ebe4c6deb1b81655f64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102c65760003560e01c80637c928fe911610179578063b88d4fde116100d6578063d7224ba01161008a578063e985e9c511610064578063e985e9c51461076b578063f2fde38b146107b4578063f968adbe146107d457600080fd5b8063d7224ba014610715578063dc33e6811461072b578063e268e4d31461074b57600080fd5b8063c87b56dd116100bb578063c87b56dd146106c5578063d1239730146106e5578063d5abeb01146106ff57600080fd5b8063b88d4fde14610685578063c6f6f216146106a557600080fd5b80639231ab2a1161012d578063a035b1fe11610112578063a035b1fe1461063c578063a0712d6814610652578063a22cb4651461066557600080fd5b80639231ab2a146105d957806395d89b411461062757600080fd5b80638da5cb5b1161015e5780638da5cb5b1461057b5780638db89f071461059957806391b7f5ed146105b957600080fd5b80637c928fe9146105465780637d55094d1461056657600080fd5b80633ccfd60b11610227578063563aaf11116101db5780636c0360eb116101c05780636c0360eb146104fc57806370a0823114610511578063715018a61461053157600080fd5b8063563aaf11146104bc5780636352211e146104dc57600080fd5b8063453c23101161020c578063453c2310146104665780634f6ccce71461047c57806355f804b31461049c57600080fd5b80633ccfd60b1461043157806342842e0e1461044657600080fd5b8063228025e81161027e5780632d20fb60116102635780632d20fb60146103db5780632f745c59146103fb578063333e44e61461041b57600080fd5b8063228025e81461039b57806323b872dd146103bb57600080fd5b8063081812fc116102af578063081812fc14610322578063095ea7b31461035a57806318160ddd1461037c57600080fd5b806301ffc9a7146102cb57806306fdde0314610300575b600080fd5b3480156102d757600080fd5b506102eb6102e6366004612996565b6107ea565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b506103156108bb565b6040516102f79190612af2565b34801561032e57600080fd5b5061034261033d366004612a42565b61094d565b6040516001600160a01b0390911681526020016102f7565b34801561036657600080fd5b5061037a61037536600461296c565b6109ed565b005b34801561038857600080fd5b506000545b6040519081526020016102f7565b3480156103a757600080fd5b5061037a6103b6366004612a42565b610b20565b3480156103c757600080fd5b5061037a6103d6366004612818565b610b6d565b3480156103e757600080fd5b5061037a6103f6366004612a42565b610b78565b34801561040757600080fd5b5061038d61041636600461296c565b610c29565b34801561042757600080fd5b5061038d600d5481565b34801561043d57600080fd5b5061037a610db0565b34801561045257600080fd5b5061037a610461366004612818565b610ee8565b34801561047257600080fd5b5061038d600c5481565b34801561048857600080fd5b5061038d610497366004612a42565b610f03565b3480156104a857600080fd5b5061037a6104b73660046129d0565b610f7f565b3480156104c857600080fd5b5061037a6104d7366004612a42565b610fd3565b3480156104e857600080fd5b506103426104f7366004612a42565b611020565b34801561050857600080fd5b50610315611032565b34801561051d57600080fd5b5061038d61052c3660046127ca565b6110c0565b34801561053d57600080fd5b5061037a61116c565b34801561055257600080fd5b5061037a610561366004612a42565b6111c0565b34801561057257600080fd5b5061037a6113af565b34801561058757600080fd5b506007546001600160a01b0316610342565b3480156105a557600080fd5b5061037a6105b4366004612a42565b61140b565b3480156105c557600080fd5b5061037a6105d4366004612a42565b6114c2565b3480156105e557600080fd5b506105f96105f4366004612a42565b61150f565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016102f7565b34801561063357600080fd5b5061031561152c565b34801561064857600080fd5b5061038d600a5481565b61037a610660366004612a42565b61153b565b34801561067157600080fd5b5061037a610680366004612930565b611711565b34801561069157600080fd5b5061037a6106a0366004612854565b6117d6565b3480156106b157600080fd5b5061037a6106c0366004612a42565b611865565b3480156106d157600080fd5b506103156106e0366004612a42565b6118b2565b3480156106f157600080fd5b506010546102eb9060ff1681565b34801561070b57600080fd5b5061038d600e5481565b34801561072157600080fd5b5061038d600f5481565b34801561073757600080fd5b5061038d6107463660046127ca565b61198e565b34801561075757600080fd5b5061037a610766366004612a42565b611999565b34801561077757600080fd5b506102eb6107863660046127e5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107c057600080fd5b5061037a6107cf3660046127ca565b6119e6565b3480156107e057600080fd5b5061038d600b5481565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061084d57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061088157506001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000145b806108b557507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600180546108ca90612b93565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690612b93565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b5050505050905090565b600061095a826000541190565b6109d15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109f882611020565b9050806001600160a01b0316836001600160a01b03161415610a825760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f657200000000000000000000000000000000000000000000000000000000000060648201526084016109c8565b336001600160a01b0382161480610a9e5750610a9e8133610786565b610b105760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109c8565b610b1b838383611ab3565b505050565b6007546001600160a01b03163314610b685760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b600e55565b610b1b838383611b1c565b6007546001600160a01b03163314610bc05760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b60026008541415610c135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109c8565b6002600855610c2181611e4d565b506001600855565b6000610c34836110c0565b8210610ca85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f647300000000000000000000000000000000000000000000000000000000000060648201526084016109c8565b600080549080805b83811015610d41576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d0357805192505b876001600160a01b0316836001600160a01b03161415610d385786841415610d31575093506108b592505050565b6001909301925b50600101610cb0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e64657800000000000000000000000000000000000060648201526084016109c8565b6007546001600160a01b03163314610df85760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b60026008541415610e4b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109c8565b6002600855604051600090339047908381818185875af1925050503d8060008114610e92576040519150601f19603f3d011682016040523d82523d6000602084013e610e97565b606091505b5050905080610c215760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016109c8565b610b1b838383604051806020016040528060008152506117d6565b600080548210610f7b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e6473000000000000000000000000000000000000000000000000000000000060648201526084016109c8565b5090565b6007546001600160a01b03163314610fc75760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b610b1b6009838361271e565b6007546001600160a01b0316331461101b5760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b600d55565b600061102b82611fe5565b5192915050565b6009805461103f90612b93565b80601f016020809104026020016040519081016040528092919081815260200182805461106b90612b93565b80156110b85780601f1061108d576101008083540402835291602001916110b8565b820191906000526020600020905b81548152906001019060200180831161109b57829003601f168201915b505050505081565b60006001600160a01b03821661113e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084016109c8565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6007546001600160a01b031633146111b45760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b6111be60006120cf565b565b32331461120f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109c8565b60105460ff166112615760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f742073746172746564000000000060448201526064016109c8565b600d548161126e60005490565b6112789190612b05565b11156112c65760405162461bcd60e51b815260206004820152600f60248201527f4d617820667265652044656e7a656c000000000000000000000000000000000060448201526064016109c8565b600a81111561133d5760405162461bcd60e51b815260206004820152602560248201527f43616e206e6f74206d696e742074686973206d616e792066726565206174206160448201527f2074696d6500000000000000000000000000000000000000000000000000000060648201526084016109c8565b600c548161134a3361198e565b6113549190612b05565b11156113a25760405162461bcd60e51b815260206004820152601460248201527f546f6f206d616e79207065722077616c6c65742100000000000000000000000060448201526064016109c8565b6113ac338261212e565b50565b6007546001600160a01b031633146113f75760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b6010805460ff19811660ff90911615179055565b6007546001600160a01b031633146114535760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b600e54611461906001612b05565b8161146b60005490565b6114759190612b05565b106113a25760405162461bcd60e51b815260206004820152600960248201527f746f6f206d616e7921000000000000000000000000000000000000000000000060448201526064016109c8565b6007546001600160a01b0316331461150a5760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b600a55565b60408051808201909152600080825260208201526108b582611fe5565b6060600280546108ca90612b93565b600a5433321461158d5760405162461bcd60e51b815260206004820152601260248201527f426520796f757273656c662c20616e6f6e2e000000000000000000000000000060448201526064016109c8565b6115978183612b31565b3410156115e65760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016109c8565b600e546115f4906001612b05565b826115fe60005490565b6116089190612b05565b106116555760405162461bcd60e51b815260206004820152601b60248201527f4e6f206d6f72652044656e7a656c20546865204475636b732e2e2e000000000060448201526064016109c8565b60105460ff166116a75760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206973206e6f74206c6976652079657400000000000000000060448201526064016109c8565b600b546116b5906001612b05565b82106117035760405162461bcd60e51b815260206004820152601360248201527f4d61782070657220545820726561636865642e0000000000000000000000000060448201526064016109c8565b61170d338361212e565b5050565b6001600160a01b03821633141561176a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109c8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117e1848484611b1c565b6117ed84848484612148565b61185f5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016109c8565b50505050565b6007546001600160a01b031633146118ad5760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b600b55565b60606118bf826000541190565b6119315760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109c8565b600061193b6122ac565b905080516000141561195c5760405180602001604052806000815250611987565b80611966846122bb565b604051602001611977929190612a87565b6040516020818303038152906040525b9392505050565b60006108b5826123ed565b6007546001600160a01b031633146119e15760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b600c55565b6007546001600160a01b03163314611a2e5760405162461bcd60e51b81526020600482018190526024820152600080516020612c6c83398151915260448201526064016109c8565b6001600160a01b038116611aaa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109c8565b6113ac816120cf565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b2782611fe5565b80519091506000906001600160a01b0316336001600160a01b03161480611b5e575033611b538461094d565b6001600160a01b0316145b80611b7057508151611b709033610786565b905080611be55760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016109c8565b846001600160a01b031682600001516001600160a01b031614611c705760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e6572000000000000000000000000000000000000000000000000000060648201526084016109c8565b6001600160a01b038416611cec5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109c8565b611cfc6000848460000151611ab3565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611e0357611db6816000541190565b15611e03578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80611e9a5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016109c8565b600054611ee95760405162461bcd60e51b815260206004820152601460248201527f6e6f20746f6b656e73206d696e7465642079657400000000000000000000000060448201526064016109c8565b600f546000548110611f3d5760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e207365740000000060448201526064016109c8565b6000548282016000198101911015611f585750600054600019015b815b818111611fda576000818152600360205260409020546001600160a01b0316611fd2576000611f8882611fe5565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611f5a565b50600101600f555050565b6040805180820190915260008082526020820152612004826000541190565b6120765760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e0000000000000000000000000000000000000000000060648201526084016109c8565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156120c5579392505050565b5060001901612078565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61170d8282604051806020016040528060008152506124ad565b60006001600160a01b0384163b156122a057604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061218c903390899088908890600401612ab6565b602060405180830381600087803b1580156121a657600080fd5b505af19250505080156121d6575060408051601f3d908101601f191682019092526121d3918101906129b3565b60015b612286573d808015612204576040519150601f19603f3d011682016040523d82523d6000602084013e612209565b606091505b50805161227e5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016109c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122a4565b5060015b949350505050565b6060600980546108ca90612b93565b6060816122fb57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612325578061230f81612bce565b915061231e9050600a83612b1d565b91506122ff565b60008167ffffffffffffffff81111561234057612340612c3f565b6040519080825280601f01601f19166020018201604052801561236a576020820181803683370190505b5090505b84156122a45761237f600183612b50565b915061238c600a86612be9565b612397906030612b05565b60f81b8183815181106123ac576123ac612c29565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506123e6600a86612b1d565b945061236e565b60006001600160a01b03821661246b5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f206164647265737300000000000000000000000000000060648201526084016109c8565b506001600160a01b031660009081526004602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b610b1b83838360016000546001600160a01b0385166125345760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016109c8565b836125a75760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e203000000000000000000000000000000000000000000000000060648201526084016109c8565b6001600160a01b038516600081815260046020908152604080832080547001000000000000000000000000000000006fffffffffffffffffffffffffffffffff1982166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156127155760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612709576126976000888488612148565b6127095760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e7465720000000000000000000000000060648201526084016109c8565b60019182019101612644565b50600055611e46565b82805461272a90612b93565b90600052602060002090601f01602090048101928261274c5760008555612792565b82601f106127655782800160ff19823516178555612792565b82800160010185558215612792579182015b82811115612792578235825591602001919060010190612777565b50610f7b9291505b80821115610f7b576000815560010161279a565b80356001600160a01b03811681146127c557600080fd5b919050565b6000602082840312156127dc57600080fd5b611987826127ae565b600080604083850312156127f857600080fd5b612801836127ae565b915061280f602084016127ae565b90509250929050565b60008060006060848603121561282d57600080fd5b612836846127ae565b9250612844602085016127ae565b9150604084013590509250925092565b6000806000806080858703121561286a57600080fd5b612873856127ae565b9350612881602086016127ae565b925060408501359150606085013567ffffffffffffffff808211156128a557600080fd5b818701915087601f8301126128b957600080fd5b8135818111156128cb576128cb612c3f565b604051601f8201601f19908116603f011681019083821181831017156128f3576128f3612c3f565b816040528281528a602084870101111561290c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561294357600080fd5b61294c836127ae565b91506020830135801515811461296157600080fd5b809150509250929050565b6000806040838503121561297f57600080fd5b612988836127ae565b946020939093013593505050565b6000602082840312156129a857600080fd5b813561198781612c55565b6000602082840312156129c557600080fd5b815161198781612c55565b600080602083850312156129e357600080fd5b823567ffffffffffffffff808211156129fb57600080fd5b818501915085601f830112612a0f57600080fd5b813581811115612a1e57600080fd5b866020828501011115612a3057600080fd5b60209290920196919550909350505050565b600060208284031215612a5457600080fd5b5035919050565b60008151808452612a73816020860160208601612b67565b601f01601f19169290920160200192915050565b60008351612a99818460208801612b67565b835190830190612aad818360208801612b67565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612ae86080830184612a5b565b9695505050505050565b6020815260006119876020830184612a5b565b60008219821115612b1857612b18612bfd565b500190565b600082612b2c57612b2c612c13565b500490565b6000816000190483118215151615612b4b57612b4b612bfd565b500290565b600082821015612b6257612b62612bfd565b500390565b60005b83811015612b82578181015183820152602001612b6a565b8381111561185f5750506000910152565b600181811c90821680612ba757607f821691505b60208210811415612bc857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612be257612be2612bfd565b5060010190565b600082612bf857612bf8612c13565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113ac57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220369299ddb1e325f5c04feb4df2c14ccea56e6eacb731613ebe4c6deb1b81655f64736f6c63430008070033
Deployed Bytecode Sourcemap
50114:4214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36974:372;;;;;;;;;;-1:-1:-1;36974:372:0;;;;;:::i;:::-;;:::i;:::-;;;5903:14:1;;5896:22;5878:41;;5866:2;5851:18;36974:372:0;;;;;;;;38860:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40422:214::-;;;;;;;;;;-1:-1:-1;40422:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5155:55:1;;;5137:74;;5125:2;5110:18;40422:214:0;4991:226:1;39943:413:0;;;;;;;;;;-1:-1:-1;39943:413:0;;;;;:::i;:::-;;:::i;:::-;;35231:100;;;;;;;;;;-1:-1:-1;35284:7:0;35311:12;35231:100;;;20490:25:1;;;20478:2;20463:18;35231:100:0;20344:177:1;52437:98:0;;;;;;;;;;-1:-1:-1;52437:98:0;;;;;:::i;:::-;;:::i;41298:170::-;;;;;;;;;;-1:-1:-1;41298:170:0;;;;;:::i;:::-;;:::i;52831:118::-;;;;;;;;;;-1:-1:-1;52831:118:0;;;;;:::i;:::-;;:::i;35895:1007::-;;;;;;;;;;-1:-1:-1;35895:1007:0;;;;;:::i;:::-;;:::i;50366:44::-;;;;;;;;;;;;;;;;52649:176;;;;;;;;;;;;;:::i;41539:185::-;;;;;;;;;;-1:-1:-1;41539:185:0;;;;;:::i;:::-;;:::i;50318:43::-;;;;;;;;;;;;;;;;35408:187;;;;;;;;;;-1:-1:-1;35408:187:0;;;;;:::i;:::-;;:::i;51927:96::-;;;;;;;;;;-1:-1:-1;51927:96:0;;;;;:::i;:::-;;:::i;52117:98::-;;;;;;;;;;-1:-1:-1;52117:98:0;;;;;:::i;:::-;;:::i;38669:124::-;;;;;;;;;;-1:-1:-1;38669:124:0;;;;;:::i;:::-;;:::i;50181:28::-;;;;;;;;;;;;;:::i;37410:221::-;;;;;;;;;;-1:-1:-1;37410:221:0;;;;;:::i;:::-;;:::i;10403:103::-;;;;;;;;;;;;;:::i;50736:370::-;;;;;;;;;;-1:-1:-1;50736:370:0;;;;;:::i;:::-;;:::i;51723:85::-;;;;;;;;;;;;;:::i;9752:87::-;;;;;;;;;;-1:-1:-1;9825:6:0;;-1:-1:-1;;;;;9825:6:0;9752:87;;51554:163;;;;;;;;;;-1:-1:-1;51554:163:0;;;;;:::i;:::-;;:::i;52029:82::-;;;;;;;;;;-1:-1:-1;52029:82:0;;;;;:::i;:::-;;:::i;52955:132::-;;;;;;;;;;-1:-1:-1;52955:132:0;;;;;:::i;:::-;;:::i;:::-;;;;20186:13:1;;-1:-1:-1;;;;;20182:62:1;20164:81;;20305:4;20293:17;;;20287:24;20313:18;20283:49;20261:20;;;20254:79;;;;20137:18;52955:132:0;19954:385:1;39029:104:0;;;;;;;;;;;;;:::i;50214:51::-;;;;;;;;;;;;;;;;51112:436;;;;;;:::i;:::-;;:::i;40708:288::-;;;;;;;;;;-1:-1:-1;40708:288:0;;;;;:::i;:::-;;:::i;41795:355::-;;;;;;;;;;-1:-1:-1;41795:355:0;;;;;:::i;:::-;;:::i;52221:94::-;;;;;;;;;;-1:-1:-1;52221:94:0;;;;;:::i;:::-;;:::i;39204:335::-;;;;;;;;;;-1:-1:-1;39204:335:0;;;;;:::i;:::-;;:::i;50515:32::-;;;;;;;;;;-1:-1:-1;50515:32:0;;;;;;;;50415:45;;;;;;;;;;;;;;;;50465;;;;;;;;;;;;;;;;51814:107;;;;;;;;;;-1:-1:-1;51814:107:0;;;;;:::i;:::-;;:::i;52321:110::-;;;;;;;;;;-1:-1:-1;52321:110:0;;;;;:::i;:::-;;:::i;41067:164::-;;;;;;;;;;-1:-1:-1;41067:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41188:25:0;;;41164:4;41188:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41067:164;10661:201;;;;;;;;;;-1:-1:-1;10661:201:0;;;;;:::i;:::-;;:::i;50270:43::-;;;;;;;;;;;;;;;;36974:372;37076:4;-1:-1:-1;;;;;;37113:40:0;;37128:25;37113:40;;:105;;-1:-1:-1;;;;;;;37170:48:0;;37185:33;37170:48;37113:105;:172;;;-1:-1:-1;;;;;;;37235:50:0;;37250:35;37235:50;37113:172;:225;;;-1:-1:-1;26655:25:0;-1:-1:-1;;;;;;26640:40:0;;;37302:36;37093:245;36974:372;-1:-1:-1;;36974:372:0:o;38860:100::-;38914:13;38947:5;38940:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38860:100;:::o;40422:214::-;40490:7;40518:16;40526:7;42462:4;42496:12;-1:-1:-1;42486:22:0;42405:111;40518:16;40510:74;;;;-1:-1:-1;;;40510:74:0;;19336:2:1;40510:74:0;;;19318:21:1;19375:2;19355:18;;;19348:30;19414:34;19394:18;;;19387:62;19485:15;19465:18;;;19458:43;19518:19;;40510:74:0;;;;;;;;;-1:-1:-1;40604:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40604:24:0;;40422:214::o;39943:413::-;40016:13;40032:24;40048:7;40032:15;:24::i;:::-;40016:40;;40081:5;-1:-1:-1;;;;;40075:11:0;:2;-1:-1:-1;;;;;40075:11:0;;;40067:58;;;;-1:-1:-1;;;40067:58:0;;15818:2:1;40067:58:0;;;15800:21:1;15857:2;15837:18;;;15830:30;15896:34;15876:18;;;15869:62;15967:4;15947:18;;;15940:32;15989:19;;40067:58:0;15616:398:1;40067:58:0;8556:10;-1:-1:-1;;;;;40160:21:0;;;;:62;;-1:-1:-1;40185:37:0;40202:5;8556:10;41067:164;:::i;40185:37::-;40138:169;;;;-1:-1:-1;;;40138:169:0;;11611:2:1;40138:169:0;;;11593:21:1;11650:2;11630:18;;;11623:30;11689:34;11669:18;;;11662:62;11760:27;11740:18;;;11733:55;11805:19;;40138:169:0;11409:421:1;40138:169:0;40320:28;40329:2;40333:7;40342:5;40320:8;:28::i;:::-;40005:351;39943:413;;:::o;52437:98::-;9825:6;;-1:-1:-1;;;;;9825:6:0;8556:10;9972:23;9964:68;;;;-1:-1:-1;;;9964:68:0;;13553:2:1;9964:68:0;;;13535:21:1;;;13572:18;;;13565:30;-1:-1:-1;;;;;;;;;;;13611:18:1;;;13604:62;13683:18;;9964:68:0;13351:356:1;9964:68:0;52507:9:::1;:22:::0;52437:98::o;41298:170::-;41432:28;41442:4;41448:2;41452:7;41432:9;:28::i;52831:118::-;9825:6;;-1:-1:-1;;;;;9825:6:0;8556:10;9972:23;9964:68;;;;-1:-1:-1;;;9964:68:0;;13553:2:1;9964:68:0;;;13535:21:1;;;13572:18;;;13565:30;-1:-1:-1;;;;;;;;;;;13611:18:1;;;13604:62;13683:18;;9964:68:0;13351:356:1;9964:68:0;4726:1:::1;5324:7;;:19;;5316:63;;;::::0;-1:-1:-1;;;5316:63:0;;18560:2:1;5316:63:0::1;::::0;::::1;18542:21:1::0;18599:2;18579:18;;;18572:30;18638:33;18618:18;;;18611:61;18689:18;;5316:63:0::1;18358:355:1::0;5316:63:0::1;4726:1;5457:7;:18:::0;52915:28:::2;52934:8:::0;52915:18:::2;:28::i;:::-;-1:-1:-1::0;4682:1:0::1;5636:7;:22:::0;52831:118::o;35895:1007::-;35984:7;36020:16;36030:5;36020:9;:16::i;:::-;36012:5;:24;36004:71;;;;-1:-1:-1;;;36004:71:0;;6356:2:1;36004:71:0;;;6338:21:1;6395:2;6375:18;;;6368:30;6434:34;6414:18;;;6407:62;6505:4;6485:18;;;6478:32;6527:19;;36004:71:0;6154:398:1;36004:71:0;36086:22;35311:12;;;36086:22;;36349:466;36369:14;36365:1;:18;36349:466;;;36409:31;36443:14;;;:11;:14;;;;;;;;;36409:48;;;;;;;;;-1:-1:-1;;;;;36409:48:0;;;;;-1:-1:-1;;;36409:48:0;;;;;;;;;;;;36480:28;36476:111;;36553:14;;;-1:-1:-1;36476:111:0;36630:5;-1:-1:-1;;;;;36609:26:0;:17;-1:-1:-1;;;;;36609:26:0;;36605:195;;;36679:5;36664:11;:20;36660:85;;;-1:-1:-1;36720:1:0;-1:-1:-1;36713:8:0;;-1:-1:-1;;;36713:8:0;36660:85;36767:13;;;;;36605:195;-1:-1:-1;36385:3:0;;36349:466;;;-1:-1:-1;36838:56:0;;-1:-1:-1;;;36838:56:0;;18145:2:1;36838:56:0;;;18127:21:1;18184:2;18164:18;;;18157:30;18223:34;18203:18;;;18196:62;18294:16;18274:18;;;18267:44;18328:19;;36838:56:0;17943:410:1;52649:176:0;9825:6;;-1:-1:-1;;;;;9825:6:0;8556:10;9972:23;9964:68;;;;-1:-1:-1;;;9964:68:0;;13553:2:1;9964:68:0;;;13535:21:1;;;13572:18;;;13565:30;-1:-1:-1;;;;;;;;;;;13611:18:1;;;13604:62;13683:18;;9964:68:0;13351:356:1;9964:68:0;4726:1:::1;5324:7;;:19;;5316:63;;;::::0;-1:-1:-1;;;5316:63:0;;18560:2:1;5316:63:0::1;::::0;::::1;18542:21:1::0;18599:2;18579:18;;;18572:30;18638:33;18618:18;;;18611:61;18689:18;;5316:63:0::1;18358:355:1::0;5316:63:0::1;4726:1;5457:7;:18:::0;52727:49:::2;::::0;52709:12:::2;::::0;52727:10:::2;::::0;52750:21:::2;::::0;52709:12;52727:49;52709:12;52727:49;52750:21;52727:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52708:68;;;52791:7;52783:36;;;::::0;-1:-1:-1;;;52783:36:0;;16221:2:1;52783:36:0::2;::::0;::::2;16203:21:1::0;16260:2;16240:18;;;16233:30;16299:18;16279;;;16272:46;16335:18;;52783:36:0::2;16019:340:1::0;41539:185:0;41677:39;41694:4;41700:2;41704:7;41677:39;;;;;;;;;;;;:16;:39::i;35408:187::-;35475:7;35311:12;;35503:5;:21;35495:69;;;;-1:-1:-1;;;35495:69:0;;8983:2:1;35495:69:0;;;8965:21:1;9022:2;9002:18;;;8995:30;9061:34;9041:18;;;9034:62;9132:5;9112:18;;;9105:33;9155:19;;35495:69:0;8781:399:1;35495:69:0;-1:-1:-1;35582:5:0;35408:187::o;51927:96::-;9825:6;;-1:-1:-1;;;;;9825:6:0;8556:10;9972:23;9964:68;;;;-1:-1:-1;;;9964:68:0;;13553:2:1;9964:68:0;;;13535:21:1;;;13572:18;;;13565:30;-1:-1:-1;;;;;;;;;;;13611:18:1;;;13604:62;13683:18;;9964:68:0;13351:356:1;9964:68:0;51999:18:::1;:7;52009:8:::0;;51999:18:::1;:::i;52117:98::-:0;9825:6;;-1:-1:-1;;;;;9825:6:0;8556:10;9972:23;9964:68;;;;-1:-1:-1;;;9964:68:0;;13553:2:1;9964:68:0;;;13535:21:1;;;13572:18;;;13565:30;-1:-1:-1;;;;;;;;;;;13611:18:1;;;13604:62;13683:18;;9964:68:0;13351:356:1;9964:68:0;52187:9:::1;:22:::0;52117:98::o;38669:124::-;38733:7;38760:20;38772:7;38760:11;:20::i;:::-;:25;;38669:124;-1:-1:-1;;38669:124:0:o;50181:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37410:221::-;37474:7;-1:-1:-1;;;;;37502:19:0;;37494:75;;;;-1:-1:-1;;;37494:75:0;;12390:2:1;37494:75:0;;;12372:21:1;12429:2;12409:18;;;12402:30;12468:34;12448:18;;;12441:62;12539:13;12519:18;;;12512:41;12570:19;;37494:75:0;12188:407:1;37494:75:0;-1:-1:-1;;;;;;37595:19:0;;;;;:12;:19;;;;;:27;;;;37410:221::o;10403:103::-;9825:6;;-1:-1:-1;;;;;9825:6:0;8556:10;9972:23;9964:68;;;;-1:-1:-1;;;9964:68:0;;13553:2:1;9964:68:0;;;13535:21:1;;;13572:18;;;13565:30;-1:-1:-1;;;;;;;;;;;13611:18:1;;;13604:62;13683:18;;9964:68:0;13351:356:1;9964:68:0;10468:30:::1;10495:1;10468:18;:30::i;:::-;10403:103::o:0;50736:370::-;50652:9;50665:10;50652:23;50644:66;;;;-1:-1:-1;;;50644:66:0;;10915:2:1;50644:66:0;;;10897:21:1;10954:2;10934:18;;;10927:30;10993:32;10973:18;;;10966:60;11043:18;;50644:66:0;10713:354:1;50644:66:0;50804:11:::1;::::0;::::1;;50796:51;;;::::0;-1:-1:-1;;;50796:51:0;;8627:2:1;50796:51:0::1;::::0;::::1;8609:21:1::0;8666:2;8646:18;;;8639:30;8705:29;8685:18;;;8678:57;8752:18;;50796:51:0::1;8425:351:1::0;50796:51:0::1;50885:9;;50878:3;50862:13;35284:7:::0;35311:12;;35231:100;50862:13:::1;:19;;;;:::i;:::-;:32;;50854:60;;;::::0;-1:-1:-1;;;50854:60:0;;13209:2:1;50854:60:0::1;::::0;::::1;13191:21:1::0;13248:2;13228:18;;;13221:30;13287:17;13267:18;;;13260:45;13322:18;;50854:60:0::1;13007:339:1::0;50854:60:0::1;50936:2;50929:3;:9;;50921:59;;;::::0;-1:-1:-1;;;50921:59:0;;19750:2:1;50921:59:0::1;::::0;::::1;19732:21:1::0;19789:2;19769:18;;;19762:30;19828:34;19808:18;;;19801:62;19899:7;19879:18;;;19872:35;19924:19;;50921:59:0::1;19548:401:1::0;50921:59:0::1;51029:12;;51022:3;50995:24;51008:10;50995:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;50987:78;;;::::0;-1:-1:-1;;;50987:78:0;;8278:2:1;50987:78:0::1;::::0;::::1;8260:21:1::0;8317:2;8297:18;;;8290:30;8356:22;8336:18;;;8329:50;8396:18;;50987:78:0::1;8076:344:1::0;50987:78:0::1;51072:26;51082:10;51094:3;51072:9;:26::i;:::-;50736:370:::0;:::o;51723:85::-;9825:6;;-1:-1:-1;;;;;9825:6:0;8556:10;9972:23;9964:68;;;;-1:-1:-1;;;9964:68:0;;13553:2:1;9964:68:0;;;13535:21:1;;;13572:18;;;13565:30;-1:-1:-1;;;;;;;;;;;13611:18:1;;;13604:62;13683:18;;9964:68:0;13351:356:1;9964:68:0;51791:11:::1;::::0;;-1:-1:-1;;51776:26:0;::::1;51791:11;::::0;;::::1;51790:12;51776:26;::::0;;51723:85::o;51554:163::-;9825:6;;-1:-1:-1;;;;;9825:6:0;8556:10;9972:23;9964:68;;;;-1:-1:-1;;;9964:68:0;;13553:2:1;9964:68:0;;;13535:21:1;;;13572:18;;;13565:30;-1:-1:-1;;;;;;;;;;;13611:18:1;;;13604:62;13683:18;;9964:68:0;13351:356:1;9964:68:0;51650:9:::1;::::0;:13:::1;::::0;51662:1:::1;51650:13;:::i;:::-;51644:3;51628:13;35284:7:::0;35311:12;;35231:100;51628:13:::1;:19;;;;:::i;:::-;:35;51620:56;;;::::0;-1:-1:-1;;;51620:56:0;;11274:2:1;51620:56:0::1;::::0;::::1;11256:21:1::0;11313:1;11293:18;;;11286:29;11351:11;11331:18;;;11324:39;11380:18;;51620:56:0::1;11072:332:1::0;52029:82:0;9825:6;;-1:-1:-1;;;;;9825:6:0;8556:10;9972:23;9964:68;;;;-1:-1:-1;;;9964:68:0;;13553:2:1;9964:68:0;;;13535:21:1;;;13572:18;;;13565:30;-1:-1:-1;;;;;;;;;;;13611:18:1;;;13604:62;13683:18;;9964:68:0;13351:356:1;9964:68:0;52091:5:::1;:14:::0;52029:82::o;52955:132::-;-1:-1:-1;;;;;;;;;;;;;;;;;53061:20:0;53073:7;53061:11;:20::i;39029:104::-;39085:13;39118:7;39111:14;;;;;:::i;51112:436::-;51178:5;;51198:10;51212:9;51198:23;51190:53;;;;-1:-1:-1;;;51190:53:0;;10211:2:1;51190:53:0;;;10193:21:1;10250:2;10230:18;;;10223:30;10289:20;10269:18;;;10262:48;10327:18;;51190:53:0;10009:342:1;51190:53:0;51271:10;51277:4;51271:3;:10;:::i;:::-;51258:9;:23;;51250:64;;;;-1:-1:-1;;;51250:64:0;;15104:2:1;51250:64:0;;;15086:21:1;15143:2;15123:18;;;15116:30;15182:31;15162:18;;;15155:59;15231:18;;51250:64:0;14902:353:1;51250:64:0;51351:9;;:13;;51363:1;51351:13;:::i;:::-;51345:3;51329:13;35284:7;35311:12;;35231:100;51329:13;:19;;;;:::i;:::-;:35;51321:74;;;;-1:-1:-1;;;51321:74:0;;15462:2:1;51321:74:0;;;15444:21:1;15501:2;15481:18;;;15474:30;15540:29;15520:18;;;15513:57;15587:18;;51321:74:0;15260:351:1;51321:74:0;51410:11;;;;51402:47;;;;-1:-1:-1;;;51402:47:0;;6759:2:1;51402:47:0;;;6741:21:1;6798:2;6778:18;;;6771:30;6837:25;6817:18;;;6810:53;6880:18;;51402:47:0;6557:347:1;51402:47:0;51471:8;;:12;;51482:1;51471:12;:::i;:::-;51465:3;:18;51456:51;;;;-1:-1:-1;;;51456:51:0;;17797:2:1;51456:51:0;;;17779:21:1;17836:2;17816:18;;;17809:30;17875:21;17855:18;;;17848:49;17914:18;;51456:51:0;17595:343:1;51456:51:0;51516:26;51526:10;51538:3;51516:9;:26::i;:::-;51159:389;51112:436;:::o;40708:288::-;-1:-1:-1;;;;;40803:24:0;;8556:10;40803:24;;40795:63;;;;-1:-1:-1;;;40795:63:0;;14330:2:1;40795:63:0;;;14312:21:1;14369:2;14349:18;;;14342:30;14408:28;14388:18;;;14381:56;14454:18;;40795:63:0;14128:350:1;40795:63:0;8556:10;40871:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40871:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40871:53:0;;;;;;;;;;40940:48;;5878:41:1;;;40871:42:0;;8556:10;40940:48;;5851:18:1;40940:48:0;;;;;;;40708:288;;:::o;41795:355::-;41954:28;41964:4;41970:2;41974:7;41954:9;:28::i;:::-;42015:48;42038:4;42044:2;42048:7;42057:5;42015:22;:48::i;:::-;41993:149;;;;-1:-1:-1;;;41993:149:0;;16566:2:1;41993:149:0;;;16548:21:1;16605:2;16585:18;;;16578:30;16644:34;16624:18;;;16617:62;16715:21;16695:18;;;16688:49;16754:19;;41993:149:0;16364:415:1;41993:149:0;41795:355;;;;:::o;52221:94::-;9825:6;;-1:-1:-1;;;;;9825:6:0;8556:10;9972:23;9964:68;;;;-1:-1:-1;;;9964:68:0;;13553:2:1;9964:68:0;;;13535:21:1;;;13572:18;;;13565:30;-1:-1:-1;;;;;;;;;;;13611:18:1;;;13604:62;13683:18;;9964:68:0;13351:356:1;9964:68:0;52289:8:::1;:20:::0;52221:94::o;39204:335::-;39277:13;39311:16;39319:7;42462:4;42496:12;-1:-1:-1;42486:22:0;42405:111;39311:16;39303:76;;;;-1:-1:-1;;;39303:76:0;;13914:2:1;39303:76:0;;;13896:21:1;13953:2;13933:18;;;13926:30;13992:34;13972:18;;;13965:62;14063:17;14043:18;;;14036:45;14098:19;;39303:76:0;13712:411:1;39303:76:0;39392:21;39416:10;:8;:10::i;:::-;39392:34;;39450:7;39444:21;39469:1;39444:26;;:87;;;;;;;;;;;;;;;;;39497:7;39506:18;:7;:16;:18::i;:::-;39480:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39444:87;39437:94;39204:335;-1:-1:-1;;;39204:335:0:o;51814:107::-;51872:7;51895:20;51909:5;51895:13;:20::i;52321:110::-;9825:6;;-1:-1:-1;;;;;9825:6:0;8556:10;9972:23;9964:68;;;;-1:-1:-1;;;9964:68:0;;13553:2:1;9964:68:0;;;13535:21:1;;;13572:18;;;13565:30;-1:-1:-1;;;;;;;;;;;13611:18:1;;;13604:62;13683:18;;9964:68:0;13351:356:1;9964:68:0;52397:12:::1;:28:::0;52321:110::o;10661:201::-;9825:6;;-1:-1:-1;;;;;9825:6:0;8556:10;9972:23;9964:68;;;;-1:-1:-1;;;9964:68:0;;13553:2:1;9964:68:0;;;13535:21:1;;;13572:18;;;13565:30;-1:-1:-1;;;;;;;;;;;13611:18:1;;;13604:62;13683:18;;9964:68:0;13351:356:1;9964:68:0;-1:-1:-1;;;;;10750:22:0;::::1;10742:73;;;::::0;-1:-1:-1;;;10742:73:0;;7111:2:1;10742:73:0::1;::::0;::::1;7093:21:1::0;7150:2;7130:18;;;7123:30;7189:34;7169:18;;;7162:62;7260:8;7240:18;;;7233:36;7286:19;;10742:73:0::1;6909:402:1::0;10742:73:0::1;10826:28;10845:8;10826:18;:28::i;47325:196::-:0;47440:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;47440:29:0;-1:-1:-1;;;;;47440:29:0;;;;;;;;;47485:28;;47440:24;;47485:28;;;;;;;47325:196;;;:::o;45205:2002::-;45320:35;45358:20;45370:7;45358:11;:20::i;:::-;45433:18;;45320:58;;-1:-1:-1;45391:22:0;;-1:-1:-1;;;;;45417:34:0;8556:10;-1:-1:-1;;;;;45417:34:0;;:87;;;-1:-1:-1;8556:10:0;45468:20;45480:7;45468:11;:20::i;:::-;-1:-1:-1;;;;;45468:36:0;;45417:87;:154;;;-1:-1:-1;45538:18:0;;45521:50;;8556:10;41067:164;:::i;45521:50::-;45391:181;;45593:17;45585:80;;;;-1:-1:-1;;;45585:80:0;;14685:2:1;45585:80:0;;;14667:21:1;14724:2;14704:18;;;14697:30;14763:34;14743:18;;;14736:62;14834:20;14814:18;;;14807:48;14872:19;;45585:80:0;14483:414:1;45585:80:0;45708:4;-1:-1:-1;;;;;45686:26:0;:13;:18;;;-1:-1:-1;;;;;45686:26:0;;45678:77;;;;-1:-1:-1;;;45678:77:0;;12802:2:1;45678:77:0;;;12784:21:1;12841:2;12821:18;;;12814:30;12880:34;12860:18;;;12853:62;12951:8;12931:18;;;12924:36;12977:19;;45678:77:0;12600:402:1;45678:77:0;-1:-1:-1;;;;;45774:16:0;;45766:66;;;;-1:-1:-1;;;45766:66:0;;9387:2:1;45766:66:0;;;9369:21:1;9426:2;9406:18;;;9399:30;9465:34;9445:18;;;9438:62;9536:7;9516:18;;;9509:35;9561:19;;45766:66:0;9185:401:1;45766:66:0;45953:49;45970:1;45974:7;45983:13;:18;;;45953:8;:49::i;:::-;-1:-1:-1;;;;;46298:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;46298:31:0;;;;;;;-1:-1:-1;;46298:31:0;;;;;;;46344:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46344:29:0;;;;;;;;;;;;;46390:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;46435:61:0;;;;-1:-1:-1;;;46480:15:0;46435:61;;;;;;46770:11;;;46800:24;;;;;:29;46770:11;;46800:29;46796:295;;46868:20;46876:11;42462:4;42496:12;-1:-1:-1;42486:22:0;42405:111;46868:20;46864:212;;;46945:18;;;46913:24;;;:11;:24;;;;;;;;:50;;47028:28;;;;46986:70;;-1:-1:-1;;;46986:70:0;-1:-1:-1;;;;;;46986:70:0;;;-1:-1:-1;;;;;46913:50:0;;;46986:70;;;;;;;46864:212;46273:829;47138:7;47134:2;-1:-1:-1;;;;;47119:27:0;47128:4;-1:-1:-1;;;;;47119:27:0;;;;;;;;;;;47157:42;45309:1898;;45205:2002;;;:::o;53195:1130::-;53267:13;53259:50;;;;-1:-1:-1;;;53259:50:0;;12037:2:1;53259:50:0;;;12019:21:1;12076:2;12056:18;;;12049:30;12115:26;12095:18;;;12088:54;12159:18;;53259:50:0;11835:348:1;53259:50:0;53326:12;;53318:50;;;;-1:-1:-1;;;53318:50:0;;7929:2:1;53318:50:0;;;7911:21:1;7968:2;7948:18;;;7941:30;8007:22;7987:18;;;7980:50;8047:18;;53318:50:0;7727:344:1;53318:50:0;53413:24;;53377:33;53482:12;53454:40;;53446:81;;;;-1:-1:-1;;;53446:81:0;;10558:2:1;53446:81:0;;;10540:21:1;10597:2;10577:18;;;10570:30;10636;10616:18;;;10609:58;10684:18;;53446:81:0;10356:352:1;53446:81:0;53665:16;53817:12;53684:36;;;-1:-1:-1;;53684:40:0;;;-1:-1:-1;53798:91:0;;;-1:-1:-1;53859:12:0;;-1:-1:-1;;53859:16:0;53798:91;53920:25;53903:354;53952:8;53947:1;:13;53903:354;;54019:1;53988:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;53988:19:0;53984:260;;54044:31;54078:14;54090:1;54078:11;:14::i;:::-;54135;;;54113;;;:11;:14;;;;;;;;:36;;54202:24;;;;;54170:56;;-1:-1:-1;;;54170:56:0;-1:-1:-1;;;;;;54170:56:0;;;-1:-1:-1;;;;;54113:36:0;;;54170:56;;;;;;;-1:-1:-1;53984:260:0;53962:3;;53903:354;;;-1:-1:-1;54309:1:0;54298:12;54271:24;:39;-1:-1:-1;;53195:1130:0:o;38070:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;38173:16:0;38181:7;42462:4;42496:12;-1:-1:-1;42486:22:0;42405:111;38173:16;38165:71;;;;-1:-1:-1;;;38165:71:0;;7518:2:1;38165:71:0;;;7500:21:1;7557:2;7537:18;;;7530:30;7596:34;7576:18;;;7569:62;7667:12;7647:18;;;7640:40;7697:19;;38165:71:0;7316:406:1;38165:71:0;38294:7;38274:245;38341:31;38375:17;;;:11;:17;;;;;;;;;38341:51;;;;;;;;;-1:-1:-1;;;;;38341:51:0;;;;;-1:-1:-1;;;38341:51:0;;;;;;;;;;;;38415:28;38411:93;;38475:9;38070:537;-1:-1:-1;;;38070:537:0:o;38411:93::-;-1:-1:-1;;;38314:6:0;38274:245;;11022:191;11115:6;;;-1:-1:-1;;;;;11132:17:0;;;-1:-1:-1;;11132:17:0;;;;;;;11165:40;;11115:6;;;11132:17;11115:6;;11165:40;;11096:16;;11165:40;11085:128;11022:191;:::o;42524:104::-;42593:27;42603:2;42607:8;42593:27;;;;;;;;;;;;:9;:27::i;48086:804::-;48241:4;-1:-1:-1;;;;;48262:13:0;;12748:19;:23;48258:625;;48298:72;;-1:-1:-1;;;48298:72:0;;-1:-1:-1;;;;;48298:36:0;;;;;:72;;8556:10;;48349:4;;48355:7;;48364:5;;48298:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48298:72:0;;;;;;;;-1:-1:-1;;48298:72:0;;;;;;;;;;;;:::i;:::-;;;48294:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48544:13:0;;48540:273;;48587:61;;-1:-1:-1;;;48587:61:0;;16566:2:1;48587:61:0;;;16548:21:1;16605:2;16585:18;;;16578:30;16644:34;16624:18;;;16617:62;16715:21;16695:18;;;16688:49;16754:19;;48587:61:0;16364:415:1;48540:273:0;48763:6;48757:13;48748:6;48744:2;48740:15;48733:38;48294:534;-1:-1:-1;;;;;;48421:55:0;-1:-1:-1;;;48421:55:0;;-1:-1:-1;48414:62:0;;48258:625;-1:-1:-1;48867:4:0;48258:625;48086:804;;;;;;:::o;52541:102::-;52601:13;52630:7;52623:14;;;;;:::i;6038:723::-;6094:13;6315:10;6311:53;;-1:-1:-1;;6342:10:0;;;;;;;;;;;;;;;;;;6038:723::o;6311:53::-;6389:5;6374:12;6430:78;6437:9;;6430:78;;6463:8;;;;:::i;:::-;;-1:-1:-1;6486:10:0;;-1:-1:-1;6494:2:0;6486:10;;:::i;:::-;;;6430:78;;;6518:19;6550:6;6540:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6540:17:0;;6518:39;;6568:154;6575:10;;6568:154;;6602:11;6612:1;6602:11;;:::i;:::-;;-1:-1:-1;6671:10:0;6679:2;6671:5;:10;:::i;:::-;6658:24;;:2;:24;:::i;:::-;6645:39;;6628:6;6635;6628:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;6699:11:0;6708:2;6699:11;;:::i;:::-;;;6568:154;;37639:229;37700:7;-1:-1:-1;;;;;37728:19:0;;37720:81;;;;-1:-1:-1;;;37720:81:0;;9793:2:1;37720:81:0;;;9775:21:1;9832:2;9812:18;;;9805:30;9871:34;9851:18;;;9844:62;9942:19;9922:18;;;9915:47;9979:19;;37720:81:0;9591:413:1;37720:81:0;-1:-1:-1;;;;;;37827:19:0;;;;;:12;:19;;;;;:32;;;;;;;37639:229::o;42991:163::-;43114:32;43120:2;43124:8;43134:5;43141:4;43552:20;43575:12;-1:-1:-1;;;;;43606:16:0;;43598:62;;;;-1:-1:-1;;;43598:62:0;;16986:2:1;43598:62:0;;;16968:21:1;17025:2;17005:18;;;16998:30;17064:34;17044:18;;;17037:62;17135:3;17115:18;;;17108:31;17156:19;;43598:62:0;16784:397:1;43598:62:0;43679:13;43671:66;;;;-1:-1:-1;;;43671:66:0;;17388:2:1;43671:66:0;;;17370:21:1;17427:2;17407:18;;;17400:30;17466:34;17446:18;;;17439:62;17537:10;17517:18;;;17510:38;17565:19;;43671:66:0;17186:404:1;43671:66:0;-1:-1:-1;;;;;44089:16:0;;;;;;:12;:16;;;;;;;;:45;;44149:50;-1:-1:-1;;44089:45:0;;;;;;;;;;;;;44149:50;;;;;;;;;;;;;;44216:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44266:66:0;;;;-1:-1:-1;;;44316:15:0;44266:66;;;;;;;44216:25;;44401:415;44421:8;44417:1;:12;44401:415;;;44460:38;;44485:12;;-1:-1:-1;;;;;44460:38:0;;;44477:1;;44460:38;;44477:1;;44460:38;44521:4;44517:249;;;44584:59;44615:1;44619:2;44623:12;44637:5;44584:22;:59::i;:::-;44550:196;;;;-1:-1:-1;;;44550:196:0;;16566:2:1;44550:196:0;;;16548:21:1;16605:2;16585:18;;;16578:30;16644:34;16624:18;;;16617:62;16715:21;16695:18;;;16688:49;16754:19;;44550:196:0;16364:415:1;44550:196:0;44786:14;;;;;44431:3;44401:415;;;-1:-1:-1;44832:12:0;:27;44883:60;41795: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;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:470::-;4485:3;4523:6;4517:13;4539:53;4585:6;4580:3;4573:4;4565:6;4561:17;4539:53;:::i;:::-;4655:13;;4614:16;;;;4677:57;4655:13;4614:16;4711:4;4699:17;;4677:57;:::i;:::-;4750:20;;4306:470;-1:-1:-1;;;;4306:470:1:o;5222:511::-;5416:4;-1:-1:-1;;;;;5526:2:1;5518:6;5514:15;5503:9;5496:34;5578:2;5570:6;5566:15;5561:2;5550:9;5546:18;5539:43;;5618:6;5613:2;5602:9;5598:18;5591:34;5661:3;5656:2;5645:9;5641:18;5634:31;5682:45;5722:3;5711:9;5707:19;5699:6;5682:45;:::i;:::-;5674:53;5222:511;-1:-1:-1;;;;;;5222:511:1:o;5930:219::-;6079:2;6068:9;6061:21;6042:4;6099:44;6139:2;6128:9;6124:18;6116:6;6099:44;:::i;20526:128::-;20566:3;20597:1;20593:6;20590:1;20587:13;20584:39;;;20603:18;;:::i;:::-;-1:-1:-1;20639:9:1;;20526:128::o;20659:120::-;20699:1;20725;20715:35;;20730:18;;:::i;:::-;-1:-1:-1;20764:9:1;;20659:120::o;20784:168::-;20824:7;20890:1;20886;20882:6;20878:14;20875:1;20872:21;20867:1;20860:9;20853:17;20849:45;20846:71;;;20897:18;;:::i;:::-;-1:-1:-1;20937:9:1;;20784:168::o;20957:125::-;20997:4;21025:1;21022;21019:8;21016:34;;;21030:18;;:::i;:::-;-1:-1:-1;21067:9:1;;20957:125::o;21087:258::-;21159:1;21169:113;21183:6;21180:1;21177:13;21169:113;;;21259:11;;;21253:18;21240:11;;;21233:39;21205:2;21198:10;21169:113;;;21300:6;21297:1;21294:13;21291:48;;;-1:-1:-1;;21335:1:1;21317:16;;21310:27;21087:258::o;21350:437::-;21429:1;21425:12;;;;21472;;;21493:61;;21547:4;21539:6;21535:17;21525:27;;21493:61;21600:2;21592:6;21589:14;21569:18;21566:38;21563:218;;;-1:-1:-1;;;21634:1:1;21627:88;21738:4;21735:1;21728:15;21766:4;21763:1;21756:15;21563:218;;21350:437;;;:::o;21792:135::-;21831:3;-1:-1:-1;;21852:17:1;;21849:43;;;21872:18;;:::i;:::-;-1:-1:-1;21919:1:1;21908:13;;21792:135::o;21932:112::-;21964:1;21990;21980:35;;21995:18;;:::i;:::-;-1:-1:-1;22029:9:1;;21932:112::o;22049:184::-;-1:-1:-1;;;22098:1:1;22091:88;22198:4;22195:1;22188:15;22222:4;22219:1;22212:15;22238:184;-1:-1:-1;;;22287:1:1;22280:88;22387:4;22384:1;22377:15;22411:4;22408:1;22401:15;22427:184;-1:-1:-1;;;22476:1:1;22469:88;22576:4;22573:1;22566:15;22600:4;22597:1;22590:15;22616:184;-1:-1:-1;;;22665:1:1;22658:88;22765:4;22762:1;22755:15;22789:4;22786:1;22779:15;22805:177;-1:-1:-1;;;;;;22883:5:1;22879:78;22872:5;22869:89;22859:117;;22972:1;22969;22962:12
Swarm Source
ipfs://369299ddb1e325f5c04feb4df2c14ccea56e6eacb731613ebe4c6deb1b81655f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.