Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
170
Holders
98
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
UnwindBalls
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; // If you have a problem with this contract please contact us at [email protected] contract UnwindBalls is ERC1155, Ownable, ERC1155Burnable { uint256 private _nextTokenId = 1; uint256 public totalMintLimit = 250; mapping(address => uint256) private _mintCount; constructor(address initialOwner) ERC1155("https://metadata.code2chain.io/unwind/{id}") Ownable(initialOwner) {} function mintNFT(address to) public { require(_nextTokenId <= totalMintLimit, "Total mint limit reached"); _mintCount[msg.sender]++; uint256 tokenId = _nextTokenId++; _mint(to, tokenId, 1, ""); } function setUri(string memory newuri) public onlyOwner { _setURI(newuri); } function setTotalMintLimit(uint256 _totalMintLimit) public onlyOwner { totalMintLimit = _totalMintLimit; } function getTotalMinted() public view returns (uint256) { return _nextTokenId - 1; } function airDrop(address[] memory to) public onlyOwner { for (uint256 i = 0; i < to.length; i++) mintNFT(to[i]); } function withdraw() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/extensions/ERC1155Burnable.sol) pragma solidity ^0.8.20; import {ERC1155} from "../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. */ abstract contract ERC1155Burnable is ERC1155 { function burn(address account, uint256 id, uint256 value) public virtual { if (account != _msgSender() && !isApprovedForAll(account, _msgSender())) { revert ERC1155MissingApprovalForAll(_msgSender(), account); } _burn(account, id, value); } function burnBatch(address account, uint256[] memory ids, uint256[] memory values) public virtual { if (account != _msgSender() && !isApprovedForAll(account, _msgSender())) { revert ERC1155MissingApprovalForAll(_msgSender(), account); } _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.20; import {IERC1155} from "./IERC1155.sol"; import {IERC1155Receiver} from "./IERC1155Receiver.sol"; import {IERC1155MetadataURI} from "./extensions/IERC1155MetadataURI.sol"; import {Context} from "../../utils/Context.sol"; import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol"; import {Arrays} from "../../utils/Arrays.sol"; import {IERC1155Errors} from "../../interfaces/draft-IERC6093.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 */ abstract contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI, IERC1155Errors { using Arrays for uint256[]; using Arrays for address[]; mapping(uint256 id => mapping(address account => uint256)) private _balances; mapping(address account => mapping(address operator => 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 /* id */) public view virtual returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. */ function balanceOf(address account, uint256 id) public view virtual returns (uint256) { 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 returns (uint256[] memory) { if (accounts.length != ids.length) { revert ERC1155InvalidArrayLength(ids.length, accounts.length); } uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts.unsafeMemoryAccess(i), ids.unsafeMemoryAccess(i)); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 id, uint256 value, bytes memory data) public virtual { address sender = _msgSender(); if (from != sender && !isApprovedForAll(from, sender)) { revert ERC1155MissingApprovalForAll(sender, from); } _safeTransferFrom(from, to, id, value, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory values, bytes memory data ) public virtual { address sender = _msgSender(); if (from != sender && !isApprovedForAll(from, sender)) { revert ERC1155MissingApprovalForAll(sender, from); } _safeBatchTransferFrom(from, to, ids, values, data); } /** * @dev Transfers a `value` amount of tokens of type `id` from `from` to `to`. Will mint (or burn) if `from` * (or `to`) is the zero address. * * Emits a {TransferSingle} event if the arrays contain one element, and {TransferBatch} otherwise. * * Requirements: * * - If `to` refers to a smart contract, it must implement either {IERC1155Receiver-onERC1155Received} * or {IERC1155Receiver-onERC1155BatchReceived} and return the acceptance magic value. * - `ids` and `values` must have the same length. * * NOTE: The ERC-1155 acceptance check is not performed in this function. See {_updateWithAcceptanceCheck} instead. */ function _update(address from, address to, uint256[] memory ids, uint256[] memory values) internal virtual { if (ids.length != values.length) { revert ERC1155InvalidArrayLength(ids.length, values.length); } address operator = _msgSender(); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids.unsafeMemoryAccess(i); uint256 value = values.unsafeMemoryAccess(i); if (from != address(0)) { uint256 fromBalance = _balances[id][from]; if (fromBalance < value) { revert ERC1155InsufficientBalance(from, fromBalance, value, id); } unchecked { // Overflow not possible: value <= fromBalance _balances[id][from] = fromBalance - value; } } if (to != address(0)) { _balances[id][to] += value; } } if (ids.length == 1) { uint256 id = ids.unsafeMemoryAccess(0); uint256 value = values.unsafeMemoryAccess(0); emit TransferSingle(operator, from, to, id, value); } else { emit TransferBatch(operator, from, to, ids, values); } } /** * @dev Version of {_update} that performs the token acceptance check by calling * {IERC1155Receiver-onERC1155Received} or {IERC1155Receiver-onERC1155BatchReceived} on the receiver address if it * contains code (eg. is a smart contract at the moment of execution). * * IMPORTANT: Overriding this function is discouraged because it poses a reentrancy risk from the receiver. So any * update to the contract state after this function would break the check-effect-interaction pattern. Consider * overriding {_update} instead. */ function _updateWithAcceptanceCheck( address from, address to, uint256[] memory ids, uint256[] memory values, bytes memory data ) internal virtual { _update(from, to, ids, values); if (to != address(0)) { address operator = _msgSender(); if (ids.length == 1) { uint256 id = ids.unsafeMemoryAccess(0); uint256 value = values.unsafeMemoryAccess(0); _doSafeTransferAcceptanceCheck(operator, from, to, id, value, data); } else { _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, values, data); } } } /** * @dev Transfers a `value` 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 `value` 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 value, bytes memory data) internal { if (to == address(0)) { revert ERC1155InvalidReceiver(address(0)); } if (from == address(0)) { revert ERC1155InvalidSender(address(0)); } (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value); _updateWithAcceptanceCheck(from, to, ids, values, 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. * - `ids` and `values` must have the same length. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory values, bytes memory data ) internal { if (to == address(0)) { revert ERC1155InvalidReceiver(address(0)); } if (from == address(0)) { revert ERC1155InvalidSender(address(0)); } _updateWithAcceptanceCheck(from, to, ids, values, 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 values 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 a `value` amount of tokens of type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint(address to, uint256 id, uint256 value, bytes memory data) internal { if (to == address(0)) { revert ERC1155InvalidReceiver(address(0)); } (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value); _updateWithAcceptanceCheck(address(0), to, ids, values, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `values` must have the same length. * - `to` cannot be the zero address. * - 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 values, bytes memory data) internal { if (to == address(0)) { revert ERC1155InvalidReceiver(address(0)); } _updateWithAcceptanceCheck(address(0), to, ids, values, data); } /** * @dev Destroys a `value` amount of tokens of type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `value` amount of tokens of type `id`. */ function _burn(address from, uint256 id, uint256 value) internal { if (from == address(0)) { revert ERC1155InvalidSender(address(0)); } (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value); _updateWithAcceptanceCheck(from, address(0), ids, values, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `value` amount of tokens of type `id`. * - `ids` and `values` must have the same length. */ function _burnBatch(address from, uint256[] memory ids, uint256[] memory values) internal { if (from == address(0)) { revert ERC1155InvalidSender(address(0)); } _updateWithAcceptanceCheck(from, address(0), ids, values, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the zero address. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC1155InvalidOperator(address(0)); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Performs an acceptance check by calling {IERC1155-onERC1155Received} on the `to` address * if it contains code at the moment of execution. */ function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 value, bytes memory data ) private { if (to.code.length > 0) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, value, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { // Tokens rejected revert ERC1155InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { // non-ERC1155Receiver implementer revert ERC1155InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } /** * @dev Performs a batch acceptance check by calling {IERC1155-onERC1155BatchReceived} on the `to` address * if it contains code at the moment of execution. */ function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory values, bytes memory data ) private { if (to.code.length > 0) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, values, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { // Tokens rejected revert ERC1155InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { // non-ERC1155Receiver implementer revert ERC1155InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } /** * @dev Creates an array in memory with only one value for each of the elements provided. */ function _asSingletonArrays( uint256 element1, uint256 element2 ) private pure returns (uint256[] memory array1, uint256[] memory array2) { /// @solidity memory-safe-assembly assembly { // Load the free memory pointer array1 := mload(0x40) // Set array length to 1 mstore(array1, 1) // Store the single element at the next word after the length (where content starts) mstore(add(array1, 0x20), element1) // Repeat for next array locating it right after the first array array2 := add(array1, 0x40) mstore(array2, 1) mstore(add(array2, 0x20), element2) // Update the free memory pointer by pointing after the second array mstore(0x40, add(array2, 0x40)) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Arrays.sol) pragma solidity ^0.8.20; import {StorageSlot} from "./StorageSlot.sol"; import {Math} from "./math/Math.sol"; /** * @dev Collection of functions related to array types. */ library Arrays { using StorageSlot for bytes32; /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { uint256 low = 0; uint256 high = array.length; if (high == 0) { return 0; } while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds towards zero (it does integer division with truncation). if (unsafeAccess(array, mid).value > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && unsafeAccess(array, low - 1).value == element) { return low - 1; } else { return low; } } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) { bytes32 slot; // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr` // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays. /// @solidity memory-safe-assembly assembly { mstore(0, arr.slot) slot := add(keccak256(0, 0x20), pos) } return slot.getAddressSlot(); } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) { bytes32 slot; // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr` // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays. /// @solidity memory-safe-assembly assembly { mstore(0, arr.slot) slot := add(keccak256(0, 0x20), pos) } return slot.getBytes32Slot(); } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) { bytes32 slot; // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr` // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays. /// @solidity memory-safe-assembly assembly { mstore(0, arr.slot) slot := add(keccak256(0, 0x20), pos) } return slot.getUint256Slot(); } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeMemoryAccess(uint256[] memory arr, uint256 pos) internal pure returns (uint256 res) { assembly { res := mload(add(add(arr, 0x20), mul(pos, 0x20))) } } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeMemoryAccess(address[] memory arr, uint256 pos) internal pure returns (address res) { assembly { res := mload(add(add(arr, 0x20), mul(pos, 0x20))) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./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); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.20; import {IERC1155} from "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Interface that must be implemented by smart contracts in order to receive * ERC-1155 token transfers. */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` amount of tokens of 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 value 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 a `value` amount of tokens of type `id` from `from` to `to`. * * WARNING: This function can potentially allow a reentrancy attack when transferring tokens * to an untrusted contract, when invoking {onERC1155Received} on the receiver. * Ensure to follow the checks-effects-interactions pattern and consider employing * reentrancy guards when interacting with untrusted contracts. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `value` 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 value, bytes calldata data) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * WARNING: This function can potentially allow a reentrancy attack when transferring tokens * to an untrusted contract, when invoking {onERC1155BatchReceived} on the receiver. * Ensure to follow the checks-effects-interactions pattern and consider employing * reentrancy guards when interacting with untrusted contracts. * * Emits either a {TransferSingle} or a {TransferBatch} event, depending on the length of the array arguments. * * Requirements: * * - `ids` and `values` 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 values, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(newImplementation.code.length > 0); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } }
{ "optimizer": { "enabled": false, "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":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC1155InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC1155InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"idsLength","type":"uint256"},{"internalType":"uint256","name":"valuesLength","type":"uint256"}],"name":"ERC1155InvalidArrayLength","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC1155InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1155InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC1155InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC1155MissingApprovalForAll","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"airDrop","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":[],"name":"getTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"values","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":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalMintLimit","type":"uint256"}],"name":"setTotalMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setUri","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":"totalMintLimit","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":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600160045560fa6005553480156200001a575f80fd5b506040516200328138038062003281833981810160405281019062000040919062000236565b806040518060600160405280602a815260200162003257602a91396200006c81620000f960201b60201c565b505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000e0575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000d7919062000277565b60405180910390fd5b620000f1816200010e60201b60201c565b5050620005da565b80600290816200010a9190620004f6565b5050565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200020082620001d5565b9050919050565b6200021281620001f4565b81146200021d575f80fd5b50565b5f81519050620002308162000207565b92915050565b5f602082840312156200024e576200024d620001d1565b5b5f6200025d8482850162000220565b91505092915050565b6200027181620001f4565b82525050565b5f6020820190506200028c5f83018462000266565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200030e57607f821691505b602082108103620003245762000323620002c9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200034b565b6200039486836200034b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003de620003d8620003d284620003ac565b620003b5565b620003ac565b9050919050565b5f819050919050565b620003f983620003be565b620004116200040882620003e5565b84845462000357565b825550505050565b5f90565b6200042762000419565b62000434818484620003ee565b505050565b5b818110156200045b576200044f5f826200041d565b6001810190506200043a565b5050565b601f821115620004aa5762000474816200032a565b6200047f846200033c565b810160208510156200048f578190505b620004a76200049e856200033c565b83018262000439565b50505b505050565b5f82821c905092915050565b5f620004cc5f1984600802620004af565b1980831691505092915050565b5f620004e68383620004bb565b9150826002028217905092915050565b620005018262000292565b67ffffffffffffffff8111156200051d576200051c6200029c565b5b620005298254620002f6565b620005368282856200045f565b5f60209050601f8311600181146200056c575f841562000557578287015190505b620005638582620004d9565b865550620005d2565b601f1984166200057c866200032a565b5f5b82811015620005a5578489015182556001820191506020850194506020810190506200057e565b86831015620005c55784890151620005c1601f891682620004bb565b8355505b6001600288020188555050505b505050505050565b612c6f80620005e85f395ff3fe608060405234801561000f575f80fd5b5060043610610128575f3560e01c8063715018a6116100ab578063d6ccef2a1161006f578063d6ccef2a14610302578063e985e9c51461031e578063f242432a1461034e578063f2fde38b1461036a578063f5298aca1461038657610128565b8063715018a61461028457806376dd1f861461028e5780638da5cb5b146102ac5780639b642de1146102ca578063a22cb465146102e657610128565b80632eb2c2d6116100f25780632eb2c2d6146101f65780633ccfd60b146102125780634e1273f41461021c57806354ba0f271461024c5780636b20c4541461026857610128565b8062b6849f1461012c578062fdd58e1461014857806301ffc9a7146101785780630ca1c5c9146101a85780630e89341c146101c6575b5f80fd5b61014660048036038101906101419190611cc3565b6103a2565b005b610162600480360381019061015d9190611d3d565b6103e9565b60405161016f9190611d8a565b60405180910390f35b610192600480360381019061018d9190611df8565b61043e565b60405161019f9190611e3d565b60405180910390f35b6101b061051f565b6040516101bd9190611d8a565b60405180910390f35b6101e060048036038101906101db9190611e56565b610534565b6040516101ed9190611efb565b60405180910390f35b610210600480360381019061020b919061208b565b6105c6565b005b61021a61066d565b005b61023660048036038101906102319190612156565b6106bb565b6040516102439190612283565b60405180910390f35b610266600480360381019061026191906122a3565b6107c2565b005b610282600480360381019061027d91906122ce565b610893565b005b61028c61093f565b005b610296610952565b6040516102a39190611d8a565b60405180910390f35b6102b4610958565b6040516102c19190612365565b60405180910390f35b6102e460048036038101906102df919061241c565b610980565b005b61030060048036038101906102fb919061248d565b610994565b005b61031c60048036038101906103179190611e56565b6109aa565b005b610338600480360381019061033391906124cb565b6109bc565b6040516103459190611e3d565b60405180910390f35b61036860048036038101906103639190612509565b610a4a565b005b610384600480360381019061037f91906122a3565b610af1565b005b6103a0600480360381019061039b919061259c565b610b75565b005b6103aa610c21565b5f5b81518110156103e5576103d88282815181106103cb576103ca6125ec565b5b60200260200101516107c2565b80806001019150506103ac565b5050565b5f805f8381526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f7fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610518575061051782610ca8565b5b9050919050565b5f600160045461052f9190612646565b905090565b606060028054610543906126a6565b80601f016020809104026020016040519081016040528092919081815260200182805461056f906126a6565b80156105ba5780601f10610591576101008083540402835291602001916105ba565b820191905f5260205f20905b81548152906001019060200180831161059d57829003601f168201915b50505050509050919050565b5f6105cf610d11565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610614575061061286826109bc565b155b156106585780866040517fe237d92200000000000000000000000000000000000000000000000000000000815260040161064f9291906126d6565b60405180910390fd5b6106658686868686610d18565b505050505050565b610675610c21565b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156106b8573d5f803e3d5ffd5b50565b6060815183511461070757815183516040517f5b0599910000000000000000000000000000000000000000000000000000000081526004016106fe9291906126fd565b60405180910390fd5b5f835167ffffffffffffffff81111561072357610722611b2d565b5b6040519080825280602002602001820160405280156107515781602001602082028036833780820191505090505b5090505f5b84518110156107b75761078d6107758287610e0c90919063ffffffff16565b6107888387610e1f90919063ffffffff16565b6103e9565b8282815181106107a05761079f6125ec565b5b602002602001018181525050806001019050610756565b508091505092915050565b6005546004541115610809576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108009061276e565b60405180910390fd5b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154809291906108569061278c565b91905055505f60045f81548092919061086e9061278c565b91905055905061088f8282600160405180602001604052805f815250610e32565b5050565b61089b610d11565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156108e457506108e2836108dd610d11565b6109bc565b155b1561092f576108f1610d11565b836040517fe237d9220000000000000000000000000000000000000000000000000000000081526004016109269291906126d6565b60405180910390fd5b61093a838383610ec7565b505050565b610947610c21565b6109505f610f57565b565b60055481565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610988610c21565b6109918161101a565b50565b6109a661099f610d11565b838361102d565b5050565b6109b2610c21565b8060058190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f610a53610d11565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610a985750610a9686826109bc565b155b15610adc5780866040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610ad39291906126d6565b60405180910390fd5b610ae98686868686611196565b505050505050565b610af9610c21565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b69575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b609190612365565b60405180910390fd5b610b7281610f57565b50565b610b7d610d11565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610bc65750610bc483610bbf610d11565b6109bc565b155b15610c1157610bd3610d11565b836040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610c089291906126d6565b60405180910390fd5b610c1c83838361129c565b505050565b610c29610d11565b73ffffffffffffffffffffffffffffffffffffffff16610c47610958565b73ffffffffffffffffffffffffffffffffffffffff1614610ca657610c6a610d11565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c9d9190612365565b60405180910390fd5b565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610d88575f6040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401610d7f9190612365565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610df8575f6040517f01a83514000000000000000000000000000000000000000000000000000000008152600401610def9190612365565b60405180910390fd5b610e05858585858561133e565b5050505050565b5f60208202602084010151905092915050565b5f60208202602084010151905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ea2575f6040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401610e999190612365565b60405180910390fd5b5f80610eae85856113ea565b91509150610ebf5f8784848761133e565b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f37575f6040517f01a83514000000000000000000000000000000000000000000000000000000008152600401610f2e9190612365565b60405180910390fd5b610f52835f848460405180602001604052805f81525061133e565b505050565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600290816110299190612970565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361109d575f6040517fced3e1000000000000000000000000000000000000000000000000000000000081526004016110949190612365565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111899190611e3d565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611206575f6040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016111fd9190612365565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611276575f6040517f01a8351400000000000000000000000000000000000000000000000000000000815260040161126d9190612365565b60405180910390fd5b5f8061128285856113ea565b91509150611293878784848761133e565b50505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361130c575f6040517f01a835140000000000000000000000000000000000000000000000000000000081526004016113039190612365565b60405180910390fd5b5f8061131884846113ea565b91509150611337855f848460405180602001604052805f81525061133e565b5050505050565b61134a8585858561141a565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146113e3575f611386610d11565b905060018451036113d2575f6113a55f86610e1f90919063ffffffff16565b90505f6113bb5f86610e1f90919063ffffffff16565b90506113cb8389898585896117aa565b50506113e1565b6113e0818787878787611959565b5b505b5050505050565b60608060405191506001825283602083015260408201905060018152826020820152604081016040529250929050565b805182511461146457815181516040517f5b05999100000000000000000000000000000000000000000000000000000000815260040161145b9291906126fd565b60405180910390fd5b5f61146d610d11565b90505f5b8351811015611669575f61148e8286610e1f90919063ffffffff16565b90505f6114a48386610e1f90919063ffffffff16565b90505f73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16146115c7575f805f8481526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561157357888183856040517f03dee4c500000000000000000000000000000000000000000000000000000000815260040161156a9493929190612a3f565b60405180910390fd5b8181035f808581526020019081526020015f205f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161461165c57805f808481526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546116549190612a82565b925050819055505b5050806001019050611471565b506001835103611724575f6116875f85610e1f90919063ffffffff16565b90505f61169d5f85610e1f90919063ffffffff16565b90508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6285856040516117159291906126fd565b60405180910390a450506117a3565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161179a929190612ab5565b60405180910390a45b5050505050565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1115611951578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161180a959493929190612b3c565b6020604051808303815f875af192505050801561184557506040513d601f19601f820116820180604052508101906118429190612ba8565b60015b6118c6573d805f8114611873576040519150601f19603f3d011682016040523d82523d5f602084013e611878565b606091505b505f8151036118be57846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016118b59190612365565b60405180910390fd5b805181602001fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461194f57846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016119469190612365565b60405180910390fd5b505b505050505050565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1115611b00578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016119b9959493929190612bd3565b6020604051808303815f875af19250505080156119f457506040513d601f19601f820116820180604052508101906119f19190612ba8565b60015b611a75573d805f8114611a22576040519150601f19603f3d011682016040523d82523d5f602084013e611a27565b606091505b505f815103611a6d57846040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401611a649190612365565b60405180910390fd5b805181602001fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611afe57846040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401611af59190612365565b60405180910390fd5b505b505050505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b6382611b1d565b810181811067ffffffffffffffff82111715611b8257611b81611b2d565b5b80604052505050565b5f611b94611b08565b9050611ba08282611b5a565b919050565b5f67ffffffffffffffff821115611bbf57611bbe611b2d565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611bfd82611bd4565b9050919050565b611c0d81611bf3565b8114611c17575f80fd5b50565b5f81359050611c2881611c04565b92915050565b5f611c40611c3b84611ba5565b611b8b565b90508083825260208201905060208402830185811115611c6357611c62611bd0565b5b835b81811015611c8c5780611c788882611c1a565b845260208401935050602081019050611c65565b5050509392505050565b5f82601f830112611caa57611ca9611b19565b5b8135611cba848260208601611c2e565b91505092915050565b5f60208284031215611cd857611cd7611b11565b5b5f82013567ffffffffffffffff811115611cf557611cf4611b15565b5b611d0184828501611c96565b91505092915050565b5f819050919050565b611d1c81611d0a565b8114611d26575f80fd5b50565b5f81359050611d3781611d13565b92915050565b5f8060408385031215611d5357611d52611b11565b5b5f611d6085828601611c1a565b9250506020611d7185828601611d29565b9150509250929050565b611d8481611d0a565b82525050565b5f602082019050611d9d5f830184611d7b565b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611dd781611da3565b8114611de1575f80fd5b50565b5f81359050611df281611dce565b92915050565b5f60208284031215611e0d57611e0c611b11565b5b5f611e1a84828501611de4565b91505092915050565b5f8115159050919050565b611e3781611e23565b82525050565b5f602082019050611e505f830184611e2e565b92915050565b5f60208284031215611e6b57611e6a611b11565b5b5f611e7884828501611d29565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611eb8578082015181840152602081019050611e9d565b5f8484015250505050565b5f611ecd82611e81565b611ed78185611e8b565b9350611ee7818560208601611e9b565b611ef081611b1d565b840191505092915050565b5f6020820190508181035f830152611f138184611ec3565b905092915050565b5f67ffffffffffffffff821115611f3557611f34611b2d565b5b602082029050602081019050919050565b5f611f58611f5384611f1b565b611b8b565b90508083825260208201905060208402830185811115611f7b57611f7a611bd0565b5b835b81811015611fa45780611f908882611d29565b845260208401935050602081019050611f7d565b5050509392505050565b5f82601f830112611fc257611fc1611b19565b5b8135611fd2848260208601611f46565b91505092915050565b5f80fd5b5f67ffffffffffffffff821115611ff957611ff8611b2d565b5b61200282611b1d565b9050602081019050919050565b828183375f83830152505050565b5f61202f61202a84611fdf565b611b8b565b90508281526020810184848401111561204b5761204a611fdb565b5b61205684828561200f565b509392505050565b5f82601f83011261207257612071611b19565b5b813561208284826020860161201d565b91505092915050565b5f805f805f60a086880312156120a4576120a3611b11565b5b5f6120b188828901611c1a565b95505060206120c288828901611c1a565b945050604086013567ffffffffffffffff8111156120e3576120e2611b15565b5b6120ef88828901611fae565b935050606086013567ffffffffffffffff8111156121105761210f611b15565b5b61211c88828901611fae565b925050608086013567ffffffffffffffff81111561213d5761213c611b15565b5b6121498882890161205e565b9150509295509295909350565b5f806040838503121561216c5761216b611b11565b5b5f83013567ffffffffffffffff81111561218957612188611b15565b5b61219585828601611c96565b925050602083013567ffffffffffffffff8111156121b6576121b5611b15565b5b6121c285828601611fae565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6121fe81611d0a565b82525050565b5f61220f83836121f5565b60208301905092915050565b5f602082019050919050565b5f612231826121cc565b61223b81856121d6565b9350612246836121e6565b805f5b8381101561227657815161225d8882612204565b97506122688361221b565b925050600181019050612249565b5085935050505092915050565b5f6020820190508181035f83015261229b8184612227565b905092915050565b5f602082840312156122b8576122b7611b11565b5b5f6122c584828501611c1a565b91505092915050565b5f805f606084860312156122e5576122e4611b11565b5b5f6122f286828701611c1a565b935050602084013567ffffffffffffffff81111561231357612312611b15565b5b61231f86828701611fae565b925050604084013567ffffffffffffffff8111156123405761233f611b15565b5b61234c86828701611fae565b9150509250925092565b61235f81611bf3565b82525050565b5f6020820190506123785f830184612356565b92915050565b5f67ffffffffffffffff82111561239857612397611b2d565b5b6123a182611b1d565b9050602081019050919050565b5f6123c06123bb8461237e565b611b8b565b9050828152602081018484840111156123dc576123db611fdb565b5b6123e784828561200f565b509392505050565b5f82601f83011261240357612402611b19565b5b81356124138482602086016123ae565b91505092915050565b5f6020828403121561243157612430611b11565b5b5f82013567ffffffffffffffff81111561244e5761244d611b15565b5b61245a848285016123ef565b91505092915050565b61246c81611e23565b8114612476575f80fd5b50565b5f8135905061248781612463565b92915050565b5f80604083850312156124a3576124a2611b11565b5b5f6124b085828601611c1a565b92505060206124c185828601612479565b9150509250929050565b5f80604083850312156124e1576124e0611b11565b5b5f6124ee85828601611c1a565b92505060206124ff85828601611c1a565b9150509250929050565b5f805f805f60a0868803121561252257612521611b11565b5b5f61252f88828901611c1a565b955050602061254088828901611c1a565b945050604061255188828901611d29565b935050606061256288828901611d29565b925050608086013567ffffffffffffffff81111561258357612582611b15565b5b61258f8882890161205e565b9150509295509295909350565b5f805f606084860312156125b3576125b2611b11565b5b5f6125c086828701611c1a565b93505060206125d186828701611d29565b92505060406125e286828701611d29565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61265082611d0a565b915061265b83611d0a565b925082820390508181111561267357612672612619565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806126bd57607f821691505b6020821081036126d0576126cf612679565b5b50919050565b5f6040820190506126e95f830185612356565b6126f66020830184612356565b9392505050565b5f6040820190506127105f830185611d7b565b61271d6020830184611d7b565b9392505050565b7f546f74616c206d696e74206c696d6974207265616368656400000000000000005f82015250565b5f612758601883611e8b565b915061276382612724565b602082019050919050565b5f6020820190508181035f8301526127858161274c565b9050919050565b5f61279682611d0a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036127c8576127c7612619565b5b600182019050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261282f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127f4565b61283986836127f4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61287461286f61286a84611d0a565b612851565b611d0a565b9050919050565b5f819050919050565b61288d8361285a565b6128a16128998261287b565b848454612800565b825550505050565b5f90565b6128b56128a9565b6128c0818484612884565b505050565b5b818110156128e3576128d85f826128ad565b6001810190506128c6565b5050565b601f821115612928576128f9816127d3565b612902846127e5565b81016020851015612911578190505b61292561291d856127e5565b8301826128c5565b50505b505050565b5f82821c905092915050565b5f6129485f198460080261292d565b1980831691505092915050565b5f6129608383612939565b9150826002028217905092915050565b61297982611e81565b67ffffffffffffffff81111561299257612991611b2d565b5b61299c82546126a6565b6129a78282856128e7565b5f60209050601f8311600181146129d8575f84156129c6578287015190505b6129d08582612955565b865550612a37565b601f1984166129e6866127d3565b5f5b82811015612a0d578489015182556001820191506020850194506020810190506129e8565b86831015612a2a5784890151612a26601f891682612939565b8355505b6001600288020188555050505b505050505050565b5f608082019050612a525f830187612356565b612a5f6020830186611d7b565b612a6c6040830185611d7b565b612a796060830184611d7b565b95945050505050565b5f612a8c82611d0a565b9150612a9783611d0a565b9250828201905080821115612aaf57612aae612619565b5b92915050565b5f6040820190508181035f830152612acd8185612227565b90508181036020830152612ae18184612227565b90509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f612b0e82612aea565b612b188185612af4565b9350612b28818560208601611e9b565b612b3181611b1d565b840191505092915050565b5f60a082019050612b4f5f830188612356565b612b5c6020830187612356565b612b696040830186611d7b565b612b766060830185611d7b565b8181036080830152612b888184612b04565b90509695505050505050565b5f81519050612ba281611dce565b92915050565b5f60208284031215612bbd57612bbc611b11565b5b5f612bca84828501612b94565b91505092915050565b5f60a082019050612be65f830188612356565b612bf36020830187612356565b8181036040830152612c058186612227565b90508181036060830152612c198185612227565b90508181036080830152612c2d8184612b04565b9050969550505050505056fea2646970667358221220b63bfa42602a30cb413f0f177e412f30197a4b61d11bf2e8385f3d4f4cf81c8064736f6c6343000818003368747470733a2f2f6d657461646174612e636f646532636861696e2e696f2f756e77696e642f7b69647d0000000000000000000000007bae7241e855689c1254e7cc7d0e15ac24e1b542
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610128575f3560e01c8063715018a6116100ab578063d6ccef2a1161006f578063d6ccef2a14610302578063e985e9c51461031e578063f242432a1461034e578063f2fde38b1461036a578063f5298aca1461038657610128565b8063715018a61461028457806376dd1f861461028e5780638da5cb5b146102ac5780639b642de1146102ca578063a22cb465146102e657610128565b80632eb2c2d6116100f25780632eb2c2d6146101f65780633ccfd60b146102125780634e1273f41461021c57806354ba0f271461024c5780636b20c4541461026857610128565b8062b6849f1461012c578062fdd58e1461014857806301ffc9a7146101785780630ca1c5c9146101a85780630e89341c146101c6575b5f80fd5b61014660048036038101906101419190611cc3565b6103a2565b005b610162600480360381019061015d9190611d3d565b6103e9565b60405161016f9190611d8a565b60405180910390f35b610192600480360381019061018d9190611df8565b61043e565b60405161019f9190611e3d565b60405180910390f35b6101b061051f565b6040516101bd9190611d8a565b60405180910390f35b6101e060048036038101906101db9190611e56565b610534565b6040516101ed9190611efb565b60405180910390f35b610210600480360381019061020b919061208b565b6105c6565b005b61021a61066d565b005b61023660048036038101906102319190612156565b6106bb565b6040516102439190612283565b60405180910390f35b610266600480360381019061026191906122a3565b6107c2565b005b610282600480360381019061027d91906122ce565b610893565b005b61028c61093f565b005b610296610952565b6040516102a39190611d8a565b60405180910390f35b6102b4610958565b6040516102c19190612365565b60405180910390f35b6102e460048036038101906102df919061241c565b610980565b005b61030060048036038101906102fb919061248d565b610994565b005b61031c60048036038101906103179190611e56565b6109aa565b005b610338600480360381019061033391906124cb565b6109bc565b6040516103459190611e3d565b60405180910390f35b61036860048036038101906103639190612509565b610a4a565b005b610384600480360381019061037f91906122a3565b610af1565b005b6103a0600480360381019061039b919061259c565b610b75565b005b6103aa610c21565b5f5b81518110156103e5576103d88282815181106103cb576103ca6125ec565b5b60200260200101516107c2565b80806001019150506103ac565b5050565b5f805f8381526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f7fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610518575061051782610ca8565b5b9050919050565b5f600160045461052f9190612646565b905090565b606060028054610543906126a6565b80601f016020809104026020016040519081016040528092919081815260200182805461056f906126a6565b80156105ba5780601f10610591576101008083540402835291602001916105ba565b820191905f5260205f20905b81548152906001019060200180831161059d57829003601f168201915b50505050509050919050565b5f6105cf610d11565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610614575061061286826109bc565b155b156106585780866040517fe237d92200000000000000000000000000000000000000000000000000000000815260040161064f9291906126d6565b60405180910390fd5b6106658686868686610d18565b505050505050565b610675610c21565b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156106b8573d5f803e3d5ffd5b50565b6060815183511461070757815183516040517f5b0599910000000000000000000000000000000000000000000000000000000081526004016106fe9291906126fd565b60405180910390fd5b5f835167ffffffffffffffff81111561072357610722611b2d565b5b6040519080825280602002602001820160405280156107515781602001602082028036833780820191505090505b5090505f5b84518110156107b75761078d6107758287610e0c90919063ffffffff16565b6107888387610e1f90919063ffffffff16565b6103e9565b8282815181106107a05761079f6125ec565b5b602002602001018181525050806001019050610756565b508091505092915050565b6005546004541115610809576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108009061276e565b60405180910390fd5b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154809291906108569061278c565b91905055505f60045f81548092919061086e9061278c565b91905055905061088f8282600160405180602001604052805f815250610e32565b5050565b61089b610d11565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156108e457506108e2836108dd610d11565b6109bc565b155b1561092f576108f1610d11565b836040517fe237d9220000000000000000000000000000000000000000000000000000000081526004016109269291906126d6565b60405180910390fd5b61093a838383610ec7565b505050565b610947610c21565b6109505f610f57565b565b60055481565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610988610c21565b6109918161101a565b50565b6109a661099f610d11565b838361102d565b5050565b6109b2610c21565b8060058190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f610a53610d11565b90508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614158015610a985750610a9686826109bc565b155b15610adc5780866040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610ad39291906126d6565b60405180910390fd5b610ae98686868686611196565b505050505050565b610af9610c21565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b69575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b609190612365565b60405180910390fd5b610b7281610f57565b50565b610b7d610d11565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610bc65750610bc483610bbf610d11565b6109bc565b155b15610c1157610bd3610d11565b836040517fe237d922000000000000000000000000000000000000000000000000000000008152600401610c089291906126d6565b60405180910390fd5b610c1c83838361129c565b505050565b610c29610d11565b73ffffffffffffffffffffffffffffffffffffffff16610c47610958565b73ffffffffffffffffffffffffffffffffffffffff1614610ca657610c6a610d11565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c9d9190612365565b60405180910390fd5b565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610d88575f6040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401610d7f9190612365565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610df8575f6040517f01a83514000000000000000000000000000000000000000000000000000000008152600401610def9190612365565b60405180910390fd5b610e05858585858561133e565b5050505050565b5f60208202602084010151905092915050565b5f60208202602084010151905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ea2575f6040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401610e999190612365565b60405180910390fd5b5f80610eae85856113ea565b91509150610ebf5f8784848761133e565b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f37575f6040517f01a83514000000000000000000000000000000000000000000000000000000008152600401610f2e9190612365565b60405180910390fd5b610f52835f848460405180602001604052805f81525061133e565b505050565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600290816110299190612970565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361109d575f6040517fced3e1000000000000000000000000000000000000000000000000000000000081526004016110949190612365565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111899190611e3d565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611206575f6040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016111fd9190612365565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611276575f6040517f01a8351400000000000000000000000000000000000000000000000000000000815260040161126d9190612365565b60405180910390fd5b5f8061128285856113ea565b91509150611293878784848761133e565b50505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361130c575f6040517f01a835140000000000000000000000000000000000000000000000000000000081526004016113039190612365565b60405180910390fd5b5f8061131884846113ea565b91509150611337855f848460405180602001604052805f81525061133e565b5050505050565b61134a8585858561141a565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146113e3575f611386610d11565b905060018451036113d2575f6113a55f86610e1f90919063ffffffff16565b90505f6113bb5f86610e1f90919063ffffffff16565b90506113cb8389898585896117aa565b50506113e1565b6113e0818787878787611959565b5b505b5050505050565b60608060405191506001825283602083015260408201905060018152826020820152604081016040529250929050565b805182511461146457815181516040517f5b05999100000000000000000000000000000000000000000000000000000000815260040161145b9291906126fd565b60405180910390fd5b5f61146d610d11565b90505f5b8351811015611669575f61148e8286610e1f90919063ffffffff16565b90505f6114a48386610e1f90919063ffffffff16565b90505f73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16146115c7575f805f8481526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561157357888183856040517f03dee4c500000000000000000000000000000000000000000000000000000000815260040161156a9493929190612a3f565b60405180910390fd5b8181035f808581526020019081526020015f205f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161461165c57805f808481526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546116549190612a82565b925050819055505b5050806001019050611471565b506001835103611724575f6116875f85610e1f90919063ffffffff16565b90505f61169d5f85610e1f90919063ffffffff16565b90508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6285856040516117159291906126fd565b60405180910390a450506117a3565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161179a929190612ab5565b60405180910390a45b5050505050565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1115611951578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161180a959493929190612b3c565b6020604051808303815f875af192505050801561184557506040513d601f19601f820116820180604052508101906118429190612ba8565b60015b6118c6573d805f8114611873576040519150601f19603f3d011682016040523d82523d5f602084013e611878565b606091505b505f8151036118be57846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016118b59190612365565b60405180910390fd5b805181602001fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461194f57846040517f57f447ce0000000000000000000000000000000000000000000000000000000081526004016119469190612365565b60405180910390fd5b505b505050505050565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1115611b00578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016119b9959493929190612bd3565b6020604051808303815f875af19250505080156119f457506040513d601f19601f820116820180604052508101906119f19190612ba8565b60015b611a75573d805f8114611a22576040519150601f19603f3d011682016040523d82523d5f602084013e611a27565b606091505b505f815103611a6d57846040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401611a649190612365565b60405180910390fd5b805181602001fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611afe57846040517f57f447ce000000000000000000000000000000000000000000000000000000008152600401611af59190612365565b60405180910390fd5b505b505050505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b6382611b1d565b810181811067ffffffffffffffff82111715611b8257611b81611b2d565b5b80604052505050565b5f611b94611b08565b9050611ba08282611b5a565b919050565b5f67ffffffffffffffff821115611bbf57611bbe611b2d565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611bfd82611bd4565b9050919050565b611c0d81611bf3565b8114611c17575f80fd5b50565b5f81359050611c2881611c04565b92915050565b5f611c40611c3b84611ba5565b611b8b565b90508083825260208201905060208402830185811115611c6357611c62611bd0565b5b835b81811015611c8c5780611c788882611c1a565b845260208401935050602081019050611c65565b5050509392505050565b5f82601f830112611caa57611ca9611b19565b5b8135611cba848260208601611c2e565b91505092915050565b5f60208284031215611cd857611cd7611b11565b5b5f82013567ffffffffffffffff811115611cf557611cf4611b15565b5b611d0184828501611c96565b91505092915050565b5f819050919050565b611d1c81611d0a565b8114611d26575f80fd5b50565b5f81359050611d3781611d13565b92915050565b5f8060408385031215611d5357611d52611b11565b5b5f611d6085828601611c1a565b9250506020611d7185828601611d29565b9150509250929050565b611d8481611d0a565b82525050565b5f602082019050611d9d5f830184611d7b565b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611dd781611da3565b8114611de1575f80fd5b50565b5f81359050611df281611dce565b92915050565b5f60208284031215611e0d57611e0c611b11565b5b5f611e1a84828501611de4565b91505092915050565b5f8115159050919050565b611e3781611e23565b82525050565b5f602082019050611e505f830184611e2e565b92915050565b5f60208284031215611e6b57611e6a611b11565b5b5f611e7884828501611d29565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611eb8578082015181840152602081019050611e9d565b5f8484015250505050565b5f611ecd82611e81565b611ed78185611e8b565b9350611ee7818560208601611e9b565b611ef081611b1d565b840191505092915050565b5f6020820190508181035f830152611f138184611ec3565b905092915050565b5f67ffffffffffffffff821115611f3557611f34611b2d565b5b602082029050602081019050919050565b5f611f58611f5384611f1b565b611b8b565b90508083825260208201905060208402830185811115611f7b57611f7a611bd0565b5b835b81811015611fa45780611f908882611d29565b845260208401935050602081019050611f7d565b5050509392505050565b5f82601f830112611fc257611fc1611b19565b5b8135611fd2848260208601611f46565b91505092915050565b5f80fd5b5f67ffffffffffffffff821115611ff957611ff8611b2d565b5b61200282611b1d565b9050602081019050919050565b828183375f83830152505050565b5f61202f61202a84611fdf565b611b8b565b90508281526020810184848401111561204b5761204a611fdb565b5b61205684828561200f565b509392505050565b5f82601f83011261207257612071611b19565b5b813561208284826020860161201d565b91505092915050565b5f805f805f60a086880312156120a4576120a3611b11565b5b5f6120b188828901611c1a565b95505060206120c288828901611c1a565b945050604086013567ffffffffffffffff8111156120e3576120e2611b15565b5b6120ef88828901611fae565b935050606086013567ffffffffffffffff8111156121105761210f611b15565b5b61211c88828901611fae565b925050608086013567ffffffffffffffff81111561213d5761213c611b15565b5b6121498882890161205e565b9150509295509295909350565b5f806040838503121561216c5761216b611b11565b5b5f83013567ffffffffffffffff81111561218957612188611b15565b5b61219585828601611c96565b925050602083013567ffffffffffffffff8111156121b6576121b5611b15565b5b6121c285828601611fae565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6121fe81611d0a565b82525050565b5f61220f83836121f5565b60208301905092915050565b5f602082019050919050565b5f612231826121cc565b61223b81856121d6565b9350612246836121e6565b805f5b8381101561227657815161225d8882612204565b97506122688361221b565b925050600181019050612249565b5085935050505092915050565b5f6020820190508181035f83015261229b8184612227565b905092915050565b5f602082840312156122b8576122b7611b11565b5b5f6122c584828501611c1a565b91505092915050565b5f805f606084860312156122e5576122e4611b11565b5b5f6122f286828701611c1a565b935050602084013567ffffffffffffffff81111561231357612312611b15565b5b61231f86828701611fae565b925050604084013567ffffffffffffffff8111156123405761233f611b15565b5b61234c86828701611fae565b9150509250925092565b61235f81611bf3565b82525050565b5f6020820190506123785f830184612356565b92915050565b5f67ffffffffffffffff82111561239857612397611b2d565b5b6123a182611b1d565b9050602081019050919050565b5f6123c06123bb8461237e565b611b8b565b9050828152602081018484840111156123dc576123db611fdb565b5b6123e784828561200f565b509392505050565b5f82601f83011261240357612402611b19565b5b81356124138482602086016123ae565b91505092915050565b5f6020828403121561243157612430611b11565b5b5f82013567ffffffffffffffff81111561244e5761244d611b15565b5b61245a848285016123ef565b91505092915050565b61246c81611e23565b8114612476575f80fd5b50565b5f8135905061248781612463565b92915050565b5f80604083850312156124a3576124a2611b11565b5b5f6124b085828601611c1a565b92505060206124c185828601612479565b9150509250929050565b5f80604083850312156124e1576124e0611b11565b5b5f6124ee85828601611c1a565b92505060206124ff85828601611c1a565b9150509250929050565b5f805f805f60a0868803121561252257612521611b11565b5b5f61252f88828901611c1a565b955050602061254088828901611c1a565b945050604061255188828901611d29565b935050606061256288828901611d29565b925050608086013567ffffffffffffffff81111561258357612582611b15565b5b61258f8882890161205e565b9150509295509295909350565b5f805f606084860312156125b3576125b2611b11565b5b5f6125c086828701611c1a565b93505060206125d186828701611d29565b92505060406125e286828701611d29565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61265082611d0a565b915061265b83611d0a565b925082820390508181111561267357612672612619565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806126bd57607f821691505b6020821081036126d0576126cf612679565b5b50919050565b5f6040820190506126e95f830185612356565b6126f66020830184612356565b9392505050565b5f6040820190506127105f830185611d7b565b61271d6020830184611d7b565b9392505050565b7f546f74616c206d696e74206c696d6974207265616368656400000000000000005f82015250565b5f612758601883611e8b565b915061276382612724565b602082019050919050565b5f6020820190508181035f8301526127858161274c565b9050919050565b5f61279682611d0a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036127c8576127c7612619565b5b600182019050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261282f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127f4565b61283986836127f4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61287461286f61286a84611d0a565b612851565b611d0a565b9050919050565b5f819050919050565b61288d8361285a565b6128a16128998261287b565b848454612800565b825550505050565b5f90565b6128b56128a9565b6128c0818484612884565b505050565b5b818110156128e3576128d85f826128ad565b6001810190506128c6565b5050565b601f821115612928576128f9816127d3565b612902846127e5565b81016020851015612911578190505b61292561291d856127e5565b8301826128c5565b50505b505050565b5f82821c905092915050565b5f6129485f198460080261292d565b1980831691505092915050565b5f6129608383612939565b9150826002028217905092915050565b61297982611e81565b67ffffffffffffffff81111561299257612991611b2d565b5b61299c82546126a6565b6129a78282856128e7565b5f60209050601f8311600181146129d8575f84156129c6578287015190505b6129d08582612955565b865550612a37565b601f1984166129e6866127d3565b5f5b82811015612a0d578489015182556001820191506020850194506020810190506129e8565b86831015612a2a5784890151612a26601f891682612939565b8355505b6001600288020188555050505b505050505050565b5f608082019050612a525f830187612356565b612a5f6020830186611d7b565b612a6c6040830185611d7b565b612a796060830184611d7b565b95945050505050565b5f612a8c82611d0a565b9150612a9783611d0a565b9250828201905080821115612aaf57612aae612619565b5b92915050565b5f6040820190508181035f830152612acd8185612227565b90508181036020830152612ae18184612227565b90509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f612b0e82612aea565b612b188185612af4565b9350612b28818560208601611e9b565b612b3181611b1d565b840191505092915050565b5f60a082019050612b4f5f830188612356565b612b5c6020830187612356565b612b696040830186611d7b565b612b766060830185611d7b565b8181036080830152612b888184612b04565b90509695505050505050565b5f81519050612ba281611dce565b92915050565b5f60208284031215612bbd57612bbc611b11565b5b5f612bca84828501612b94565b91505092915050565b5f60a082019050612be65f830188612356565b612bf36020830187612356565b8181036040830152612c058186612227565b90508181036060830152612c198185612227565b90508181036080830152612c2d8184612b04565b9050969550505050505056fea2646970667358221220b63bfa42602a30cb413f0f177e412f30197a4b61d11bf2e8385f3d4f4cf81c8064736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007bae7241e855689c1254e7cc7d0e15ac24e1b542
-----Decoded View---------------
Arg [0] : initialOwner (address): 0x7bAe7241e855689c1254e7cc7D0e15AC24E1B542
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007bae7241e855689c1254e7cc7d0e15ac24e1b542
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.