More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 19 from a total of 19 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 108865777 | 527 days ago | IN | 0 ETH | 0.000112188324 | ||||
Mint | 108865732 | 527 days ago | IN | 0 ETH | 0.000101969464 | ||||
Withdraw All | 108596300 | 533 days ago | IN | 0 ETH | 0.000019856257 | ||||
Safe Transfer Fr... | 108385871 | 538 days ago | IN | 0 ETH | 0.00005762871 | ||||
Safe Transfer Fr... | 108385859 | 538 days ago | IN | 0 ETH | 0.000055853903 | ||||
Safe Transfer Fr... | 108385847 | 538 days ago | IN | 0 ETH | 0.000056324372 | ||||
Safe Transfer Fr... | 108385822 | 538 days ago | IN | 0 ETH | 0.000061169919 | ||||
Safe Transfer Fr... | 108385799 | 538 days ago | IN | 0 ETH | 0.000056235297 | ||||
Safe Transfer Fr... | 108385782 | 538 days ago | IN | 0 ETH | 0.000057637208 | ||||
Mint | 108385657 | 538 days ago | IN | 0 ETH | 0.000045362132 | ||||
Withdraw All | 108385645 | 538 days ago | IN | 0 ETH | 0.000043775014 | ||||
Mint | 108385630 | 538 days ago | IN | 0 ETH | 0.000049601113 | ||||
Withdraw All | 108385549 | 538 days ago | IN | 0 ETH | 0.000054357671 | ||||
Mint | 108380318 | 538 days ago | IN | 0 ETH | 0.000034509285 | ||||
Safe Transfer Fr... | 108378763 | 539 days ago | IN | 0 ETH | 0.000031042235 | ||||
Mint | 108378722 | 539 days ago | IN | 0 ETH | 0.000023382886 | ||||
Withdraw All | 108378704 | 539 days ago | IN | 0 ETH | 0.000022248475 | ||||
Mint | 108378385 | 539 days ago | IN | 0 ETH | 0.0000234484 | ||||
Transfer Ownersh... | 108378348 | 539 days ago | IN | 0 ETH | 0.000028832366 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
DGNPUNKS
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at optimistic.etherscan.io on 2023-08-18 */ // SPDX-License-Identifier: MIT // File @openzeppelin-4/contracts/utils/[email protected] // 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-4/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin-4/contracts/utils/introspection/[email protected] // 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-4/contracts/interfaces/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) external view returns (address receiver, uint256 royaltyAmount); } // File @openzeppelin-4/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File @openzeppelin-4/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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); } // File @openzeppelin-4/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.7.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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin-4/contracts/token/ERC20/utils/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (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)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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-4/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File @openzeppelin-4/contracts/token/ERC721/extensions/[email protected] // 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 @openzeppelin-4/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin-4/contracts/utils/introspection/[email protected] // 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-4/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // 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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File @openzeppelin-4/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 tokenId) internal virtual {} } // File @openzeppelin-4/contracts/security/[email protected] // 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-4/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File contracts/BIFI/infra/DGNPUNKS.sol pragma solidity 0.8.15; contract DGNPUNKS is ERC721, Ownable, IERC2981, ReentrancyGuard { using SafeERC20 for IERC20; using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; uint256 public constant MAX_SUPPLY = 100; uint256 public constant PRICE = 69 * 10 ** 18; uint256 public constant MAX_PER_TX = 4; uint256 public constant ROYALTY_FEE_PERCENT = 1; string public baseURI; string public baseExtension = ".json"; bool public mintStarted = true; address public royaltyReceiver; IERC20 public paymentToken; constructor(address _paymentToken) ERC721("Degen Punks", "DGNPUNKS") { royaltyReceiver = 0xc8f566901B02Bf19154ce056977c814569693EE3; baseURI = "ipfs://QmNbc4dRTQisArFkr7LebztAwCiD4LbC4zcTCrQEsadSZp/"; paymentToken = IERC20(_paymentToken); } // only owner function setMintStarted(bool _state) external onlyOwner { mintStarted = _state; } function withdrawAll() external onlyOwner { uint256 tokenBalance = paymentToken.balanceOf(address(this)); require(tokenBalance > 0, "Zero payment token balance"); paymentToken.safeTransfer(owner(), tokenBalance); } // read function royaltyInfo( uint256, uint256 _salePrice ) external view override returns (address receiver, uint256 royaltyAmount) { receiver = royaltyReceiver; royaltyAmount = (_salePrice * ROYALTY_FEE_PERCENT) / 100; } function totalSupply() external view returns (uint256) { return _tokenIdCounter.current(); } // internal and private function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _mintSingleNFT() private { uint newTokenID = _tokenIdCounter.current() + 1; _safeMint(msg.sender, newTokenID); _tokenIdCounter.increment(); } // add .json to token uri function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } // minting function mint(uint256 quantity) external nonReentrant { uint totalMinted = _tokenIdCounter.current(); require(mintStarted, "Minting is not allowed"); require(quantity <= MAX_PER_TX, "Exceeded maximum per transaction"); require(totalMinted + quantity <= MAX_SUPPLY, "Exceeded maximum supply"); uint256 paymentAmount = PRICE * quantity; paymentToken.safeTransferFrom(msg.sender, address(this), paymentAmount); for (uint256 i = 0; i < quantity; i++) { _mintSingleNFT(); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_paymentToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_FEE_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paymentToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMintStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608090815264173539b7b760d91b60a052600a906200002690826200025d565b50600b805460ff191660011790553480156200004157600080fd5b506040516200222638038062002226833981016040819052620000649162000329565b6040518060400160405280600b81526020016a446567656e2050756e6b7360a81b8152506040518060400160405280600881526020016744474e50554e4b5360c01b8152508160009081620000ba91906200025d565b506001620000c982826200025d565b505050620000e6620000e06200016260201b60201c565b62000166565b6001600755600b8054610100600160a81b03191674c8f566901b02bf19154ce056977c814569693ee30017905560408051606081019091526036808252620021f060208301396009906200013b90826200025d565b50600c80546001600160a01b0319166001600160a01b03929092169190911790556200035b565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001e357607f821691505b6020821081036200020457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200025857600081815260208120601f850160051c81016020861015620002335750805b601f850160051c820191505b8181101562000254578281556001016200023f565b5050505b505050565b81516001600160401b03811115620002795762000279620001b8565b62000291816200028a8454620001ce565b846200020a565b602080601f831160018114620002c95760008415620002b05750858301515b600019600386901b1c1916600185901b17855562000254565b600085815260208120601f198616915b82811015620002fa57888601518255948401946001909101908401620002d9565b5085821015620003195787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200033c57600080fd5b81516001600160a01b03811681146200035457600080fd5b9392505050565b611e85806200036b6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063a22cb465116100a2578063c87b56dd11610071578063c87b56dd146103cd578063e985e9c5146103e0578063f2fde38b1461041c578063f43a22dc1461042f57600080fd5b8063a22cb46514610392578063a9722cf3146103a5578063b88d4fde146103b2578063c6682862146103c557600080fd5b80638da5cb5b116100de5780638da5cb5b1461034e57806395d89b411461035f5780639fbc871314610367578063a0712d681461037f57600080fd5b8063715018a61461032e578063853828b6146103365780638d859f3e1461033e57600080fd5b80632a55205a1161017c5780636352211e1161014b5780636352211e146102ed57806365c6df3a146103005780636c0360eb1461031357806370a082311461031b57600080fd5b80632a55205a1461028d5780633013ce29146102bf57806332cb6b0c146102d257806342842e0e146102da57600080fd5b8063095ea7b3116101b8578063095ea7b3146102475780630e1e0ef51461025c57806318160ddd1461027257806323b872dd1461027a57600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611853565b610437565b60405190151581526020015b60405180910390f35b61020f610489565b6040516101fe91906118c8565b61022f61022a3660046118db565b61051b565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004611910565b610542565b005b610264600181565b6040519081526020016101fe565b61026461065c565b61025a61028836600461193a565b61066c565b6102a061029b366004611976565b61069d565b604080516001600160a01b0390931683526020830191909152016101fe565b600c5461022f906001600160a01b031681565b610264606481565b61025a6102e836600461193a565b6106d0565b61022f6102fb3660046118db565b6106eb565b61025a61030e3660046119a6565b61074b565b61020f610766565b6102646103293660046119c3565b6107f4565b61025a61087a565b61025a61088e565b6102646803bd913e6c1df4000081565b6006546001600160a01b031661022f565b61020f610980565b600b5461022f9061010090046001600160a01b031681565b61025a61038d3660046118db565b61098f565b61025a6103a03660046119de565b610b4a565b600b546101f29060ff1681565b61025a6103c0366004611a2b565b610b59565b61020f610b91565b61020f6103db3660046118db565b610b9e565b6101f26103ee366004611b07565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61025a61042a3660046119c3565b610c7c565b610264600481565b60006001600160e01b031982166380ac58cd60e01b148061046857506001600160e01b03198216635b5e139f60e01b145b8061048357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461049890611b31565b80601f01602080910402602001604051908101604052809291908181526020018280546104c490611b31565b80156105115780601f106104e657610100808354040283529160200191610511565b820191906000526020600020905b8154815290600101906020018083116104f457829003601f168201915b5050505050905090565b600061052682610cf2565b506000908152600460205260409020546001600160a01b031690565b600061054d826106eb565b9050806001600160a01b0316836001600160a01b0316036105bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806105db57506105db81336103ee565b61064d5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016105b6565b6106578383610d51565b505050565b600061066760085490565b905090565b6106763382610dbf565b6106925760405162461bcd60e51b81526004016105b690611b6b565b610657838383610e3e565b600b5461010090046001600160a01b0316600060646106bd600185611bcf565b6106c79190611c04565b90509250929050565b61065783838360405180602001604052806000815250610b59565b6000818152600260205260408120546001600160a01b0316806104835760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105b6565b610753610fda565b600b805460ff1916911515919091179055565b6009805461077390611b31565b80601f016020809104026020016040519081016040528092919081815260200182805461079f90611b31565b80156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b505050505081565b60006001600160a01b03821661085e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105b6565b506001600160a01b031660009081526003602052604090205490565b610882610fda565b61088c6000611034565b565b610896610fda565b600c546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156108df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109039190611c18565b9050600081116109555760405162461bcd60e51b815260206004820152601a60248201527f5a65726f207061796d656e7420746f6b656e2062616c616e636500000000000060448201526064016105b6565b61097d61096a6006546001600160a01b031690565b600c546001600160a01b03169083611086565b50565b60606001805461049890611b31565b6002600754036109e15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105b6565b600260075560006109f160085490565b600b5490915060ff16610a3f5760405162461bcd60e51b8152602060048201526016602482015275135a5b9d1a5b99c81a5cc81b9bdd08185b1b1bddd95960521b60448201526064016105b6565b6004821115610a905760405162461bcd60e51b815260206004820181905260248201527f4578636565646564206d6178696d756d20706572207472616e73616374696f6e60448201526064016105b6565b6064610a9c8383611c31565b1115610aea5760405162461bcd60e51b815260206004820152601760248201527f4578636565646564206d6178696d756d20737570706c7900000000000000000060448201526064016105b6565b6000610aff836803bd913e6c1df40000611bcf565b600c54909150610b1a906001600160a01b03163330846110e9565b60005b83811015610b3f57610b2d611121565b80610b3781611c49565b915050610b1d565b505060016007555050565b610b55338383611151565b5050565b610b633383610dbf565b610b7f5760405162461bcd60e51b81526004016105b690611b6b565b610b8b8484848461121f565b50505050565b600a805461077390611b31565b6000818152600260205260409020546060906001600160a01b0316610c1d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105b6565b6000610c27611252565b90506000815111610c475760405180602001604052806000815250610c75565b80610c5184611261565b600a604051602001610c6593929190611c62565b6040516020818303038152906040525b9392505050565b610c84610fda565b6001600160a01b038116610ce95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b6565b61097d81611034565b6000818152600260205260409020546001600160a01b031661097d5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105b6565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d86826106eb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610dcb836106eb565b9050806001600160a01b0316846001600160a01b03161480610e1257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610e365750836001600160a01b0316610e2b8461051b565b6001600160a01b0316145b949350505050565b826001600160a01b0316610e51826106eb565b6001600160a01b031614610eb55760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105b6565b6001600160a01b038216610f175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b6565b610f22600082610d51565b6001600160a01b0383166000908152600360205260408120805460019290610f4b908490611d29565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f79908490611c31565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b0316331461088c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b6565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516001600160a01b03831660248201526044810182905261065790849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611362565b6040516001600160a01b0380851660248301528316604482015260648101829052610b8b9085906323b872dd60e01b906084016110b2565b600061112c60085490565b611137906001611c31565b90506111433382611434565b61097d600880546001019055565b816001600160a01b0316836001600160a01b0316036111b25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105b6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61122a848484610e3e565b6112368484848461144e565b610b8b5760405162461bcd60e51b81526004016105b690611d40565b60606009805461049890611b31565b6060816000036112885750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112b2578061129c81611c49565b91506112ab9050600a83611c04565b915061128c565b60008167ffffffffffffffff8111156112cd576112cd611a15565b6040519080825280601f01601f1916602001820160405280156112f7576020820181803683370190505b5090505b8415610e365761130c600183611d29565b9150611319600a86611d92565b611324906030611c31565b60f81b81838151811061133957611339611da6565b60200101906001600160f81b031916908160001a90535061135b600a86611c04565b94506112fb565b60006113b7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661154f9092919063ffffffff16565b80519091501561065757808060200190518101906113d59190611dbc565b6106575760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016105b6565b610b5582826040518060200160405280600081525061155e565b60006001600160a01b0384163b1561154457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611492903390899088908890600401611dd9565b6020604051808303816000875af19250505080156114cd575060408051601f3d908101601f191682019092526114ca91810190611e16565b60015b61152a573d8080156114fb576040519150601f19603f3d011682016040523d82523d6000602084013e611500565b606091505b5080516000036115225760405162461bcd60e51b81526004016105b690611d40565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e36565b506001949350505050565b6060610e368484600085611591565b61156883836116c2565b611575600084848461144e565b6106575760405162461bcd60e51b81526004016105b690611d40565b6060824710156115f25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016105b6565b6001600160a01b0385163b6116495760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016105b6565b600080866001600160a01b031685876040516116659190611e33565b60006040518083038185875af1925050503d80600081146116a2576040519150601f19603f3d011682016040523d82523d6000602084013e6116a7565b606091505b50915091506116b7828286611804565b979650505050505050565b6001600160a01b0382166117185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105b6565b6000818152600260205260409020546001600160a01b03161561177d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105b6565b6001600160a01b03821660009081526003602052604081208054600192906117a6908490611c31565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608315611813575081610c75565b8251156118235782518084602001fd5b8160405162461bcd60e51b81526004016105b691906118c8565b6001600160e01b03198116811461097d57600080fd5b60006020828403121561186557600080fd5b8135610c758161183d565b60005b8381101561188b578181015183820152602001611873565b83811115610b8b5750506000910152565b600081518084526118b4816020860160208601611870565b601f01601f19169290920160200192915050565b602081526000610c75602083018461189c565b6000602082840312156118ed57600080fd5b5035919050565b80356001600160a01b038116811461190b57600080fd5b919050565b6000806040838503121561192357600080fd5b61192c836118f4565b946020939093013593505050565b60008060006060848603121561194f57600080fd5b611958846118f4565b9250611966602085016118f4565b9150604084013590509250925092565b6000806040838503121561198957600080fd5b50508035926020909101359150565b801515811461097d57600080fd5b6000602082840312156119b857600080fd5b8135610c7581611998565b6000602082840312156119d557600080fd5b610c75826118f4565b600080604083850312156119f157600080fd5b6119fa836118f4565b91506020830135611a0a81611998565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611a4157600080fd5b611a4a856118f4565b9350611a58602086016118f4565b925060408501359150606085013567ffffffffffffffff80821115611a7c57600080fd5b818701915087601f830112611a9057600080fd5b813581811115611aa257611aa2611a15565b604051601f8201601f19908116603f01168101908382118183101715611aca57611aca611a15565b816040528281528a6020848701011115611ae357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611b1a57600080fd5b611b23836118f4565b91506106c7602084016118f4565b600181811c90821680611b4557607f821691505b602082108103611b6557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611be957611be9611bb9565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611c1357611c13611bee565b500490565b600060208284031215611c2a57600080fd5b5051919050565b60008219821115611c4457611c44611bb9565b500190565b600060018201611c5b57611c5b611bb9565b5060010190565b600084516020611c758285838a01611870565b855191840191611c888184848a01611870565b8554920191600090600181811c9080831680611ca557607f831692505b8583108103611cc257634e487b7160e01b85526022600452602485fd5b808015611cd65760018114611ceb57611d18565b60ff1985168852831515840288019550611d18565b60008b81526020902060005b85811015611d105781548a820152908401908801611cf7565b505083880195505b50939b9a5050505050505050505050565b600082821015611d3b57611d3b611bb9565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082611da157611da1611bee565b500690565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611dce57600080fd5b8151610c7581611998565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e0c9083018461189c565b9695505050505050565b600060208284031215611e2857600080fd5b8151610c758161183d565b60008251611e45818460208701611870565b919091019291505056fea2646970667358221220b20908038320e0a33b3da76cc389df830ae1acd2a0710ad7b4fb39f8f009da7264736f6c634300080f0033697066733a2f2f516d4e6263346452545169734172466b72374c65627a744177436944344c6243347a635443725145736164535a702f000000000000000000000000f9e1f4eede806fda20f4084d9f9c4c2b36e38e77
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063a22cb465116100a2578063c87b56dd11610071578063c87b56dd146103cd578063e985e9c5146103e0578063f2fde38b1461041c578063f43a22dc1461042f57600080fd5b8063a22cb46514610392578063a9722cf3146103a5578063b88d4fde146103b2578063c6682862146103c557600080fd5b80638da5cb5b116100de5780638da5cb5b1461034e57806395d89b411461035f5780639fbc871314610367578063a0712d681461037f57600080fd5b8063715018a61461032e578063853828b6146103365780638d859f3e1461033e57600080fd5b80632a55205a1161017c5780636352211e1161014b5780636352211e146102ed57806365c6df3a146103005780636c0360eb1461031357806370a082311461031b57600080fd5b80632a55205a1461028d5780633013ce29146102bf57806332cb6b0c146102d257806342842e0e146102da57600080fd5b8063095ea7b3116101b8578063095ea7b3146102475780630e1e0ef51461025c57806318160ddd1461027257806323b872dd1461027a57600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611853565b610437565b60405190151581526020015b60405180910390f35b61020f610489565b6040516101fe91906118c8565b61022f61022a3660046118db565b61051b565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004611910565b610542565b005b610264600181565b6040519081526020016101fe565b61026461065c565b61025a61028836600461193a565b61066c565b6102a061029b366004611976565b61069d565b604080516001600160a01b0390931683526020830191909152016101fe565b600c5461022f906001600160a01b031681565b610264606481565b61025a6102e836600461193a565b6106d0565b61022f6102fb3660046118db565b6106eb565b61025a61030e3660046119a6565b61074b565b61020f610766565b6102646103293660046119c3565b6107f4565b61025a61087a565b61025a61088e565b6102646803bd913e6c1df4000081565b6006546001600160a01b031661022f565b61020f610980565b600b5461022f9061010090046001600160a01b031681565b61025a61038d3660046118db565b61098f565b61025a6103a03660046119de565b610b4a565b600b546101f29060ff1681565b61025a6103c0366004611a2b565b610b59565b61020f610b91565b61020f6103db3660046118db565b610b9e565b6101f26103ee366004611b07565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61025a61042a3660046119c3565b610c7c565b610264600481565b60006001600160e01b031982166380ac58cd60e01b148061046857506001600160e01b03198216635b5e139f60e01b145b8061048357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461049890611b31565b80601f01602080910402602001604051908101604052809291908181526020018280546104c490611b31565b80156105115780601f106104e657610100808354040283529160200191610511565b820191906000526020600020905b8154815290600101906020018083116104f457829003601f168201915b5050505050905090565b600061052682610cf2565b506000908152600460205260409020546001600160a01b031690565b600061054d826106eb565b9050806001600160a01b0316836001600160a01b0316036105bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806105db57506105db81336103ee565b61064d5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016105b6565b6106578383610d51565b505050565b600061066760085490565b905090565b6106763382610dbf565b6106925760405162461bcd60e51b81526004016105b690611b6b565b610657838383610e3e565b600b5461010090046001600160a01b0316600060646106bd600185611bcf565b6106c79190611c04565b90509250929050565b61065783838360405180602001604052806000815250610b59565b6000818152600260205260408120546001600160a01b0316806104835760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105b6565b610753610fda565b600b805460ff1916911515919091179055565b6009805461077390611b31565b80601f016020809104026020016040519081016040528092919081815260200182805461079f90611b31565b80156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b505050505081565b60006001600160a01b03821661085e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105b6565b506001600160a01b031660009081526003602052604090205490565b610882610fda565b61088c6000611034565b565b610896610fda565b600c546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156108df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109039190611c18565b9050600081116109555760405162461bcd60e51b815260206004820152601a60248201527f5a65726f207061796d656e7420746f6b656e2062616c616e636500000000000060448201526064016105b6565b61097d61096a6006546001600160a01b031690565b600c546001600160a01b03169083611086565b50565b60606001805461049890611b31565b6002600754036109e15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105b6565b600260075560006109f160085490565b600b5490915060ff16610a3f5760405162461bcd60e51b8152602060048201526016602482015275135a5b9d1a5b99c81a5cc81b9bdd08185b1b1bddd95960521b60448201526064016105b6565b6004821115610a905760405162461bcd60e51b815260206004820181905260248201527f4578636565646564206d6178696d756d20706572207472616e73616374696f6e60448201526064016105b6565b6064610a9c8383611c31565b1115610aea5760405162461bcd60e51b815260206004820152601760248201527f4578636565646564206d6178696d756d20737570706c7900000000000000000060448201526064016105b6565b6000610aff836803bd913e6c1df40000611bcf565b600c54909150610b1a906001600160a01b03163330846110e9565b60005b83811015610b3f57610b2d611121565b80610b3781611c49565b915050610b1d565b505060016007555050565b610b55338383611151565b5050565b610b633383610dbf565b610b7f5760405162461bcd60e51b81526004016105b690611b6b565b610b8b8484848461121f565b50505050565b600a805461077390611b31565b6000818152600260205260409020546060906001600160a01b0316610c1d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105b6565b6000610c27611252565b90506000815111610c475760405180602001604052806000815250610c75565b80610c5184611261565b600a604051602001610c6593929190611c62565b6040516020818303038152906040525b9392505050565b610c84610fda565b6001600160a01b038116610ce95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b6565b61097d81611034565b6000818152600260205260409020546001600160a01b031661097d5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105b6565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d86826106eb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610dcb836106eb565b9050806001600160a01b0316846001600160a01b03161480610e1257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610e365750836001600160a01b0316610e2b8461051b565b6001600160a01b0316145b949350505050565b826001600160a01b0316610e51826106eb565b6001600160a01b031614610eb55760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105b6565b6001600160a01b038216610f175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b6565b610f22600082610d51565b6001600160a01b0383166000908152600360205260408120805460019290610f4b908490611d29565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f79908490611c31565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b0316331461088c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b6565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516001600160a01b03831660248201526044810182905261065790849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611362565b6040516001600160a01b0380851660248301528316604482015260648101829052610b8b9085906323b872dd60e01b906084016110b2565b600061112c60085490565b611137906001611c31565b90506111433382611434565b61097d600880546001019055565b816001600160a01b0316836001600160a01b0316036111b25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105b6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61122a848484610e3e565b6112368484848461144e565b610b8b5760405162461bcd60e51b81526004016105b690611d40565b60606009805461049890611b31565b6060816000036112885750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112b2578061129c81611c49565b91506112ab9050600a83611c04565b915061128c565b60008167ffffffffffffffff8111156112cd576112cd611a15565b6040519080825280601f01601f1916602001820160405280156112f7576020820181803683370190505b5090505b8415610e365761130c600183611d29565b9150611319600a86611d92565b611324906030611c31565b60f81b81838151811061133957611339611da6565b60200101906001600160f81b031916908160001a90535061135b600a86611c04565b94506112fb565b60006113b7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661154f9092919063ffffffff16565b80519091501561065757808060200190518101906113d59190611dbc565b6106575760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016105b6565b610b5582826040518060200160405280600081525061155e565b60006001600160a01b0384163b1561154457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611492903390899088908890600401611dd9565b6020604051808303816000875af19250505080156114cd575060408051601f3d908101601f191682019092526114ca91810190611e16565b60015b61152a573d8080156114fb576040519150601f19603f3d011682016040523d82523d6000602084013e611500565b606091505b5080516000036115225760405162461bcd60e51b81526004016105b690611d40565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e36565b506001949350505050565b6060610e368484600085611591565b61156883836116c2565b611575600084848461144e565b6106575760405162461bcd60e51b81526004016105b690611d40565b6060824710156115f25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016105b6565b6001600160a01b0385163b6116495760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016105b6565b600080866001600160a01b031685876040516116659190611e33565b60006040518083038185875af1925050503d80600081146116a2576040519150601f19603f3d011682016040523d82523d6000602084013e6116a7565b606091505b50915091506116b7828286611804565b979650505050505050565b6001600160a01b0382166117185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105b6565b6000818152600260205260409020546001600160a01b03161561177d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105b6565b6001600160a01b03821660009081526003602052604081208054600192906117a6908490611c31565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608315611813575081610c75565b8251156118235782518084602001fd5b8160405162461bcd60e51b81526004016105b691906118c8565b6001600160e01b03198116811461097d57600080fd5b60006020828403121561186557600080fd5b8135610c758161183d565b60005b8381101561188b578181015183820152602001611873565b83811115610b8b5750506000910152565b600081518084526118b4816020860160208601611870565b601f01601f19169290920160200192915050565b602081526000610c75602083018461189c565b6000602082840312156118ed57600080fd5b5035919050565b80356001600160a01b038116811461190b57600080fd5b919050565b6000806040838503121561192357600080fd5b61192c836118f4565b946020939093013593505050565b60008060006060848603121561194f57600080fd5b611958846118f4565b9250611966602085016118f4565b9150604084013590509250925092565b6000806040838503121561198957600080fd5b50508035926020909101359150565b801515811461097d57600080fd5b6000602082840312156119b857600080fd5b8135610c7581611998565b6000602082840312156119d557600080fd5b610c75826118f4565b600080604083850312156119f157600080fd5b6119fa836118f4565b91506020830135611a0a81611998565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611a4157600080fd5b611a4a856118f4565b9350611a58602086016118f4565b925060408501359150606085013567ffffffffffffffff80821115611a7c57600080fd5b818701915087601f830112611a9057600080fd5b813581811115611aa257611aa2611a15565b604051601f8201601f19908116603f01168101908382118183101715611aca57611aca611a15565b816040528281528a6020848701011115611ae357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611b1a57600080fd5b611b23836118f4565b91506106c7602084016118f4565b600181811c90821680611b4557607f821691505b602082108103611b6557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611be957611be9611bb9565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611c1357611c13611bee565b500490565b600060208284031215611c2a57600080fd5b5051919050565b60008219821115611c4457611c44611bb9565b500190565b600060018201611c5b57611c5b611bb9565b5060010190565b600084516020611c758285838a01611870565b855191840191611c888184848a01611870565b8554920191600090600181811c9080831680611ca557607f831692505b8583108103611cc257634e487b7160e01b85526022600452602485fd5b808015611cd65760018114611ceb57611d18565b60ff1985168852831515840288019550611d18565b60008b81526020902060005b85811015611d105781548a820152908401908801611cf7565b505083880195505b50939b9a5050505050505050505050565b600082821015611d3b57611d3b611bb9565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082611da157611da1611bee565b500690565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611dce57600080fd5b8151610c7581611998565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e0c9083018461189c565b9695505050505050565b600060208284031215611e2857600080fd5b8151610c758161183d565b60008251611e45818460208701611870565b919091019291505056fea2646970667358221220b20908038320e0a33b3da76cc389df830ae1acd2a0710ad7b4fb39f8f009da7264736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f9e1f4eede806fda20f4084d9f9c4c2b36e38e77
-----Decoded View---------------
Arg [0] : _paymentToken (address): 0xF9e1F4EEdE806FDA20f4084d9f9c4c2b36E38e77
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f9e1f4eede806fda20f4084d9f9c4c2b36e38e77
Deployed Bytecode Sourcemap
52278:3049:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35112:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35112:305:0;;;;;;;;36039:100;;;:::i;:::-;;;;;;;:::i;37552:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;37552:171:0;1528:203:1;37069:417:0;;;;;;:::i;:::-;;:::i;:::-;;52651:47;;52697:1;52651:47;;;;;2319:25:1;;;2307:2;2292:18;52651:47:0;2173:177:1;53833:106:0;;;:::i;38252:302::-;;;;;;:::i;:::-;;:::i;53565:260::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3133:32:1;;;3115:51;;3197:2;3182:18;;3175:34;;;;3088:18;53565:260:0;2941:274:1;52857:26:0;;;;;-1:-1:-1;;;;;52857:26:0;;;52507:40;;52544:3;52507:40;;38625:151;;;;;;:::i;:::-;;:::i;35750:222::-;;;;;;:::i;:::-;;:::i;53193:95::-;;;;;;:::i;:::-;;:::i;52707:21::-;;;:::i;35481:207::-;;;;;;:::i;:::-;;:::i;2821:103::-;;;:::i;53296:246::-;;;:::i;52554:45::-;;52586:13;52554:45;;2173:87;2246:6;;-1:-1:-1;;;;;2246:6:0;2173:87;;36208:104;;;:::i;52820:30::-;;;;;;;;-1:-1:-1;;;;;52820:30:0;;;54758:566;;;;;;:::i;:::-;;:::i;37795:155::-;;;;;;:::i;:::-;;:::i;52781:30::-;;;;;;;;;38847:280;;;;;;:::i;:::-;;:::i;52735:37::-;;;:::i;54317:415::-;;;;;;:::i;:::-;;:::i;38021:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;38142:25:0;;;38118:4;38142:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38021:164;3079:201;;;;;;:::i;:::-;;:::i;52606:38::-;;52643:1;52606:38;;35112:305;35214:4;-1:-1:-1;;;;;;35251:40:0;;-1:-1:-1;;;35251:40:0;;:105;;-1:-1:-1;;;;;;;35308:48:0;;-1:-1:-1;;;35308:48:0;35251:105;:158;;;-1:-1:-1;;;;;;;;;;31155:40:0;;;35373:36;35231:178;35112:305;-1:-1:-1;;35112:305:0:o;36039:100::-;36093:13;36126:5;36119:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36039:100;:::o;37552:171::-;37628:7;37648:23;37663:7;37648:14;:23::i;:::-;-1:-1:-1;37691:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37691:24:0;;37552:171::o;37069:417::-;37150:13;37166:23;37181:7;37166:14;:23::i;:::-;37150:39;;37214:5;-1:-1:-1;;;;;37208:11:0;:2;-1:-1:-1;;;;;37208:11:0;;37200:57;;;;-1:-1:-1;;;37200:57:0;;6449:2:1;37200:57:0;;;6431:21:1;6488:2;6468:18;;;6461:30;6527:34;6507:18;;;6500:62;-1:-1:-1;;;6578:18:1;;;6571:31;6619:19;;37200:57:0;;;;;;;;;800:10;-1:-1:-1;;;;;37292:21:0;;;;:62;;-1:-1:-1;37317:37:0;37334:5;800:10;38021:164;:::i;37317:37::-;37270:174;;;;-1:-1:-1;;;37270:174:0;;6851:2:1;37270:174:0;;;6833:21:1;6890:2;6870:18;;;6863:30;6929:34;6909:18;;;6902:62;7000:32;6980:18;;;6973:60;7050:19;;37270:174:0;6649:426:1;37270:174:0;37457:21;37466:2;37470:7;37457:8;:21::i;:::-;37139:347;37069:417;;:::o;53833:106::-;53879:7;53906:25;:15;51705:14;;51613:114;53906:25;53899:32;;53833:106;:::o;38252:302::-;38413:41;800:10;38446:7;38413:18;:41::i;:::-;38405:100;;;;-1:-1:-1;;;38405:100:0;;;;;;;:::i;:::-;38518:28;38528:4;38534:2;38538:7;38518:9;:28::i;53565:260::-;53735:15;;;;;-1:-1:-1;;;;;53735:15:0;53672:16;53814:3;53778:32;53735:15;53778:10;:32;:::i;:::-;53777:40;;;;:::i;:::-;53761:56;;53565:260;;;;;:::o;38625:151::-;38729:39;38746:4;38752:2;38756:7;38729:39;;;;;;;;;;;;:16;:39::i;35750:222::-;35822:7;35858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35858:16:0;;35885:56;;;;-1:-1:-1;;;35885:56:0;;8259:2:1;35885:56:0;;;8241:21:1;8298:2;8278:18;;;8271:30;-1:-1:-1;;;8317:18:1;;;8310:54;8381:18;;35885:56:0;8057:348:1;53193:95:0;2059:13;:11;:13::i;:::-;53260:11:::1;:20:::0;;-1:-1:-1;;53260:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53193:95::o;52707:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35481:207::-;35553:7;-1:-1:-1;;;;;35581:19:0;;35573:73;;;;-1:-1:-1;;;35573:73:0;;8612:2:1;35573:73:0;;;8594:21:1;8651:2;8631:18;;;8624:30;8690:34;8670:18;;;8663:62;-1:-1:-1;;;8741:18:1;;;8734:39;8790:19;;35573:73:0;8410:405:1;35573:73:0;-1:-1:-1;;;;;;35664:16:0;;;;;:9;:16;;;;;;;35481:207::o;2821:103::-;2059:13;:11;:13::i;:::-;2886:30:::1;2913:1;2886:18;:30::i;:::-;2821:103::o:0;53296:246::-;2059:13;:11;:13::i;:::-;53372:12:::1;::::0;:37:::1;::::0;-1:-1:-1;;;53372:37:0;;53403:4:::1;53372:37;::::0;::::1;1674:51:1::0;53349:20:0::1;::::0;-1:-1:-1;;;;;53372:12:0::1;::::0;:22:::1;::::0;1647:18:1;;53372:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53349:60;;53443:1;53428:12;:16;53420:55;;;::::0;-1:-1:-1;;;53420:55:0;;9211:2:1;53420:55:0::1;::::0;::::1;9193:21:1::0;9250:2;9230:18;;;9223:30;9289:28;9269:18;;;9262:56;9335:18;;53420:55:0::1;9009:350:1::0;53420:55:0::1;53486:48;53512:7;2246:6:::0;;-1:-1:-1;;;;;2246:6:0;;2173:87;53512:7:::1;53486:12;::::0;-1:-1:-1;;;;;53486:12:0::1;::::0;53521;53486:25:::1;:48::i;:::-;53338:204;53296:246::o:0;36208:104::-;36264:13;36297:7;36290:14;;;;;:::i;54758:566::-;49788:1;50386:7;;:19;50378:63;;;;-1:-1:-1;;;50378:63:0;;9566:2:1;50378:63:0;;;9548:21:1;9605:2;9585:18;;;9578:30;9644:33;9624:18;;;9617:61;9695:18;;50378:63:0;9364:355:1;50378:63:0;49788:1;50519:7;:18;54823:16:::1;54842:25;:15;51705:14:::0;;51613:114;54842:25:::1;54888:11;::::0;54823:44;;-1:-1:-1;54888:11:0::1;;54880:46;;;::::0;-1:-1:-1;;;54880:46:0;;9926:2:1;54880:46:0::1;::::0;::::1;9908:21:1::0;9965:2;9945:18;;;9938:30;-1:-1:-1;;;9984:18:1;;;9977:52;10046:18;;54880:46:0::1;9724:346:1::0;54880:46:0::1;52643:1;54945:8;:22;;54937:67;;;::::0;-1:-1:-1;;;54937:67:0;;10277:2:1;54937:67:0::1;::::0;::::1;10259:21:1::0;;;10296:18;;;10289:30;10355:34;10335:18;;;10328:62;10407:18;;54937:67:0::1;10075:356:1::0;54937:67:0::1;52544:3;55023:22;55037:8:::0;55023:11;:22:::1;:::i;:::-;:36;;55015:72;;;::::0;-1:-1:-1;;;55015:72:0;;10771:2:1;55015:72:0::1;::::0;::::1;10753:21:1::0;10810:2;10790:18;;;10783:30;10849:25;10829:18;;;10822:53;10892:18;;55015:72:0::1;10569:347:1::0;55015:72:0::1;55100:21;55124:16;55132:8:::0;52586:13:::1;55124:16;:::i;:::-;55151:12;::::0;55100:40;;-1:-1:-1;55151:71:0::1;::::0;-1:-1:-1;;;;;55151:12:0::1;55181:10;55201:4;55100:40:::0;55151:29:::1;:71::i;:::-;55240:9;55235:82;55259:8;55255:1;:12;55235:82;;;55289:16;:14;:16::i;:::-;55269:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55235:82;;;-1:-1:-1::0;;49744:1:0;50698:7;:22;-1:-1:-1;;54758:566:0:o;37795:155::-;37890:52;800:10;37923:8;37933;37890:18;:52::i;:::-;37795:155;;:::o;38847:280::-;38978:41;800:10;39011:7;38978:18;:41::i;:::-;38970:100;;;;-1:-1:-1;;;38970:100:0;;;;;;;:::i;:::-;39081:38;39095:4;39101:2;39105:7;39114:4;39081:13;:38::i;:::-;38847:280;;;;:::o;52735:37::-;;;;;;;:::i;54317:415::-;40656:4;40680:16;;;:7;:16;;;;;;54390:13;;-1:-1:-1;;;;;40680:16:0;54416:76;;;;-1:-1:-1;;;54416:76:0;;11263:2:1;54416:76:0;;;11245:21:1;11302:2;11282:18;;;11275:30;11341:34;11321:18;;;11314:62;-1:-1:-1;;;11392:18:1;;;11385:45;11447:19;;54416:76:0;11061:411:1;54416:76:0;54503:28;54534:10;:8;:10::i;:::-;54503:41;;54606:1;54581:14;54575:28;:32;:149;;;;;;;;;;;;;;;;;54651:14;54667:18;:7;:16;:18::i;:::-;54687:13;54634:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54575:149;54555:169;54317:415;-1:-1:-1;;;54317:415:0:o;3079:201::-;2059:13;:11;:13::i;:::-;-1:-1:-1;;;;;3168:22:0;::::1;3160:73;;;::::0;-1:-1:-1;;;3160:73:0;;13368:2:1;3160:73:0::1;::::0;::::1;13350:21:1::0;13407:2;13387:18;;;13380:30;13446:34;13426:18;;;13419:62;-1:-1:-1;;;13497:18:1;;;13490:36;13543:19;;3160:73:0::1;13166:402:1::0;3160:73:0::1;3244:28;3263:8;3244:18;:28::i;45271:135::-:0;40656:4;40680:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40680:16:0;45345:53;;;;-1:-1:-1;;;45345:53:0;;8259:2:1;45345:53:0;;;8241:21:1;8298:2;8278:18;;;8271:30;-1:-1:-1;;;8317:18:1;;;8310:54;8381:18;;45345:53:0;8057:348:1;44584:174:0;44659:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44659:29:0;-1:-1:-1;;;;;44659:29:0;;;;;;;;:24;;44713:23;44659:24;44713:14;:23::i;:::-;-1:-1:-1;;;;;44704:46:0;;;;;;;;;;;44584:174;;:::o;40885:264::-;40978:4;40995:13;41011:23;41026:7;41011:14;:23::i;:::-;40995:39;;41064:5;-1:-1:-1;;;;;41053:16:0;:7;-1:-1:-1;;;;;41053:16:0;;:52;;;-1:-1:-1;;;;;;38142:25:0;;;38118:4;38142:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41073:32;41053:87;;;;41133:7;-1:-1:-1;;;;;41109:31:0;:20;41121:7;41109:11;:20::i;:::-;-1:-1:-1;;;;;41109:31:0;;41053:87;41045:96;40885:264;-1:-1:-1;;;;40885:264:0:o;43874:591::-;43999:4;-1:-1:-1;;;;;43972:31:0;:23;43987:7;43972:14;:23::i;:::-;-1:-1:-1;;;;;43972:31:0;;43964:81;;;;-1:-1:-1;;;43964:81:0;;13775:2:1;43964:81:0;;;13757:21:1;13814:2;13794:18;;;13787:30;13853:34;13833:18;;;13826:62;-1:-1:-1;;;13904:18:1;;;13897:35;13949:19;;43964:81:0;13573:401:1;43964:81:0;-1:-1:-1;;;;;44064:16:0;;44056:65;;;;-1:-1:-1;;;44056:65:0;;14181:2:1;44056:65:0;;;14163:21:1;14220:2;14200:18;;;14193:30;14259:34;14239:18;;;14232:62;-1:-1:-1;;;14310:18:1;;;14303:34;14354:19;;44056:65:0;13979:400:1;44056:65:0;44238:29;44255:1;44259:7;44238:8;:29::i;:::-;-1:-1:-1;;;;;44280:15:0;;;;;;:9;:15;;;;;:20;;44299:1;;44280:15;:20;;44299:1;;44280:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44311:13:0;;;;;;:9;:13;;;;;:18;;44328:1;;44311:13;:18;;44328:1;;44311:18;:::i;:::-;;;;-1:-1:-1;;44340:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44340:21:0;-1:-1:-1;;;;;44340:21:0;;;;;;;;;44379:27;;44340:16;;44379:27;;;;;;;37139:347;37069:417;;:::o;2338:132::-;2246:6;;-1:-1:-1;;;;;2246:6:0;800:10;2402:23;2394:68;;;;-1:-1:-1;;;2394:68:0;;14716:2:1;2394:68:0;;;14698:21:1;;;14735:18;;;14728:30;14794:34;14774:18;;;14767:62;14846:18;;2394:68:0;14514:356:1;3440:191:0;3533:6;;;-1:-1:-1;;;;;3550:17:0;;;-1:-1:-1;;;;;;3550:17:0;;;;;;;3583:40;;3533:6;;;3550:17;3533:6;;3583:40;;3514:16;;3583:40;3503:128;3440:191;:::o;19922:177::-;20032:58;;-1:-1:-1;;;;;3133:32:1;;20032:58:0;;;3115:51:1;3182:18;;;3175:34;;;20005:86:0;;20025:5;;-1:-1:-1;;;20055:23:0;3088:18:1;;20032:58:0;;;;-1:-1:-1;;20032:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;20032:58:0;-1:-1:-1;;;;;;20032:58:0;;;;;;;;;;20005:19;:86::i;20107:205::-;20235:68;;-1:-1:-1;;;;;15133:15:1;;;20235:68:0;;;15115:34:1;15185:15;;15165:18;;;15158:43;15217:18;;;15210:34;;;20208:96:0;;20228:5;;-1:-1:-1;;;20258:27:0;15050:18:1;;20235:68:0;14875:375:1;54094:182:0;54139:15;54157:25;:15;51705:14;;51613:114;54157:25;:29;;54185:1;54157:29;:::i;:::-;54139:47;;54197:33;54207:10;54219;54197:9;:33::i;:::-;54241:27;:15;51824:19;;51842:1;51824:19;;;51735:127;44901:281;45022:8;-1:-1:-1;;;;;45013:17:0;:5;-1:-1:-1;;;;;45013:17:0;;45005:55;;;;-1:-1:-1;;;45005:55:0;;15457:2:1;45005:55:0;;;15439:21:1;15496:2;15476:18;;;15469:30;15535:27;15515:18;;;15508:55;15580:18;;45005:55:0;15255:349:1;45005:55:0;-1:-1:-1;;;;;45071:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;45071:46:0;;;;;;;;;;45133:41;;540::1;;;45133::0;;513:18:1;45133:41:0;;;;;;;44901:281;;;:::o;40008:270::-;40121:28;40131:4;40137:2;40141:7;40121:9;:28::i;:::-;40168:47;40191:4;40197:2;40201:7;40210:4;40168:22;:47::i;:::-;40160:110;;;;-1:-1:-1;;;40160:110:0;;;;;;;:::i;53978:108::-;54038:13;54071:7;54064:14;;;;;:::i;31646:723::-;31702:13;31923:5;31932:1;31923:10;31919:53;;-1:-1:-1;;31950:10:0;;;;;;;;;;;;-1:-1:-1;;;31950:10:0;;;;;31646:723::o;31919:53::-;31997:5;31982:12;32038:78;32045:9;;32038:78;;32071:8;;;;:::i;:::-;;-1:-1:-1;32094:10:0;;-1:-1:-1;32102:2:0;32094:10;;:::i;:::-;;;32038:78;;;32126:19;32158:6;32148:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32148:17:0;;32126:39;;32176:154;32183:10;;32176:154;;32210:11;32220:1;32210:11;;:::i;:::-;;-1:-1:-1;32279:10:0;32287:2;32279:5;:10;:::i;:::-;32266:24;;:2;:24;:::i;:::-;32253:39;;32236:6;32243;32236:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;32236:56:0;;;;;;;;-1:-1:-1;32307:11:0;32316:2;32307:11;;:::i;:::-;;;32176:154;;22810:716;23234:23;23260:69;23288:4;23260:69;;;;;;;;;;;;;;;;;23268:5;-1:-1:-1;;;;;23260:27:0;;;:69;;;;;:::i;:::-;23344:17;;23234:95;;-1:-1:-1;23344:21:0;23340:179;;23441:10;23430:30;;;;;;;;;;;;:::i;:::-;23422:85;;;;-1:-1:-1;;;23422:85:0;;16729:2:1;23422:85:0;;;16711:21:1;16768:2;16748:18;;;16741:30;16807:34;16787:18;;;16780:62;-1:-1:-1;;;16858:18:1;;;16851:40;16908:19;;23422:85:0;16527:406:1;41491:110:0;41567:26;41577:2;41581:7;41567:26;;;;;;;;;;;;:9;:26::i;45970:853::-;46124:4;-1:-1:-1;;;;;46145:13:0;;12217:19;:23;46141:675;;46181:71;;-1:-1:-1;;;46181:71:0;;-1:-1:-1;;;;;46181:36:0;;;;;:71;;800:10;;46232:4;;46238:7;;46247:4;;46181:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46181:71:0;;;;;;;;-1:-1:-1;;46181:71:0;;;;;;;;;;;;:::i;:::-;;;46177:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46422:6;:13;46439:1;46422:18;46418:328;;46465:60;;-1:-1:-1;;;46465:60:0;;;;;;;:::i;46418:328::-;46696:6;46690:13;46681:6;46677:2;46673:15;46666:38;46177:584;-1:-1:-1;;;;;;46303:51:0;-1:-1:-1;;;46303:51:0;;-1:-1:-1;46296:58:0;;46141:675;-1:-1:-1;46800:4:0;45970:853;;;;;;:::o;14667:229::-;14804:12;14836:52;14858:6;14866:4;14872:1;14875:12;14836:21;:52::i;41828:285::-;41923:18;41929:2;41933:7;41923:5;:18::i;:::-;41974:53;42005:1;42009:2;42013:7;42022:4;41974:22;:53::i;:::-;41952:153;;;;-1:-1:-1;;;41952:153:0;;;;;;;:::i;15753:510::-;15923:12;15981:5;15956:21;:30;;15948:81;;;;-1:-1:-1;;;15948:81:0;;17888:2:1;15948:81:0;;;17870:21:1;17927:2;17907:18;;;17900:30;17966:34;17946:18;;;17939:62;-1:-1:-1;;;18017:18:1;;;18010:36;18063:19;;15948:81:0;17686:402:1;15948:81:0;-1:-1:-1;;;;;12217:19:0;;;16040:60;;;;-1:-1:-1;;;16040:60:0;;18295:2:1;16040:60:0;;;18277:21:1;18334:2;18314:18;;;18307:30;18373:31;18353:18;;;18346:59;18422:18;;16040:60:0;18093:353:1;16040:60:0;16114:12;16128:23;16155:6;-1:-1:-1;;;;;16155:11:0;16174:5;16181:4;16155:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16113:73;;;;16204:51;16221:7;16230:10;16242:12;16204:16;:51::i;:::-;16197:58;15753:510;-1:-1:-1;;;;;;;15753:510:0:o;42449:439::-;-1:-1:-1;;;;;42529:16:0;;42521:61;;;;-1:-1:-1;;;42521:61:0;;18932:2:1;42521:61:0;;;18914:21:1;;;18951:18;;;18944:30;19010:34;18990:18;;;18983:62;19062:18;;42521:61:0;18730:356:1;42521:61:0;40656:4;40680:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40680:16:0;:30;42593:58;;;;-1:-1:-1;;;42593:58:0;;19293:2:1;42593:58:0;;;19275:21:1;19332:2;19312:18;;;19305:30;19371;19351:18;;;19344:58;19419:18;;42593:58:0;19091:352:1;42593:58:0;-1:-1:-1;;;;;42722:13:0;;;;;;:9;:13;;;;;:18;;42739:1;;42722:13;:18;;42739:1;;42722:18;:::i;:::-;;;;-1:-1:-1;;42751:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42751:21:0;-1:-1:-1;;;;;42751:21:0;;;;;;;;42790:33;;42751:16;;;42790:33;;42751:16;;42790:33;37795:155;;:::o;18439:762::-;18589:12;18618:7;18614:580;;;-1:-1:-1;18649:10:0;18642:17;;18614:580;18763:17;;:21;18759:424;;19011:10;19005:17;19072:15;19059:10;19055:2;19051:19;19044:44;18759:424;19154:12;19147:20;;-1:-1:-1;;;19147:20:0;;;;;;;;:::i;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:248::-;2756:6;2764;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;-1:-1:-1;;2856:23:1;;;2926:2;2911:18;;;2898:32;;-1:-1:-1;2688:248:1:o;3442:118::-;3528:5;3521:13;3514:21;3507:5;3504:32;3494:60;;3550:1;3547;3540:12;3565:241;3621:6;3674:2;3662:9;3653:7;3649:23;3645:32;3642:52;;;3690:1;3687;3680:12;3642:52;3729:9;3716:23;3748:28;3770:5;3748:28;:::i;3811:186::-;3870:6;3923:2;3911:9;3902:7;3898:23;3894:32;3891:52;;;3939:1;3936;3929:12;3891:52;3962:29;3981:9;3962:29;:::i;4002:315::-;4067:6;4075;4128:2;4116:9;4107:7;4103:23;4099:32;4096:52;;;4144:1;4141;4134:12;4096:52;4167:29;4186:9;4167:29;:::i;:::-;4157:39;;4246:2;4235:9;4231:18;4218:32;4259:28;4281:5;4259:28;:::i;:::-;4306:5;4296:15;;;4002:315;;;;;:::o;4322:127::-;4383:10;4378:3;4374:20;4371:1;4364:31;4414:4;4411:1;4404:15;4438:4;4435:1;4428:15;4454:1138;4549:6;4557;4565;4573;4626:3;4614:9;4605:7;4601:23;4597:33;4594:53;;;4643:1;4640;4633:12;4594:53;4666:29;4685:9;4666:29;:::i;:::-;4656:39;;4714:38;4748:2;4737:9;4733:18;4714:38;:::i;:::-;4704:48;;4799:2;4788:9;4784:18;4771:32;4761:42;;4854:2;4843:9;4839:18;4826:32;4877:18;4918:2;4910:6;4907:14;4904:34;;;4934:1;4931;4924:12;4904:34;4972:6;4961:9;4957:22;4947:32;;5017:7;5010:4;5006:2;5002:13;4998:27;4988:55;;5039:1;5036;5029:12;4988:55;5075:2;5062:16;5097:2;5093;5090:10;5087:36;;;5103:18;;:::i;:::-;5178:2;5172:9;5146:2;5232:13;;-1:-1:-1;;5228:22:1;;;5252:2;5224:31;5220:40;5208:53;;;5276:18;;;5296:22;;;5273:46;5270:72;;;5322:18;;:::i;:::-;5362:10;5358:2;5351:22;5397:2;5389:6;5382:18;5437:7;5432:2;5427;5423;5419:11;5415:20;5412:33;5409:53;;;5458:1;5455;5448:12;5409:53;5514:2;5509;5505;5501:11;5496:2;5488:6;5484:15;5471:46;5559:1;5554:2;5549;5541:6;5537:15;5533:24;5526:35;5580:6;5570:16;;;;;;;4454:1138;;;;;;;:::o;5597:260::-;5665:6;5673;5726:2;5714:9;5705:7;5701:23;5697:32;5694:52;;;5742:1;5739;5732:12;5694:52;5765:29;5784:9;5765:29;:::i;:::-;5755:39;;5813:38;5847:2;5836:9;5832:18;5813:38;:::i;5862:380::-;5941:1;5937:12;;;;5984;;;6005:61;;6059:4;6051:6;6047:17;6037:27;;6005:61;6112:2;6104:6;6101:14;6081:18;6078:38;6075:161;;6158:10;6153:3;6149:20;6146:1;6139:31;6193:4;6190:1;6183:15;6221:4;6218:1;6211:15;6075:161;;5862:380;;;:::o;7080:410::-;7282:2;7264:21;;;7321:2;7301:18;;;7294:30;7360:34;7355:2;7340:18;;7333:62;-1:-1:-1;;;7426:2:1;7411:18;;7404:44;7480:3;7465:19;;7080:410::o;7495:127::-;7556:10;7551:3;7547:20;7544:1;7537:31;7587:4;7584:1;7577:15;7611:4;7608:1;7601:15;7627:168;7667:7;7733:1;7729;7725:6;7721:14;7718:1;7715:21;7710:1;7703:9;7696:17;7692:45;7689:71;;;7740:18;;:::i;:::-;-1:-1:-1;7780:9:1;;7627:168::o;7800:127::-;7861:10;7856:3;7852:20;7849:1;7842:31;7892:4;7889:1;7882:15;7916:4;7913:1;7906:15;7932:120;7972:1;7998;7988:35;;8003:18;;:::i;:::-;-1:-1:-1;8037:9:1;;7932:120::o;8820:184::-;8890:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:52;;;8959:1;8956;8949:12;8911:52;-1:-1:-1;8982:16:1;;8820:184;-1:-1:-1;8820:184:1:o;10436:128::-;10476:3;10507:1;10503:6;10500:1;10497:13;10494:39;;;10513:18;;:::i;:::-;-1:-1:-1;10549:9:1;;10436:128::o;10921:135::-;10960:3;10981:17;;;10978:43;;11001:18;;:::i;:::-;-1:-1:-1;11048:1:1;11037:13;;10921:135::o;11603:1558::-;11827:3;11865:6;11859:13;11891:4;11904:51;11948:6;11943:3;11938:2;11930:6;11926:15;11904:51;:::i;:::-;12018:13;;11977:16;;;;12040:55;12018:13;11977:16;12062:15;;;12040:55;:::i;:::-;12184:13;;12117:20;;;12157:1;;12244;12266:18;;;;12319;;;;12346:93;;12424:4;12414:8;12410:19;12398:31;;12346:93;12487:2;12477:8;12474:16;12454:18;12451:40;12448:167;;-1:-1:-1;;;12514:33:1;;12570:4;12567:1;12560:15;12600:4;12521:3;12588:17;12448:167;12631:18;12658:141;;;;12813:1;12808:328;;;;12624:512;;12658:141;-1:-1:-1;;12693:24:1;;12679:39;;12770:16;;12763:24;12749:39;;12738:51;;;-1:-1:-1;12658:141:1;;12808:328;11550:1;11543:14;;;11587:4;11574:18;;12903:1;12917:169;12931:8;12928:1;12925:15;12917:169;;;13013:14;;12998:13;;;12991:37;13056:16;;;;12948:10;;12917:169;;;12921:3;;13117:8;13110:5;13106:20;13099:27;;12624:512;-1:-1:-1;13152:3:1;;11603:1558;-1:-1:-1;;;;;;;;;;;11603:1558:1:o;14384:125::-;14424:4;14452:1;14449;14446:8;14443:34;;;14457:18;;:::i;:::-;-1:-1:-1;14494:9:1;;14384:125::o;15609:414::-;15811:2;15793:21;;;15850:2;15830:18;;;15823:30;15889:34;15884:2;15869:18;;15862:62;-1:-1:-1;;;15955:2:1;15940:18;;15933:48;16013:3;15998:19;;15609:414::o;16028:112::-;16060:1;16086;16076:35;;16091:18;;:::i;:::-;-1:-1:-1;16125:9:1;;16028:112::o;16145:127::-;16206:10;16201:3;16197:20;16194:1;16187:31;16237:4;16234:1;16227:15;16261:4;16258:1;16251:15;16277:245;16344:6;16397:2;16385:9;16376:7;16372:23;16368:32;16365:52;;;16413:1;16410;16403:12;16365:52;16445:9;16439:16;16464:28;16486:5;16464:28;:::i;16938:489::-;-1:-1:-1;;;;;17207:15:1;;;17189:34;;17259:15;;17254:2;17239:18;;17232:43;17306:2;17291:18;;17284:34;;;17354:3;17349:2;17334:18;;17327:31;;;17132:4;;17375:46;;17401:19;;17393:6;17375:46;:::i;:::-;17367:54;16938:489;-1:-1:-1;;;;;;16938:489:1:o;17432:249::-;17501:6;17554:2;17542:9;17533:7;17529:23;17525:32;17522:52;;;17570:1;17567;17560:12;17522:52;17602:9;17596:16;17621:30;17645:5;17621:30;:::i;18451:274::-;18580:3;18618:6;18612:13;18634:53;18680:6;18675:3;18668:4;18660:6;18656:17;18634:53;:::i;:::-;18703:16;;;;;18451:274;-1:-1:-1;;18451:274:1:o
Swarm Source
ipfs://b20908038320e0a33b3da76cc389df830ae1acd2a0710ad7b4fb39f8f009da72
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.