Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
13
Holders
4
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
MusebotAi
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; contract MusebotAi is ERC1155,ERC2981 { using Counters for Counters.Counter; Counters.Counter private _tokenIds; address private _owner; uint96 private _royaltyFraction; // storage for token's uri mapping(uint256 => string) private _Uris; constructor(address owner,uint96 royaltyFraction) ERC1155("") { _owner = owner; _royaltyFraction = royaltyFraction; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155,ERC2981) returns (bool) { return ERC1155.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } function mintOne(address reciver, string memory tokenURIs) public { _tokenIds.increment(); uint256 newTokenId = _tokenIds.current(); _mint(reciver, newTokenId, 1, ""); _Uris[newTokenId] = tokenURIs; _setTokenRoyalty(newTokenId,_owner,_royaltyFraction); } function _burn( address from, uint256 id, uint256 amount ) internal virtual override { super._burn(from,id,amount); _resetTokenRoyalty(id); } function uri(uint256 id) public view virtual override returns (string memory) { return _Uris[id]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner or approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner or approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @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, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non-ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non-ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"reciver","type":"address"},{"internalType":"string","name":"tokenURIs","type":"string"}],"name":"mintOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620037803803806200378083398181016040528101906200003791906200019b565b604051806020016040528060008152506200005881620000d360201b60201c565b5081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550505062000543565b8060029081620000e491906200045c565b5050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200011a82620000ed565b9050919050565b6200012c816200010d565b81146200013857600080fd5b50565b6000815190506200014c8162000121565b92915050565b60006bffffffffffffffffffffffff82169050919050565b620001758162000152565b81146200018157600080fd5b50565b60008151905062000195816200016a565b92915050565b60008060408385031215620001b557620001b4620000e8565b5b6000620001c5858286016200013b565b9250506020620001d88582860162000184565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200026457607f821691505b6020821081036200027a57620002796200021c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002a5565b620002f08683620002a5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200033d62000337620003318462000308565b62000312565b62000308565b9050919050565b6000819050919050565b62000359836200031c565b62000371620003688262000344565b848454620002b2565b825550505050565b600090565b6200038862000379565b620003958184846200034e565b505050565b5b81811015620003bd57620003b16000826200037e565b6001810190506200039b565b5050565b601f8211156200040c57620003d68162000280565b620003e18462000295565b81016020851015620003f1578190505b62000409620004008562000295565b8301826200039a565b50505b505050565b600082821c905092915050565b6000620004316000198460080262000411565b1980831691505092915050565b60006200044c83836200041e565b9150826002028217905092915050565b6200046782620001e2565b67ffffffffffffffff811115620004835762000482620001ed565b5b6200048f82546200024b565b6200049c828285620003c1565b600060209050601f831160018114620004d45760008415620004bf578287015190505b620004cb85826200043e565b8655506200053b565b601f198416620004e48662000280565b60005b828110156200050e57848901518255600182019150602085019450602081019050620004e7565b868310156200052e57848901516200052a601f8916826200041e565b8355505b6001600288020188555050505b505050505050565b61322d80620005536000396000f3fe608060405234801561001057600080fd5b506004361061009d5760003560e01c80634e1273f4116100665780634e1273f41461017f578063a22cb465146101af578063c1c00690146101cb578063e985e9c5146101e7578063f242432a146102175761009d565b8062fdd58e146100a257806301ffc9a7146100d25780630e89341c146101025780632a55205a146101325780632eb2c2d614610163575b600080fd5b6100bc60048036038101906100b79190611ad0565b610233565b6040516100c99190611b1f565b60405180910390f35b6100ec60048036038101906100e79190611b92565b6102fb565b6040516100f99190611bda565b60405180910390f35b61011c60048036038101906101179190611bf5565b61031d565b6040516101299190611cb2565b60405180910390f35b61014c60048036038101906101479190611cd4565b6103c2565b60405161015a929190611d23565b60405180910390f35b61017d60048036038101906101789190611f49565b6105ac565b005b610199600480360381019061019491906120db565b61064d565b6040516101a69190612211565b60405180910390f35b6101c960048036038101906101c4919061225f565b610766565b005b6101e560048036038101906101e09190612340565b61077c565b005b61020160048036038101906101fc919061239c565b61081d565b60405161020e9190611bda565b60405180910390f35b610231600480360381019061022c91906123dc565b6108b1565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161029a906124e5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061030682610952565b80610316575061031582610a34565b5b9050919050565b606060076000838152602001908152602001600020805461033d90612534565b80601f016020809104026020016040519081016040528092919081815260200182805461036990612534565b80156103b65780601f1061038b576101008083540402835291602001916103b6565b820191906000526020600020905b81548152906001019060200180831161039957829003601f168201915b50505050509050919050565b6000806000600460008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036105575760036040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610561610aae565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661058d9190612594565b6105979190612605565b90508160000151819350935050509250929050565b6105b4610ab8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806105fa57506105f9856105f4610ab8565b61081d565b5b610639576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610630906126a8565b60405180910390fd5b6106468585858585610ac0565b5050505050565b60608151835114610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a9061273a565b60405180910390fd5b6000835167ffffffffffffffff8111156106b0576106af611d51565b5b6040519080825280602002602001820160405280156106de5781602001602082028036833780820191505090505b50905060005b845181101561075b5761072b8582815181106107035761070261275a565b5b602002602001015185838151811061071e5761071d61275a565b5b6020026020010151610233565b82828151811061073e5761073d61275a565b5b6020026020010181815250508061075490612789565b90506106e4565b508091505092915050565b610778610771610ab8565b8383610de1565b5050565b6107866005610f4d565b60006107926005610f63565b90506107b08382600160405180602001604052806000815250610f71565b816007600083815260200190815260200160002090816107d0919061297d565b5061081881600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600660149054906101000a90046bffffffffffffffffffffffff16611121565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6108b9610ab8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108ff57506108fe856108f9610ab8565b61081d565b5b61093e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610935906126a8565b60405180910390fd5b61094b85858585856112c8565b5050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1d57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2d5750610a2c82611563565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa75750610aa682610952565b5b9050919050565b6000612710905090565b600033905090565b8151835114610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb90612ac1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90612b53565b60405180910390fd5b6000610b7d610ab8565b9050610b8d8187878787876115cd565b60005b8451811015610d3e576000858281518110610bae57610bad61275a565b5b602002602001015190506000858381518110610bcd57610bcc61275a565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590612be5565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d239190612c05565b9250508190555050505080610d3790612789565b9050610b90565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610db5929190612c39565b60405180910390a4610dcb8187878787876115d5565b610dd98187878787876115dd565b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690612ce2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f409190611bda565b60405180910390a3505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790612d74565b60405180910390fd5b6000610fea610ab8565b90506000610ff7856117b4565b90506000611004856117b4565b9050611015836000898585896115cd565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110749190612c05565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516110f2929190612d94565b60405180910390a4611109836000898585896115d5565b6111188360008989898961182e565b50505050505050565b611129610aae565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90612e2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90612e9b565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90612b53565b60405180910390fd5b6000611341610ab8565b9050600061134e856117b4565b9050600061135b856117b4565b905061136b8389898585896115cd565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990612be5565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114b79190612c05565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611534929190612d94565b60405180910390a461154a848a8a86868a6115d5565b611558848a8a8a8a8a61182e565b505050505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b505050505050565b6115fc8473ffffffffffffffffffffffffffffffffffffffff16611a05565b156117ac578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611642959493929190612f10565b6020604051808303816000875af192505050801561167e57506040513d601f19601f8201168201806040525081019061167b9190612f8d565b60015b6117235761168a612fc7565b806308c379a0036116e6575061169e612fe9565b806116a957506116e8565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd9190611cb2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a906130eb565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a19061317d565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156117d3576117d2611d51565b5b6040519080825280602002602001820160405280156118015781602001602082028036833780820191505090505b50905082816000815181106118195761181861275a565b5b60200260200101818152505080915050919050565b61184d8473ffffffffffffffffffffffffffffffffffffffff16611a05565b156119fd578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161189395949392919061319d565b6020604051808303816000875af19250505080156118cf57506040513d601f19601f820116820180604052508101906118cc9190612f8d565b60015b611974576118db612fc7565b806308c379a00361193757506118ef612fe9565b806118fa5750611939565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e9190611cb2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b906130eb565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f29061317d565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a6782611a3c565b9050919050565b611a7781611a5c565b8114611a8257600080fd5b50565b600081359050611a9481611a6e565b92915050565b6000819050919050565b611aad81611a9a565b8114611ab857600080fd5b50565b600081359050611aca81611aa4565b92915050565b60008060408385031215611ae757611ae6611a32565b5b6000611af585828601611a85565b9250506020611b0685828601611abb565b9150509250929050565b611b1981611a9a565b82525050565b6000602082019050611b346000830184611b10565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b6f81611b3a565b8114611b7a57600080fd5b50565b600081359050611b8c81611b66565b92915050565b600060208284031215611ba857611ba7611a32565b5b6000611bb684828501611b7d565b91505092915050565b60008115159050919050565b611bd481611bbf565b82525050565b6000602082019050611bef6000830184611bcb565b92915050565b600060208284031215611c0b57611c0a611a32565b5b6000611c1984828501611abb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c5c578082015181840152602081019050611c41565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c8482611c22565b611c8e8185611c2d565b9350611c9e818560208601611c3e565b611ca781611c68565b840191505092915050565b60006020820190508181036000830152611ccc8184611c79565b905092915050565b60008060408385031215611ceb57611cea611a32565b5b6000611cf985828601611abb565b9250506020611d0a85828601611abb565b9150509250929050565b611d1d81611a5c565b82525050565b6000604082019050611d386000830185611d14565b611d456020830184611b10565b9392505050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d8982611c68565b810181811067ffffffffffffffff82111715611da857611da7611d51565b5b80604052505050565b6000611dbb611a28565b9050611dc78282611d80565b919050565b600067ffffffffffffffff821115611de757611de6611d51565b5b602082029050602081019050919050565b600080fd5b6000611e10611e0b84611dcc565b611db1565b90508083825260208201905060208402830185811115611e3357611e32611df8565b5b835b81811015611e5c5780611e488882611abb565b845260208401935050602081019050611e35565b5050509392505050565b600082601f830112611e7b57611e7a611d4c565b5b8135611e8b848260208601611dfd565b91505092915050565b600080fd5b600067ffffffffffffffff821115611eb457611eb3611d51565b5b611ebd82611c68565b9050602081019050919050565b82818337600083830152505050565b6000611eec611ee784611e99565b611db1565b905082815260208101848484011115611f0857611f07611e94565b5b611f13848285611eca565b509392505050565b600082601f830112611f3057611f2f611d4c565b5b8135611f40848260208601611ed9565b91505092915050565b600080600080600060a08688031215611f6557611f64611a32565b5b6000611f7388828901611a85565b9550506020611f8488828901611a85565b945050604086013567ffffffffffffffff811115611fa557611fa4611a37565b5b611fb188828901611e66565b935050606086013567ffffffffffffffff811115611fd257611fd1611a37565b5b611fde88828901611e66565b925050608086013567ffffffffffffffff811115611fff57611ffe611a37565b5b61200b88828901611f1b565b9150509295509295909350565b600067ffffffffffffffff82111561203357612032611d51565b5b602082029050602081019050919050565b600061205761205284612018565b611db1565b9050808382526020820190506020840283018581111561207a57612079611df8565b5b835b818110156120a3578061208f8882611a85565b84526020840193505060208101905061207c565b5050509392505050565b600082601f8301126120c2576120c1611d4c565b5b81356120d2848260208601612044565b91505092915050565b600080604083850312156120f2576120f1611a32565b5b600083013567ffffffffffffffff8111156121105761210f611a37565b5b61211c858286016120ad565b925050602083013567ffffffffffffffff81111561213d5761213c611a37565b5b61214985828601611e66565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61218881611a9a565b82525050565b600061219a838361217f565b60208301905092915050565b6000602082019050919050565b60006121be82612153565b6121c8818561215e565b93506121d38361216f565b8060005b838110156122045781516121eb888261218e565b97506121f6836121a6565b9250506001810190506121d7565b5085935050505092915050565b6000602082019050818103600083015261222b81846121b3565b905092915050565b61223c81611bbf565b811461224757600080fd5b50565b60008135905061225981612233565b92915050565b6000806040838503121561227657612275611a32565b5b600061228485828601611a85565b92505060206122958582860161224a565b9150509250929050565b600067ffffffffffffffff8211156122ba576122b9611d51565b5b6122c382611c68565b9050602081019050919050565b60006122e36122de8461229f565b611db1565b9050828152602081018484840111156122ff576122fe611e94565b5b61230a848285611eca565b509392505050565b600082601f83011261232757612326611d4c565b5b81356123378482602086016122d0565b91505092915050565b6000806040838503121561235757612356611a32565b5b600061236585828601611a85565b925050602083013567ffffffffffffffff81111561238657612385611a37565b5b61239285828601612312565b9150509250929050565b600080604083850312156123b3576123b2611a32565b5b60006123c185828601611a85565b92505060206123d285828601611a85565b9150509250929050565b600080600080600060a086880312156123f8576123f7611a32565b5b600061240688828901611a85565b955050602061241788828901611a85565b945050604061242888828901611abb565b935050606061243988828901611abb565b925050608086013567ffffffffffffffff81111561245a57612459611a37565b5b61246688828901611f1b565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006124cf602a83611c2d565b91506124da82612473565b604082019050919050565b600060208201905081810360008301526124fe816124c2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254c57607f821691505b60208210810361255f5761255e612505565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061259f82611a9a565b91506125aa83611a9a565b92508282026125b881611a9a565b915082820484148315176125cf576125ce612565565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061261082611a9a565b915061261b83611a9a565b92508261262b5761262a6125d6565b5b828204905092915050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612692602e83611c2d565b915061269d82612636565b604082019050919050565b600060208201905081810360008301526126c181612685565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612724602983611c2d565b915061272f826126c8565b604082019050919050565b6000602082019050818103600083015261275381612717565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061279482611a9a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036127c6576127c5612565565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127f6565b61283d86836127f6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061287a61287561287084611a9a565b612855565b611a9a565b9050919050565b6000819050919050565b6128948361285f565b6128a86128a082612881565b848454612803565b825550505050565b600090565b6128bd6128b0565b6128c881848461288b565b505050565b5b818110156128ec576128e16000826128b5565b6001810190506128ce565b5050565b601f82111561293157612902816127d1565b61290b846127e6565b8101602085101561291a578190505b61292e612926856127e6565b8301826128cd565b50505b505050565b600082821c905092915050565b600061295460001984600802612936565b1980831691505092915050565b600061296d8383612943565b9150826002028217905092915050565b61298682611c22565b67ffffffffffffffff81111561299f5761299e611d51565b5b6129a98254612534565b6129b48282856128f0565b600060209050601f8311600181146129e757600084156129d5578287015190505b6129df8582612961565b865550612a47565b601f1984166129f5866127d1565b60005b82811015612a1d578489015182556001820191506020850194506020810190506129f8565b86831015612a3a5784890151612a36601f891682612943565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612aab602883611c2d565b9150612ab682612a4f565b604082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b3d602583611c2d565b9150612b4882612ae1565b604082019050919050565b60006020820190508181036000830152612b6c81612b30565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612bcf602a83611c2d565b9150612bda82612b73565b604082019050919050565b60006020820190508181036000830152612bfe81612bc2565b9050919050565b6000612c1082611a9a565b9150612c1b83611a9a565b9250828201905080821115612c3357612c32612565565b5b92915050565b60006040820190508181036000830152612c5381856121b3565b90508181036020830152612c6781846121b3565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000612ccc602983611c2d565b9150612cd782612c70565b604082019050919050565b60006020820190508181036000830152612cfb81612cbf565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d5e602183611c2d565b9150612d6982612d02565b604082019050919050565b60006020820190508181036000830152612d8d81612d51565b9050919050565b6000604082019050612da96000830185611b10565b612db66020830184611b10565b9392505050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000612e19602a83611c2d565b9150612e2482612dbd565b604082019050919050565b60006020820190508181036000830152612e4881612e0c565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b6000612e85601b83611c2d565b9150612e9082612e4f565b602082019050919050565b60006020820190508181036000830152612eb481612e78565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ee282612ebb565b612eec8185612ec6565b9350612efc818560208601611c3e565b612f0581611c68565b840191505092915050565b600060a082019050612f256000830188611d14565b612f326020830187611d14565b8181036040830152612f4481866121b3565b90508181036060830152612f5881856121b3565b90508181036080830152612f6c8184612ed7565b90509695505050505050565b600081519050612f8781611b66565b92915050565b600060208284031215612fa357612fa2611a32565b5b6000612fb184828501612f78565b91505092915050565b60008160e01c9050919050565b600060033d1115612fe65760046000803e612fe3600051612fba565b90505b90565b600060443d1061307657612ffb611a28565b60043d036004823e80513d602482011167ffffffffffffffff82111715613023575050613076565b808201805167ffffffffffffffff8111156130415750505050613076565b80602083010160043d03850181111561305e575050505050613076565b61306d82602001850186611d80565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006130d5603483611c2d565b91506130e082613079565b604082019050919050565b60006020820190508181036000830152613104816130c8565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613167602883611c2d565b91506131728261310b565b604082019050919050565b600060208201905081810360008301526131968161315a565b9050919050565b600060a0820190506131b26000830188611d14565b6131bf6020830187611d14565b6131cc6040830186611b10565b6131d96060830185611b10565b81810360808301526131eb8184612ed7565b9050969550505050505056fea2646970667358221220b7b12772dca4a0f206d13cf3c994306d8c966e7862befe4b0f63c33c00042a8f64736f6c634300081100330000000000000000000000002757efbc1e6ad621247052a1aa5ce72f44d1d3b400000000000000000000000000000000000000000000000000000000000001f4
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061009d5760003560e01c80634e1273f4116100665780634e1273f41461017f578063a22cb465146101af578063c1c00690146101cb578063e985e9c5146101e7578063f242432a146102175761009d565b8062fdd58e146100a257806301ffc9a7146100d25780630e89341c146101025780632a55205a146101325780632eb2c2d614610163575b600080fd5b6100bc60048036038101906100b79190611ad0565b610233565b6040516100c99190611b1f565b60405180910390f35b6100ec60048036038101906100e79190611b92565b6102fb565b6040516100f99190611bda565b60405180910390f35b61011c60048036038101906101179190611bf5565b61031d565b6040516101299190611cb2565b60405180910390f35b61014c60048036038101906101479190611cd4565b6103c2565b60405161015a929190611d23565b60405180910390f35b61017d60048036038101906101789190611f49565b6105ac565b005b610199600480360381019061019491906120db565b61064d565b6040516101a69190612211565b60405180910390f35b6101c960048036038101906101c4919061225f565b610766565b005b6101e560048036038101906101e09190612340565b61077c565b005b61020160048036038101906101fc919061239c565b61081d565b60405161020e9190611bda565b60405180910390f35b610231600480360381019061022c91906123dc565b6108b1565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161029a906124e5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061030682610952565b80610316575061031582610a34565b5b9050919050565b606060076000838152602001908152602001600020805461033d90612534565b80601f016020809104026020016040519081016040528092919081815260200182805461036990612534565b80156103b65780601f1061038b576101008083540402835291602001916103b6565b820191906000526020600020905b81548152906001019060200180831161039957829003601f168201915b50505050509050919050565b6000806000600460008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036105575760036040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610561610aae565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661058d9190612594565b6105979190612605565b90508160000151819350935050509250929050565b6105b4610ab8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806105fa57506105f9856105f4610ab8565b61081d565b5b610639576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610630906126a8565b60405180910390fd5b6106468585858585610ac0565b5050505050565b60608151835114610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a9061273a565b60405180910390fd5b6000835167ffffffffffffffff8111156106b0576106af611d51565b5b6040519080825280602002602001820160405280156106de5781602001602082028036833780820191505090505b50905060005b845181101561075b5761072b8582815181106107035761070261275a565b5b602002602001015185838151811061071e5761071d61275a565b5b6020026020010151610233565b82828151811061073e5761073d61275a565b5b6020026020010181815250508061075490612789565b90506106e4565b508091505092915050565b610778610771610ab8565b8383610de1565b5050565b6107866005610f4d565b60006107926005610f63565b90506107b08382600160405180602001604052806000815250610f71565b816007600083815260200190815260200160002090816107d0919061297d565b5061081881600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600660149054906101000a90046bffffffffffffffffffffffff16611121565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6108b9610ab8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108ff57506108fe856108f9610ab8565b61081d565b5b61093e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610935906126a8565b60405180910390fd5b61094b85858585856112c8565b5050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1d57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2d5750610a2c82611563565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa75750610aa682610952565b5b9050919050565b6000612710905090565b600033905090565b8151835114610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb90612ac1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90612b53565b60405180910390fd5b6000610b7d610ab8565b9050610b8d8187878787876115cd565b60005b8451811015610d3e576000858281518110610bae57610bad61275a565b5b602002602001015190506000858381518110610bcd57610bcc61275a565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590612be5565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d239190612c05565b9250508190555050505080610d3790612789565b9050610b90565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610db5929190612c39565b60405180910390a4610dcb8187878787876115d5565b610dd98187878787876115dd565b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690612ce2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f409190611bda565b60405180910390a3505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790612d74565b60405180910390fd5b6000610fea610ab8565b90506000610ff7856117b4565b90506000611004856117b4565b9050611015836000898585896115cd565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110749190612c05565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516110f2929190612d94565b60405180910390a4611109836000898585896115d5565b6111188360008989898961182e565b50505050505050565b611129610aae565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90612e2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90612e9b565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90612b53565b60405180910390fd5b6000611341610ab8565b9050600061134e856117b4565b9050600061135b856117b4565b905061136b8389898585896115cd565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990612be5565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114b79190612c05565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611534929190612d94565b60405180910390a461154a848a8a86868a6115d5565b611558848a8a8a8a8a61182e565b505050505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b505050505050565b6115fc8473ffffffffffffffffffffffffffffffffffffffff16611a05565b156117ac578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611642959493929190612f10565b6020604051808303816000875af192505050801561167e57506040513d601f19601f8201168201806040525081019061167b9190612f8d565b60015b6117235761168a612fc7565b806308c379a0036116e6575061169e612fe9565b806116a957506116e8565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd9190611cb2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a906130eb565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a19061317d565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156117d3576117d2611d51565b5b6040519080825280602002602001820160405280156118015781602001602082028036833780820191505090505b50905082816000815181106118195761181861275a565b5b60200260200101818152505080915050919050565b61184d8473ffffffffffffffffffffffffffffffffffffffff16611a05565b156119fd578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161189395949392919061319d565b6020604051808303816000875af19250505080156118cf57506040513d601f19601f820116820180604052508101906118cc9190612f8d565b60015b611974576118db612fc7565b806308c379a00361193757506118ef612fe9565b806118fa5750611939565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e9190611cb2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b906130eb565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f29061317d565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a6782611a3c565b9050919050565b611a7781611a5c565b8114611a8257600080fd5b50565b600081359050611a9481611a6e565b92915050565b6000819050919050565b611aad81611a9a565b8114611ab857600080fd5b50565b600081359050611aca81611aa4565b92915050565b60008060408385031215611ae757611ae6611a32565b5b6000611af585828601611a85565b9250506020611b0685828601611abb565b9150509250929050565b611b1981611a9a565b82525050565b6000602082019050611b346000830184611b10565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b6f81611b3a565b8114611b7a57600080fd5b50565b600081359050611b8c81611b66565b92915050565b600060208284031215611ba857611ba7611a32565b5b6000611bb684828501611b7d565b91505092915050565b60008115159050919050565b611bd481611bbf565b82525050565b6000602082019050611bef6000830184611bcb565b92915050565b600060208284031215611c0b57611c0a611a32565b5b6000611c1984828501611abb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c5c578082015181840152602081019050611c41565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c8482611c22565b611c8e8185611c2d565b9350611c9e818560208601611c3e565b611ca781611c68565b840191505092915050565b60006020820190508181036000830152611ccc8184611c79565b905092915050565b60008060408385031215611ceb57611cea611a32565b5b6000611cf985828601611abb565b9250506020611d0a85828601611abb565b9150509250929050565b611d1d81611a5c565b82525050565b6000604082019050611d386000830185611d14565b611d456020830184611b10565b9392505050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d8982611c68565b810181811067ffffffffffffffff82111715611da857611da7611d51565b5b80604052505050565b6000611dbb611a28565b9050611dc78282611d80565b919050565b600067ffffffffffffffff821115611de757611de6611d51565b5b602082029050602081019050919050565b600080fd5b6000611e10611e0b84611dcc565b611db1565b90508083825260208201905060208402830185811115611e3357611e32611df8565b5b835b81811015611e5c5780611e488882611abb565b845260208401935050602081019050611e35565b5050509392505050565b600082601f830112611e7b57611e7a611d4c565b5b8135611e8b848260208601611dfd565b91505092915050565b600080fd5b600067ffffffffffffffff821115611eb457611eb3611d51565b5b611ebd82611c68565b9050602081019050919050565b82818337600083830152505050565b6000611eec611ee784611e99565b611db1565b905082815260208101848484011115611f0857611f07611e94565b5b611f13848285611eca565b509392505050565b600082601f830112611f3057611f2f611d4c565b5b8135611f40848260208601611ed9565b91505092915050565b600080600080600060a08688031215611f6557611f64611a32565b5b6000611f7388828901611a85565b9550506020611f8488828901611a85565b945050604086013567ffffffffffffffff811115611fa557611fa4611a37565b5b611fb188828901611e66565b935050606086013567ffffffffffffffff811115611fd257611fd1611a37565b5b611fde88828901611e66565b925050608086013567ffffffffffffffff811115611fff57611ffe611a37565b5b61200b88828901611f1b565b9150509295509295909350565b600067ffffffffffffffff82111561203357612032611d51565b5b602082029050602081019050919050565b600061205761205284612018565b611db1565b9050808382526020820190506020840283018581111561207a57612079611df8565b5b835b818110156120a3578061208f8882611a85565b84526020840193505060208101905061207c565b5050509392505050565b600082601f8301126120c2576120c1611d4c565b5b81356120d2848260208601612044565b91505092915050565b600080604083850312156120f2576120f1611a32565b5b600083013567ffffffffffffffff8111156121105761210f611a37565b5b61211c858286016120ad565b925050602083013567ffffffffffffffff81111561213d5761213c611a37565b5b61214985828601611e66565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61218881611a9a565b82525050565b600061219a838361217f565b60208301905092915050565b6000602082019050919050565b60006121be82612153565b6121c8818561215e565b93506121d38361216f565b8060005b838110156122045781516121eb888261218e565b97506121f6836121a6565b9250506001810190506121d7565b5085935050505092915050565b6000602082019050818103600083015261222b81846121b3565b905092915050565b61223c81611bbf565b811461224757600080fd5b50565b60008135905061225981612233565b92915050565b6000806040838503121561227657612275611a32565b5b600061228485828601611a85565b92505060206122958582860161224a565b9150509250929050565b600067ffffffffffffffff8211156122ba576122b9611d51565b5b6122c382611c68565b9050602081019050919050565b60006122e36122de8461229f565b611db1565b9050828152602081018484840111156122ff576122fe611e94565b5b61230a848285611eca565b509392505050565b600082601f83011261232757612326611d4c565b5b81356123378482602086016122d0565b91505092915050565b6000806040838503121561235757612356611a32565b5b600061236585828601611a85565b925050602083013567ffffffffffffffff81111561238657612385611a37565b5b61239285828601612312565b9150509250929050565b600080604083850312156123b3576123b2611a32565b5b60006123c185828601611a85565b92505060206123d285828601611a85565b9150509250929050565b600080600080600060a086880312156123f8576123f7611a32565b5b600061240688828901611a85565b955050602061241788828901611a85565b945050604061242888828901611abb565b935050606061243988828901611abb565b925050608086013567ffffffffffffffff81111561245a57612459611a37565b5b61246688828901611f1b565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006124cf602a83611c2d565b91506124da82612473565b604082019050919050565b600060208201905081810360008301526124fe816124c2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254c57607f821691505b60208210810361255f5761255e612505565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061259f82611a9a565b91506125aa83611a9a565b92508282026125b881611a9a565b915082820484148315176125cf576125ce612565565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061261082611a9a565b915061261b83611a9a565b92508261262b5761262a6125d6565b5b828204905092915050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612692602e83611c2d565b915061269d82612636565b604082019050919050565b600060208201905081810360008301526126c181612685565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612724602983611c2d565b915061272f826126c8565b604082019050919050565b6000602082019050818103600083015261275381612717565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061279482611a9a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036127c6576127c5612565565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127f6565b61283d86836127f6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061287a61287561287084611a9a565b612855565b611a9a565b9050919050565b6000819050919050565b6128948361285f565b6128a86128a082612881565b848454612803565b825550505050565b600090565b6128bd6128b0565b6128c881848461288b565b505050565b5b818110156128ec576128e16000826128b5565b6001810190506128ce565b5050565b601f82111561293157612902816127d1565b61290b846127e6565b8101602085101561291a578190505b61292e612926856127e6565b8301826128cd565b50505b505050565b600082821c905092915050565b600061295460001984600802612936565b1980831691505092915050565b600061296d8383612943565b9150826002028217905092915050565b61298682611c22565b67ffffffffffffffff81111561299f5761299e611d51565b5b6129a98254612534565b6129b48282856128f0565b600060209050601f8311600181146129e757600084156129d5578287015190505b6129df8582612961565b865550612a47565b601f1984166129f5866127d1565b60005b82811015612a1d578489015182556001820191506020850194506020810190506129f8565b86831015612a3a5784890151612a36601f891682612943565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612aab602883611c2d565b9150612ab682612a4f565b604082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b3d602583611c2d565b9150612b4882612ae1565b604082019050919050565b60006020820190508181036000830152612b6c81612b30565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612bcf602a83611c2d565b9150612bda82612b73565b604082019050919050565b60006020820190508181036000830152612bfe81612bc2565b9050919050565b6000612c1082611a9a565b9150612c1b83611a9a565b9250828201905080821115612c3357612c32612565565b5b92915050565b60006040820190508181036000830152612c5381856121b3565b90508181036020830152612c6781846121b3565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000612ccc602983611c2d565b9150612cd782612c70565b604082019050919050565b60006020820190508181036000830152612cfb81612cbf565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d5e602183611c2d565b9150612d6982612d02565b604082019050919050565b60006020820190508181036000830152612d8d81612d51565b9050919050565b6000604082019050612da96000830185611b10565b612db66020830184611b10565b9392505050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000612e19602a83611c2d565b9150612e2482612dbd565b604082019050919050565b60006020820190508181036000830152612e4881612e0c565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b6000612e85601b83611c2d565b9150612e9082612e4f565b602082019050919050565b60006020820190508181036000830152612eb481612e78565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ee282612ebb565b612eec8185612ec6565b9350612efc818560208601611c3e565b612f0581611c68565b840191505092915050565b600060a082019050612f256000830188611d14565b612f326020830187611d14565b8181036040830152612f4481866121b3565b90508181036060830152612f5881856121b3565b90508181036080830152612f6c8184612ed7565b90509695505050505050565b600081519050612f8781611b66565b92915050565b600060208284031215612fa357612fa2611a32565b5b6000612fb184828501612f78565b91505092915050565b60008160e01c9050919050565b600060033d1115612fe65760046000803e612fe3600051612fba565b90505b90565b600060443d1061307657612ffb611a28565b60043d036004823e80513d602482011167ffffffffffffffff82111715613023575050613076565b808201805167ffffffffffffffff8111156130415750505050613076565b80602083010160043d03850181111561305e575050505050613076565b61306d82602001850186611d80565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006130d5603483611c2d565b91506130e082613079565b604082019050919050565b60006020820190508181036000830152613104816130c8565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613167602883611c2d565b91506131728261310b565b604082019050919050565b600060208201905081810360008301526131968161315a565b9050919050565b600060a0820190506131b26000830188611d14565b6131bf6020830187611d14565b6131cc6040830186611b10565b6131d96060830185611b10565b81810360808301526131eb8184612ed7565b9050969550505050505056fea2646970667358221220b7b12772dca4a0f206d13cf3c994306d8c966e7862befe4b0f63c33c00042a8f64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002757efbc1e6ad621247052a1aa5ce72f44d1d3b400000000000000000000000000000000000000000000000000000000000001f4
-----Decoded View---------------
Arg [0] : owner (address): 0x2757EFbc1E6AD621247052A1aa5Ce72f44d1d3b4
Arg [1] : royaltyFraction (uint96): 500
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000002757efbc1e6ad621247052a1aa5ce72f44d1d3b4
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001f4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.