ERC-1155
Overview
Max Total Supply
10,625 ES0
Holders
1,877
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 Name:
ES0rigin
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ERC1155 } from "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import { ERC1155Supply } from "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import { ERC2981 } from "@openzeppelin/contracts/token/common/ERC2981.sol"; import { ERC1155Minter } from "./ERC1155Minter.sol"; contract ES0rigin is Ownable, ERC1155Minter, ERC2981 { event RoyaltyInfoUpdated(address receiver, uint96 feeNumerator); constructor(string memory uri_) ERC1155Minter("ES0rigin", "ES0", uri_) {} /** * @notice Sets the royalty information that all ids in this contract will default to * See {ERC2981-_setDefaultRoyalty} * @param receiver cannot be the zero address * @param feeNumerator cannot be greater than the fee denominator */ function setRoyaltyInfo(address receiver, uint96 feeNumerator) external onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); emit RoyaltyInfoUpdated(receiver, feeNumerator); } /** * @notice Sets a new uri for all token types, by relying on the token type id * @param newURI metadata uri */ function setURI(string calldata newURI) external onlyOwner { _setURI(newURI); } /** * @notice See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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: balance query for the zero address"); 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 owner nor 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: transfer caller is not owner nor 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}. * * 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` * * 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}. * * 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 a {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 `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 _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 (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 supply = _totalSupply[id]; require(supply >= amount, "ERC1155: burn amount exceeds totalSupply"); unchecked { _totalSupply[id] = supply - amount; } } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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: * * - `tokenId` must be already minted. * - `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 pragma solidity ^0.8.15; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ERC1155 } from "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import { ECDSA } from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import { EIP712 } from "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import { ERC1155Pausable } from "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.sol"; import { ERC1155Supply } from "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; contract ERC1155Minter is Ownable, ERC1155Pausable, ERC1155Supply, EIP712 { error CallerNotUser(); error MintNotOpen(); error TokenAlreadyMinted(uint256 id); error TokenSoldOut(uint256 id); error SignatureVerificationFailed(); error NonexistentId(uint256 id); event MintStarted(uint256 maxSupplyPerToken, uint256 maxId); event MintStopped(); struct MintConfig { address signer; uint256 maxSupplyPerToken; uint256 maxId; } string public name; string public symbol; bool public isMintOpen = false; MintConfig public mintConfig; bytes32 public constant MINT_TYPEHASH = keccak256("Mint(address wallet,uint256[] ids)"); // Mapping from token type id to account current mint amount mapping(uint256 => mapping(address => uint8)) public currentMintedPerAddress; constructor( string memory name_, string memory symbol_, string memory uri_ ) ERC1155(uri_) EIP712(name_, "1") { name = name_; symbol = symbol_; } /** * @notice Caller is an externally owned account */ modifier callerIsUser() { if (tx.origin != _msgSender()) { revert CallerNotUser(); } _; } /** * @notice Execute function when mint is open */ modifier whenMintOepn() { if (!isMintOpen) { revert MintNotOpen(); } _; } /** * @notice Mint tokens * @param ids list of tokens to be minted * @param signature caller verification */ function mint(uint256[] calldata ids, bytes calldata signature) external callerIsUser whenMintOepn { if (!verifySignature(ids, signature)) { revert SignatureVerificationFailed(); } uint8 mintQuantity = 1; address to = _msgSender(); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; if (id > mintConfig.maxId) { revert NonexistentId(id); } if (totalSupply(id) + mintQuantity > mintConfig.maxSupplyPerToken) { revert TokenSoldOut(id); } if (currentMintedPerAddress[id][to] > 0) { revert TokenAlreadyMinted(id); } currentMintedPerAddress[id][to] = mintQuantity; _mint(to, id, mintQuantity, ""); } } /** * @notice Start mint * @param signer signature signer * @param maxSupplyPerToken maximum amount for each token type * @param maxId maximum token type id */ function startMint(address signer, uint256 maxSupplyPerToken, uint256 maxId) external onlyOwner { mintConfig.signer = signer; mintConfig.maxSupplyPerToken = maxSupplyPerToken; mintConfig.maxId = maxId; isMintOpen = true; emit MintStarted(maxSupplyPerToken, maxId); } /** * @notice Stop mint */ function stopMint() external onlyOwner { isMintOpen = false; emit MintStopped(); } /** * @notice Pause all token operations * Dealing with unforeseen circumstances, under community supervision */ function emergencyPause() external onlyOwner { _pause(); } /** * @notice Unpause contract */ function unpause() external onlyOwner { _unpause(); } /** * @notice Batch query tokens' total supply * @param ids list of token type id */ function batchQueryTotalSupply(uint256[] calldata ids) external view returns (uint256[] memory) { uint256[] memory list = new uint256[](ids.length); for (uint256 i = 0; i < ids.length; i++) { list[i] = totalSupply(ids[i]); } return list; } /** * @notice Batch query accounts' balances * @param account address to be queried * @param ids list of token type id */ function batchQueryBalance(address account, uint256[] calldata ids) external view returns (uint256[] memory) { uint256[] memory list = new uint256[](ids.length); for (uint256 i = 0; i < ids.length; i++) { list[i] = balanceOf(account, ids[i]); } return list; } /** * @notice Batch query current mint amount * @param account address to be queried * @param ids list of token type id */ function batchQueryCurrentMinted(address account, uint256[] calldata ids) external view returns (uint256[] memory) { uint256[] memory list = new uint256[](ids.length); for (uint256 i = 0; i < ids.length; i++) { list[i] = currentMintedPerAddress[ids[i]][account]; } return list; } /** * @notice Used to verify mint signature * @param ids list of tokens * @param signature mint signature */ function verifySignature(uint256[] memory ids, bytes memory signature) internal view returns (bool) { bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(MINT_TYPEHASH, _msgSender(), keccak256(abi.encodePacked(ids))))); return ECDSA.recover(digest, signature) == mintConfig.signer; } /** * @notice See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155Pausable, ERC1155Supply) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } }
// 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 (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 be 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 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.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.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.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Pausable.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC1155 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * _Available since v3.1._ */ abstract contract ERC1155Pausable is ERC1155, Pausable { /** * @dev See {ERC1155-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); require(!paused(), "ERC1155Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CallerNotUser","type":"error"},{"inputs":[],"name":"MintNotOpen","type":"error"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"NonexistentId","type":"error"},{"inputs":[],"name":"SignatureVerificationFailed","type":"error"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"TokenAlreadyMinted","type":"error"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"TokenSoldOut","type":"error"},{"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":false,"internalType":"uint256","name":"maxSupplyPerToken","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxId","type":"uint256"}],"name":"MintStarted","type":"event"},{"anonymous":false,"inputs":[],"name":"MintStopped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"RoyaltyInfoUpdated","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MINT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":"uint256[]","name":"ids","type":"uint256[]"}],"name":"batchQueryBalance","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"batchQueryCurrentMinted","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"batchQueryTotalSupply","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"currentMintedPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"isMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintConfig","outputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"uint256","name":"maxSupplyPerToken","type":"uint256"},{"internalType":"uint256","name":"maxId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","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":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"uint256","name":"maxSupplyPerToken","type":"uint256"},{"internalType":"uint256","name":"maxId","type":"uint256"}],"name":"startMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6101406040526008805460ff191690553480156200001c57600080fd5b506040516200340f3803806200340f8339810160408190526200003f91620001fc565b6040518060400160405280600881526020016722a9983934b3b4b760c11b8152506040518060400160405280600381526020016204553360ec1b8152508282604051806040016040528060018152602001603160f81b81525082620000b3620000ad6200018060201b60201c565b62000184565b620000be81620001d4565b506004805460ff19169055815160209283012081519183019190912060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818801819052818301969096526060810194909452608080850193909352308483018190528151808603909301835260c09485019091528151919095012090529190915261012052600662000166848262000367565b50600762000175838262000367565b505050505062000433565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6003620001e2828262000367565b5050565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200021057600080fd5b82516001600160401b03808211156200022857600080fd5b818501915085601f8301126200023d57600080fd5b815181811115620002525762000252620001e6565b604051601f8201601f19908116603f011681019083821181831017156200027d576200027d620001e6565b8160405282815288868487010111156200029657600080fd5b600093505b82841015620002ba57848401860151818501870152928501926200029b565b82841115620002cc5760008684830101525b98975050505050505050565b600181811c90821680620002ed57607f821691505b6020821081036200030e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200036257600081815260208120601f850160051c810160208610156200033d5750805b601f850160051c820191505b818110156200035e5782815560010162000349565b5050505b505050565b81516001600160401b03811115620003835762000383620001e6565b6200039b81620003948454620002d8565b8462000314565b602080601f831160018114620003d35760008415620003ba5750858301515b600019600386901b1c1916600185901b1785556200035e565b600085815260208120601f198616915b828110156200040457888601518255948401946001909101908401620003e3565b5085821015620004235787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c05160e0516101005161012051612f8c620004836000396000611ee201526000611f3101526000611f0c01526000611e6501526000611e8f01526000611eb90152612f8c6000f3fe608060405234801561001057600080fd5b50600436106101e45760003560e01c80635c975abb1161010f578063bc30c3f2116100a2578063e985e9c511610071578063e985e9c514610476578063f242432a146104b2578063f2fde38b146104c5578063f76fc35e146104d857600080fd5b8063bc30c3f2146103ce578063bd85b0391461040e578063d55829651461042e578063e7cc72441461043657600080fd5b80638bb2513b116100de5780638bb2513b146103855780638da5cb5b1461039857806395d89b41146103b3578063a22cb465146103bb57600080fd5b80635c975abb1461034c5780635e82b99d146103575780636e8ab9601461036a578063715018a61461037d57600080fd5b806319908016116101875780633f4ba83a116101565780633f4ba83a146103075780634e1273f41461030f5780634f558e791461032257806351858e271461034457600080fd5b806319908016146102a25780632a55205a146102af5780632b601ac8146102e15780632eb2c2d6146102f457600080fd5b806302fe5305116101c357806302fe53051461024757806306fdde031461025a57806309dac0501461026f5780630e89341c1461028f57600080fd5b8062fdd58e146101e957806301ffc9a71461020f57806302fa7c4714610232575b600080fd5b6101fc6101f736600461234d565b6104ff565b6040519081526020015b60405180910390f35b61022261021d36600461238d565b610598565b6040519015158152602001610206565b6102456102403660046123b1565b6105a9565b005b610245610255366004612435565b61062b565b610262610698565b60405161020691906124c3565b61028261027d36600461251a565b610726565b604051610206919061258a565b61026261029d36600461259d565b6107de565b6008546102229060ff1681565b6102c26102bd3660046125b6565b610872565b604080516001600160a01b039093168352602083019190915201610206565b6102826102ef3660046125d8565b610920565b610245610302366004612773565b6109f9565b610245610a90565b61028261031d36600461281c565b610ac4565b61022261033036600461259d565b600090815260056020526040902054151590565b610245610be5565b60045460ff16610222565b6102826103653660046125d8565b610c17565b6102456103783660046128e6565b610cbb565b610245610d55565b610245610393366004612919565b610d89565b6000546040516001600160a01b039091168152602001610206565b610262610f9c565b6102456103c9366004612984565b610fa9565b6103fc6103dc3660046129b5565b600c60209081526000928352604080842090915290825290205460ff1681565b60405160ff9091168152602001610206565b6101fc61041c36600461259d565b60009081526005602052604090205490565b610245610fb4565b600954600a54600b54610451926001600160a01b0316919083565b604080516001600160a01b039094168452602084019290925290820152606001610206565b6102226104843660046129e1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6102456104c0366004612a0b565b611013565b6102456104d3366004612a6f565b61109a565b6101fc7f3f3f8038666ec66c31c034b78a2e030847ab5dc508fe2101b04371bc89f2b5d181565b60006001600160a01b0383166105705760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006105a382611135565b92915050565b6000546001600160a01b031633146105d35760405162461bcd60e51b815260040161056790612a8a565b6105dd828261115a565b604080516001600160a01b03841681526001600160601b03831660208201527fae1d656a1268648b04ffa79c1416f05879338ae295aae3234d8db217356a1c62910160405180910390a15050565b6000546001600160a01b031633146106555760405162461bcd60e51b815260040161056790612a8a565b61069482828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061125792505050565b5050565b600680546106a590612abf565b80601f01602080910402602001604051908101604052809291908181526020018280546106d190612abf565b801561071e5780601f106106f35761010080835404028352916020019161071e565b820191906000526020600020905b81548152906001019060200180831161070157829003601f168201915b505050505081565b60606000826001600160401b038111156107425761074261262a565b60405190808252806020026020018201604052801561076b578160200160208202803683370190505b50905060005b838110156107d6576107a785858381811061078e5761078e612af9565b9050602002013560009081526005602052604090205490565b8282815181106107b9576107b9612af9565b6020908102919091010152806107ce81612b25565b915050610771565b509392505050565b6060600380546107ed90612abf565b80601f016020809104026020016040519081016040528092919081815260200182805461081990612abf565b80156108665780601f1061083b57610100808354040283529160200191610866565b820191906000526020600020905b81548152906001019060200180831161084957829003601f168201915b50505050509050919050565b6000828152600e602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916108e7575060408051808201909152600d546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610906906001600160601b031687612b3e565b6109109190612b5d565b91519350909150505b9250929050565b60606000826001600160401b0381111561093c5761093c61262a565b604051908082528060200260200182016040528015610965578160200160208202803683370190505b50905060005b838110156109f057600c600086868481811061098957610989612af9565b6020908102929092013583525081810192909252604090810160009081206001600160a01b038a168252909252902054825160ff909116908390839081106109d3576109d3612af9565b6020908102919091010152806109e881612b25565b91505061096b565b50949350505050565b6001600160a01b038516331480610a155750610a158533610484565b610a7c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610567565b610a898585858585611263565b5050505050565b6000546001600160a01b03163314610aba5760405162461bcd60e51b815260040161056790612a8a565b610ac2611451565b565b60608151835114610b295760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610567565b600083516001600160401b03811115610b4457610b4461262a565b604051908082528060200260200182016040528015610b6d578160200160208202803683370190505b50905060005b84518110156107d657610bb8858281518110610b9157610b91612af9565b6020026020010151858381518110610bab57610bab612af9565b60200260200101516104ff565b828281518110610bca57610bca612af9565b6020908102919091010152610bde81612b25565b9050610b73565b6000546001600160a01b03163314610c0f5760405162461bcd60e51b815260040161056790612a8a565b610ac26114e4565b60606000826001600160401b03811115610c3357610c3361262a565b604051908082528060200260200182016040528015610c5c578160200160208202803683370190505b50905060005b838110156109f057610c8c86868684818110610c8057610c80612af9565b905060200201356104ff565b828281518110610c9e57610c9e612af9565b602090810291909101015280610cb381612b25565b915050610c62565b6000546001600160a01b03163314610ce55760405162461bcd60e51b815260040161056790612a8a565b600980546001600160a01b0319166001600160a01b038516179055600a829055600b8190556008805460ff1916600117905560408051838152602081018390527fcb0654d378ad3cd02dbc858de79e52889616696769cabc0cbfb2ec86e0550451910160405180910390a1505050565b6000546001600160a01b03163314610d7f5760405162461bcd60e51b815260040161056790612a8a565b610ac2600061155f565b323314610da957604051631c4e317f60e11b815260040160405180910390fd5b60085460ff16610dcc5760405163951b974f60e01b815260040160405180910390fd5b610e3c84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020601f880181900481028201810190925286815292508691508590819084018382808284376000920191909152506115af92505050565b610e595760405163729d0f6b60e01b815260040160405180910390fd5b60013360005b85811015610f93576000878783818110610e7b57610e7b612af9565b905060200201359050600960020154811115610eac5760405162d2a3f760e21b815260048101829052602401610567565b600a54600082815260056020526040902054610ecc9060ff871690612b7f565b1115610eee57604051634af50bdb60e11b815260048101829052602401610567565b6000818152600c602090815260408083206001600160a01b038716845290915290205460ff1615610f35576040516322d1d39560e21b815260048101829052602401610567565b6000818152600c602090815260408083206001600160a01b03871684528252808320805460ff191660ff89169081179091558151928301909152918152610f80918591849190611670565b5080610f8b81612b25565b915050610e5f565b50505050505050565b600780546106a590612abf565b61069433838361178c565b6000546001600160a01b03163314610fde5760405162461bcd60e51b815260040161056790612a8a565b6008805460ff191690556040517f58e0e1f03176dfa647922b700f27e00bfa7f939db5a6fb7dd47cc6dcd3cf619c90600090a1565b6001600160a01b03851633148061102f575061102f8533610484565b61108d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610567565b610a89858585858561186c565b6000546001600160a01b031633146110c45760405162461bcd60e51b815260040161056790612a8a565b6001600160a01b0381166111295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610567565b6111328161155f565b50565b60006001600160e01b0319821663152a902d60e11b14806105a357506105a3826119a8565b6127106001600160601b03821611156111c85760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610567565b6001600160a01b03821661121e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610567565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600d55565b60036106948282612be2565b81518351146112c55760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610567565b6001600160a01b0384166112eb5760405162461bcd60e51b815260040161056790612ca1565b336112fa8187878787876119f8565b60005b84518110156113e357600085828151811061131a5761131a612af9565b60200260200101519050600085838151811061133857611338612af9565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156113895760405162461bcd60e51b815260040161056790612ce6565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906113c8908490612b7f565b92505081905550505050806113dc90612b25565b90506112fd565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611433929190612d30565b60405180910390a4611449818787878787611a06565b505050505050565b60045460ff1661149a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610567565b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60045460ff161561152a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610567565b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114c73390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806116457f3f3f8038666ec66c31c034b78a2e030847ab5dc508fe2101b04371bc89f2b5d133866040516020016115e89190612d5e565b6040516020818303038152906040528051906020012060405160200161162a939291909283526001600160a01b03919091166020830152604082015260600190565b60405160208183030381529060405280519060200120611b61565b6009549091506001600160a01b031661165e8285611baf565b6001600160a01b031614949350505050565b6001600160a01b0384166116d05760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610567565b3360006116dc85611bcb565b905060006116e985611bcb565b90506116fa836000898585896119f8565b60008681526001602090815260408083206001600160a01b038b1684529091528120805487929061172c908490612b7f565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f9383600089898989611c16565b816001600160a01b0316836001600160a01b0316036117ff5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610567565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166118925760405162461bcd60e51b815260040161056790612ca1565b33600061189e85611bcb565b905060006118ab85611bcb565b90506118bb8389898585896119f8565b60008681526001602090815260408083206001600160a01b038c168452909152902054858110156118fe5760405162461bcd60e51b815260040161056790612ce6565b60008781526001602090815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061193d908490612b7f565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461199d848a8a8a8a8a611c16565b505050505050505050565b60006001600160e01b03198216636cdb3d1360e11b14806119d957506001600160e01b031982166303a24d0760e21b145b806105a357506301ffc9a760e01b6001600160e01b03198316146105a3565b611449868686868686611cd1565b6001600160a01b0384163b156114495760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611a4a9089908990889088908890600401612d94565b6020604051808303816000875af1925050508015611a85575060408051601f3d908101601f19168201909252611a8291810190612df2565b60015b611b3157611a91612e0f565b806308c379a003611aca5750611aa5612e2a565b80611ab05750611acc565b8060405162461bcd60e51b815260040161056791906124c3565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610567565b6001600160e01b0319811663bc197c8160e01b14610f935760405162461bcd60e51b815260040161056790612eb3565b60006105a3611b6e611e58565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611bbe8585611f82565b915091506107d681611fed565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611c0557611c05612af9565b602090810291909101015292915050565b6001600160a01b0384163b156114495760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611c5a9089908990889088908890600401612efb565b6020604051808303816000875af1925050508015611c95575060408051601f3d908101601f19168201909252611c9291810190612df2565b60015b611ca157611a91612e0f565b6001600160e01b0319811663f23a6e6160e01b14610f935760405162461bcd60e51b815260040161056790612eb3565b611cdf8686868686866121a3565b6001600160a01b038516611d665760005b8351811015611d6457828181518110611d0b57611d0b612af9565b602002602001015160056000868481518110611d2957611d29612af9565b602002602001015181526020019081526020016000206000828254611d4e9190612b7f565b90915550611d5d905081612b25565b9050611cf0565b505b6001600160a01b0384166114495760005b8351811015610f93576000848281518110611d9457611d94612af9565b602002602001015190506000848381518110611db257611db2612af9565b6020026020010151905060006005600084815260200190815260200160002054905081811015611e355760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b6064820152608401610567565b60009283526005602052604090922091039055611e5181612b25565b9050611d77565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015611eb157507f000000000000000000000000000000000000000000000000000000000000000046145b15611edb57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b90565b6000808251604103611fb85760208301516040840151606085015160001a611fac8782858561220b565b94509450505050610919565b8251604003611fe15760208301516040840151611fd68683836122f8565b935093505050610919565b50600090506002610919565b600081600481111561200157612001612f40565b036120095750565b600181600481111561201d5761201d612f40565b0361206a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610567565b600281600481111561207e5761207e612f40565b036120cb5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610567565b60038160048111156120df576120df612f40565b036121375760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610567565b600481600481111561214b5761214b612f40565b036111325760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610567565b60045460ff16156114495760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b6064820152608401610567565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561224257506000905060036122ef565b8460ff16601b1415801561225a57508460ff16601c14155b1561226b57506000905060046122ef565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156122bf573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166122e8576000600192509250506122ef565b9150600090505b94509492505050565b6000806001600160ff1b0383168161231560ff86901c601b612b7f565b90506123238782888561220b565b935093505050935093915050565b80356001600160a01b038116811461234857600080fd5b919050565b6000806040838503121561236057600080fd5b61236983612331565b946020939093013593505050565b6001600160e01b03198116811461113257600080fd5b60006020828403121561239f57600080fd5b81356123aa81612377565b9392505050565b600080604083850312156123c457600080fd5b6123cd83612331565b915060208301356001600160601b03811681146123e957600080fd5b809150509250929050565b60008083601f84011261240657600080fd5b5081356001600160401b0381111561241d57600080fd5b60208301915083602082850101111561091957600080fd5b6000806020838503121561244857600080fd5b82356001600160401b0381111561245e57600080fd5b61246a858286016123f4565b90969095509350505050565b6000815180845260005b8181101561249c57602081850181015186830182015201612480565b818111156124ae576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006123aa6020830184612476565b60008083601f8401126124e857600080fd5b5081356001600160401b038111156124ff57600080fd5b6020830191508360208260051b850101111561091957600080fd5b6000806020838503121561252d57600080fd5b82356001600160401b0381111561254357600080fd5b61246a858286016124d6565b600081518084526020808501945080840160005b8381101561257f57815187529582019590820190600101612563565b509495945050505050565b6020815260006123aa602083018461254f565b6000602082840312156125af57600080fd5b5035919050565b600080604083850312156125c957600080fd5b50508035926020909101359150565b6000806000604084860312156125ed57600080fd5b6125f684612331565b925060208401356001600160401b0381111561261157600080fd5b61261d868287016124d6565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b03811182821017156126655761266561262a565b6040525050565b60006001600160401b038211156126855761268561262a565b5060051b60200190565b600082601f8301126126a057600080fd5b813560206126ad8261266c565b6040516126ba8282612640565b83815260059390931b85018201928281019150868411156126da57600080fd5b8286015b848110156126f557803583529183019183016126de565b509695505050505050565b600082601f83011261271157600080fd5b81356001600160401b0381111561272a5761272a61262a565b604051612741601f8301601f191660200182612640565b81815284602083860101111561275657600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561278b57600080fd5b61279486612331565b94506127a260208701612331565b935060408601356001600160401b03808211156127be57600080fd5b6127ca89838a0161268f565b945060608801359150808211156127e057600080fd5b6127ec89838a0161268f565b9350608088013591508082111561280257600080fd5b5061280f88828901612700565b9150509295509295909350565b6000806040838503121561282f57600080fd5b82356001600160401b038082111561284657600080fd5b818501915085601f83011261285a57600080fd5b813560206128678261266c565b6040516128748282612640565b83815260059390931b850182019282810191508984111561289457600080fd5b948201945b838610156128b9576128aa86612331565b82529482019490820190612899565b965050860135925050808211156128cf57600080fd5b506128dc8582860161268f565b9150509250929050565b6000806000606084860312156128fb57600080fd5b61290484612331565b95602085013595506040909401359392505050565b6000806000806040858703121561292f57600080fd5b84356001600160401b038082111561294657600080fd5b612952888389016124d6565b9096509450602087013591508082111561296b57600080fd5b50612978878288016123f4565b95989497509550505050565b6000806040838503121561299757600080fd5b6129a083612331565b9150602083013580151581146123e957600080fd5b600080604083850312156129c857600080fd5b823591506129d860208401612331565b90509250929050565b600080604083850312156129f457600080fd5b6129fd83612331565b91506129d860208401612331565b600080600080600060a08688031215612a2357600080fd5b612a2c86612331565b9450612a3a60208701612331565b9350604086013592506060860135915060808601356001600160401b03811115612a6357600080fd5b61280f88828901612700565b600060208284031215612a8157600080fd5b6123aa82612331565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612ad357607f821691505b602082108103612af357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612b3757612b37612b0f565b5060010190565b6000816000190483118215151615612b5857612b58612b0f565b500290565b600082612b7a57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612b9257612b92612b0f565b500190565b601f821115612bdd57600081815260208120601f850160051c81016020861015612bbe5750805b601f850160051c820191505b8181101561144957828155600101612bca565b505050565b81516001600160401b03811115612bfb57612bfb61262a565b612c0f81612c098454612abf565b84612b97565b602080601f831160018114612c445760008415612c2c5750858301515b600019600386901b1c1916600185901b178555611449565b600085815260208120601f198616915b82811015612c7357888601518255948401946001909101908401612c54565b5085821015612c915787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612d43604083018561254f565b8281036020840152612d55818561254f565b95945050505050565b815160009082906020808601845b83811015612d8857815185529382019390820190600101612d6c565b50929695505050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612dc09083018661254f565b8281036060840152612dd2818661254f565b90508281036080840152612de68185612476565b98975050505050505050565b600060208284031215612e0457600080fd5b81516123aa81612377565b600060033d1115611f7f5760046000803e5060005160e01c90565b600060443d1015612e385790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612e6757505050505090565b8285019150815181811115612e7f5750505050505090565b843d8701016020828501011115612e995750505050505090565b612ea860208286010187612640565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612f3590830184612476565b979650505050505050565b634e487b7160e01b600052602160045260246000fdfea26469706673582212206bef74e56c8c8714c96abe1b4751e875ddb621c19525da2994b3d9c4c7e36bbb64736f6c634300080f00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f756c746976657273652e6d7970696e6174612e636c6f75642f697066732f516d5872366a336e706b624a69777761684459666f6f6d78543676715444374379325569634e5a39714c64694a7a2f7b69647d00000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e45760003560e01c80635c975abb1161010f578063bc30c3f2116100a2578063e985e9c511610071578063e985e9c514610476578063f242432a146104b2578063f2fde38b146104c5578063f76fc35e146104d857600080fd5b8063bc30c3f2146103ce578063bd85b0391461040e578063d55829651461042e578063e7cc72441461043657600080fd5b80638bb2513b116100de5780638bb2513b146103855780638da5cb5b1461039857806395d89b41146103b3578063a22cb465146103bb57600080fd5b80635c975abb1461034c5780635e82b99d146103575780636e8ab9601461036a578063715018a61461037d57600080fd5b806319908016116101875780633f4ba83a116101565780633f4ba83a146103075780634e1273f41461030f5780634f558e791461032257806351858e271461034457600080fd5b806319908016146102a25780632a55205a146102af5780632b601ac8146102e15780632eb2c2d6146102f457600080fd5b806302fe5305116101c357806302fe53051461024757806306fdde031461025a57806309dac0501461026f5780630e89341c1461028f57600080fd5b8062fdd58e146101e957806301ffc9a71461020f57806302fa7c4714610232575b600080fd5b6101fc6101f736600461234d565b6104ff565b6040519081526020015b60405180910390f35b61022261021d36600461238d565b610598565b6040519015158152602001610206565b6102456102403660046123b1565b6105a9565b005b610245610255366004612435565b61062b565b610262610698565b60405161020691906124c3565b61028261027d36600461251a565b610726565b604051610206919061258a565b61026261029d36600461259d565b6107de565b6008546102229060ff1681565b6102c26102bd3660046125b6565b610872565b604080516001600160a01b039093168352602083019190915201610206565b6102826102ef3660046125d8565b610920565b610245610302366004612773565b6109f9565b610245610a90565b61028261031d36600461281c565b610ac4565b61022261033036600461259d565b600090815260056020526040902054151590565b610245610be5565b60045460ff16610222565b6102826103653660046125d8565b610c17565b6102456103783660046128e6565b610cbb565b610245610d55565b610245610393366004612919565b610d89565b6000546040516001600160a01b039091168152602001610206565b610262610f9c565b6102456103c9366004612984565b610fa9565b6103fc6103dc3660046129b5565b600c60209081526000928352604080842090915290825290205460ff1681565b60405160ff9091168152602001610206565b6101fc61041c36600461259d565b60009081526005602052604090205490565b610245610fb4565b600954600a54600b54610451926001600160a01b0316919083565b604080516001600160a01b039094168452602084019290925290820152606001610206565b6102226104843660046129e1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6102456104c0366004612a0b565b611013565b6102456104d3366004612a6f565b61109a565b6101fc7f3f3f8038666ec66c31c034b78a2e030847ab5dc508fe2101b04371bc89f2b5d181565b60006001600160a01b0383166105705760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006105a382611135565b92915050565b6000546001600160a01b031633146105d35760405162461bcd60e51b815260040161056790612a8a565b6105dd828261115a565b604080516001600160a01b03841681526001600160601b03831660208201527fae1d656a1268648b04ffa79c1416f05879338ae295aae3234d8db217356a1c62910160405180910390a15050565b6000546001600160a01b031633146106555760405162461bcd60e51b815260040161056790612a8a565b61069482828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061125792505050565b5050565b600680546106a590612abf565b80601f01602080910402602001604051908101604052809291908181526020018280546106d190612abf565b801561071e5780601f106106f35761010080835404028352916020019161071e565b820191906000526020600020905b81548152906001019060200180831161070157829003601f168201915b505050505081565b60606000826001600160401b038111156107425761074261262a565b60405190808252806020026020018201604052801561076b578160200160208202803683370190505b50905060005b838110156107d6576107a785858381811061078e5761078e612af9565b9050602002013560009081526005602052604090205490565b8282815181106107b9576107b9612af9565b6020908102919091010152806107ce81612b25565b915050610771565b509392505050565b6060600380546107ed90612abf565b80601f016020809104026020016040519081016040528092919081815260200182805461081990612abf565b80156108665780601f1061083b57610100808354040283529160200191610866565b820191906000526020600020905b81548152906001019060200180831161084957829003601f168201915b50505050509050919050565b6000828152600e602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916108e7575060408051808201909152600d546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610906906001600160601b031687612b3e565b6109109190612b5d565b91519350909150505b9250929050565b60606000826001600160401b0381111561093c5761093c61262a565b604051908082528060200260200182016040528015610965578160200160208202803683370190505b50905060005b838110156109f057600c600086868481811061098957610989612af9565b6020908102929092013583525081810192909252604090810160009081206001600160a01b038a168252909252902054825160ff909116908390839081106109d3576109d3612af9565b6020908102919091010152806109e881612b25565b91505061096b565b50949350505050565b6001600160a01b038516331480610a155750610a158533610484565b610a7c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610567565b610a898585858585611263565b5050505050565b6000546001600160a01b03163314610aba5760405162461bcd60e51b815260040161056790612a8a565b610ac2611451565b565b60608151835114610b295760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610567565b600083516001600160401b03811115610b4457610b4461262a565b604051908082528060200260200182016040528015610b6d578160200160208202803683370190505b50905060005b84518110156107d657610bb8858281518110610b9157610b91612af9565b6020026020010151858381518110610bab57610bab612af9565b60200260200101516104ff565b828281518110610bca57610bca612af9565b6020908102919091010152610bde81612b25565b9050610b73565b6000546001600160a01b03163314610c0f5760405162461bcd60e51b815260040161056790612a8a565b610ac26114e4565b60606000826001600160401b03811115610c3357610c3361262a565b604051908082528060200260200182016040528015610c5c578160200160208202803683370190505b50905060005b838110156109f057610c8c86868684818110610c8057610c80612af9565b905060200201356104ff565b828281518110610c9e57610c9e612af9565b602090810291909101015280610cb381612b25565b915050610c62565b6000546001600160a01b03163314610ce55760405162461bcd60e51b815260040161056790612a8a565b600980546001600160a01b0319166001600160a01b038516179055600a829055600b8190556008805460ff1916600117905560408051838152602081018390527fcb0654d378ad3cd02dbc858de79e52889616696769cabc0cbfb2ec86e0550451910160405180910390a1505050565b6000546001600160a01b03163314610d7f5760405162461bcd60e51b815260040161056790612a8a565b610ac2600061155f565b323314610da957604051631c4e317f60e11b815260040160405180910390fd5b60085460ff16610dcc5760405163951b974f60e01b815260040160405180910390fd5b610e3c84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020601f880181900481028201810190925286815292508691508590819084018382808284376000920191909152506115af92505050565b610e595760405163729d0f6b60e01b815260040160405180910390fd5b60013360005b85811015610f93576000878783818110610e7b57610e7b612af9565b905060200201359050600960020154811115610eac5760405162d2a3f760e21b815260048101829052602401610567565b600a54600082815260056020526040902054610ecc9060ff871690612b7f565b1115610eee57604051634af50bdb60e11b815260048101829052602401610567565b6000818152600c602090815260408083206001600160a01b038716845290915290205460ff1615610f35576040516322d1d39560e21b815260048101829052602401610567565b6000818152600c602090815260408083206001600160a01b03871684528252808320805460ff191660ff89169081179091558151928301909152918152610f80918591849190611670565b5080610f8b81612b25565b915050610e5f565b50505050505050565b600780546106a590612abf565b61069433838361178c565b6000546001600160a01b03163314610fde5760405162461bcd60e51b815260040161056790612a8a565b6008805460ff191690556040517f58e0e1f03176dfa647922b700f27e00bfa7f939db5a6fb7dd47cc6dcd3cf619c90600090a1565b6001600160a01b03851633148061102f575061102f8533610484565b61108d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610567565b610a89858585858561186c565b6000546001600160a01b031633146110c45760405162461bcd60e51b815260040161056790612a8a565b6001600160a01b0381166111295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610567565b6111328161155f565b50565b60006001600160e01b0319821663152a902d60e11b14806105a357506105a3826119a8565b6127106001600160601b03821611156111c85760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610567565b6001600160a01b03821661121e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610567565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600d55565b60036106948282612be2565b81518351146112c55760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610567565b6001600160a01b0384166112eb5760405162461bcd60e51b815260040161056790612ca1565b336112fa8187878787876119f8565b60005b84518110156113e357600085828151811061131a5761131a612af9565b60200260200101519050600085838151811061133857611338612af9565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156113895760405162461bcd60e51b815260040161056790612ce6565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906113c8908490612b7f565b92505081905550505050806113dc90612b25565b90506112fd565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611433929190612d30565b60405180910390a4611449818787878787611a06565b505050505050565b60045460ff1661149a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610567565b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60045460ff161561152a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610567565b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114c73390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806116457f3f3f8038666ec66c31c034b78a2e030847ab5dc508fe2101b04371bc89f2b5d133866040516020016115e89190612d5e565b6040516020818303038152906040528051906020012060405160200161162a939291909283526001600160a01b03919091166020830152604082015260600190565b60405160208183030381529060405280519060200120611b61565b6009549091506001600160a01b031661165e8285611baf565b6001600160a01b031614949350505050565b6001600160a01b0384166116d05760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610567565b3360006116dc85611bcb565b905060006116e985611bcb565b90506116fa836000898585896119f8565b60008681526001602090815260408083206001600160a01b038b1684529091528120805487929061172c908490612b7f565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f9383600089898989611c16565b816001600160a01b0316836001600160a01b0316036117ff5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610567565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166118925760405162461bcd60e51b815260040161056790612ca1565b33600061189e85611bcb565b905060006118ab85611bcb565b90506118bb8389898585896119f8565b60008681526001602090815260408083206001600160a01b038c168452909152902054858110156118fe5760405162461bcd60e51b815260040161056790612ce6565b60008781526001602090815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061193d908490612b7f565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461199d848a8a8a8a8a611c16565b505050505050505050565b60006001600160e01b03198216636cdb3d1360e11b14806119d957506001600160e01b031982166303a24d0760e21b145b806105a357506301ffc9a760e01b6001600160e01b03198316146105a3565b611449868686868686611cd1565b6001600160a01b0384163b156114495760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611a4a9089908990889088908890600401612d94565b6020604051808303816000875af1925050508015611a85575060408051601f3d908101601f19168201909252611a8291810190612df2565b60015b611b3157611a91612e0f565b806308c379a003611aca5750611aa5612e2a565b80611ab05750611acc565b8060405162461bcd60e51b815260040161056791906124c3565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610567565b6001600160e01b0319811663bc197c8160e01b14610f935760405162461bcd60e51b815260040161056790612eb3565b60006105a3611b6e611e58565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611bbe8585611f82565b915091506107d681611fed565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611c0557611c05612af9565b602090810291909101015292915050565b6001600160a01b0384163b156114495760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611c5a9089908990889088908890600401612efb565b6020604051808303816000875af1925050508015611c95575060408051601f3d908101601f19168201909252611c9291810190612df2565b60015b611ca157611a91612e0f565b6001600160e01b0319811663f23a6e6160e01b14610f935760405162461bcd60e51b815260040161056790612eb3565b611cdf8686868686866121a3565b6001600160a01b038516611d665760005b8351811015611d6457828181518110611d0b57611d0b612af9565b602002602001015160056000868481518110611d2957611d29612af9565b602002602001015181526020019081526020016000206000828254611d4e9190612b7f565b90915550611d5d905081612b25565b9050611cf0565b505b6001600160a01b0384166114495760005b8351811015610f93576000848281518110611d9457611d94612af9565b602002602001015190506000848381518110611db257611db2612af9565b6020026020010151905060006005600084815260200190815260200160002054905081811015611e355760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b6064820152608401610567565b60009283526005602052604090922091039055611e5181612b25565b9050611d77565b6000306001600160a01b037f0000000000000000000000002f71f82d082cf7ece361f5992679fadd52b645a916148015611eb157507f000000000000000000000000000000000000000000000000000000000000000146145b15611edb57507f423126ddc80cebe9f975ef6c7ac5380d6328d08d1fb1b235ec930032c7f3abc790565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527fa7e6bfda9bf8bd382668167d6ac6bc489f14bf0bc30b72b75a9ed1ec72368432828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b90565b6000808251604103611fb85760208301516040840151606085015160001a611fac8782858561220b565b94509450505050610919565b8251604003611fe15760208301516040840151611fd68683836122f8565b935093505050610919565b50600090506002610919565b600081600481111561200157612001612f40565b036120095750565b600181600481111561201d5761201d612f40565b0361206a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610567565b600281600481111561207e5761207e612f40565b036120cb5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610567565b60038160048111156120df576120df612f40565b036121375760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610567565b600481600481111561214b5761214b612f40565b036111325760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610567565b60045460ff16156114495760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b6064820152608401610567565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561224257506000905060036122ef565b8460ff16601b1415801561225a57508460ff16601c14155b1561226b57506000905060046122ef565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156122bf573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166122e8576000600192509250506122ef565b9150600090505b94509492505050565b6000806001600160ff1b0383168161231560ff86901c601b612b7f565b90506123238782888561220b565b935093505050935093915050565b80356001600160a01b038116811461234857600080fd5b919050565b6000806040838503121561236057600080fd5b61236983612331565b946020939093013593505050565b6001600160e01b03198116811461113257600080fd5b60006020828403121561239f57600080fd5b81356123aa81612377565b9392505050565b600080604083850312156123c457600080fd5b6123cd83612331565b915060208301356001600160601b03811681146123e957600080fd5b809150509250929050565b60008083601f84011261240657600080fd5b5081356001600160401b0381111561241d57600080fd5b60208301915083602082850101111561091957600080fd5b6000806020838503121561244857600080fd5b82356001600160401b0381111561245e57600080fd5b61246a858286016123f4565b90969095509350505050565b6000815180845260005b8181101561249c57602081850181015186830182015201612480565b818111156124ae576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006123aa6020830184612476565b60008083601f8401126124e857600080fd5b5081356001600160401b038111156124ff57600080fd5b6020830191508360208260051b850101111561091957600080fd5b6000806020838503121561252d57600080fd5b82356001600160401b0381111561254357600080fd5b61246a858286016124d6565b600081518084526020808501945080840160005b8381101561257f57815187529582019590820190600101612563565b509495945050505050565b6020815260006123aa602083018461254f565b6000602082840312156125af57600080fd5b5035919050565b600080604083850312156125c957600080fd5b50508035926020909101359150565b6000806000604084860312156125ed57600080fd5b6125f684612331565b925060208401356001600160401b0381111561261157600080fd5b61261d868287016124d6565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b03811182821017156126655761266561262a565b6040525050565b60006001600160401b038211156126855761268561262a565b5060051b60200190565b600082601f8301126126a057600080fd5b813560206126ad8261266c565b6040516126ba8282612640565b83815260059390931b85018201928281019150868411156126da57600080fd5b8286015b848110156126f557803583529183019183016126de565b509695505050505050565b600082601f83011261271157600080fd5b81356001600160401b0381111561272a5761272a61262a565b604051612741601f8301601f191660200182612640565b81815284602083860101111561275657600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561278b57600080fd5b61279486612331565b94506127a260208701612331565b935060408601356001600160401b03808211156127be57600080fd5b6127ca89838a0161268f565b945060608801359150808211156127e057600080fd5b6127ec89838a0161268f565b9350608088013591508082111561280257600080fd5b5061280f88828901612700565b9150509295509295909350565b6000806040838503121561282f57600080fd5b82356001600160401b038082111561284657600080fd5b818501915085601f83011261285a57600080fd5b813560206128678261266c565b6040516128748282612640565b83815260059390931b850182019282810191508984111561289457600080fd5b948201945b838610156128b9576128aa86612331565b82529482019490820190612899565b965050860135925050808211156128cf57600080fd5b506128dc8582860161268f565b9150509250929050565b6000806000606084860312156128fb57600080fd5b61290484612331565b95602085013595506040909401359392505050565b6000806000806040858703121561292f57600080fd5b84356001600160401b038082111561294657600080fd5b612952888389016124d6565b9096509450602087013591508082111561296b57600080fd5b50612978878288016123f4565b95989497509550505050565b6000806040838503121561299757600080fd5b6129a083612331565b9150602083013580151581146123e957600080fd5b600080604083850312156129c857600080fd5b823591506129d860208401612331565b90509250929050565b600080604083850312156129f457600080fd5b6129fd83612331565b91506129d860208401612331565b600080600080600060a08688031215612a2357600080fd5b612a2c86612331565b9450612a3a60208701612331565b9350604086013592506060860135915060808601356001600160401b03811115612a6357600080fd5b61280f88828901612700565b600060208284031215612a8157600080fd5b6123aa82612331565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612ad357607f821691505b602082108103612af357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612b3757612b37612b0f565b5060010190565b6000816000190483118215151615612b5857612b58612b0f565b500290565b600082612b7a57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612b9257612b92612b0f565b500190565b601f821115612bdd57600081815260208120601f850160051c81016020861015612bbe5750805b601f850160051c820191505b8181101561144957828155600101612bca565b505050565b81516001600160401b03811115612bfb57612bfb61262a565b612c0f81612c098454612abf565b84612b97565b602080601f831160018114612c445760008415612c2c5750858301515b600019600386901b1c1916600185901b178555611449565b600085815260208120601f198616915b82811015612c7357888601518255948401946001909101908401612c54565b5085821015612c915787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612d43604083018561254f565b8281036020840152612d55818561254f565b95945050505050565b815160009082906020808601845b83811015612d8857815185529382019390820190600101612d6c565b50929695505050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612dc09083018661254f565b8281036060840152612dd2818661254f565b90508281036080840152612de68185612476565b98975050505050505050565b600060208284031215612e0457600080fd5b81516123aa81612377565b600060033d1115611f7f5760046000803e5060005160e01c90565b600060443d1015612e385790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612e6757505050505090565b8285019150815181811115612e7f5750505050505090565b843d8701016020828501011115612e995750505050505090565b612ea860208286010187612640565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612f3590830184612476565b979650505050505050565b634e487b7160e01b600052602160045260246000fdfea26469706673582212206bef74e56c8c8714c96abe1b4751e875ddb621c19525da2994b3d9c4c7e36bbb64736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f756c746976657273652e6d7970696e6174612e636c6f75642f697066732f516d5872366a336e706b624a69777761684459666f6f6d78543676715444374379325569634e5a39714c64694a7a2f7b69647d00000000000000
-----Decoded View---------------
Arg [0] : uri_ (string): https://ultiverse.mypinata.cloud/ipfs/QmXr6j3npkbJiwwahDYfoomxT6vqTD7Cy2UicNZ9qLdiJz/{id}
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [2] : 68747470733a2f2f756c746976657273652e6d7970696e6174612e636c6f7564
Arg [3] : 2f697066732f516d5872366a336e706b624a69777761684459666f6f6d785436
Arg [4] : 76715444374379325569634e5a39714c64694a7a2f7b69647d00000000000000
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.