ERC-1155
Overview
Max Total Supply
102,992
Holders
442
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DODONFT1155
Compiler Version
v0.6.9+commit.3e3065ac
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-25 */ /** *Submitted for verification at BscScan.com on 2021-07-12 */ // File: contracts/intf/IERC165.sol // This is a file copied from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/solc-0.6/contracts/introspection/IERC165.sol // SPDX-License-Identifier: MIT pragma solidity 0.6.9; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: contracts/intf/IERC1155.sol /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle( address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value ); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } // File: contracts/intf/IERC1155Receiver.sol /** * _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File: contracts/intf/IERC1155MetadataURI.sol /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } // File: contracts/external/utils/ERC165.sol /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: contracts/external/utils/Strings.sol /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: contracts/external/utils/Address.sol /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: contracts/external/utils/Context.sol /* * @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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: contracts/external/ERC1155/ERC1155.sol /** * * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping (uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping (address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch( address[] memory accounts, uint256[] memory ids ) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require(to != address(0), "ERC1155: transfer to the zero address"); require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); _balances[id][from] = fromBalance - amount; _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); _balances[id][from] = fromBalance - amount; _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn(address account, uint256 id, uint256 amount) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); _balances[id][account] = accountBalance - amount; emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); _balances[id][account] = accountBalance - amount; } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { } function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver(to).onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) { if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } } // File: contracts/lib/InitializableOwnable.sol /** * @title Ownable * @author DODO Breeder * * @notice Ownership related functions */ contract InitializableOwnable { address public _OWNER_; address public _NEW_OWNER_; bool internal _INITIALIZED_; // ============ Events ============ event OwnershipTransferPrepared(address indexed previousOwner, address indexed newOwner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); // ============ Modifiers ============ modifier notInitialized() { require(!_INITIALIZED_, "DODO_INITIALIZED"); _; } modifier onlyOwner() { require(msg.sender == _OWNER_, "NOT_OWNER"); _; } // ============ Functions ============ function initOwner(address newOwner) public notInitialized { _INITIALIZED_ = true; _OWNER_ = newOwner; } function transferOwnership(address newOwner) public onlyOwner { emit OwnershipTransferPrepared(_OWNER_, newOwner); _NEW_OWNER_ = newOwner; } function claimOwnership() public { require(msg.sender == _NEW_OWNER_, "INVALID_CLAIM"); emit OwnershipTransferred(_OWNER_, _NEW_OWNER_); _OWNER_ = _NEW_OWNER_; _NEW_OWNER_ = address(0); } } // File: contracts/Factory/DODONFT1155.sol contract DODONFT1155 is ERC1155, InitializableOwnable { using Strings for uint256; uint256 public _CUR_TOKENID_; string internal _baseUri = ""; mapping (uint256 => string) private _tokenURIs; // ============ Event ============= event DODONFTMint(address creator, uint256 tokenId, uint256 amount); event DODONFTBurn(address account, uint256 tokenId, uint256 amount); function mint(string calldata uri, uint256 amount) external { _mint(msg.sender, _CUR_TOKENID_, amount, ""); _setTokenURI(_CUR_TOKENID_, uri); emit DODONFTMint(msg.sender, _CUR_TOKENID_, amount); _CUR_TOKENID_ = _CUR_TOKENID_ + 1; } function burn(address account, uint256 tokenId, uint256 amount) external onlyOwner { require(tokenId < _CUR_TOKENID_, "TOKENID_INVALID"); _burn(account, tokenId, amount); emit DODONFTBurn(account, tokenId, amount); } function uri(uint256 tokenId) public view override returns (string memory) { string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseUri; if (bytes(base).length == 0) { return _tokenURI; } if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.uri(tokenId); } function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal { _tokenURIs[tokenId] = _tokenURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DODONFTBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"creator","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DODONFTMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferPrepared","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":[],"name":"_CUR_TOKENID_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_NEW_OWNER_","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_OWNER_","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"initOwner","outputs":[],"stateMutability":"nonpayable","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":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b9160069162000030565b503480156200002957600080fd5b50620000d5565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200007357805160ff1916838001178555620000a3565b82800160010185558215620000a3579182015b82811115620000a357825182559160200191906001019062000086565b50620000b1929150620000b5565b5090565b620000d291905b80821115620000b15760008155600101620000bc565b90565b611fca80620000e56000396000f3fe608060405234801561001057600080fd5b50600436106100ff5760003560e01c80634e71e0c811610097578063e985e9c511610066578063e985e9c514610643578063f242432a14610671578063f2fde38b1461073a578063f5298aca14610760576100ff565b80634e71e0c8146105fd5780638456db15146106055780638698dbd61461060d578063a22cb46514610615576100ff565b80630e89341c116100d35780630e89341c1461021357806316048bc4146102a55780632eb2c2d6146102c95780634e1273f41461048a576100ff565b8062fdd58e1461010457806301ffc9a714610142578063056b01ce1461017d5780630d009297146101ed575b600080fd5b6101306004803603604081101561011a57600080fd5b506001600160a01b038135169060200135610792565b60408051918252519081900360200190f35b6101696004803603602081101561015857600080fd5b50356001600160e01b0319166107ff565b604080519115158252519081900360200190f35b6101eb6004803603604081101561019357600080fd5b810190602081018135600160201b8111156101ad57600080fd5b8201836020820111156101bf57600080fd5b803590602001918460018302840111600160201b831117156101e057600080fd5b919350915035610847565b005b6101eb6004803603602081101561020357600080fd5b50356001600160a01b03166108f7565b6102306004803603602081101561022957600080fd5b503561097f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026a578181015183820152602001610252565b50505050905090810190601f1680156102975780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ad610b96565b604080516001600160a01b039092168252519081900360200190f35b6101eb600480360360a08110156102df57600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561031257600080fd5b82018360208201111561032457600080fd5b803590602001918460208302840111600160201b8311171561034557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561039457600080fd5b8201836020820111156103a657600080fd5b803590602001918460208302840111600160201b831117156103c757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561041657600080fd5b82018360208201111561042857600080fd5b803590602001918460018302840111600160201b8311171561044957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ba5945050505050565b6105ad600480360360408110156104a057600080fd5b810190602081018135600160201b8111156104ba57600080fd5b8201836020820111156104cc57600080fd5b803590602001918460208302840111600160201b831117156104ed57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561053c57600080fd5b82018360208201111561054e57600080fd5b803590602001918460208302840111600160201b8311171561056f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610e81945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156105e95781810151838201526020016105d1565b505050509050019250505060405180910390f35b6101eb610f6d565b6102ad611022565b610130611031565b6101eb6004803603604081101561062b57600080fd5b506001600160a01b0381351690602001351515611037565b6101696004803603604081101561065957600080fd5b506001600160a01b0381358116916020013516611126565b6101eb600480360360a081101561068757600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b8111156106c657600080fd5b8201836020820111156106d857600080fd5b803590602001918460018302840111600160201b831117156106f957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611154945050505050565b6101eb6004803603602081101561075057600080fd5b50356001600160a01b0316611317565b6101eb6004803603606081101561077657600080fd5b506001600160a01b0381351690602081013590604001356113be565b60006001600160a01b0383166107d95760405162461bcd60e51b815260040180806020018281038252602b815260200180611dde602b913960400191505060405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061083057506001600160e01b031982166303a24d0760e21b145b8061083f575061083f826114aa565b90505b919050565b6108643360055483604051806020016040528060008152506114c3565b6108a660055484848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506115a092505050565b600554604080513381526020810192909252818101839052517f1cc637e7e17fe14234f9ec66fa43a5d85a395e41025c2221c69bc4304c51e4099181900360600190a1505060058054600101905550565b600454600160a01b900460ff1615610949576040805162461bcd60e51b815260206004820152601060248201526f1113d113d7d25392551250531256915160821b604482015290519081900360640190fd5b6004805460ff60a01b1916600160a01b179055600380546001600160a01b039092166001600160a01b0319909216919091179055565b6000818152600760209081526040918290208054835160026001831615610100026000190190921691909104601f81018490048402820184019094528381526060938493919291830182828015610a175780601f106109ec57610100808354040283529160200191610a17565b820191906000526020600020905b8154815290600101906020018083116109fa57829003601f168201915b505060068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815296975060609695509193509150830182828015610aab5780601f10610a8057610100808354040283529160200191610aab565b820191906000526020600020905b815481529060010190602001808311610a8e57829003601f168201915b50505050509050805160001415610ac457509050610842565b815115610b855780826040516020018083805190602001908083835b60208310610aff5780518252601f199092019160209182019101610ae0565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310610b475780518252601f199092019160209182019101610b28565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610842565b610b8e846115c4565b949350505050565b6003546001600160a01b031681565b8151835114610be55760405162461bcd60e51b8152600401808060200182810382526028815260200180611f4c6028913960400191505060405180910390fd5b6001600160a01b038416610c2a5760405162461bcd60e51b8152600401808060200182810382526025815260200180611e566025913960400191505060405180910390fd5b610c32611659565b6001600160a01b0316856001600160a01b03161480610c5d5750610c5d85610c58611659565b611126565b610c985760405162461bcd60e51b8152600401808060200182810382526032815260200180611e7b6032913960400191505060405180910390fd5b6000610ca2611659565b9050610cb2818787878787610e79565b60005b8451811015610d91576000858281518110610ccc57fe5b602002602001015190506000858381518110610ce457fe5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610d535760405162461bcd60e51b815260040180806020018281038252602a815260200180611ed0602a913960400191505060405180910390fd5b6000928352602083815260408085206001600160a01b038d811687529252808520928490039092558916835290912080549091019055600101610cb5565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610e17578181015183820152602001610dff565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610e56578181015183820152602001610e3e565b5050505090500194505050505060405180910390a4610e7981878787878761165e565b505050505050565b60608151835114610ec35760405162461bcd60e51b8152600401808060200182810382526029815260200180611f236029913960400191505060405180910390fd5b6060835167ffffffffffffffff81118015610edd57600080fd5b50604051908082528060200260200182016040528015610f07578160200160208202803683370190505b50905060005b8451811015610f6557610f46858281518110610f2557fe5b6020026020010151858381518110610f3957fe5b6020026020010151610792565b828281518110610f5257fe5b6020908102919091010152600101610f0d565b509392505050565b6004546001600160a01b03163314610fbc576040805162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f434c41494d60981b604482015290519081900360640190fd5b6004546003546040516001600160a01b0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360048054600380546001600160a01b03199081166001600160a01b03841617909155169055565b6004546001600160a01b031681565b60055481565b816001600160a01b0316611049611659565b6001600160a01b0316141561108f5760405162461bcd60e51b8152600401808060200182810382526029815260200180611efa6029913960400191505060405180910390fd5b806001600061109c611659565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110e0611659565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160a01b0384166111995760405162461bcd60e51b8152600401808060200182810382526025815260200180611e566025913960400191505060405180910390fd5b6111a1611659565b6001600160a01b0316856001600160a01b031614806111c757506111c785610c58611659565b6112025760405162461bcd60e51b8152600401808060200182810382526029815260200180611e2d6029913960400191505060405180910390fd5b600061120c611659565b905061122c81878761121d88611924565b61122688611924565b87610e79565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561128c5760405162461bcd60e51b815260040180806020018281038252602a815260200180611ed0602a913960400191505060405180910390fd5b6000858152602081815260408083206001600160a01b038b811680865291845282852089870390558a81168086529483902080548a01905582518a815293840189905282519193908716927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292918290030190a461130e828888888888611968565b50505050505050565b6003546001600160a01b03163314611362576040805162461bcd60e51b81526020600482015260096024820152682727aa2fa7aba722a960b91b604482015290519081900360640190fd5b6003546040516001600160a01b038084169216907fdcf55418cee3220104fef63f979ff3c4097ad240c0c43dcb33ce837748983e6290600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b6003546001600160a01b03163314611409576040805162461bcd60e51b81526020600482015260096024820152682727aa2fa7aba722a960b91b604482015290519081900360640190fd5b6005548210611451576040805162461bcd60e51b815260206004820152600f60248201526e1513d2d153925117d2539590531251608a1b604482015290519081900360640190fd5b61145c838383611aeb565b604080516001600160a01b03851681526020810184905280820183905290517f4f5981d73961757911a242f9d6f11f93b6ae2773bcecaf170a2670a6afe957729181900360600190a1505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6001600160a01b0384166115085760405162461bcd60e51b8152600401808060200182810382526021815260200180611f746021913960400191505060405180910390fd5b6000611512611659565b90506115248160008761121d88611924565b6000848152602081815260408083206001600160a01b03808a1680865291845282852080548901905582518981529384018890528251919493908616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292918290030190a461159981600087878787611968565b5050505050565b600082815260076020908152604090912082516115bf92840190611c3b565b505050565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561164d5780601f106116225761010080835404028352916020019161164d565b820191906000526020600020905b81548152906001019060200180831161163057829003601f168201915b50505050509050919050565b335b90565b611670846001600160a01b0316611c35565b15610e7957836001600160a01b031663bc197c8187878686866040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156117105781810151838201526020016116f8565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561174f578181015183820152602001611737565b50505050905001848103825285818151815260200191508051906020019080838360005b8381101561178b578181015183820152602001611773565b50505050905090810190601f1680156117b85780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156117dd57600080fd5b505af192505050801561180257506040513d60208110156117fd57600080fd5b505160015b6118d55761180e611cd9565b80611819575061189e565b8060405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561186357818101518382015260200161184b565b50505050905090810190601f1680156118905780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b60405162461bcd60e51b8152600401808060200182810382526034815260200180611d826034913960400191505060405180910390fd5b6001600160e01b0319811663bc197c8160e01b1461130e5760405162461bcd60e51b8152600401808060200182810382526028815260200180611db66028913960400191505060405180910390fd5b60408051600180825281830190925260609182919060208083019080368337019050509050828160008151811061195757fe5b602090810291909101015292915050565b61197a846001600160a01b0316611c35565b15610e7957836001600160a01b031663f23a6e6187878686866040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611a1b578181015183820152602001611a03565b50505050905090810190601f168015611a485780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b158015611a6b57600080fd5b505af1925050508015611a9057506040513d6020811015611a8b57600080fd5b505160015b611a9c5761180e611cd9565b6001600160e01b0319811663f23a6e6160e01b1461130e5760405162461bcd60e51b8152600401808060200182810382526028815260200180611db66028913960400191505060405180910390fd5b6001600160a01b038316611b305760405162461bcd60e51b8152600401808060200182810382526023815260200180611ead6023913960400191505060405180910390fd5b6000611b3a611659565b9050611b6a81856000611b4c87611924565b611b5587611924565b60405180602001604052806000815250610e79565b6000838152602081815260408083206001600160a01b038816845290915290205482811015611bca5760405162461bcd60e51b8152600401808060200182810382526024815260200180611e096024913960400191505060405180910390fd5b6000848152602081815260408083206001600160a01b03808a168086529184528285208887039055825189815293840188905282519193908716927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292918290030190a45050505050565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611c7c57805160ff1916838001178555611ca9565b82800160010185558215611ca9579182015b82811115611ca9578251825591602001919060010190611c8e565b50611cb5929150611cb9565b5090565b61165b91905b80821115611cb55760008155600101611cbf565b60e01c90565b600060443d1015611ce95761165b565b600481823e6308c379a0611cfd8251611cd3565b14611d075761165b565b6040513d600319016004823e80513d67ffffffffffffffff8160248401118184111715611d37575050505061165b565b82840191508151925080831115611d51575050505061165b565b503d83016020838301011115611d695750505061165b565b601f91909101601f191681016020016040529150509056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a2646970667358221220acf9f5410e67454a2ac6ead84a6eb6f91d749de026e65e963474860039bd6c7164736f6c63430006090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ff5760003560e01c80634e71e0c811610097578063e985e9c511610066578063e985e9c514610643578063f242432a14610671578063f2fde38b1461073a578063f5298aca14610760576100ff565b80634e71e0c8146105fd5780638456db15146106055780638698dbd61461060d578063a22cb46514610615576100ff565b80630e89341c116100d35780630e89341c1461021357806316048bc4146102a55780632eb2c2d6146102c95780634e1273f41461048a576100ff565b8062fdd58e1461010457806301ffc9a714610142578063056b01ce1461017d5780630d009297146101ed575b600080fd5b6101306004803603604081101561011a57600080fd5b506001600160a01b038135169060200135610792565b60408051918252519081900360200190f35b6101696004803603602081101561015857600080fd5b50356001600160e01b0319166107ff565b604080519115158252519081900360200190f35b6101eb6004803603604081101561019357600080fd5b810190602081018135600160201b8111156101ad57600080fd5b8201836020820111156101bf57600080fd5b803590602001918460018302840111600160201b831117156101e057600080fd5b919350915035610847565b005b6101eb6004803603602081101561020357600080fd5b50356001600160a01b03166108f7565b6102306004803603602081101561022957600080fd5b503561097f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026a578181015183820152602001610252565b50505050905090810190601f1680156102975780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ad610b96565b604080516001600160a01b039092168252519081900360200190f35b6101eb600480360360a08110156102df57600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561031257600080fd5b82018360208201111561032457600080fd5b803590602001918460208302840111600160201b8311171561034557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561039457600080fd5b8201836020820111156103a657600080fd5b803590602001918460208302840111600160201b831117156103c757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561041657600080fd5b82018360208201111561042857600080fd5b803590602001918460018302840111600160201b8311171561044957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ba5945050505050565b6105ad600480360360408110156104a057600080fd5b810190602081018135600160201b8111156104ba57600080fd5b8201836020820111156104cc57600080fd5b803590602001918460208302840111600160201b831117156104ed57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561053c57600080fd5b82018360208201111561054e57600080fd5b803590602001918460208302840111600160201b8311171561056f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610e81945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156105e95781810151838201526020016105d1565b505050509050019250505060405180910390f35b6101eb610f6d565b6102ad611022565b610130611031565b6101eb6004803603604081101561062b57600080fd5b506001600160a01b0381351690602001351515611037565b6101696004803603604081101561065957600080fd5b506001600160a01b0381358116916020013516611126565b6101eb600480360360a081101561068757600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b8111156106c657600080fd5b8201836020820111156106d857600080fd5b803590602001918460018302840111600160201b831117156106f957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611154945050505050565b6101eb6004803603602081101561075057600080fd5b50356001600160a01b0316611317565b6101eb6004803603606081101561077657600080fd5b506001600160a01b0381351690602081013590604001356113be565b60006001600160a01b0383166107d95760405162461bcd60e51b815260040180806020018281038252602b815260200180611dde602b913960400191505060405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061083057506001600160e01b031982166303a24d0760e21b145b8061083f575061083f826114aa565b90505b919050565b6108643360055483604051806020016040528060008152506114c3565b6108a660055484848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506115a092505050565b600554604080513381526020810192909252818101839052517f1cc637e7e17fe14234f9ec66fa43a5d85a395e41025c2221c69bc4304c51e4099181900360600190a1505060058054600101905550565b600454600160a01b900460ff1615610949576040805162461bcd60e51b815260206004820152601060248201526f1113d113d7d25392551250531256915160821b604482015290519081900360640190fd5b6004805460ff60a01b1916600160a01b179055600380546001600160a01b039092166001600160a01b0319909216919091179055565b6000818152600760209081526040918290208054835160026001831615610100026000190190921691909104601f81018490048402820184019094528381526060938493919291830182828015610a175780601f106109ec57610100808354040283529160200191610a17565b820191906000526020600020905b8154815290600101906020018083116109fa57829003601f168201915b505060068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815296975060609695509193509150830182828015610aab5780601f10610a8057610100808354040283529160200191610aab565b820191906000526020600020905b815481529060010190602001808311610a8e57829003601f168201915b50505050509050805160001415610ac457509050610842565b815115610b855780826040516020018083805190602001908083835b60208310610aff5780518252601f199092019160209182019101610ae0565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310610b475780518252601f199092019160209182019101610b28565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610842565b610b8e846115c4565b949350505050565b6003546001600160a01b031681565b8151835114610be55760405162461bcd60e51b8152600401808060200182810382526028815260200180611f4c6028913960400191505060405180910390fd5b6001600160a01b038416610c2a5760405162461bcd60e51b8152600401808060200182810382526025815260200180611e566025913960400191505060405180910390fd5b610c32611659565b6001600160a01b0316856001600160a01b03161480610c5d5750610c5d85610c58611659565b611126565b610c985760405162461bcd60e51b8152600401808060200182810382526032815260200180611e7b6032913960400191505060405180910390fd5b6000610ca2611659565b9050610cb2818787878787610e79565b60005b8451811015610d91576000858281518110610ccc57fe5b602002602001015190506000858381518110610ce457fe5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610d535760405162461bcd60e51b815260040180806020018281038252602a815260200180611ed0602a913960400191505060405180910390fd5b6000928352602083815260408085206001600160a01b038d811687529252808520928490039092558916835290912080549091019055600101610cb5565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610e17578181015183820152602001610dff565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610e56578181015183820152602001610e3e565b5050505090500194505050505060405180910390a4610e7981878787878761165e565b505050505050565b60608151835114610ec35760405162461bcd60e51b8152600401808060200182810382526029815260200180611f236029913960400191505060405180910390fd5b6060835167ffffffffffffffff81118015610edd57600080fd5b50604051908082528060200260200182016040528015610f07578160200160208202803683370190505b50905060005b8451811015610f6557610f46858281518110610f2557fe5b6020026020010151858381518110610f3957fe5b6020026020010151610792565b828281518110610f5257fe5b6020908102919091010152600101610f0d565b509392505050565b6004546001600160a01b03163314610fbc576040805162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f434c41494d60981b604482015290519081900360640190fd5b6004546003546040516001600160a01b0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360048054600380546001600160a01b03199081166001600160a01b03841617909155169055565b6004546001600160a01b031681565b60055481565b816001600160a01b0316611049611659565b6001600160a01b0316141561108f5760405162461bcd60e51b8152600401808060200182810382526029815260200180611efa6029913960400191505060405180910390fd5b806001600061109c611659565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110e0611659565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160a01b0384166111995760405162461bcd60e51b8152600401808060200182810382526025815260200180611e566025913960400191505060405180910390fd5b6111a1611659565b6001600160a01b0316856001600160a01b031614806111c757506111c785610c58611659565b6112025760405162461bcd60e51b8152600401808060200182810382526029815260200180611e2d6029913960400191505060405180910390fd5b600061120c611659565b905061122c81878761121d88611924565b61122688611924565b87610e79565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561128c5760405162461bcd60e51b815260040180806020018281038252602a815260200180611ed0602a913960400191505060405180910390fd5b6000858152602081815260408083206001600160a01b038b811680865291845282852089870390558a81168086529483902080548a01905582518a815293840189905282519193908716927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292918290030190a461130e828888888888611968565b50505050505050565b6003546001600160a01b03163314611362576040805162461bcd60e51b81526020600482015260096024820152682727aa2fa7aba722a960b91b604482015290519081900360640190fd5b6003546040516001600160a01b038084169216907fdcf55418cee3220104fef63f979ff3c4097ad240c0c43dcb33ce837748983e6290600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b6003546001600160a01b03163314611409576040805162461bcd60e51b81526020600482015260096024820152682727aa2fa7aba722a960b91b604482015290519081900360640190fd5b6005548210611451576040805162461bcd60e51b815260206004820152600f60248201526e1513d2d153925117d2539590531251608a1b604482015290519081900360640190fd5b61145c838383611aeb565b604080516001600160a01b03851681526020810184905280820183905290517f4f5981d73961757911a242f9d6f11f93b6ae2773bcecaf170a2670a6afe957729181900360600190a1505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6001600160a01b0384166115085760405162461bcd60e51b8152600401808060200182810382526021815260200180611f746021913960400191505060405180910390fd5b6000611512611659565b90506115248160008761121d88611924565b6000848152602081815260408083206001600160a01b03808a1680865291845282852080548901905582518981529384018890528251919493908616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292918290030190a461159981600087878787611968565b5050505050565b600082815260076020908152604090912082516115bf92840190611c3b565b505050565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561164d5780601f106116225761010080835404028352916020019161164d565b820191906000526020600020905b81548152906001019060200180831161163057829003601f168201915b50505050509050919050565b335b90565b611670846001600160a01b0316611c35565b15610e7957836001600160a01b031663bc197c8187878686866040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156117105781810151838201526020016116f8565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561174f578181015183820152602001611737565b50505050905001848103825285818151815260200191508051906020019080838360005b8381101561178b578181015183820152602001611773565b50505050905090810190601f1680156117b85780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156117dd57600080fd5b505af192505050801561180257506040513d60208110156117fd57600080fd5b505160015b6118d55761180e611cd9565b80611819575061189e565b8060405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561186357818101518382015260200161184b565b50505050905090810190601f1680156118905780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b60405162461bcd60e51b8152600401808060200182810382526034815260200180611d826034913960400191505060405180910390fd5b6001600160e01b0319811663bc197c8160e01b1461130e5760405162461bcd60e51b8152600401808060200182810382526028815260200180611db66028913960400191505060405180910390fd5b60408051600180825281830190925260609182919060208083019080368337019050509050828160008151811061195757fe5b602090810291909101015292915050565b61197a846001600160a01b0316611c35565b15610e7957836001600160a01b031663f23a6e6187878686866040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611a1b578181015183820152602001611a03565b50505050905090810190601f168015611a485780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b158015611a6b57600080fd5b505af1925050508015611a9057506040513d6020811015611a8b57600080fd5b505160015b611a9c5761180e611cd9565b6001600160e01b0319811663f23a6e6160e01b1461130e5760405162461bcd60e51b8152600401808060200182810382526028815260200180611db66028913960400191505060405180910390fd5b6001600160a01b038316611b305760405162461bcd60e51b8152600401808060200182810382526023815260200180611ead6023913960400191505060405180910390fd5b6000611b3a611659565b9050611b6a81856000611b4c87611924565b611b5587611924565b60405180602001604052806000815250610e79565b6000838152602081815260408083206001600160a01b038816845290915290205482811015611bca5760405162461bcd60e51b8152600401808060200182810382526024815260200180611e096024913960400191505060405180910390fd5b6000848152602081815260408083206001600160a01b03808a168086529184528285208887039055825189815293840188905282519193908716927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292918290030190a45050505050565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611c7c57805160ff1916838001178555611ca9565b82800160010185558215611ca9579182015b82811115611ca9578251825591602001919060010190611c8e565b50611cb5929150611cb9565b5090565b61165b91905b80821115611cb55760008155600101611cbf565b60e01c90565b600060443d1015611ce95761165b565b600481823e6308c379a0611cfd8251611cd3565b14611d075761165b565b6040513d600319016004823e80513d67ffffffffffffffff8160248401118184111715611d37575050505061165b565b82840191508151925080831115611d51575050505061165b565b503d83016020838301011115611d695750505061165b565b601f91909101601f191681016020016040529150509056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a2646970667358221220acf9f5410e67454a2ac6ead84a6eb6f91d749de026e65e963474860039bd6c7164736f6c63430006090033
Deployed Bytecode Sourcemap
34982:1509:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21801:231;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21801:231:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;20837:297;;;;;;;;;;;;;;;;-1:-1:-1;20837:297:0;-1:-1:-1;;;;;;20837:297:0;;:::i;:::-;;;;;;;;;;;;;;;;;;35400:272;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;35400:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;35400:272:0;;;;;;;;;;;;-1:-1:-1;35400:272:0;-1:-1:-1;35400:272:0;;:::i;:::-;;34393:127;;;;;;;;;;;;;;;;-1:-1:-1;34393:127:0;-1:-1:-1;;;;;34393:127:0;;:::i;35936:421::-;;;;;;;;;;;;;;;;-1:-1:-1;35936:421:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33760:22;;;:::i;:::-;;;;-1:-1:-1;;;;;33760:22:0;;;;;;;;;;;;;;24504:1239;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24504:1239:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;24504:1239:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;24504:1239:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24504:1239:0;;;;;;;;-1:-1:-1;24504:1239:0;;-1:-1:-1;;;;;24504:1239:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;24504:1239:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24504:1239:0;;;;;;;;-1:-1:-1;24504:1239:0;;-1:-1:-1;;;;;24504:1239:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;24504:1239:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24504:1239:0;;-1:-1:-1;24504:1239:0;;-1:-1:-1;;;;;24504:1239:0:i;22198:549::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;22198:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;22198:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22198:549:0;;;;;;;;-1:-1:-1;22198:549:0;;-1:-1:-1;;;;;22198:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;22198:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22198:549:0;;-1:-1:-1;22198:549:0;;-1:-1:-1;;;;;22198:549:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34699:228;;;:::i;33789:26::-;;;:::i;35077:28::-;;;:::i;22820:311::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22820:311:0;;;;;;;;;;:::i;23203:168::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23203:168:0;;;;;;;;;;:::i;23443:984::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23443:984:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23443:984:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23443:984:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23443:984:0;;-1:-1:-1;23443:984:0;;-1:-1:-1;;;;;23443:984:0:i;34528:163::-;;;;;;;;;;;;;;;;-1:-1:-1;34528:163:0;-1:-1:-1;;;;;34528:163:0;;:::i;35680:248::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35680:248:0;;;;;;;;;;;;;:::i;21801:231::-;21887:7;-1:-1:-1;;;;;21915:21:0;;21907:77;;;;-1:-1:-1;;;21907:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22002:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;22002:22:0;;;;;;;;;;;;21801:231::o;20837:297::-;20939:4;-1:-1:-1;;;;;;20963:41:0;;-1:-1:-1;;;20963:41:0;;:110;;-1:-1:-1;;;;;;;21021:52:0;;-1:-1:-1;;;21021:52:0;20963:110;:163;;;;21090:36;21114:11;21090:23;:36::i;:::-;20956:170;;20837:297;;;;:::o;35400:272::-;35471:44;35477:10;35489:13;;35504:6;35471:44;;;;;;;;;;;;:5;:44::i;:::-;35526:32;35539:13;;35554:3;;35526:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35526:12:0;;-1:-1:-1;;;35526:32:0:i;:::-;35598:13;;35574:46;;;35586:10;35574:46;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;35647:13:0;;;35663:1;35647:17;35631:33;;-1:-1:-1;35400:272:0:o;34393:127::-;34182:13;;-1:-1:-1;;;34182:13:0;;;;34181:14;34173:43;;;;;-1:-1:-1;;;34173:43:0;;;;;;;;;;;;-1:-1:-1;;;34173:43:0;;;;;;;;;;;;;;;34463:13:::1;:20:::0;;-1:-1:-1;;;;34463:20:0::1;-1:-1:-1::0;;;34463:20:0::1;::::0;;34494:7:::1;:18:::0;;-1:-1:-1;;;;;34494:18:0;;::::1;-1:-1:-1::0;;;;;;34494:18:0;;::::1;::::0;;;::::1;::::0;;34393:127::o;35936:421::-;36048:19;;;;:10;:19;;;;;;;;;36022:45;;;;;;;;;;;-1:-1:-1;;36022:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;35996:13;;;;36022:45;;36048:19;36022:45;;36048:19;36022:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36099:8:0;36078:29;;;;;;;;-1:-1:-1;;36078:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36022:45;;-1:-1:-1;36078:18:0;;:29;-1:-1:-1;36099:8:0;;-1:-1:-1;36078:29:0;-1:-1:-1;36078:29:0;;36099:8;36078:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36130:4;36124:18;36146:1;36124:23;36120:72;;;-1:-1:-1;36171:9:0;-1:-1:-1;36164:16:0;;36120:72;36208:23;;:27;36204:108;;36283:4;36289:9;36266:33;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36266:33:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36266:33:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36266:33:0;;;;;;;;;;;;;-1:-1:-1;;36266:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36252:48;;;;;;36204:108;36331:18;36341:7;36331:9;:18::i;:::-;36324:25;35936:421;-1:-1:-1;;;;35936:421:0:o;33760:22::-;;;-1:-1:-1;;;;;33760:22:0;;:::o;24504:1239::-;24769:7;:14;24755:3;:10;:28;24747:81;;;;-1:-1:-1;;;24747:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24847:16:0;;24839:66;;;;-1:-1:-1;;;24839:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24946:12;:10;:12::i;:::-;-1:-1:-1;;;;;24938:20:0;:4;-1:-1:-1;;;;;24938:20:0;;:60;;;;24962:36;24979:4;24985:12;:10;:12::i;:::-;24962:16;:36::i;:::-;24916:160;;;;-1:-1:-1;;;24916:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25089:16;25108:12;:10;:12::i;:::-;25089:31;;25133:60;25154:8;25164:4;25170:2;25174:3;25179:7;25188:4;25133:20;:60::i;:::-;25211:9;25206:377;25230:3;:10;25226:1;:14;25206:377;;;25262:10;25275:3;25279:1;25275:6;;;;;;;;;;;;;;25262:19;;25296:14;25313:7;25321:1;25313:10;;;;;;;;;;;;;;;;;;;25340:19;25362:13;;;;;;;;;;-1:-1:-1;;;;;25362:19:0;;;;;;;;;;;;25313:10;;-1:-1:-1;25404:21:0;;;;25396:76;;;;-1:-1:-1;;;25396:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25487:9;:13;;;;;;;;;;;-1:-1:-1;;;;;25487:19:0;;;;;;;;;;25509:20;;;;25487:42;;;25544:17;;;;;;;:27;;;;;;;-1:-1:-1;25242:3:0;25206:377;;;;25630:2;-1:-1:-1;;;;;25600:47:0;25624:4;-1:-1:-1;;;;;25600:47:0;25614:8;-1:-1:-1;;;;;25600:47:0;;25634:3;25639:7;25600:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25660:75;25696:8;25706:4;25712:2;25716:3;25721:7;25730:4;25660:35;:75::i;:::-;24504:1239;;;;;;:::o;22198:549::-;22379:16;22440:3;:10;22421:8;:15;:29;22413:83;;;;-1:-1:-1;;;22413:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22509:30;22556:8;:15;22542:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22542:30:0;-1:-1:-1;22509:63:0;-1:-1:-1;22590:9:0;22585:122;22609:8;:15;22605:1;:19;22585:122;;;22665:30;22675:8;22684:1;22675:11;;;;;;;;;;;;;;22688:3;22692:1;22688:6;;;;;;;;;;;;;;22665:9;:30::i;:::-;22646:13;22660:1;22646:16;;;;;;;;;;;;;;;;;:49;22626:3;;22585:122;;;-1:-1:-1;22726:13:0;22198:549;-1:-1:-1;;;22198:549:0:o;34699:228::-;34765:11;;-1:-1:-1;;;;;34765:11:0;34751:10;:25;34743:51;;;;;-1:-1:-1;;;34743:51:0;;;;;;;;;;;;-1:-1:-1;;;34743:51:0;;;;;;;;;;;;;;;34840:11;;34831:7;;34810:42;;-1:-1:-1;;;;;34840:11:0;;;;34831:7;;;;34810:42;;34840:11;;34810:42;34873:11;;;34863:7;:21;;-1:-1:-1;;;;;;34863:21:0;;;-1:-1:-1;;;;;34873:11:0;;34863:21;;;;34895:24;;;34699:228::o;33789:26::-;;;-1:-1:-1;;;;;33789:26:0;;:::o;35077:28::-;;;;:::o;22820:311::-;22939:8;-1:-1:-1;;;;;22923:24:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22923:24:0;;;22915:78;;;;-1:-1:-1;;;22915:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23051:8;23006:18;:32;23025:12;:10;:12::i;:::-;-1:-1:-1;;;;;23006:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23006:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23006:53:0;;;;;;;;;;;23090:12;:10;:12::i;:::-;23075:48;;;;;;;;;;-1:-1:-1;;;;;23075:48:0;;;;;;;;;;;;;;22820:311;;:::o;23203:168::-;-1:-1:-1;;;;;23326:27:0;;;23302:4;23326:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;23203:168::o;23443:984::-;-1:-1:-1;;;;;23669:16:0;;23661:66;;;;-1:-1:-1;;;23661:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23768:12;:10;:12::i;:::-;-1:-1:-1;;;;;23760:20:0;:4;-1:-1:-1;;;;;23760:20:0;;:60;;;;23784:36;23801:4;23807:12;:10;:12::i;23784:36::-;23738:151;;;;-1:-1:-1;;;23738:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23902:16;23921:12;:10;:12::i;:::-;23902:31;;23946:96;23967:8;23977:4;23983:2;23987:21;24005:2;23987:17;:21::i;:::-;24010:25;24028:6;24010:17;:25::i;:::-;24037:4;23946:20;:96::i;:::-;24055:19;24077:13;;;;;;;;;;;-1:-1:-1;;;;;24077:19:0;;;;;;;;;;24115:21;;;;24107:76;;;;-1:-1:-1;;;24107:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24194:9;:13;;;;;;;;;;;-1:-1:-1;;;;;24194:19:0;;;;;;;;;;;;24216:20;;;24194:42;;24247:17;;;;;;;;;;:27;;;;;;24292:46;;;;;;;;;;;;;24194:19;;24292:46;;;;;;;;;;;;;24351:68;24382:8;24392:4;24398:2;24402;24406:6;24414:4;24351:30;:68::i;:::-;23443:984;;;;;;;:::o;34528:163::-;34298:7;;-1:-1:-1;;;;;34298:7:0;34284:10;:21;34276:43;;;;;-1:-1:-1;;;34276:43:0;;;;;;;;;;;;-1:-1:-1;;;34276:43:0;;;;;;;;;;;;;;;34632:7:::1;::::0;34606:44:::1;::::0;-1:-1:-1;;;;;34606:44:0;;::::1;::::0;34632:7:::1;::::0;34606:44:::1;::::0;34632:7:::1;::::0;34606:44:::1;34661:11;:22:::0;;-1:-1:-1;;;;;;34661:22:0::1;-1:-1:-1::0;;;;;34661:22:0;;;::::1;::::0;;;::::1;::::0;;34528:163::o;35680:248::-;34298:7;;-1:-1:-1;;;;;34298:7:0;34284:10;:21;34276:43;;;;;-1:-1:-1;;;34276:43:0;;;;;;;;;;;;-1:-1:-1;;;34276:43:0;;;;;;;;;;;;;;;35792:13:::1;;35782:7;:23;35774:51;;;::::0;;-1:-1:-1;;;35774:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;35774:51:0;;;;;;;;;;;;;::::1;;35836:31;35842:7;35851;35860:6;35836:5;:31::i;:::-;35883:37;::::0;;-1:-1:-1;;;;;35883:37:0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;35680:248:::0;;;:::o;8865:157::-;-1:-1:-1;;;;;;8974:40:0;;-1:-1:-1;;;8974:40:0;8865:157;;;:::o;27076:556::-;-1:-1:-1;;;;;27191:21:0;;27183:67;;;;-1:-1:-1;;;27183:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27263:16;27282:12;:10;:12::i;:::-;27263:31;;27307:107;27328:8;27346:1;27350:7;27359:21;27377:2;27359:17;:21::i;27307:107::-;27427:9;:13;;;;;;;;;;;-1:-1:-1;;;;;27427:22:0;;;;;;;;;;;;:32;;;;;;27475:57;;;;;;;;;;;;;27427:22;;:9;27475:57;;;;;;;;;;;;;27545:79;27576:8;27594:1;27598:7;27607:2;27611:6;27619:4;27545:30;:79::i;:::-;27076:556;;;;;:::o;36365:123::-;36449:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;:::-;;36365:123;;:::o;21545:105::-;21638:4;21631:11;;;;;;;-1:-1:-1;;21631:11:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21605:13;;21631:11;;21638:4;;21631:11;;21638:4;21631:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21545:105;;;:::o;19640:98::-;19720:10;19640:98;;:::o;32560:799::-;32814:15;:2;-1:-1:-1;;;;;32814:13:0;;:15::i;:::-;32810:542;;;32867:2;-1:-1:-1;;;;;32850:43:0;;32894:8;32904:4;32910:3;32915:7;32924:4;32850:79;;;;;;;;;;;;;-1:-1:-1;;;;;32850:79:0;-1:-1:-1;;;;;32850:79:0;;;;;;-1:-1:-1;;;;;32850:79:0;-1:-1:-1;;;;;32850:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32850:79:0;;;32846:495;;;;;;;;;;;;;33214:6;33207:14;;-1:-1:-1;;;33207:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32846:495;33263:62;;-1:-1:-1;;;33263:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32846:495;-1:-1:-1;;;;;;32979:64:0;;-1:-1:-1;;;32979:64:0;32975:163;;33068:50;;-1:-1:-1;;;33068:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33367:198;33487:16;;;33501:1;33487:16;;;;;;;;;33433;;;;33487;;;;;;;;;;;;-1:-1:-1;33487:16:0;33462:41;;33525:7;33514:5;33520:1;33514:8;;;;;;;;;;;;;;;;;:18;33552:5;33367:198;-1:-1:-1;;33367:198:0:o;31790:762::-;32019:15;:2;-1:-1:-1;;;;;32019:13:0;;:15::i;:::-;32015:530;;;32072:2;-1:-1:-1;;;;;32055:38:0;;32094:8;32104:4;32110:2;32114:6;32122:4;32055:72;;;;;;;;;;;;;-1:-1:-1;;;;;32055:72:0;-1:-1:-1;;;;;32055:72:0;;;;;;-1:-1:-1;;;;;32055:72:0;-1:-1:-1;;;;;32055:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32055:72:0;;;32051:483;;;;;;-1:-1:-1;;;;;;32177:59:0;;-1:-1:-1;;;32177:59:0;32173:158;;32261:50;;-1:-1:-1;;;32261:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28936:605;-1:-1:-1;;;;;29032:21:0;;29024:69;;;;-1:-1:-1;;;29024:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29106:16;29125:12;:10;:12::i;:::-;29106:31;;29150:105;29171:8;29181:7;29198:1;29202:21;29220:2;29202:17;:21::i;:::-;29225:25;29243:6;29225:17;:25::i;:::-;29150:105;;;;;;;;;;;;:20;:105::i;:::-;29268:22;29293:13;;;;;;;;;;;-1:-1:-1;;;;;29293:22:0;;;;;;;;;;29334:24;;;;29326:73;;;;-1:-1:-1;;;29326:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29410:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29410:22:0;;;;;;;;;;;;29435:23;;;29410:48;;29476:57;;;;;;;;;;;;;29410:22;;29476:57;;;;;;;;;;;;;28936:605;;;;;:::o;11791:422::-;12158:20;12197:8;;;11791:422::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;110:106;195:3;191:15;;163:53;224:739;;297:4;279:16;276:26;273:2;;;305:5;;273:2;339:1;-1:-1;;318:23;414:10;357:34;-1:-1;382:8;357:34;;;406:19;396:2;;429:5;;396:2;460;454:9;496:16;-1:-1;;492:24;339:1;454:9;468:49;543:4;537:11;624:16;576:18;624:16;617:4;609:6;605:17;602:39;576:18;568:6;565:30;556:91;553:2;;;655:5;;;;;;553:2;693:6;687:4;683:17;672:28;;725:3;719:10;705:24;;576:18;740:6;737:30;734:2;;;770:5;;;;;;734:2;;847:16;841:4;837:27;807:4;814:6;802:3;794:27;;829:36;826:2;;;868:5;;;;;826:2;89:7;73:14;;;;-1:-1;;69:28;892:50;;807:4;892:50;460:2;881:62;900:3;-1:-1;;267:696;
Swarm Source
ipfs://acf9f5410e67454a2ac6ead84a6eb6f91d749de026e65e963474860039bd6c71
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.