Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
1,000
Holders
608
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:
MetaOrganizationAccessPass
Compiler Version
v0.8.10+commit.fc410830
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.10; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; // :+%%+: // .-*@@@@@@@@#=. // :+%@@@@@@@@@@@@@@%+: // -*@@@@@@@%+: :=#@@@@@@@*-. // :+#@@@@@@@*- :+%@@@@@@@@@%+: // -*@@@@@@@%+: -*@@@@@@@%*%@@@@@@@*- // .=#@@@@@@@*=. :+%@@@@@@@*=. .-*@@@@@@@#=. // @@@@@@@%+: -*@@@@@@@%+: -+%@@@@@@%+: // @@@@@=. :=#@@@@@@@#=. .=#@@@@@@@*-. :+% // @@@@% -*@@@@@@@%+- :+%@@@@@@%+: .=#@@@@ // @@@@% +@@@@@@#=. .=#@@@@@@@#=. :+%@@@@@@@ // @@@@% +@@@@+ :+%@@@@@@%+: .-*@@@@@@@@@@@ // @@@@% +@@@@- =*@@@@@@@#=. :+%@@@@@@%*-#@@@@ // @@@@% +@@@@- @@@@@%+: .=*@@@@@@@#=. *@@@@ // @@@@% +@@@@- @@@@# :+%@@@@@@@*- *@@@@ // @@@@% +@@@@- @@@@# #@@@@@#+: *@@@@ // @@@@% +@@@@- @@@@# #@@@@. :+= *@@@@ // @@@@% +@@@@- @@@@# #@@@@. *@@@* *@@@@ // @@@@% +@@@@- @@@@# #@@@@. .@@@@+ *@@@@ // @@@@% +@@@@- @@@@# #@@@@. .@%+: *@@@@ // @@@@% +@@@@- @@@@# #@@@@. . .=%@@@@ // %@@@% +@@@@- @@@@# #@@@@. :+%@@@@@@% // .-*# +@@@@- @@@@# #@@@@. .=#@@@@@@@*=. // +@@@@- @@@@# #@@@@. :+%@@@@@@%+: // :*@@@- @@@@# #@@@@#@@@@@@@#=. // :+: @@@@# #@@@@@@@@%+: // @@@@# #@@@@@#=. // :+%@# #@%+: /* * @title ERC1155 contract for MetaOrganization (https://metaorganization.com/) * * @author loltapes.eth */ contract MetaOrganizationAccessPass is ERC1155, ERC1155Burnable, ERC1155Supply, Ownable, Pausable { // @notice configuration of a single pass struct Pass { uint128 mintPrice; uint96 maxSupply; uint32 walletMintLimit; string metadataUri; } // tokenId => (wallet => amount minted) mapping(uint256 => mapping(address => uint256)) public minted; // @notice indicates which pass is currently up for sale uint256 public tokenIdForSale; // tokenId => Pass mapping(uint256 => Pass) public tokens; // @notice allows to freeze the configuration of a pass to prevent further modification // tokenId => is frozen flag mapping(uint256 => bool) public frozenTokens; // @notice indicates a token metadata was frozen // compatibility with OpenSea https://docs.opensea.io/docs/metadata-standards event PermanentURI(string _value, uint256 indexed _id); // @notice address to withdraw funds address payable private _payoutAddress; // @notice Current root for reserved sale proofs bytes32 public currentMerkleRoot; constructor( address payoutAddress ) ERC1155("") { // payment _payoutAddress = payable(payoutAddress); // start sales paused _pause(); } // region Pass Configuration function addPass( uint256 tokenId, uint128 mintPrice, uint96 maxSupply, uint32 walletMintLimit, string calldata metadataUri, uint256 teamReserve ) external onlyOwner { require(tokens[tokenId].maxSupply == 0, "Token already exists"); require(maxSupply > 0, "Supply must be > 0"); require(maxSupply >= teamReserve, "Max supply must be >= team reserve"); tokens[tokenId] = Pass(mintPrice, maxSupply, walletMintLimit, metadataUri); if (teamReserve > 0) { mintInternal(msg.sender, tokenId, teamReserve); } // required as per ERC1155 standard emit URI(metadataUri, tokenId); } function editPass( uint256 tokenId, uint128 mintPrice, uint96 maxSupply, uint32 walletMintLimit, string calldata metadataUri ) external onlyOwner whenTokenValid(tokenId) whenNotFrozen(tokenId) { require(maxSupply > 0, "Supply must be > 0"); require(maxSupply >= totalSupply(tokenId), "Max supply must be >= existing supply"); tokens[tokenId] = Pass(mintPrice, maxSupply, walletMintLimit, metadataUri); // required as per ERC1155 standard emit URI(metadataUri, tokenId); } function setPassWalletMintLimit(uint256 tokenId, uint32 walletMintLimit) external onlyOwner whenTokenValid(tokenId) whenNotFrozen(tokenId) { tokens[tokenId].walletMintLimit = walletMintLimit; } function setPassMetadataUri(uint256 tokenId, string calldata metadataUri) external onlyOwner whenTokenValid(tokenId) whenNotFrozen(tokenId) { tokens[tokenId].metadataUri = metadataUri; // required as per ERC1155 standard emit URI(metadataUri, tokenId); } function freezeMetadata(uint256 tokenId) external onlyOwner whenTokenValid(tokenId) { frozenTokens[tokenId] = true; emit PermanentURI(tokens[tokenId].metadataUri, tokenId); } function uri(uint256 tokenId) public view override whenTokenValid(tokenId) returns (string memory) { if (bytes(tokens[tokenId].metadataUri).length > 0) { return tokens[tokenId].metadataUri; } else { return ""; } } // endregion // region Sale function saleState() external view returns (uint256 state) { if (paused()) { // paused return 0; } else if (currentMerkleRoot != 0) { // reserved return 1; } else { // public return 2; } } function startPublicSale(uint256 tokenId) external onlyOwner whenPaused whenTokenValid(tokenId) { tokenIdForSale = tokenId; currentMerkleRoot = 0; _unpause(); } function startReservedSale(uint256 tokenId, bytes32 merkleRoot) external onlyOwner whenPaused whenTokenValid(tokenId) { tokenIdForSale = tokenId; currentMerkleRoot = merkleRoot; _unpause(); } function pauseSale() external onlyOwner whenNotPaused { _pause(); } function mintSale(uint256 amount, bytes32[] calldata proof) external payable whenNotPaused { // Reserved validation if (currentMerkleRoot != 0) { require(verify(createLeaf(msg.sender), proof), "Invalid merkle proof"); } // require to mint at least one require(amount > 0, "Amount must be > 0"); Pass storage pass = tokens[tokenIdForSale]; // require enough supply require(totalSupply(tokenIdForSale) + amount <= pass.maxSupply, "Over supply"); // enforce per wallet mint limit (0 == no limit) if (pass.walletMintLimit > 0) { require(minted[tokenIdForSale][msg.sender] + amount <= pass.walletMintLimit, "Over wallet mint limit"); } // require exact payment require(msg.value == amount * pass.mintPrice, "Wrong ETH amount"); mintInternal(msg.sender, tokenIdForSale, amount); // finish sale automatically if (totalSupply(tokenIdForSale) == pass.maxSupply) { _pause(); } } function mintOwner(uint256 tokenId, uint256 amount) external onlyOwner { require(totalSupply(tokenId) + amount <= tokens[tokenId].maxSupply, "Over supply"); mintInternal(msg.sender, tokenId, amount); } function mintInternal(address to, uint256 tokenId, uint256 amount) internal { _mint(to, tokenId, amount, ""); minted[tokenId][to] = minted[tokenId][to] + amount; } function setMerkleRoot(bytes32 merkleRoot) external onlyOwner { currentMerkleRoot = merkleRoot; } function verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) { return MerkleProof.verify(proof, currentMerkleRoot, leaf); } function createLeaf(address account) public pure returns (bytes32) { return keccak256(abi.encodePacked(account)); } // endregion // region Payment receive() external payable {} function withdraw() external onlyOwner { Address.sendValue(_payoutAddress, address(this).balance); } function setPayoutAddress(address payoutAddress) external onlyOwner { _payoutAddress = payable(payoutAddress); } // endregion // region Default Overrides function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155, ERC1155Supply) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } // endregion // region modifiers modifier whenTokenValid(uint256 tokenId) { require(tokens[tokenId].maxSupply > 0, "Invalid token"); _; } modifier whenNotFrozen(uint256 tokenId) { require(!frozenTokens[tokenId], "Configuration is frozen"); _; } // endregion } /* Contract by loltapes.eth _ _ _ ____ | | | | | / __ \| | ___ | | |_ __ _ _ __ ___ ___ / / _` | |/ _ \| | __/ _` | '_ \ / _ \/ __| | | (_| | | (_) | | || (_| | |_) | __/\__ \ \ \__,_|_|\___/|_|\__\__,_| .__/ \___||___/ \____/ | | |_| */
// SPDX-License-Identifier: MIT 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()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT 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 weither 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) { _totalSupply[ids[i]] -= amounts[i]; } } } }
// SPDX-License-Identifier: MIT 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 { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), 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); _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); _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 `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, 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); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @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 {} 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 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT 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 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 pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 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 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. 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. 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 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 pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"payoutAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint128","name":"mintPrice","type":"uint128"},{"internalType":"uint96","name":"maxSupply","type":"uint96"},{"internalType":"uint32","name":"walletMintLimit","type":"uint32"},{"internalType":"string","name":"metadataUri","type":"string"},{"internalType":"uint256","name":"teamReserve","type":"uint256"}],"name":"addPass","outputs":[],"stateMutability":"nonpayable","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":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"createLeaf","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"currentMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint128","name":"mintPrice","type":"uint128"},{"internalType":"uint96","name":"maxSupply","type":"uint96"},{"internalType":"uint32","name":"walletMintLimit","type":"uint32"},{"internalType":"string","name":"metadataUri","type":"string"}],"name":"editPass","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":"uint256","name":"tokenId","type":"uint256"}],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"frozenTokens","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","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":"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":[],"name":"saleState","outputs":[{"internalType":"uint256","name":"state","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"metadataUri","type":"string"}],"name":"setPassMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint32","name":"walletMintLimit","type":"uint32"}],"name":"setPassWalletMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"payoutAddress","type":"address"}],"name":"setPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"startReservedSale","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":"tokenIdForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokens","outputs":[{"internalType":"uint128","name":"mintPrice","type":"uint128"},{"internalType":"uint96","name":"maxSupply","type":"uint96"},{"internalType":"uint32","name":"walletMintLimit","type":"uint32"},{"internalType":"string","name":"metadataUri","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003c1738038062003c17833981016040819052620000349162000256565b6040805160208101909152600081526200004e8162000093565b506200005a33620000ac565b6004805460ff60a01b19169055600980546001600160a01b0319166001600160a01b0383161790556200008c620000fe565b50620002c5565b8051620000a8906002906020840190620001b0565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000112600454600160a01b900460ff1690565b15620001575760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b6004805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620001933390565b6040516001600160a01b03909116815260200160405180910390a1565b828054620001be9062000288565b90600052602060002090601f016020900481019282620001e257600085556200022d565b82601f10620001fd57805160ff19168380011785556200022d565b828001600101855582156200022d579182015b828111156200022d57825182559160200191906001019062000210565b506200023b9291506200023f565b5090565b5b808211156200023b576000815560010162000240565b6000602082840312156200026957600080fd5b81516001600160a01b03811681146200028157600080fd5b9392505050565b600181811c908216806200029d57607f821691505b60208210811415620002bf57634e487b7160e01b600052602260045260246000fd5b50919050565b61394280620002d56000396000f3fe6080604052600436106102125760003560e01c80636887a0e511610118578063bd85b039116100a0578063e985e9c51161006f578063e985e9c51461063b578063f242432a14610684578063f2fde38b146106a4578063f401f8a0146106c4578063f5298aca146106f457600080fd5b8063bd85b039146105b8578063cd27c563146105e5578063de0a3e0a14610605578063e0f17e321461062557600080fd5b80637cb64759116100e75780637cb647591461051a5780638da5cb5b1461053a5780639ea9719014610562578063a22cb46514610578578063b6f11a421461059857600080fd5b80636887a0e51461048d5780636b20c454146104c5578063715018a6146104e557806374817d9b146104fa57600080fd5b80633ccfd60b1161019b5780634f558e791161016a5780634f558e79146103e55780634f64b2be1461041457806355367ba9146104445780635c975abb14610459578063603f4d521461047857600080fd5b80633ccfd60b1461036357806345c2b166146103785780634dcf6ad6146103985780634e1273f4146103b857600080fd5b80632a47cc57116101e25780632a47cc57146102d05780632eb2c2d6146102f05780632f8af9df14610310578063338eac011461032357806333ea51a81461034357600080fd5b8062fdd58e1461021e57806301ffc9a7146102515780630e89341c146102815780631482df26146102ae57600080fd5b3661021957005b600080fd5b34801561022a57600080fd5b5061023e610239366004612a84565b610714565b6040519081526020015b60405180910390f35b34801561025d57600080fd5b5061027161026c366004612ac4565b6107ab565b6040519015158152602001610248565b34801561028d57600080fd5b506102a161029c366004612ae1565b6107fd565b6040516102489190612b47565b3480156102ba57600080fd5b506102ce6102c9366004612b5a565b61091b565b005b3480156102dc57600080fd5b506102ce6102eb366004612b90565b6109d1565b3480156102fc57600080fd5b506102ce61030b366004612d05565b610a9d565b6102ce61031e366004612dae565b610b34565b34801561032f57600080fd5b506102ce61033e366004612b5a565b610ddb565b34801561034f57600080fd5b506102ce61035e366004612e2c565b610e82565b34801561036f57600080fd5b506102ce610ece565b34801561038457600080fd5b506102ce610393366004612ebd565b610f10565b3480156103a457600080fd5b506102ce6103b3366004612ae1565b611198565b3480156103c457600080fd5b506103d86103d3366004612f44565b611265565b6040516102489190613049565b3480156103f157600080fd5b50610271610400366004612ae1565b600090815260036020526040902054151590565b34801561042057600080fd5b5061043461042f366004612ae1565b61138e565b604051610248949392919061305c565b34801561045057600080fd5b506102ce61145c565b34801561046557600080fd5b50600454600160a01b900460ff16610271565b34801561048457600080fd5b5061023e6114b8565b34801561049957600080fd5b5061023e6104a83660046130a3565b600560209081526000928352604080842090915290825290205481565b3480156104d157600080fd5b506102ce6104e03660046130c6565b6114ea565b3480156104f157600080fd5b506102ce61152d565b34801561050657600080fd5b506102ce610515366004612ae1565b611561565b34801561052657600080fd5b506102ce610535366004612ae1565b611603565b34801561054657600080fd5b506004546040516001600160a01b039091168152602001610248565b34801561056e57600080fd5b5061023e600a5481565b34801561058457600080fd5b506102ce610593366004613139565b611632565b3480156105a457600080fd5b5061023e6105b3366004612e2c565b611709565b3480156105c457600080fd5b5061023e6105d3366004612ae1565b60009081526003602052604090205490565b3480156105f157600080fd5b506102ce610600366004613175565b611748565b34801561061157600080fd5b506102ce6106203660046131c0565b61183e565b34801561063157600080fd5b5061023e60065481565b34801561064757600080fd5b5061027161065636600461323e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561069057600080fd5b506102ce61069f366004613268565b611ad2565b3480156106b057600080fd5b506102ce6106bf366004612e2c565b611b17565b3480156106d057600080fd5b506102716106df366004612ae1565b60086020526000908152604090205460ff1681565b34801561070057600080fd5b506102ce61070f3660046132cc565b611bb2565b60006001600160a01b0383166107855760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806107dc57506001600160e01b031982166303a24d0760e21b145b806107f757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000818152600760205260409020546060908290600160801b90046001600160601b031661083d5760405162461bcd60e51b815260040161077c906132ff565b6000838152600760205260408120600101805461085990613326565b90501115610902576000838152600760205260409020600101805461087d90613326565b80601f01602080910402602001604051908101604052809291908181526020018280546108a990613326565b80156108f65780601f106108cb576101008083540402835291602001916108f6565b820191906000526020600020905b8154815290600101906020018083116108d957829003601f168201915b50505050509150610915565b6040518060200160405280600081525091505b50919050565b6004546001600160a01b031633146109455760405162461bcd60e51b815260040161077c9061335b565b6000828152600760205260409020546001600160601b03600160801b909104168161097c8460009081526003602052604090205490565b61098691906133a6565b11156109c25760405162461bcd60e51b815260206004820152600b60248201526a4f76657220737570706c7960a81b604482015260640161077c565b6109cd338383611bf5565b5050565b6004546001600160a01b031633146109fb5760405162461bcd60e51b815260040161077c9061335b565b6000828152600760205260409020548290600160801b90046001600160601b0316610a385760405162461bcd60e51b815260040161077c906132ff565b600083815260086020526040902054839060ff1615610a695760405162461bcd60e51b815260040161077c906133be565b5050600091825260076020526040909120805463ffffffff909216600160e01b026001600160e01b03909216919091179055565b6001600160a01b038516331480610ab95750610ab98533610656565b610b205760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161077c565b610b2d8585858585611c6a565b5050505050565b600454600160a01b900460ff1615610b5e5760405162461bcd60e51b815260040161077c906133f5565b600a5415610bee57610bab610b7233611709565b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611e1492505050565b610bee5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161077c565b60008311610c335760405162461bcd60e51b81526020600482015260126024820152710416d6f756e74206d757374206265203e20360741b604482015260640161077c565b600654600090815260076020908152604080832080546003909352922054600160801b9091046001600160601b0316908590610c6f91906133a6565b1115610cab5760405162461bcd60e51b815260206004820152600b60248201526a4f76657220737570706c7960a81b604482015260640161077c565b8054600160e01b900463ffffffff1615610d3f5780546006546000908152600560209081526040808320338452909152902054600160e01b90910463ffffffff1690610cf89086906133a6565b1115610d3f5760405162461bcd60e51b815260206004820152601660248201527513dd995c881dd85b1b195d081b5a5b9d081b1a5b5a5d60521b604482015260640161077c565b8054610d54906001600160801b03168561341f565b3414610d955760405162461bcd60e51b815260206004820152601060248201526f15dc9bdb99c811551208185b5bdd5b9d60821b604482015260640161077c565b610da23360065486611bf5565b8054600654600090815260036020526040902054600160801b9091046001600160601b03161415610dd557610dd5611e2a565b50505050565b6004546001600160a01b03163314610e055760405162461bcd60e51b815260040161077c9061335b565b600454600160a01b900460ff16610e2e5760405162461bcd60e51b815260040161077c9061343e565b6000828152600760205260409020548290600160801b90046001600160601b0316610e6b5760405162461bcd60e51b815260040161077c906132ff565b6006839055600a829055610e7d611eac565b505050565b6004546001600160a01b03163314610eac5760405162461bcd60e51b815260040161077c9061335b565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b03163314610ef85760405162461bcd60e51b815260040161077c9061335b565b600954610f0e906001600160a01b031647611f09565b565b6004546001600160a01b03163314610f3a5760405162461bcd60e51b815260040161077c9061335b565b600087815260076020526040902054600160801b90046001600160601b031615610f9d5760405162461bcd60e51b8152602060048201526014602482015273546f6b656e20616c72656164792065786973747360601b604482015260640161077c565b6000856001600160601b031611610feb5760405162461bcd60e51b81526020600482015260126024820152710537570706c79206d757374206265203e20360741b604482015260640161077c565b80856001600160601b0316101561104f5760405162461bcd60e51b815260206004820152602260248201527f4d617820737570706c79206d757374206265203e3d207465616d207265736572604482015261766560f01b606482015260840161077c565b6040518060800160405280876001600160801b03168152602001866001600160601b031681526020018563ffffffff16815260200184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509390945250508981526007602090815260409182902084518154868401519487015163ffffffff16600160e01b026001600160e01b036001600160601b03909616600160801b026001600160e01b03199092166001600160801b0390931692909217179390931692909217825560608401518051929350611140926001850192919091019061295b565b50508115905061115557611155338883611bf5565b867f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b848460405161118792919061346c565b60405180910390a250505050505050565b6004546001600160a01b031633146111c25760405162461bcd60e51b815260040161077c9061335b565b6000818152600760205260409020548190600160801b90046001600160601b03166111ff5760405162461bcd60e51b815260040161077c906132ff565b6000828152600860209081526040808320805460ff19166001908117909155600790925291829020915184927fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207926112599291019061349b565b60405180910390a25050565b606081518351146112ca5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161077c565b600083516001600160401b038111156112e5576112e5612bbc565b60405190808252806020026020018201604052801561130e578160200160208202803683370190505b50905060005b84518110156113865761135985828151811061133257611332613543565b602002602001015185838151811061134c5761134c613543565b6020026020010151610714565b82828151811061136b5761136b613543565b602090810291909101015261137f81613559565b9050611314565b509392505050565b600760205260009081526040902080546001820180546001600160801b03831693600160801b84046001600160601b031693600160e01b900463ffffffff169290916113d990613326565b80601f016020809104026020016040519081016040528092919081815260200182805461140590613326565b80156114525780601f1061142757610100808354040283529160200191611452565b820191906000526020600020905b81548152906001019060200180831161143557829003601f168201915b5050505050905084565b6004546001600160a01b031633146114865760405162461bcd60e51b815260040161077c9061335b565b600454600160a01b900460ff16156114b05760405162461bcd60e51b815260040161077c906133f5565b610f0e611e2a565b600454600090600160a01b900460ff16156114d35750600090565b600a54156114e15750600190565b50600290565b90565b6001600160a01b03831633148061150657506115068333610656565b6115225760405162461bcd60e51b815260040161077c90613574565b610e7d838383612022565b6004546001600160a01b031633146115575760405162461bcd60e51b815260040161077c9061335b565b610f0e60006121b0565b6004546001600160a01b0316331461158b5760405162461bcd60e51b815260040161077c9061335b565b600454600160a01b900460ff166115b45760405162461bcd60e51b815260040161077c9061343e565b6000818152600760205260409020548190600160801b90046001600160601b03166115f15760405162461bcd60e51b815260040161077c906132ff565b60068290556000600a556109cd611eac565b6004546001600160a01b0316331461162d5760405162461bcd60e51b815260040161077c9061335b565b600a55565b336001600160a01b038316141561169d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161077c565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b6004546001600160a01b031633146117725760405162461bcd60e51b815260040161077c9061335b565b6000838152600760205260409020548390600160801b90046001600160601b03166117af5760405162461bcd60e51b815260040161077c906132ff565b600084815260086020526040902054849060ff16156117e05760405162461bcd60e51b815260040161077c906133be565b60008581526007602052604090206117fc9060010185856129df565b50847f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b858560405161182f92919061346c565b60405180910390a25050505050565b6004546001600160a01b031633146118685760405162461bcd60e51b815260040161077c9061335b565b6000868152600760205260409020548690600160801b90046001600160601b03166118a55760405162461bcd60e51b815260040161077c906132ff565b600087815260086020526040902054879060ff16156118d65760405162461bcd60e51b815260040161077c906133be565b6000866001600160601b0316116119245760405162461bcd60e51b81526020600482015260126024820152710537570706c79206d757374206265203e20360741b604482015260640161077c565b600088815260036020526040902054866001600160601b031610156119995760405162461bcd60e51b815260206004820152602560248201527f4d617820737570706c79206d757374206265203e3d206578697374696e6720736044820152647570706c7960d81b606482015260840161077c565b6040518060800160405280886001600160801b03168152602001876001600160601b031681526020018663ffffffff16815260200185858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509390945250508a81526007602090815260409182902084518154868401519487015163ffffffff16600160e01b026001600160e01b036001600160601b03909616600160801b026001600160e01b03199092166001600160801b0390931692909217179390931692909217825560608401518051929350611a8a926001850192919091019061295b565b50905050877f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8585604051611ac092919061346c565b60405180910390a25050505050505050565b6001600160a01b038516331480611aee5750611aee8533610656565b611b0a5760405162461bcd60e51b815260040161077c90613574565b610b2d8585858585612202565b6004546001600160a01b03163314611b415760405162461bcd60e51b815260040161077c9061335b565b6001600160a01b038116611ba65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077c565b611baf816121b0565b50565b6001600160a01b038316331480611bce5750611bce8333610656565b611bea5760405162461bcd60e51b815260040161077c90613574565b610e7d83838361232e565b611c108383836040518060200160405280600081525061242f565b60008281526005602090815260408083206001600160a01b0387168452909152902054611c3e9082906133a6565b60009283526005602090815260408085206001600160a01b039096168552949052929091209190915550565b8151835114611c8b5760405162461bcd60e51b815260040161077c906135bd565b6001600160a01b038416611cb15760405162461bcd60e51b815260040161077c90613605565b33611cc0818787878787612530565b60005b8451811015611da6576000858281518110611ce057611ce0613543565b602002602001015190506000858381518110611cfe57611cfe613543565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611d4e5760405162461bcd60e51b815260040161077c9061364a565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611d8b9084906133a6565b9250508190555050505080611d9f90613559565b9050611cc3565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611df6929190613694565b60405180910390a4611e0c81878787878761253e565b505050505050565b6000611e2382600a548561269a565b9392505050565b600454600160a01b900460ff1615611e545760405162461bcd60e51b815260040161077c906133f5565b6004805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e8f3390565b6040516001600160a01b03909116815260200160405180910390a1565b600454600160a01b900460ff16611ed55760405162461bcd60e51b815260040161077c9061343e565b6004805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611e8f565b80471015611f595760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161077c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611fa6576040519150601f19603f3d011682016040523d82523d6000602084013e611fab565b606091505b5050905080610e7d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161077c565b6001600160a01b0383166120485760405162461bcd60e51b815260040161077c906136c2565b80518251146120695760405162461bcd60e51b815260040161077c906135bd565b600033905061208c81856000868660405180602001604052806000815250612530565b60005b83518110156121515760008482815181106120ac576120ac613543565b6020026020010151905060008483815181106120ca576120ca613543565b602090810291909101810151600084815280835260408082206001600160a01b038c16835290935291909120549091508181101561211a5760405162461bcd60e51b815260040161077c90613705565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061214981613559565b91505061208f565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516121a2929190613694565b60405180910390a450505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166122285760405162461bcd60e51b815260040161077c90613605565b3361224781878761223888612749565b61224188612749565b87612530565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156122885760405162461bcd60e51b815260040161077c9061364a565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906122c59084906133a6565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612325828888888888612794565b50505050505050565b6001600160a01b0383166123545760405162461bcd60e51b815260040161077c906136c2565b336123838185600061236587612749565b61236e87612749565b60405180602001604052806000815250612530565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156123c45760405162461bcd60e51b815260040161077c90613705565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b03841661248f5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161077c565b336124a08160008761223888612749565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906124d09084906133a6565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610b2d81600087878787612794565b611e0c86868686868661284f565b6001600160a01b0384163b15611e0c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906125829089908990889088908890600401613749565b6020604051808303816000875af19250505080156125bd575060408051601f3d908101601f191682019092526125ba918101906137a7565b60015b61266a576125c96137c4565b806308c379a0141561260357506125de6137df565b806125e95750612605565b8060405162461bcd60e51b815260040161077c9190612b47565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161077c565b6001600160e01b0319811663bc197c8160e01b146123255760405162461bcd60e51b815260040161077c90613868565b600081815b855181101561273e5760008682815181106126bc576126bc613543565b602002602001015190508083116126fe57604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061272b565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061273681613559565b91505061269f565b509092149392505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061278357612783613543565b602090810291909101015292915050565b6001600160a01b0384163b15611e0c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906127d890899089908890889088906004016138b0565b6020604051808303816000875af1925050508015612813575060408051601f3d908101601f19168201909252612810918101906137a7565b60015b61281f576125c96137c4565b6001600160e01b0319811663f23a6e6160e01b146123255760405162461bcd60e51b815260040161077c90613868565b6001600160a01b0385166128d65760005b83518110156128d45782818151811061287b5761287b613543565b60200260200101516003600086848151811061289957612899613543565b6020026020010151815260200190815260200160002060008282546128be91906133a6565b909155506128cd905081613559565b9050612860565b505b6001600160a01b038416611e0c5760005b83518110156123255782818151811061290257612902613543565b60200260200101516003600086848151811061292057612920613543565b60200260200101518152602001908152602001600020600082825461294591906138f5565b90915550612954905081613559565b90506128e7565b82805461296790613326565b90600052602060002090601f01602090048101928261298957600085556129cf565b82601f106129a257805160ff19168380011785556129cf565b828001600101855582156129cf579182015b828111156129cf5782518255916020019190600101906129b4565b506129db929150612a53565b5090565b8280546129eb90613326565b90600052602060002090601f016020900481019282612a0d57600085556129cf565b82601f10612a265782800160ff198235161785556129cf565b828001600101855582156129cf579182015b828111156129cf578235825591602001919060010190612a38565b5b808211156129db5760008155600101612a54565b80356001600160a01b0381168114612a7f57600080fd5b919050565b60008060408385031215612a9757600080fd5b612aa083612a68565b946020939093013593505050565b6001600160e01b031981168114611baf57600080fd5b600060208284031215612ad657600080fd5b8135611e2381612aae565b600060208284031215612af357600080fd5b5035919050565b6000815180845260005b81811015612b2057602081850181015186830182015201612b04565b81811115612b32576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611e236020830184612afa565b60008060408385031215612b6d57600080fd5b50508035926020909101359150565b803563ffffffff81168114612a7f57600080fd5b60008060408385031215612ba357600080fd5b82359150612bb360208401612b7c565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612bf757612bf7612bbc565b6040525050565b60006001600160401b03821115612c1757612c17612bbc565b5060051b60200190565b600082601f830112612c3257600080fd5b81356020612c3f82612bfe565b604051612c4c8282612bd2565b83815260059390931b8501820192828101915086841115612c6c57600080fd5b8286015b84811015612c875780358352918301918301612c70565b509695505050505050565b600082601f830112612ca357600080fd5b81356001600160401b03811115612cbc57612cbc612bbc565b604051612cd3601f8301601f191660200182612bd2565b818152846020838601011115612ce857600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215612d1d57600080fd5b612d2686612a68565b9450612d3460208701612a68565b935060408601356001600160401b0380821115612d5057600080fd5b612d5c89838a01612c21565b94506060880135915080821115612d7257600080fd5b612d7e89838a01612c21565b93506080880135915080821115612d9457600080fd5b50612da188828901612c92565b9150509295509295909350565b600080600060408486031215612dc357600080fd5b8335925060208401356001600160401b0380821115612de157600080fd5b818601915086601f830112612df557600080fd5b813581811115612e0457600080fd5b8760208260051b8501011115612e1957600080fd5b6020830194508093505050509250925092565b600060208284031215612e3e57600080fd5b611e2382612a68565b80356001600160801b0381168114612a7f57600080fd5b80356001600160601b0381168114612a7f57600080fd5b60008083601f840112612e8757600080fd5b5081356001600160401b03811115612e9e57600080fd5b602083019150836020828501011115612eb657600080fd5b9250929050565b600080600080600080600060c0888a031215612ed857600080fd5b87359650612ee860208901612e47565b9550612ef660408901612e5e565b9450612f0460608901612b7c565b935060808801356001600160401b03811115612f1f57600080fd5b612f2b8a828b01612e75565b989b979a5095989497959660a090950135949350505050565b60008060408385031215612f5757600080fd5b82356001600160401b0380821115612f6e57600080fd5b818501915085601f830112612f8257600080fd5b81356020612f8f82612bfe565b604051612f9c8282612bd2565b83815260059390931b8501820192828101915089841115612fbc57600080fd5b948201945b83861015612fe157612fd286612a68565b82529482019490820190612fc1565b96505086013592505080821115612ff757600080fd5b5061300485828601612c21565b9150509250929050565b600081518084526020808501945080840160005b8381101561303e57815187529582019590820190600101613022565b509495945050505050565b602081526000611e23602083018461300e565b6001600160801b03851681526001600160601b038416602082015263ffffffff831660408201526080606082015260006130996080830184612afa565b9695505050505050565b600080604083850312156130b657600080fd5b82359150612bb360208401612a68565b6000806000606084860312156130db57600080fd5b6130e484612a68565b925060208401356001600160401b038082111561310057600080fd5b61310c87838801612c21565b9350604086013591508082111561312257600080fd5b5061312f86828701612c21565b9150509250925092565b6000806040838503121561314c57600080fd5b61315583612a68565b91506020830135801515811461316a57600080fd5b809150509250929050565b60008060006040848603121561318a57600080fd5b8335925060208401356001600160401b038111156131a757600080fd5b6131b386828701612e75565b9497909650939450505050565b60008060008060008060a087890312156131d957600080fd5b863595506131e960208801612e47565b94506131f760408801612e5e565b935061320560608801612b7c565b925060808701356001600160401b0381111561322057600080fd5b61322c89828a01612e75565b979a9699509497509295939492505050565b6000806040838503121561325157600080fd5b61325a83612a68565b9150612bb360208401612a68565b600080600080600060a0868803121561328057600080fd5b61328986612a68565b945061329760208701612a68565b9350604086013592506060860135915060808601356001600160401b038111156132c057600080fd5b612da188828901612c92565b6000806000606084860312156132e157600080fd5b6132ea84612a68565b95602085013595506040909401359392505050565b6020808252600d908201526c24b73b30b634b2103a37b5b2b760991b604082015260600190565b600181811c9082168061333a57607f821691505b6020821081141561091557634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156133b9576133b9613390565b500190565b60208082526017908201527f436f6e66696775726174696f6e2069732066726f7a656e000000000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b600081600019048311821515161561343957613439613390565b500290565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b600060208083526000845481600182811c9150808316806134bd57607f831692505b8583108114156134db57634e487b7160e01b85526022600452602485fd5b8786018381526020018180156134f8576001811461350957613534565b60ff19861682528782019650613534565b60008b81526020902060005b8681101561352e57815484820152908501908901613515565b83019750505b50949998505050505050505050565b634e487b7160e01b600052603260045260246000fd5b600060001982141561356d5761356d613390565b5060010190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006136a7604083018561300e565b82810360208401526136b9818561300e565b95945050505050565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906137759083018661300e565b8281036060840152613787818661300e565b9050828103608084015261379b8185612afa565b98975050505050505050565b6000602082840312156137b957600080fd5b8151611e2381612aae565b600060033d11156114e75760046000803e5060005160e01c90565b600060443d10156137ed5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561381c57505050505090565b82850191508151818111156138345750505050505090565b843d870101602082850101111561384e5750505050505090565b61385d60208286010187612bd2565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906138ea90830184612afa565b979650505050505050565b60008282101561390757613907613390565b50039056fea26469706673582212200d5308d0941b7b4b1d5a36351c139e7513d7bffe3b890c07bdcd806489c64e4264736f6c634300080a0033000000000000000000000000ddc1f070fa729c8e0033198cfa0524107404e628
Deployed Bytecode
0x6080604052600436106102125760003560e01c80636887a0e511610118578063bd85b039116100a0578063e985e9c51161006f578063e985e9c51461063b578063f242432a14610684578063f2fde38b146106a4578063f401f8a0146106c4578063f5298aca146106f457600080fd5b8063bd85b039146105b8578063cd27c563146105e5578063de0a3e0a14610605578063e0f17e321461062557600080fd5b80637cb64759116100e75780637cb647591461051a5780638da5cb5b1461053a5780639ea9719014610562578063a22cb46514610578578063b6f11a421461059857600080fd5b80636887a0e51461048d5780636b20c454146104c5578063715018a6146104e557806374817d9b146104fa57600080fd5b80633ccfd60b1161019b5780634f558e791161016a5780634f558e79146103e55780634f64b2be1461041457806355367ba9146104445780635c975abb14610459578063603f4d521461047857600080fd5b80633ccfd60b1461036357806345c2b166146103785780634dcf6ad6146103985780634e1273f4146103b857600080fd5b80632a47cc57116101e25780632a47cc57146102d05780632eb2c2d6146102f05780632f8af9df14610310578063338eac011461032357806333ea51a81461034357600080fd5b8062fdd58e1461021e57806301ffc9a7146102515780630e89341c146102815780631482df26146102ae57600080fd5b3661021957005b600080fd5b34801561022a57600080fd5b5061023e610239366004612a84565b610714565b6040519081526020015b60405180910390f35b34801561025d57600080fd5b5061027161026c366004612ac4565b6107ab565b6040519015158152602001610248565b34801561028d57600080fd5b506102a161029c366004612ae1565b6107fd565b6040516102489190612b47565b3480156102ba57600080fd5b506102ce6102c9366004612b5a565b61091b565b005b3480156102dc57600080fd5b506102ce6102eb366004612b90565b6109d1565b3480156102fc57600080fd5b506102ce61030b366004612d05565b610a9d565b6102ce61031e366004612dae565b610b34565b34801561032f57600080fd5b506102ce61033e366004612b5a565b610ddb565b34801561034f57600080fd5b506102ce61035e366004612e2c565b610e82565b34801561036f57600080fd5b506102ce610ece565b34801561038457600080fd5b506102ce610393366004612ebd565b610f10565b3480156103a457600080fd5b506102ce6103b3366004612ae1565b611198565b3480156103c457600080fd5b506103d86103d3366004612f44565b611265565b6040516102489190613049565b3480156103f157600080fd5b50610271610400366004612ae1565b600090815260036020526040902054151590565b34801561042057600080fd5b5061043461042f366004612ae1565b61138e565b604051610248949392919061305c565b34801561045057600080fd5b506102ce61145c565b34801561046557600080fd5b50600454600160a01b900460ff16610271565b34801561048457600080fd5b5061023e6114b8565b34801561049957600080fd5b5061023e6104a83660046130a3565b600560209081526000928352604080842090915290825290205481565b3480156104d157600080fd5b506102ce6104e03660046130c6565b6114ea565b3480156104f157600080fd5b506102ce61152d565b34801561050657600080fd5b506102ce610515366004612ae1565b611561565b34801561052657600080fd5b506102ce610535366004612ae1565b611603565b34801561054657600080fd5b506004546040516001600160a01b039091168152602001610248565b34801561056e57600080fd5b5061023e600a5481565b34801561058457600080fd5b506102ce610593366004613139565b611632565b3480156105a457600080fd5b5061023e6105b3366004612e2c565b611709565b3480156105c457600080fd5b5061023e6105d3366004612ae1565b60009081526003602052604090205490565b3480156105f157600080fd5b506102ce610600366004613175565b611748565b34801561061157600080fd5b506102ce6106203660046131c0565b61183e565b34801561063157600080fd5b5061023e60065481565b34801561064757600080fd5b5061027161065636600461323e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561069057600080fd5b506102ce61069f366004613268565b611ad2565b3480156106b057600080fd5b506102ce6106bf366004612e2c565b611b17565b3480156106d057600080fd5b506102716106df366004612ae1565b60086020526000908152604090205460ff1681565b34801561070057600080fd5b506102ce61070f3660046132cc565b611bb2565b60006001600160a01b0383166107855760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806107dc57506001600160e01b031982166303a24d0760e21b145b806107f757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000818152600760205260409020546060908290600160801b90046001600160601b031661083d5760405162461bcd60e51b815260040161077c906132ff565b6000838152600760205260408120600101805461085990613326565b90501115610902576000838152600760205260409020600101805461087d90613326565b80601f01602080910402602001604051908101604052809291908181526020018280546108a990613326565b80156108f65780601f106108cb576101008083540402835291602001916108f6565b820191906000526020600020905b8154815290600101906020018083116108d957829003601f168201915b50505050509150610915565b6040518060200160405280600081525091505b50919050565b6004546001600160a01b031633146109455760405162461bcd60e51b815260040161077c9061335b565b6000828152600760205260409020546001600160601b03600160801b909104168161097c8460009081526003602052604090205490565b61098691906133a6565b11156109c25760405162461bcd60e51b815260206004820152600b60248201526a4f76657220737570706c7960a81b604482015260640161077c565b6109cd338383611bf5565b5050565b6004546001600160a01b031633146109fb5760405162461bcd60e51b815260040161077c9061335b565b6000828152600760205260409020548290600160801b90046001600160601b0316610a385760405162461bcd60e51b815260040161077c906132ff565b600083815260086020526040902054839060ff1615610a695760405162461bcd60e51b815260040161077c906133be565b5050600091825260076020526040909120805463ffffffff909216600160e01b026001600160e01b03909216919091179055565b6001600160a01b038516331480610ab95750610ab98533610656565b610b205760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161077c565b610b2d8585858585611c6a565b5050505050565b600454600160a01b900460ff1615610b5e5760405162461bcd60e51b815260040161077c906133f5565b600a5415610bee57610bab610b7233611709565b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611e1492505050565b610bee5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161077c565b60008311610c335760405162461bcd60e51b81526020600482015260126024820152710416d6f756e74206d757374206265203e20360741b604482015260640161077c565b600654600090815260076020908152604080832080546003909352922054600160801b9091046001600160601b0316908590610c6f91906133a6565b1115610cab5760405162461bcd60e51b815260206004820152600b60248201526a4f76657220737570706c7960a81b604482015260640161077c565b8054600160e01b900463ffffffff1615610d3f5780546006546000908152600560209081526040808320338452909152902054600160e01b90910463ffffffff1690610cf89086906133a6565b1115610d3f5760405162461bcd60e51b815260206004820152601660248201527513dd995c881dd85b1b195d081b5a5b9d081b1a5b5a5d60521b604482015260640161077c565b8054610d54906001600160801b03168561341f565b3414610d955760405162461bcd60e51b815260206004820152601060248201526f15dc9bdb99c811551208185b5bdd5b9d60821b604482015260640161077c565b610da23360065486611bf5565b8054600654600090815260036020526040902054600160801b9091046001600160601b03161415610dd557610dd5611e2a565b50505050565b6004546001600160a01b03163314610e055760405162461bcd60e51b815260040161077c9061335b565b600454600160a01b900460ff16610e2e5760405162461bcd60e51b815260040161077c9061343e565b6000828152600760205260409020548290600160801b90046001600160601b0316610e6b5760405162461bcd60e51b815260040161077c906132ff565b6006839055600a829055610e7d611eac565b505050565b6004546001600160a01b03163314610eac5760405162461bcd60e51b815260040161077c9061335b565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b03163314610ef85760405162461bcd60e51b815260040161077c9061335b565b600954610f0e906001600160a01b031647611f09565b565b6004546001600160a01b03163314610f3a5760405162461bcd60e51b815260040161077c9061335b565b600087815260076020526040902054600160801b90046001600160601b031615610f9d5760405162461bcd60e51b8152602060048201526014602482015273546f6b656e20616c72656164792065786973747360601b604482015260640161077c565b6000856001600160601b031611610feb5760405162461bcd60e51b81526020600482015260126024820152710537570706c79206d757374206265203e20360741b604482015260640161077c565b80856001600160601b0316101561104f5760405162461bcd60e51b815260206004820152602260248201527f4d617820737570706c79206d757374206265203e3d207465616d207265736572604482015261766560f01b606482015260840161077c565b6040518060800160405280876001600160801b03168152602001866001600160601b031681526020018563ffffffff16815260200184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509390945250508981526007602090815260409182902084518154868401519487015163ffffffff16600160e01b026001600160e01b036001600160601b03909616600160801b026001600160e01b03199092166001600160801b0390931692909217179390931692909217825560608401518051929350611140926001850192919091019061295b565b50508115905061115557611155338883611bf5565b867f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b848460405161118792919061346c565b60405180910390a250505050505050565b6004546001600160a01b031633146111c25760405162461bcd60e51b815260040161077c9061335b565b6000818152600760205260409020548190600160801b90046001600160601b03166111ff5760405162461bcd60e51b815260040161077c906132ff565b6000828152600860209081526040808320805460ff19166001908117909155600790925291829020915184927fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207926112599291019061349b565b60405180910390a25050565b606081518351146112ca5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161077c565b600083516001600160401b038111156112e5576112e5612bbc565b60405190808252806020026020018201604052801561130e578160200160208202803683370190505b50905060005b84518110156113865761135985828151811061133257611332613543565b602002602001015185838151811061134c5761134c613543565b6020026020010151610714565b82828151811061136b5761136b613543565b602090810291909101015261137f81613559565b9050611314565b509392505050565b600760205260009081526040902080546001820180546001600160801b03831693600160801b84046001600160601b031693600160e01b900463ffffffff169290916113d990613326565b80601f016020809104026020016040519081016040528092919081815260200182805461140590613326565b80156114525780601f1061142757610100808354040283529160200191611452565b820191906000526020600020905b81548152906001019060200180831161143557829003601f168201915b5050505050905084565b6004546001600160a01b031633146114865760405162461bcd60e51b815260040161077c9061335b565b600454600160a01b900460ff16156114b05760405162461bcd60e51b815260040161077c906133f5565b610f0e611e2a565b600454600090600160a01b900460ff16156114d35750600090565b600a54156114e15750600190565b50600290565b90565b6001600160a01b03831633148061150657506115068333610656565b6115225760405162461bcd60e51b815260040161077c90613574565b610e7d838383612022565b6004546001600160a01b031633146115575760405162461bcd60e51b815260040161077c9061335b565b610f0e60006121b0565b6004546001600160a01b0316331461158b5760405162461bcd60e51b815260040161077c9061335b565b600454600160a01b900460ff166115b45760405162461bcd60e51b815260040161077c9061343e565b6000818152600760205260409020548190600160801b90046001600160601b03166115f15760405162461bcd60e51b815260040161077c906132ff565b60068290556000600a556109cd611eac565b6004546001600160a01b0316331461162d5760405162461bcd60e51b815260040161077c9061335b565b600a55565b336001600160a01b038316141561169d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161077c565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b6004546001600160a01b031633146117725760405162461bcd60e51b815260040161077c9061335b565b6000838152600760205260409020548390600160801b90046001600160601b03166117af5760405162461bcd60e51b815260040161077c906132ff565b600084815260086020526040902054849060ff16156117e05760405162461bcd60e51b815260040161077c906133be565b60008581526007602052604090206117fc9060010185856129df565b50847f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b858560405161182f92919061346c565b60405180910390a25050505050565b6004546001600160a01b031633146118685760405162461bcd60e51b815260040161077c9061335b565b6000868152600760205260409020548690600160801b90046001600160601b03166118a55760405162461bcd60e51b815260040161077c906132ff565b600087815260086020526040902054879060ff16156118d65760405162461bcd60e51b815260040161077c906133be565b6000866001600160601b0316116119245760405162461bcd60e51b81526020600482015260126024820152710537570706c79206d757374206265203e20360741b604482015260640161077c565b600088815260036020526040902054866001600160601b031610156119995760405162461bcd60e51b815260206004820152602560248201527f4d617820737570706c79206d757374206265203e3d206578697374696e6720736044820152647570706c7960d81b606482015260840161077c565b6040518060800160405280886001600160801b03168152602001876001600160601b031681526020018663ffffffff16815260200185858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509390945250508a81526007602090815260409182902084518154868401519487015163ffffffff16600160e01b026001600160e01b036001600160601b03909616600160801b026001600160e01b03199092166001600160801b0390931692909217179390931692909217825560608401518051929350611a8a926001850192919091019061295b565b50905050877f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8585604051611ac092919061346c565b60405180910390a25050505050505050565b6001600160a01b038516331480611aee5750611aee8533610656565b611b0a5760405162461bcd60e51b815260040161077c90613574565b610b2d8585858585612202565b6004546001600160a01b03163314611b415760405162461bcd60e51b815260040161077c9061335b565b6001600160a01b038116611ba65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077c565b611baf816121b0565b50565b6001600160a01b038316331480611bce5750611bce8333610656565b611bea5760405162461bcd60e51b815260040161077c90613574565b610e7d83838361232e565b611c108383836040518060200160405280600081525061242f565b60008281526005602090815260408083206001600160a01b0387168452909152902054611c3e9082906133a6565b60009283526005602090815260408085206001600160a01b039096168552949052929091209190915550565b8151835114611c8b5760405162461bcd60e51b815260040161077c906135bd565b6001600160a01b038416611cb15760405162461bcd60e51b815260040161077c90613605565b33611cc0818787878787612530565b60005b8451811015611da6576000858281518110611ce057611ce0613543565b602002602001015190506000858381518110611cfe57611cfe613543565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611d4e5760405162461bcd60e51b815260040161077c9061364a565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611d8b9084906133a6565b9250508190555050505080611d9f90613559565b9050611cc3565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611df6929190613694565b60405180910390a4611e0c81878787878761253e565b505050505050565b6000611e2382600a548561269a565b9392505050565b600454600160a01b900460ff1615611e545760405162461bcd60e51b815260040161077c906133f5565b6004805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e8f3390565b6040516001600160a01b03909116815260200160405180910390a1565b600454600160a01b900460ff16611ed55760405162461bcd60e51b815260040161077c9061343e565b6004805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611e8f565b80471015611f595760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161077c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611fa6576040519150601f19603f3d011682016040523d82523d6000602084013e611fab565b606091505b5050905080610e7d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161077c565b6001600160a01b0383166120485760405162461bcd60e51b815260040161077c906136c2565b80518251146120695760405162461bcd60e51b815260040161077c906135bd565b600033905061208c81856000868660405180602001604052806000815250612530565b60005b83518110156121515760008482815181106120ac576120ac613543565b6020026020010151905060008483815181106120ca576120ca613543565b602090810291909101810151600084815280835260408082206001600160a01b038c16835290935291909120549091508181101561211a5760405162461bcd60e51b815260040161077c90613705565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061214981613559565b91505061208f565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516121a2929190613694565b60405180910390a450505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166122285760405162461bcd60e51b815260040161077c90613605565b3361224781878761223888612749565b61224188612749565b87612530565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156122885760405162461bcd60e51b815260040161077c9061364a565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906122c59084906133a6565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612325828888888888612794565b50505050505050565b6001600160a01b0383166123545760405162461bcd60e51b815260040161077c906136c2565b336123838185600061236587612749565b61236e87612749565b60405180602001604052806000815250612530565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156123c45760405162461bcd60e51b815260040161077c90613705565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b03841661248f5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161077c565b336124a08160008761223888612749565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906124d09084906133a6565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610b2d81600087878787612794565b611e0c86868686868661284f565b6001600160a01b0384163b15611e0c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906125829089908990889088908890600401613749565b6020604051808303816000875af19250505080156125bd575060408051601f3d908101601f191682019092526125ba918101906137a7565b60015b61266a576125c96137c4565b806308c379a0141561260357506125de6137df565b806125e95750612605565b8060405162461bcd60e51b815260040161077c9190612b47565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161077c565b6001600160e01b0319811663bc197c8160e01b146123255760405162461bcd60e51b815260040161077c90613868565b600081815b855181101561273e5760008682815181106126bc576126bc613543565b602002602001015190508083116126fe57604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061272b565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061273681613559565b91505061269f565b509092149392505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061278357612783613543565b602090810291909101015292915050565b6001600160a01b0384163b15611e0c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906127d890899089908890889088906004016138b0565b6020604051808303816000875af1925050508015612813575060408051601f3d908101601f19168201909252612810918101906137a7565b60015b61281f576125c96137c4565b6001600160e01b0319811663f23a6e6160e01b146123255760405162461bcd60e51b815260040161077c90613868565b6001600160a01b0385166128d65760005b83518110156128d45782818151811061287b5761287b613543565b60200260200101516003600086848151811061289957612899613543565b6020026020010151815260200190815260200160002060008282546128be91906133a6565b909155506128cd905081613559565b9050612860565b505b6001600160a01b038416611e0c5760005b83518110156123255782818151811061290257612902613543565b60200260200101516003600086848151811061292057612920613543565b60200260200101518152602001908152602001600020600082825461294591906138f5565b90915550612954905081613559565b90506128e7565b82805461296790613326565b90600052602060002090601f01602090048101928261298957600085556129cf565b82601f106129a257805160ff19168380011785556129cf565b828001600101855582156129cf579182015b828111156129cf5782518255916020019190600101906129b4565b506129db929150612a53565b5090565b8280546129eb90613326565b90600052602060002090601f016020900481019282612a0d57600085556129cf565b82601f10612a265782800160ff198235161785556129cf565b828001600101855582156129cf579182015b828111156129cf578235825591602001919060010190612a38565b5b808211156129db5760008155600101612a54565b80356001600160a01b0381168114612a7f57600080fd5b919050565b60008060408385031215612a9757600080fd5b612aa083612a68565b946020939093013593505050565b6001600160e01b031981168114611baf57600080fd5b600060208284031215612ad657600080fd5b8135611e2381612aae565b600060208284031215612af357600080fd5b5035919050565b6000815180845260005b81811015612b2057602081850181015186830182015201612b04565b81811115612b32576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611e236020830184612afa565b60008060408385031215612b6d57600080fd5b50508035926020909101359150565b803563ffffffff81168114612a7f57600080fd5b60008060408385031215612ba357600080fd5b82359150612bb360208401612b7c565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612bf757612bf7612bbc565b6040525050565b60006001600160401b03821115612c1757612c17612bbc565b5060051b60200190565b600082601f830112612c3257600080fd5b81356020612c3f82612bfe565b604051612c4c8282612bd2565b83815260059390931b8501820192828101915086841115612c6c57600080fd5b8286015b84811015612c875780358352918301918301612c70565b509695505050505050565b600082601f830112612ca357600080fd5b81356001600160401b03811115612cbc57612cbc612bbc565b604051612cd3601f8301601f191660200182612bd2565b818152846020838601011115612ce857600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215612d1d57600080fd5b612d2686612a68565b9450612d3460208701612a68565b935060408601356001600160401b0380821115612d5057600080fd5b612d5c89838a01612c21565b94506060880135915080821115612d7257600080fd5b612d7e89838a01612c21565b93506080880135915080821115612d9457600080fd5b50612da188828901612c92565b9150509295509295909350565b600080600060408486031215612dc357600080fd5b8335925060208401356001600160401b0380821115612de157600080fd5b818601915086601f830112612df557600080fd5b813581811115612e0457600080fd5b8760208260051b8501011115612e1957600080fd5b6020830194508093505050509250925092565b600060208284031215612e3e57600080fd5b611e2382612a68565b80356001600160801b0381168114612a7f57600080fd5b80356001600160601b0381168114612a7f57600080fd5b60008083601f840112612e8757600080fd5b5081356001600160401b03811115612e9e57600080fd5b602083019150836020828501011115612eb657600080fd5b9250929050565b600080600080600080600060c0888a031215612ed857600080fd5b87359650612ee860208901612e47565b9550612ef660408901612e5e565b9450612f0460608901612b7c565b935060808801356001600160401b03811115612f1f57600080fd5b612f2b8a828b01612e75565b989b979a5095989497959660a090950135949350505050565b60008060408385031215612f5757600080fd5b82356001600160401b0380821115612f6e57600080fd5b818501915085601f830112612f8257600080fd5b81356020612f8f82612bfe565b604051612f9c8282612bd2565b83815260059390931b8501820192828101915089841115612fbc57600080fd5b948201945b83861015612fe157612fd286612a68565b82529482019490820190612fc1565b96505086013592505080821115612ff757600080fd5b5061300485828601612c21565b9150509250929050565b600081518084526020808501945080840160005b8381101561303e57815187529582019590820190600101613022565b509495945050505050565b602081526000611e23602083018461300e565b6001600160801b03851681526001600160601b038416602082015263ffffffff831660408201526080606082015260006130996080830184612afa565b9695505050505050565b600080604083850312156130b657600080fd5b82359150612bb360208401612a68565b6000806000606084860312156130db57600080fd5b6130e484612a68565b925060208401356001600160401b038082111561310057600080fd5b61310c87838801612c21565b9350604086013591508082111561312257600080fd5b5061312f86828701612c21565b9150509250925092565b6000806040838503121561314c57600080fd5b61315583612a68565b91506020830135801515811461316a57600080fd5b809150509250929050565b60008060006040848603121561318a57600080fd5b8335925060208401356001600160401b038111156131a757600080fd5b6131b386828701612e75565b9497909650939450505050565b60008060008060008060a087890312156131d957600080fd5b863595506131e960208801612e47565b94506131f760408801612e5e565b935061320560608801612b7c565b925060808701356001600160401b0381111561322057600080fd5b61322c89828a01612e75565b979a9699509497509295939492505050565b6000806040838503121561325157600080fd5b61325a83612a68565b9150612bb360208401612a68565b600080600080600060a0868803121561328057600080fd5b61328986612a68565b945061329760208701612a68565b9350604086013592506060860135915060808601356001600160401b038111156132c057600080fd5b612da188828901612c92565b6000806000606084860312156132e157600080fd5b6132ea84612a68565b95602085013595506040909401359392505050565b6020808252600d908201526c24b73b30b634b2103a37b5b2b760991b604082015260600190565b600181811c9082168061333a57607f821691505b6020821081141561091557634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156133b9576133b9613390565b500190565b60208082526017908201527f436f6e66696775726174696f6e2069732066726f7a656e000000000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b600081600019048311821515161561343957613439613390565b500290565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b600060208083526000845481600182811c9150808316806134bd57607f831692505b8583108114156134db57634e487b7160e01b85526022600452602485fd5b8786018381526020018180156134f8576001811461350957613534565b60ff19861682528782019650613534565b60008b81526020902060005b8681101561352e57815484820152908501908901613515565b83019750505b50949998505050505050505050565b634e487b7160e01b600052603260045260246000fd5b600060001982141561356d5761356d613390565b5060010190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006136a7604083018561300e565b82810360208401526136b9818561300e565b95945050505050565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906137759083018661300e565b8281036060840152613787818661300e565b9050828103608084015261379b8185612afa565b98975050505050505050565b6000602082840312156137b957600080fd5b8151611e2381612aae565b600060033d11156114e75760046000803e5060005160e01c90565b600060443d10156137ed5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561381c57505050505090565b82850191508151818111156138345750505050505090565b843d870101602082850101111561384e5750505050505090565b61385d60208286010187612bd2565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906138ea90830184612afa565b979650505050505050565b60008282101561390757613907613390565b50039056fea26469706673582212200d5308d0941b7b4b1d5a36351c139e7513d7bffe3b890c07bdcd806489c64e4264736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ddc1f070fa729c8e0033198cfa0524107404e628
-----Decoded View---------------
Arg [0] : payoutAddress (address): 0xdDC1F070fa729C8E0033198cfA0524107404E628
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ddc1f070fa729c8e0033198cfa0524107404e628
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.