Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
93 DEO
Holders
89
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:
derschutzeOne
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-08 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC165.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; /** * @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: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; /** * @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: @openzeppelin/contracts/token/ERC1155/ERC1155.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } } // File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.0; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] -= amounts[i]; } } } } // File: contracts/derschutzeNFT.sol pragma solidity ^0.8.0; /* __ __ __ _ ____________ ___/ /__ _______ ____/ / __ __/ /____ ___ / |/ / __/_ __/ / _ / -_) __(_-</ __/ _ \/ // / __/_ // -_) / / _/ / / \_,_/\__/_/ /___/\__/_//_/\_,_/\__//__/\__/ /_/|_/_/ /_/ */ /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require( feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice" ); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require( feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice" ); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } contract derschutzeOne is ERC1155Supply, ERC2981, Ownable, Pausable { event Mint(uint256 tokenId, uint256 amount, address recipient); address private _royaltiesReceiver; mapping(address => uint8) private whiteList; uint96 public constant royaltiesPercentage = 75; // 7.5 % uint8 public constant MAX_SUPPLY = 100; uint256 public perNftPrice = 0.05 ether; string private name_; string private symbol_; constructor( string memory _baseTokenUri, string memory _symbol, string memory _name ) ERC1155(_baseTokenUri) { _royaltiesReceiver = msg.sender; _setDefaultRoyalty(_royaltiesReceiver, royaltiesPercentage); name_ = _name; symbol_ = _symbol; } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } function name() public view returns (string memory) { return name_; } function symbol() public view returns (string memory) { return symbol_; } // set baseTokenUri, incase it needs to change in the future function setBaseUri(string memory _baseTokenUri) external onlyOwner { _setURI(_baseTokenUri); } // set per nft price, incase it needs to change in the future function setPerNftPrice(uint256 newPernftPrice) external onlyOwner { perNftPrice = newPernftPrice; } // check if the wallet is whitelisted and return the ID function whitelisted(address _address) external view returns(uint8) { return whiteList[_address]; } // add whitelist addresses to mint the nft of specific ids function addWhiteListed( address[] calldata _whiteListAddresses, uint8[] calldata _whiteListIds ) external onlyOwner { for (uint8 i = 0; i < _whiteListAddresses.length; i++) { whiteList[_whiteListAddresses[i]] = _whiteListIds[i]; } } // return the royalties Receiver function royaltiesReceiver() external view returns (address) { return _royaltiesReceiver; } // set the royalty beneficiary function setRoyaltiesReceiver(address newRoyaltiesReceiver) external onlyOwner { require(newRoyaltiesReceiver != _royaltiesReceiver); _royaltiesReceiver = newRoyaltiesReceiver; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, ERC2981) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } function _feeDenominator() internal pure virtual override returns (uint96) { return 1000; } // get the nft meta data for the specified id function uri(uint256 _id) public view override returns (string memory) { require(exists(_id), "URI: nonexistent token"); return string(abi.encodePacked(super.uri(_id), Strings.toString(_id))); } // return cap amount of specific id function getCapAmountOfToken(uint256 id) public pure returns (uint256) { if (id == 1) return 5; if (id == 2) return 21; if (id == 3) return 30; if (id == 4) return 29; if (id == 5) return 15; else revert("Wrong id"); } // Mint function only be called by whiteListed users function mint() external payable whenNotPaused { uint8 id = whiteList[msg.sender]; require(id != 0, "Not whitelisted"); require( totalSupply(id) < getCapAmountOfToken(id), "All tokens minted of this type" ); require(tx.origin == address(msg.sender)); require(msg.value == perNftPrice, "Invalid amount of ether send"); whiteList[msg.sender] = 0; _mint(msg.sender, id, 1, ""); emit Mint(id, 1, msg.sender); } // contract owner can with draw funds in the contract function ownerWithdraw() public onlyOwner { require(address(this).balance != 0,"No eth to withdraw"); payable(owner()).transfer(address(this).balance); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_name","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whiteListAddresses","type":"address[]"},{"internalType":"uint8[]","name":"_whiteListIds","type":"uint8[]"}],"name":"addWhiteListed","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":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getCapAmountOfToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perNftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltiesPercentage","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltiesReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPernftPrice","type":"uint256"}],"name":"setPerNftPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRoyaltiesReceiver","type":"address"}],"name":"setRoyaltiesReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405266b1a2bc2ec500006009553480156200001c57600080fd5b5060405162002cd838038062002cd88339810160408190526200003f9162000388565b826200004b81620000bb565b506200005733620000d4565b6006805460ff60a01b19169055600780546001600160a01b031916339081179091556200008690604b62000126565b80516200009b90600a9060208401906200022b565b508151620000b190600b9060208501906200022b565b505050506200046c565b8051620000d09060029060208401906200022b565b5050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6103e86001600160601b03821611156200019a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620001f25760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000191565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600455565b828054620002399062000419565b90600052602060002090601f0160209004810192826200025d5760008555620002a8565b82601f106200027857805160ff1916838001178555620002a8565b82800160010185558215620002a8579182015b82811115620002a85782518255916020019190600101906200028b565b50620002b6929150620002ba565b5090565b5b80821115620002b65760008155600101620002bb565b600082601f830112620002e357600080fd5b81516001600160401b038082111562000300576200030062000456565b604051601f8301601f19908116603f011681019082821181831017156200032b576200032b62000456565b816040528381526020925086838588010111156200034857600080fd5b600091505b838210156200036c57858201830151818301840152908201906200034d565b838211156200037e5760008385830101525b9695505050505050565b6000806000606084860312156200039e57600080fd5b83516001600160401b0380821115620003b657600080fd5b620003c487838801620002d1565b94506020860151915080821115620003db57600080fd5b620003e987838801620002d1565b935060408601519150808211156200040057600080fd5b506200040f86828701620002d1565b9150509250925092565b600181811c908216806200042e57607f821691505b602082108114156200045057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61285c806200047c6000396000f3fe6080604052600436106101db5760003560e01c8063715018a611610102578063a4f805f011610095578063d936547e11610064578063d936547e14610580578063e985e9c5146105b9578063f242432a14610602578063f2fde38b1461062257600080fd5b8063a4f805f0146104e6578063b514371514610506578063bd85b03914610526578063cafa8dfe1461055357600080fd5b80639713f742116100d15780639713f74214610468578063a0bcfc7f14610488578063a22cb465146104a8578063a3a51bd5146104c857600080fd5b8063715018a6146103f75780638456cb591461040c5780638da5cb5b1461042157806395d89b411461045357600080fd5b80632a55205a1161017a5780634311de8f116101495780634311de8f146103675780634e1273f41461037c5780634f558e79146103a95780635c975abb146103d857600080fd5b80632a55205a146102cc5780632eb2c2d61461030b57806332cb6b0c1461032b5780633f4ba83a1461035257600080fd5b80630e89341c116101b65780630e89341c1461026c57806311d87efc1461028c5780631249c58b146102ae5780631a70e63a146102b657600080fd5b8062fdd58e146101e757806301ffc9a71461021a57806306fdde031461024a57600080fd5b366101e257005b600080fd5b3480156101f357600080fd5b506102076102023660046120c4565b610642565b6040519081526020015b60405180910390f35b34801561022657600080fd5b5061023a61023536600461222b565b6106d9565b6040519015158152602001610211565b34801561025657600080fd5b5061025f610704565b6040516102119190612486565b34801561027857600080fd5b5061025f6102873660046122ae565b610796565b34801561029857600080fd5b506102ac6102a73660046120ee565b610826565b005b6102ac6108fa565b3480156102c257600080fd5b5061020760095481565b3480156102d857600080fd5b506102ec6102e73660046122c7565b610add565b604080516001600160a01b039093168352602083019190915201610211565b34801561031757600080fd5b506102ac610326366004611f79565b610b8b565b34801561033757600080fd5b50610340606481565b60405160ff9091168152602001610211565b34801561035e57600080fd5b506102ac610c1b565b34801561037357600080fd5b506102ac610c4f565b34801561038857600080fd5b5061039c61039736600461215a565b610cf7565b6040516102119190612445565b3480156103b557600080fd5b5061023a6103c43660046122ae565b600090815260036020526040902054151590565b3480156103e457600080fd5b50600654600160a01b900460ff1661023a565b34801561040357600080fd5b506102ac610e21565b34801561041857600080fd5b506102ac610e55565b34801561042d57600080fd5b506006546001600160a01b03165b6040516001600160a01b039091168152602001610211565b34801561045f57600080fd5b5061025f610e87565b34801561047457600080fd5b506102076104833660046122ae565b610e96565b34801561049457600080fd5b506102ac6104a3366004612265565b610f25565b3480156104b457600080fd5b506102ac6104c3366004612088565b610f58565b3480156104d457600080fd5b506007546001600160a01b031661043b565b3480156104f257600080fd5b506102ac6105013660046122ae565b610f67565b34801561051257600080fd5b506102ac610521366004611f2b565b610f96565b34801561053257600080fd5b506102076105413660046122ae565b60009081526003602052604090205490565b34801561055f57600080fd5b50610568604b81565b6040516001600160601b039091168152602001610211565b34801561058c57600080fd5b5061034061059b366004611f2b565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156105c557600080fd5b5061023a6105d4366004611f46565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561060e57600080fd5b506102ac61061d366004612023565b610ffd565b34801561062e57600080fd5b506102ac61063d366004611f2b565b611084565b60006001600160a01b0383166106b35760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b0319821663152a902d60e11b14806106fe57506106fe8261111c565b92915050565b6060600a80546107139061265b565b80601f016020809104026020016040519081016040528092919081815260200182805461073f9061265b565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b6000818152600360205260409020546060906107ed5760405162461bcd60e51b81526020600482015260166024820152752aa9249d103737b732bc34b9ba32b73a103a37b5b2b760511b60448201526064016106aa565b6107f682611141565b6107ff836111d5565b604051602001610810929190612373565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146108505760405162461bcd60e51b81526004016106aa90612570565b60005b60ff81168411156108f35782828260ff168181106108735761087361273e565b905060200201602081019061088891906122e9565b6008600087878560ff168181106108a1576108a161273e565b90506020020160208101906108b69190611f2b565b6001600160a01b031681526020810191909152604001600020805460ff191660ff92909216919091179055806108eb816126de565b915050610853565b5050505050565b600654600160a01b900460ff16156109475760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106aa565b3360009081526008602052604090205460ff16806109995760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b60448201526064016106aa565b6109a58160ff16610e96565b60ff821660009081526003602052604090205410610a055760405162461bcd60e51b815260206004820152601e60248201527f416c6c20746f6b656e73206d696e746564206f6620746869732074797065000060448201526064016106aa565b323314610a1157600080fd5b6009543414610a625760405162461bcd60e51b815260206004820152601c60248201527f496e76616c696420616d6f756e74206f662065746865722073656e640000000060448201526064016106aa565b336000818152600860209081526040808320805460ff1916905580519182019052908152610a98919060ff8416906001906112db565b6040805160ff8316815260016020820152338183015290517f8334f87aeaf76e52b061d93ee968e51fdd3ad53ca04e80271249227997aab3a09181900360600190a150565b60008281526005602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b525750604080518082019091526004546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906103e890610b71906001600160601b0316876125f5565b610b7b91906125e1565b91519350909150505b9250929050565b6001600160a01b038516331480610ba75750610ba785336105d4565b610c0e5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106aa565b6108f385858585856113eb565b6006546001600160a01b03163314610c455760405162461bcd60e51b81526004016106aa90612570565b610c4d6115d6565b565b6006546001600160a01b03163314610c795760405162461bcd60e51b81526004016106aa90612570565b47610cbb5760405162461bcd60e51b81526020600482015260126024820152714e6f2065746820746f20776974686472617760701b60448201526064016106aa565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610cf4573d6000803e3d6000fd5b50565b60608151835114610d5c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106aa565b6000835167ffffffffffffffff811115610d7857610d78612754565b604051908082528060200260200182016040528015610da1578160200160208202803683370190505b50905060005b8451811015610e1957610dec858281518110610dc557610dc561273e565b6020026020010151858381518110610ddf57610ddf61273e565b6020026020010151610642565b828281518110610dfe57610dfe61273e565b6020908102919091010152610e12816126c3565b9050610da7565b509392505050565b6006546001600160a01b03163314610e4b5760405162461bcd60e51b81526004016106aa90612570565b610c4d6000611673565b6006546001600160a01b03163314610e7f5760405162461bcd60e51b81526004016106aa90612570565b610c4d6116c5565b6060600b80546107139061265b565b60008160011415610ea957506005919050565b8160021415610eba57506015919050565b8160031415610ecb5750601e919050565b8160041415610edc5750601d919050565b8160051415610eed5750600f919050565b60405162461bcd60e51b815260206004820152600860248201526715dc9bdb99c81a5960c21b60448201526064016106aa565b919050565b6006546001600160a01b03163314610f4f5760405162461bcd60e51b81526004016106aa90612570565b610cf48161174d565b610f63338383611760565b5050565b6006546001600160a01b03163314610f915760405162461bcd60e51b81526004016106aa90612570565b600955565b6006546001600160a01b03163314610fc05760405162461bcd60e51b81526004016106aa90612570565b6007546001600160a01b0382811691161415610fdb57600080fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038516331480611019575061101985336105d4565b6110775760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016106aa565b6108f38585858585611841565b6006546001600160a01b031633146110ae5760405162461bcd60e51b81526004016106aa90612570565b6001600160a01b0381166111135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106aa565b610cf481611673565b60006001600160e01b0319821663152a902d60e11b14806106fe57506106fe8261195e565b6060600280546111509061265b565b80601f016020809104026020016040519081016040528092919081815260200182805461117c9061265b565b80156111c95780601f1061119e576101008083540402835291602001916111c9565b820191906000526020600020905b8154815290600101906020018083116111ac57829003601f168201915b50505050509050919050565b6060816111f95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611223578061120d816126c3565b915061121c9050600a836125e1565b91506111fd565b60008167ffffffffffffffff81111561123e5761123e612754565b6040519080825280601f01601f191660200182016040528015611268576020820181803683370190505b5090505b84156112d35761127d600183612614565b915061128a600a866126fe565b6112959060306125c9565b60f81b8183815181106112aa576112aa61273e565b60200101906001600160f81b031916908160001a9053506112cc600a866125e1565b945061126c565b949350505050565b6001600160a01b03841661133b5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106aa565b3361135b8160008761134c886119ae565b611355886119ae565b876119f9565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061138b9084906125c9565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46108f381600087878787611b05565b815183511461144d5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016106aa565b6001600160a01b0384166114735760405162461bcd60e51b81526004016106aa906124e1565b336114828187878787876119f9565b60005b84518110156115685760008582815181106114a2576114a261273e565b6020026020010151905060008583815181106114c0576114c061273e565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156115105760405162461bcd60e51b81526004016106aa90612526565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061154d9084906125c9565b9250508190555050505080611561906126c3565b9050611485565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115b8929190612458565b60405180910390a46115ce818787878787611c70565b505050505050565b600654600160a01b900460ff166116265760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106aa565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600654600160a01b900460ff16156117125760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106aa565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586116563390565b8051610f63906002906020840190611d3a565b816001600160a01b0316836001600160a01b031614156117d45760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106aa565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166118675760405162461bcd60e51b81526004016106aa906124e1565b3361187781878761134c886119ae565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156118b85760405162461bcd60e51b81526004016106aa90612526565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906118f59084906125c9565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611955828888888888611b05565b50505050505050565b60006001600160e01b03198216636cdb3d1360e11b148061198f57506001600160e01b031982166303a24d0760e21b145b806106fe57506301ffc9a760e01b6001600160e01b03198316146106fe565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106119e8576119e861273e565b602090810291909101015292915050565b6001600160a01b038516611a805760005b8351811015611a7e57828181518110611a2557611a2561273e565b602002602001015160036000868481518110611a4357611a4361273e565b602002602001015181526020019081526020016000206000828254611a6891906125c9565b90915550611a779050816126c3565b9050611a0a565b505b6001600160a01b0384166115ce5760005b835181101561195557828181518110611aac57611aac61273e565b602002602001015160036000868481518110611aca57611aca61273e565b602002602001015181526020019081526020016000206000828254611aef9190612614565b90915550611afe9050816126c3565b9050611a91565b6001600160a01b0384163b156115ce5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611b499089908990889088908890600401612400565b602060405180830381600087803b158015611b6357600080fd5b505af1925050508015611b93575060408051601f3d908101601f19168201909252611b9091810190612248565b60015b611c4057611b9f61276a565b806308c379a01415611bd95750611bb4612786565b80611bbf5750611bdb565b8060405162461bcd60e51b81526004016106aa9190612486565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106aa565b6001600160e01b0319811663f23a6e6160e01b146119555760405162461bcd60e51b81526004016106aa90612499565b6001600160a01b0384163b156115ce5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611cb490899089908890889088906004016123a2565b602060405180830381600087803b158015611cce57600080fd5b505af1925050508015611cfe575060408051601f3d908101601f19168201909252611cfb91810190612248565b60015b611d0a57611b9f61276a565b6001600160e01b0319811663bc197c8160e01b146119555760405162461bcd60e51b81526004016106aa90612499565b828054611d469061265b565b90600052602060002090601f016020900481019282611d685760008555611dae565b82601f10611d8157805160ff1916838001178555611dae565b82800160010185558215611dae579182015b82811115611dae578251825591602001919060010190611d93565b50611dba929150611dbe565b5090565b5b80821115611dba5760008155600101611dbf565b600067ffffffffffffffff831115611ded57611ded612754565b604051611e04601f8501601f191660200182612696565b809150838152848484011115611e1957600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114610f2057600080fd5b60008083601f840112611e5a57600080fd5b50813567ffffffffffffffff811115611e7257600080fd5b6020830191508360208260051b8501011115610b8457600080fd5b600082601f830112611e9e57600080fd5b81356020611eab826125a5565b604051611eb88282612696565b8381528281019150858301600585901b87018401881015611ed857600080fd5b60005b85811015611ef757813584529284019290840190600101611edb565b5090979650505050505050565b600082601f830112611f1557600080fd5b611f2483833560208501611dd3565b9392505050565b600060208284031215611f3d57600080fd5b611f2482611e31565b60008060408385031215611f5957600080fd5b611f6283611e31565b9150611f7060208401611e31565b90509250929050565b600080600080600060a08688031215611f9157600080fd5b611f9a86611e31565b9450611fa860208701611e31565b9350604086013567ffffffffffffffff80821115611fc557600080fd5b611fd189838a01611e8d565b94506060880135915080821115611fe757600080fd5b611ff389838a01611e8d565b9350608088013591508082111561200957600080fd5b5061201688828901611f04565b9150509295509295909350565b600080600080600060a0868803121561203b57600080fd5b61204486611e31565b945061205260208701611e31565b93506040860135925060608601359150608086013567ffffffffffffffff81111561207c57600080fd5b61201688828901611f04565b6000806040838503121561209b57600080fd5b6120a483611e31565b9150602083013580151581146120b957600080fd5b809150509250929050565b600080604083850312156120d757600080fd5b6120e083611e31565b946020939093013593505050565b6000806000806040858703121561210457600080fd5b843567ffffffffffffffff8082111561211c57600080fd5b61212888838901611e48565b9096509450602087013591508082111561214157600080fd5b5061214e87828801611e48565b95989497509550505050565b6000806040838503121561216d57600080fd5b823567ffffffffffffffff8082111561218557600080fd5b818501915085601f83011261219957600080fd5b813560206121a6826125a5565b6040516121b38282612696565b8381528281019150858301600585901b870184018b10156121d357600080fd5b600096505b848710156121fd576121e981611e31565b8352600196909601959183019183016121d8565b509650508601359250508082111561221457600080fd5b5061222185828601611e8d565b9150509250929050565b60006020828403121561223d57600080fd5b8135611f2481612810565b60006020828403121561225a57600080fd5b8151611f2481612810565b60006020828403121561227757600080fd5b813567ffffffffffffffff81111561228e57600080fd5b8201601f8101841361229f57600080fd5b6112d384823560208401611dd3565b6000602082840312156122c057600080fd5b5035919050565b600080604083850312156122da57600080fd5b50508035926020909101359150565b6000602082840312156122fb57600080fd5b813560ff81168114611f2457600080fd5b600081518084526020808501945080840160005b8381101561233c57815187529582019590820190600101612320565b509495945050505050565b6000815180845261235f81602086016020860161262b565b601f01601f19169290920160200192915050565b6000835161238581846020880161262b565b83519083019061239981836020880161262b565b01949350505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906123ce9083018661230c565b82810360608401526123e0818661230c565b905082810360808401526123f48185612347565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061243a90830184612347565b979650505050505050565b602081526000611f24602083018461230c565b60408152600061246b604083018561230c565b828103602084015261247d818561230c565b95945050505050565b602081526000611f246020830184612347565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156125bf576125bf612754565b5060051b60200190565b600082198211156125dc576125dc612712565b500190565b6000826125f0576125f0612728565b500490565b600081600019048311821515161561260f5761260f612712565b500290565b60008282101561262657612626612712565b500390565b60005b8381101561264657818101518382015260200161262e565b83811115612655576000848401525b50505050565b600181811c9082168061266f57607f821691505b6020821081141561269057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156126bc576126bc612754565b6040525050565b60006000198214156126d7576126d7612712565b5060010190565b600060ff821660ff8114156126f5576126f5612712565b60010192915050565b60008261270d5761270d612728565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156127835760046000803e5060005160e01c5b90565b600060443d10156127945790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156127c457505050505090565b82850191508151818111156127dc5750505050505090565b843d87010160208285010111156127f65750505050505090565b61280560208286010187612696565b509095945050505050565b6001600160e01b031981168114610cf457600080fdfea26469706673582212207ae07a0aa8a43dc84fe5b278d5c78174d20abc8e1b3d57a2c58e4ea354b87a5264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59774456674c5767746f506338547263766a636979774e316f6843675a48656b385141637739516e714a38442f00000000000000000000000000000000000000000000000000000000000000000000000000000000000344454f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001964657273636875747a653a206578636c7573697665206f6e6500000000000000
Deployed Bytecode
0x6080604052600436106101db5760003560e01c8063715018a611610102578063a4f805f011610095578063d936547e11610064578063d936547e14610580578063e985e9c5146105b9578063f242432a14610602578063f2fde38b1461062257600080fd5b8063a4f805f0146104e6578063b514371514610506578063bd85b03914610526578063cafa8dfe1461055357600080fd5b80639713f742116100d15780639713f74214610468578063a0bcfc7f14610488578063a22cb465146104a8578063a3a51bd5146104c857600080fd5b8063715018a6146103f75780638456cb591461040c5780638da5cb5b1461042157806395d89b411461045357600080fd5b80632a55205a1161017a5780634311de8f116101495780634311de8f146103675780634e1273f41461037c5780634f558e79146103a95780635c975abb146103d857600080fd5b80632a55205a146102cc5780632eb2c2d61461030b57806332cb6b0c1461032b5780633f4ba83a1461035257600080fd5b80630e89341c116101b65780630e89341c1461026c57806311d87efc1461028c5780631249c58b146102ae5780631a70e63a146102b657600080fd5b8062fdd58e146101e757806301ffc9a71461021a57806306fdde031461024a57600080fd5b366101e257005b600080fd5b3480156101f357600080fd5b506102076102023660046120c4565b610642565b6040519081526020015b60405180910390f35b34801561022657600080fd5b5061023a61023536600461222b565b6106d9565b6040519015158152602001610211565b34801561025657600080fd5b5061025f610704565b6040516102119190612486565b34801561027857600080fd5b5061025f6102873660046122ae565b610796565b34801561029857600080fd5b506102ac6102a73660046120ee565b610826565b005b6102ac6108fa565b3480156102c257600080fd5b5061020760095481565b3480156102d857600080fd5b506102ec6102e73660046122c7565b610add565b604080516001600160a01b039093168352602083019190915201610211565b34801561031757600080fd5b506102ac610326366004611f79565b610b8b565b34801561033757600080fd5b50610340606481565b60405160ff9091168152602001610211565b34801561035e57600080fd5b506102ac610c1b565b34801561037357600080fd5b506102ac610c4f565b34801561038857600080fd5b5061039c61039736600461215a565b610cf7565b6040516102119190612445565b3480156103b557600080fd5b5061023a6103c43660046122ae565b600090815260036020526040902054151590565b3480156103e457600080fd5b50600654600160a01b900460ff1661023a565b34801561040357600080fd5b506102ac610e21565b34801561041857600080fd5b506102ac610e55565b34801561042d57600080fd5b506006546001600160a01b03165b6040516001600160a01b039091168152602001610211565b34801561045f57600080fd5b5061025f610e87565b34801561047457600080fd5b506102076104833660046122ae565b610e96565b34801561049457600080fd5b506102ac6104a3366004612265565b610f25565b3480156104b457600080fd5b506102ac6104c3366004612088565b610f58565b3480156104d457600080fd5b506007546001600160a01b031661043b565b3480156104f257600080fd5b506102ac6105013660046122ae565b610f67565b34801561051257600080fd5b506102ac610521366004611f2b565b610f96565b34801561053257600080fd5b506102076105413660046122ae565b60009081526003602052604090205490565b34801561055f57600080fd5b50610568604b81565b6040516001600160601b039091168152602001610211565b34801561058c57600080fd5b5061034061059b366004611f2b565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156105c557600080fd5b5061023a6105d4366004611f46565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561060e57600080fd5b506102ac61061d366004612023565b610ffd565b34801561062e57600080fd5b506102ac61063d366004611f2b565b611084565b60006001600160a01b0383166106b35760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b0319821663152a902d60e11b14806106fe57506106fe8261111c565b92915050565b6060600a80546107139061265b565b80601f016020809104026020016040519081016040528092919081815260200182805461073f9061265b565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b6000818152600360205260409020546060906107ed5760405162461bcd60e51b81526020600482015260166024820152752aa9249d103737b732bc34b9ba32b73a103a37b5b2b760511b60448201526064016106aa565b6107f682611141565b6107ff836111d5565b604051602001610810929190612373565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146108505760405162461bcd60e51b81526004016106aa90612570565b60005b60ff81168411156108f35782828260ff168181106108735761087361273e565b905060200201602081019061088891906122e9565b6008600087878560ff168181106108a1576108a161273e565b90506020020160208101906108b69190611f2b565b6001600160a01b031681526020810191909152604001600020805460ff191660ff92909216919091179055806108eb816126de565b915050610853565b5050505050565b600654600160a01b900460ff16156109475760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106aa565b3360009081526008602052604090205460ff16806109995760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b60448201526064016106aa565b6109a58160ff16610e96565b60ff821660009081526003602052604090205410610a055760405162461bcd60e51b815260206004820152601e60248201527f416c6c20746f6b656e73206d696e746564206f6620746869732074797065000060448201526064016106aa565b323314610a1157600080fd5b6009543414610a625760405162461bcd60e51b815260206004820152601c60248201527f496e76616c696420616d6f756e74206f662065746865722073656e640000000060448201526064016106aa565b336000818152600860209081526040808320805460ff1916905580519182019052908152610a98919060ff8416906001906112db565b6040805160ff8316815260016020820152338183015290517f8334f87aeaf76e52b061d93ee968e51fdd3ad53ca04e80271249227997aab3a09181900360600190a150565b60008281526005602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b525750604080518082019091526004546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906103e890610b71906001600160601b0316876125f5565b610b7b91906125e1565b91519350909150505b9250929050565b6001600160a01b038516331480610ba75750610ba785336105d4565b610c0e5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106aa565b6108f385858585856113eb565b6006546001600160a01b03163314610c455760405162461bcd60e51b81526004016106aa90612570565b610c4d6115d6565b565b6006546001600160a01b03163314610c795760405162461bcd60e51b81526004016106aa90612570565b47610cbb5760405162461bcd60e51b81526020600482015260126024820152714e6f2065746820746f20776974686472617760701b60448201526064016106aa565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610cf4573d6000803e3d6000fd5b50565b60608151835114610d5c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106aa565b6000835167ffffffffffffffff811115610d7857610d78612754565b604051908082528060200260200182016040528015610da1578160200160208202803683370190505b50905060005b8451811015610e1957610dec858281518110610dc557610dc561273e565b6020026020010151858381518110610ddf57610ddf61273e565b6020026020010151610642565b828281518110610dfe57610dfe61273e565b6020908102919091010152610e12816126c3565b9050610da7565b509392505050565b6006546001600160a01b03163314610e4b5760405162461bcd60e51b81526004016106aa90612570565b610c4d6000611673565b6006546001600160a01b03163314610e7f5760405162461bcd60e51b81526004016106aa90612570565b610c4d6116c5565b6060600b80546107139061265b565b60008160011415610ea957506005919050565b8160021415610eba57506015919050565b8160031415610ecb5750601e919050565b8160041415610edc5750601d919050565b8160051415610eed5750600f919050565b60405162461bcd60e51b815260206004820152600860248201526715dc9bdb99c81a5960c21b60448201526064016106aa565b919050565b6006546001600160a01b03163314610f4f5760405162461bcd60e51b81526004016106aa90612570565b610cf48161174d565b610f63338383611760565b5050565b6006546001600160a01b03163314610f915760405162461bcd60e51b81526004016106aa90612570565b600955565b6006546001600160a01b03163314610fc05760405162461bcd60e51b81526004016106aa90612570565b6007546001600160a01b0382811691161415610fdb57600080fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038516331480611019575061101985336105d4565b6110775760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016106aa565b6108f38585858585611841565b6006546001600160a01b031633146110ae5760405162461bcd60e51b81526004016106aa90612570565b6001600160a01b0381166111135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106aa565b610cf481611673565b60006001600160e01b0319821663152a902d60e11b14806106fe57506106fe8261195e565b6060600280546111509061265b565b80601f016020809104026020016040519081016040528092919081815260200182805461117c9061265b565b80156111c95780601f1061119e576101008083540402835291602001916111c9565b820191906000526020600020905b8154815290600101906020018083116111ac57829003601f168201915b50505050509050919050565b6060816111f95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611223578061120d816126c3565b915061121c9050600a836125e1565b91506111fd565b60008167ffffffffffffffff81111561123e5761123e612754565b6040519080825280601f01601f191660200182016040528015611268576020820181803683370190505b5090505b84156112d35761127d600183612614565b915061128a600a866126fe565b6112959060306125c9565b60f81b8183815181106112aa576112aa61273e565b60200101906001600160f81b031916908160001a9053506112cc600a866125e1565b945061126c565b949350505050565b6001600160a01b03841661133b5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106aa565b3361135b8160008761134c886119ae565b611355886119ae565b876119f9565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061138b9084906125c9565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46108f381600087878787611b05565b815183511461144d5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016106aa565b6001600160a01b0384166114735760405162461bcd60e51b81526004016106aa906124e1565b336114828187878787876119f9565b60005b84518110156115685760008582815181106114a2576114a261273e565b6020026020010151905060008583815181106114c0576114c061273e565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156115105760405162461bcd60e51b81526004016106aa90612526565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061154d9084906125c9565b9250508190555050505080611561906126c3565b9050611485565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115b8929190612458565b60405180910390a46115ce818787878787611c70565b505050505050565b600654600160a01b900460ff166116265760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106aa565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600654600160a01b900460ff16156117125760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106aa565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586116563390565b8051610f63906002906020840190611d3a565b816001600160a01b0316836001600160a01b031614156117d45760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106aa565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166118675760405162461bcd60e51b81526004016106aa906124e1565b3361187781878761134c886119ae565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156118b85760405162461bcd60e51b81526004016106aa90612526565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906118f59084906125c9565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611955828888888888611b05565b50505050505050565b60006001600160e01b03198216636cdb3d1360e11b148061198f57506001600160e01b031982166303a24d0760e21b145b806106fe57506301ffc9a760e01b6001600160e01b03198316146106fe565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106119e8576119e861273e565b602090810291909101015292915050565b6001600160a01b038516611a805760005b8351811015611a7e57828181518110611a2557611a2561273e565b602002602001015160036000868481518110611a4357611a4361273e565b602002602001015181526020019081526020016000206000828254611a6891906125c9565b90915550611a779050816126c3565b9050611a0a565b505b6001600160a01b0384166115ce5760005b835181101561195557828181518110611aac57611aac61273e565b602002602001015160036000868481518110611aca57611aca61273e565b602002602001015181526020019081526020016000206000828254611aef9190612614565b90915550611afe9050816126c3565b9050611a91565b6001600160a01b0384163b156115ce5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611b499089908990889088908890600401612400565b602060405180830381600087803b158015611b6357600080fd5b505af1925050508015611b93575060408051601f3d908101601f19168201909252611b9091810190612248565b60015b611c4057611b9f61276a565b806308c379a01415611bd95750611bb4612786565b80611bbf5750611bdb565b8060405162461bcd60e51b81526004016106aa9190612486565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106aa565b6001600160e01b0319811663f23a6e6160e01b146119555760405162461bcd60e51b81526004016106aa90612499565b6001600160a01b0384163b156115ce5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611cb490899089908890889088906004016123a2565b602060405180830381600087803b158015611cce57600080fd5b505af1925050508015611cfe575060408051601f3d908101601f19168201909252611cfb91810190612248565b60015b611d0a57611b9f61276a565b6001600160e01b0319811663bc197c8160e01b146119555760405162461bcd60e51b81526004016106aa90612499565b828054611d469061265b565b90600052602060002090601f016020900481019282611d685760008555611dae565b82601f10611d8157805160ff1916838001178555611dae565b82800160010185558215611dae579182015b82811115611dae578251825591602001919060010190611d93565b50611dba929150611dbe565b5090565b5b80821115611dba5760008155600101611dbf565b600067ffffffffffffffff831115611ded57611ded612754565b604051611e04601f8501601f191660200182612696565b809150838152848484011115611e1957600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114610f2057600080fd5b60008083601f840112611e5a57600080fd5b50813567ffffffffffffffff811115611e7257600080fd5b6020830191508360208260051b8501011115610b8457600080fd5b600082601f830112611e9e57600080fd5b81356020611eab826125a5565b604051611eb88282612696565b8381528281019150858301600585901b87018401881015611ed857600080fd5b60005b85811015611ef757813584529284019290840190600101611edb565b5090979650505050505050565b600082601f830112611f1557600080fd5b611f2483833560208501611dd3565b9392505050565b600060208284031215611f3d57600080fd5b611f2482611e31565b60008060408385031215611f5957600080fd5b611f6283611e31565b9150611f7060208401611e31565b90509250929050565b600080600080600060a08688031215611f9157600080fd5b611f9a86611e31565b9450611fa860208701611e31565b9350604086013567ffffffffffffffff80821115611fc557600080fd5b611fd189838a01611e8d565b94506060880135915080821115611fe757600080fd5b611ff389838a01611e8d565b9350608088013591508082111561200957600080fd5b5061201688828901611f04565b9150509295509295909350565b600080600080600060a0868803121561203b57600080fd5b61204486611e31565b945061205260208701611e31565b93506040860135925060608601359150608086013567ffffffffffffffff81111561207c57600080fd5b61201688828901611f04565b6000806040838503121561209b57600080fd5b6120a483611e31565b9150602083013580151581146120b957600080fd5b809150509250929050565b600080604083850312156120d757600080fd5b6120e083611e31565b946020939093013593505050565b6000806000806040858703121561210457600080fd5b843567ffffffffffffffff8082111561211c57600080fd5b61212888838901611e48565b9096509450602087013591508082111561214157600080fd5b5061214e87828801611e48565b95989497509550505050565b6000806040838503121561216d57600080fd5b823567ffffffffffffffff8082111561218557600080fd5b818501915085601f83011261219957600080fd5b813560206121a6826125a5565b6040516121b38282612696565b8381528281019150858301600585901b870184018b10156121d357600080fd5b600096505b848710156121fd576121e981611e31565b8352600196909601959183019183016121d8565b509650508601359250508082111561221457600080fd5b5061222185828601611e8d565b9150509250929050565b60006020828403121561223d57600080fd5b8135611f2481612810565b60006020828403121561225a57600080fd5b8151611f2481612810565b60006020828403121561227757600080fd5b813567ffffffffffffffff81111561228e57600080fd5b8201601f8101841361229f57600080fd5b6112d384823560208401611dd3565b6000602082840312156122c057600080fd5b5035919050565b600080604083850312156122da57600080fd5b50508035926020909101359150565b6000602082840312156122fb57600080fd5b813560ff81168114611f2457600080fd5b600081518084526020808501945080840160005b8381101561233c57815187529582019590820190600101612320565b509495945050505050565b6000815180845261235f81602086016020860161262b565b601f01601f19169290920160200192915050565b6000835161238581846020880161262b565b83519083019061239981836020880161262b565b01949350505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906123ce9083018661230c565b82810360608401526123e0818661230c565b905082810360808401526123f48185612347565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061243a90830184612347565b979650505050505050565b602081526000611f24602083018461230c565b60408152600061246b604083018561230c565b828103602084015261247d818561230c565b95945050505050565b602081526000611f246020830184612347565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156125bf576125bf612754565b5060051b60200190565b600082198211156125dc576125dc612712565b500190565b6000826125f0576125f0612728565b500490565b600081600019048311821515161561260f5761260f612712565b500290565b60008282101561262657612626612712565b500390565b60005b8381101561264657818101518382015260200161262e565b83811115612655576000848401525b50505050565b600181811c9082168061266f57607f821691505b6020821081141561269057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156126bc576126bc612754565b6040525050565b60006000198214156126d7576126d7612712565b5060010190565b600060ff821660ff8114156126f5576126f5612712565b60010192915050565b60008261270d5761270d612728565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156127835760046000803e5060005160e01c5b90565b600060443d10156127945790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156127c457505050505090565b82850191508151818111156127dc5750505050505090565b843d87010160208285010111156127f65750505050505090565b61280560208286010187612696565b509095945050505050565b6001600160e01b031981168114610cf457600080fdfea26469706673582212207ae07a0aa8a43dc84fe5b278d5c78174d20abc8e1b3d57a2c58e4ea354b87a5264736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59774456674c5767746f506338547263766a636979774e316f6843675a48656b385141637739516e714a38442f00000000000000000000000000000000000000000000000000000000000000000000000000000000000344454f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001964657273636875747a653a206578636c7573697665206f6e6500000000000000
-----Decoded View---------------
Arg [0] : _baseTokenUri (string): ipfs://QmYwDVgLWgtoPc8TrcvjciywN1ohCgZHek8QAcw9QnqJ8D/
Arg [1] : _symbol (string): DEO
Arg [2] : _name (string): derschutze: exclusive one
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d59774456674c5767746f506338547263766a636979774e
Arg [5] : 316f6843675a48656b385141637739516e714a38442f00000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 44454f0000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [9] : 64657273636875747a653a206578636c7573697665206f6e6500000000000000
Deployed Bytecode Sourcemap
48495:4357:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28388:231;;;;;;;;;;-1:-1:-1;28388:231:0;;;;;:::i;:::-;;:::i;:::-;;;20732:25:1;;;20720:2;20705:18;28388:231:0;;;;;;;;50947:292;;;;;;;;;;-1:-1:-1;50947:292:0;;;;;:::i;:::-;;:::i;:::-;;;12260:14:1;;12253:22;12235:41;;12223:2;12208:18;50947:292:0;12095:187:1;49414:83:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51411:219::-;;;;;;;;;;-1:-1:-1;51411:219:0;;;;;:::i;:::-;;:::i;50220:292::-;;;;;;;;;;-1:-1:-1;50220:292:0;;;;;:::i;:::-;;:::i;:::-;;52029:540;;;:::i;48838:39::-;;;;;;;;;;;;;;;;45809:490;;;;;;;;;;-1:-1:-1;45809:490:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;11272:32:1;;;11254:51;;11336:2;11321:18;;11314:34;;;;11227:18;45809:490:0;11080:274:1;30327:442:0;;;;;;;;;;-1:-1:-1;30327:442:0;;;;;:::i;:::-;;:::i;48793:38::-;;;;;;;;;;;;48828:3;48793:38;;;;;21193:4:1;21181:17;;;21163:36;;21151:2;21136:18;48793:38:0;21021:184:1;49339:67:0;;;;;;;;;;;;;:::i;52636:176::-;;;;;;;;;;;;;:::i;28785:524::-;;;;;;;;;;-1:-1:-1;28785:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42827:122::-;;;;;;;;;;-1:-1:-1;42827:122:0;;;;;:::i;:::-;42884:4;42705:16;;;:12;:16;;;;;;-1:-1:-1;;;42827:122:0;4149:86;;;;;;;;;;-1:-1:-1;4220:7:0;;-1:-1:-1;;;4220:7:0;;;;4149:86;;7048:103;;;;;;;;;;;;;:::i;49268:63::-;;;;;;;;;;;;;:::i;6397:87::-;;;;;;;;;;-1:-1:-1;6470:6:0;;-1:-1:-1;;;;;6470:6:0;6397:87;;;-1:-1:-1;;;;;9640:32:1;;;9622:51;;9610:2;9595:18;6397:87:0;9476:203:1;49505:87:0;;;;;;;;;;;;;:::i;51683:277::-;;;;;;;;;;-1:-1:-1;51683:277:0;;;;;:::i;:::-;;:::i;49666:109::-;;;;;;;;;;-1:-1:-1;49666:109:0;;;;;:::i;:::-;;:::i;29382:155::-;;;;;;;;;;-1:-1:-1;29382:155:0;;;;;:::i;:::-;;:::i;50562:105::-;;;;;;;;;;-1:-1:-1;50641:18:0;;-1:-1:-1;;;;;50641:18:0;50562:105;;49850:114;;;;;;;;;;-1:-1:-1;49850:114:0;;;;;:::i;:::-;;:::i;50715:224::-;;;;;;;;;;-1:-1:-1;50715:224:0;;;;;:::i;:::-;;:::i;42616:113::-;;;;;;;;;;-1:-1:-1;42616:113:0;;;;;:::i;:::-;42678:7;42705:16;;;:12;:16;;;;;;;42616:113;48730:47;;;;;;;;;;;;48775:2;48730:47;;;;;-1:-1:-1;;;;;21739:39:1;;;21721:58;;21709:2;21694:18;48730:47:0;21577:208:1;50033:113:0;;;;;;;;;;-1:-1:-1;50033:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;50119:19:0;50094:5;50119:19;;;:9;:19;;;;;;;;;50033:113;29609:168;;;;;;;;;;-1:-1:-1;29609:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;29732:27:0;;;29708:4;29732:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;29609:168;29849:401;;;;;;;;;;-1:-1:-1;29849:401:0;;;;;:::i;:::-;;:::i;7306:201::-;;;;;;;;;;-1:-1:-1;7306:201:0;;;;;:::i;:::-;;:::i;28388:231::-;28474:7;-1:-1:-1;;;;;28502:21:0;;28494:77;;;;-1:-1:-1;;;28494:77:0;;13892:2:1;28494:77:0;;;13874:21:1;13931:2;13911:18;;;13904:30;13970:34;13950:18;;;13943:62;-1:-1:-1;;;14021:18:1;;;14014:41;14072:19;;28494:77:0;;;;;;;;;-1:-1:-1;28589:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;28589:22:0;;;;;;;;;;;;28388:231::o;50947:292::-;51095:4;-1:-1:-1;;;;;;51137:41:0;;-1:-1:-1;;;51137:41:0;;:94;;;51195:36;51219:11;51195:23;:36::i;:::-;51117:114;50947:292;-1:-1:-1;;50947:292:0:o;49414:83::-;49451:13;49484:5;49477:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49414:83;:::o;51411:219::-;42884:4;42705:16;;;:12;:16;;;;;;51467:13;;51493:46;;;;-1:-1:-1;;;51493:46:0;;18449:2:1;51493:46:0;;;18431:21:1;18488:2;18468:18;;;18461:30;-1:-1:-1;;;18507:18:1;;;18500:52;18569:18;;51493:46:0;18247:346:1;51493:46:0;51583:14;51593:3;51583:9;:14::i;:::-;51599:21;51616:3;51599:16;:21::i;:::-;51566:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51552:70;;51411:219;;;:::o;50220:292::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;50376:7:::1;50371:134;50389:30;::::0;::::1;::::0;-1:-1:-1;50371:134:0::1;;;50477:13;;50491:1;50477:16;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50441:9;:33;50451:19;;50471:1;50451:22;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50441:33:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;50441:33:0;:52;;-1:-1:-1;;50441:52:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;50421:3;::::1;::::0;::::1;:::i;:::-;;;;50371:134;;;;50220:292:::0;;;;:::o;52029:540::-;4220:7;;-1:-1:-1;;;4220:7:0;;;;4474:9;4466:38;;;;-1:-1:-1;;;4466:38:0;;15804:2:1;4466:38:0;;;15786:21:1;15843:2;15823:18;;;15816:30;-1:-1:-1;;;15862:18:1;;;15855:46;15918:18;;4466:38:0;15602:340:1;4466:38:0;52130:10:::1;52109:8;52120:21:::0;;;:9:::1;:21;::::0;;;;;::::1;;52160:7:::0;52152:35:::1;;;::::0;-1:-1:-1;;;52152:35:0;;17333:2:1;52152:35:0::1;::::0;::::1;17315:21:1::0;17372:2;17352:18;;;17345:30;-1:-1:-1;;;17391:18:1;;;17384:45;17446:18;;52152:35:0::1;17131:339:1::0;52152:35:0::1;52238:23;52258:2;52238:23;;:19;:23::i;:::-;52220:15;::::0;::::1;42678:7:::0;42705:16;;;:12;:16;;;;;;52220:41:::1;52198:121;;;::::0;-1:-1:-1;;;52198:121:0;;16974:2:1;52198:121:0::1;::::0;::::1;16956:21:1::0;17013:2;16993:18;;;16986:30;17052:32;17032:18;;;17025:60;17102:18;;52198:121:0::1;16772:354:1::0;52198:121:0::1;52338:9;52359:10;52338:32;52330:41;;;::::0;::::1;;52403:11;;52390:9;:24;52382:65;;;::::0;-1:-1:-1;;;52382:65:0;;19620:2:1;52382:65:0::1;::::0;::::1;19602:21:1::0;19659:2;19639:18;;;19632:30;19698;19678:18;;;19671:58;19746:18;;52382:65:0::1;19418:352:1::0;52382:65:0::1;52468:10;52482:1;52458:21:::0;;;:9:::1;:21;::::0;;;;;;;:25;;-1:-1:-1;;52458:25:0::1;::::0;;52494:28;;;;::::1;::::0;;;;;::::1;::::0;52468:10;52458:25:::1;52494:28:::0;::::1;::::0;52458:25;;52494:5:::1;:28::i;:::-;52538:23;::::0;;21448:4:1;21436:17;;21418:36;;52547:1:0::1;21485:2:1::0;21470:18;;21463:34;52550:10:0::1;21513:18:1::0;;;21506:60;52538:23:0;;::::1;::::0;;;;21406:2:1;52538:23:0;;::::1;52093:476;52029:540::o:0;45809:490::-;45936:7;45999:27;;;:17;:27;;;;;;;;45970:56;;;;;;;;;-1:-1:-1;;;;;45970:56:0;;;;;-1:-1:-1;;;45970:56:0;;;-1:-1:-1;;;;;45970:56:0;;;;;;;;45936:7;;46039:92;;-1:-1:-1;46090:29:0;;;;;;;;;46100:19;46090:29;-1:-1:-1;;;;;46090:29:0;;;;-1:-1:-1;;;46090:29:0;;-1:-1:-1;;;;;46090:29:0;;;;;46039:92;46181:23;;;;46143:21;;51340:4;;46168:36;;-1:-1:-1;;;;;46168:36:0;:10;:36;:::i;:::-;46167:71;;;;:::i;:::-;46259:16;;;-1:-1:-1;46143:95:0;;-1:-1:-1;;45809:490:0;;;;;;:::o;30327:442::-;-1:-1:-1;;;;;30560:20:0;;2883:10;30560:20;;:60;;-1:-1:-1;30584:36:0;30601:4;2883:10;29609:168;:::i;30584:36::-;30538:160;;;;-1:-1:-1;;;30538:160:0;;16555:2:1;30538:160:0;;;16537:21:1;16594:2;16574:18;;;16567:30;16633:34;16613:18;;;16606:62;-1:-1:-1;;;16684:18:1;;;16677:48;16742:19;;30538:160:0;16353:414:1;30538:160:0;30709:52;30732:4;30738:2;30742:3;30747:7;30756:4;30709:22;:52::i;49339:67::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;49388:10:::1;:8;:10::i;:::-;49339:67::o:0;52636:176::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;52697:21:::1;52689:56;;;::::0;-1:-1:-1;;;52689:56:0;;15457:2:1;52689:56:0::1;::::0;::::1;15439:21:1::0;15496:2;15476:18;;;15469:30;-1:-1:-1;;;15515:18:1;;;15508:48;15573:18;;52689:56:0::1;15255:342:1::0;52689:56:0::1;6470:6:::0;;52756:48:::1;::::0;-1:-1:-1;;;;;6470:6:0;;;;52782:21:::1;52756:48:::0;::::1;;;::::0;::::1;::::0;;;52782:21;6470:6;52756:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52636:176::o:0;28785:524::-;28941:16;29002:3;:10;28983:8;:15;:29;28975:83;;;;-1:-1:-1;;;28975:83:0;;19210:2:1;28975:83:0;;;19192:21:1;19249:2;19229:18;;;19222:30;19288:34;19268:18;;;19261:62;-1:-1:-1;;;19339:18:1;;;19332:39;19388:19;;28975:83:0;19008:405:1;28975:83:0;29071:30;29118:8;:15;29104:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29104:30:0;;29071:63;;29152:9;29147:122;29171:8;:15;29167:1;:19;29147:122;;;29227:30;29237:8;29246:1;29237:11;;;;;;;;:::i;:::-;;;;;;;29250:3;29254:1;29250:6;;;;;;;;:::i;:::-;;;;;;;29227:9;:30::i;:::-;29208:13;29222:1;29208:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;29188:3;;;:::i;:::-;;;29147:122;;;-1:-1:-1;29288:13:0;28785:524;-1:-1:-1;;;28785:524:0:o;7048:103::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;7113:30:::1;7140:1;7113:18;:30::i;49268:63::-:0;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;49315:8:::1;:6;:8::i;49505:87::-:0;49544:13;49577:7;49570:14;;;;;:::i;51683:277::-;51745:7;51769:2;51775:1;51769:7;51765:21;;;-1:-1:-1;51785:1:0;;51683:277;-1:-1:-1;51683:277:0:o;51765:21::-;51801:2;51807:1;51801:7;51797:22;;;-1:-1:-1;51817:2:0;;51683:277;-1:-1:-1;51683:277:0:o;51797:22::-;51834:2;51840:1;51834:7;51830:22;;;-1:-1:-1;51850:2:0;;51683:277;-1:-1:-1;51683:277:0:o;51830:22::-;51867:2;51873:1;51867:7;51863:22;;;-1:-1:-1;51883:2:0;;51683:277;-1:-1:-1;51683:277:0:o;51863:22::-;51900:2;51906:1;51900:7;51896:56;;;-1:-1:-1;51916:2:0;;51683:277;-1:-1:-1;51683:277:0:o;51896:56::-;51934:18;;-1:-1:-1;;;51934:18:0;;14711:2:1;51934:18:0;;;14693:21:1;14750:1;14730:18;;;14723:29;-1:-1:-1;;;14768:18:1;;;14761:38;14816:18;;51934::0;14509:331:1;51896:56:0;51683:277;;;:::o;49666:109::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;49745:22:::1;49753:13;49745:7;:22::i;29382:155::-:0;29477:52;2883:10;29510:8;29520;29477:18;:52::i;:::-;29382:155;;:::o;49850:114::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;49928:11:::1;:28:::0;49850:114::o;50715:224::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;50860:18:::1;::::0;-1:-1:-1;;;;;50836:42:0;;::::1;50860:18:::0;::::1;50836:42;;50828:51;;;::::0;::::1;;50890:18;:41:::0;;-1:-1:-1;;;;;;50890:41:0::1;-1:-1:-1::0;;;;;50890:41:0;;;::::1;::::0;;;::::1;::::0;;50715:224::o;29849:401::-;-1:-1:-1;;;;;30057:20:0;;2883:10;30057:20;;:60;;-1:-1:-1;30081:36:0;30098:4;2883:10;29609:168;:::i;30081:36::-;30035:151;;;;-1:-1:-1;;;30035:151:0;;15047:2:1;30035:151:0;;;15029:21:1;15086:2;15066:18;;;15059:30;15125:34;15105:18;;;15098:62;-1:-1:-1;;;15176:18:1;;;15169:39;15225:19;;30035:151:0;14845:405:1;30035:151:0;30197:45;30215:4;30221:2;30225;30229:6;30237:4;30197:17;:45::i;7306:201::-;6470:6;;-1:-1:-1;;;;;6470:6:0;2883:10;6617:23;6609:68;;;;-1:-1:-1;;;6609:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7395:22:0;::::1;7387:73;;;::::0;-1:-1:-1;;;7387:73:0;;14304:2:1;7387:73:0::1;::::0;::::1;14286:21:1::0;14343:2;14323:18;;;14316:30;14382:34;14362:18;;;14355:62;-1:-1:-1;;;14433:18:1;;;14426:36;14479:19;;7387:73:0::1;14102:402:1::0;7387:73:0::1;7471:28;7490:8;7471:18;:28::i;45463:291::-:0;45610:4;-1:-1:-1;;;;;;45652:41:0;;-1:-1:-1;;;45652:41:0;;:94;;;45710:36;45734:11;45710:23;:36::i;28132:105::-;28192:13;28225:4;28218:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28132:105;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;;1073:6;365:723;-1:-1:-1;;;;365:723:0:o;34803:569::-;-1:-1:-1;;;;;34956:16:0;;34948:62;;;;-1:-1:-1;;;34948:62:0;;20386:2:1;34948:62:0;;;20368:21:1;20425:2;20405:18;;;20398:30;20464:34;20444:18;;;20437:62;-1:-1:-1;;;20515:18:1;;;20508:31;20556:19;;34948:62:0;20184:397:1;34948:62:0;2883:10;35067:102;2883:10;35023:16;35110:2;35114:21;35132:2;35114:17;:21::i;:::-;35137:25;35155:6;35137:17;:25::i;:::-;35164:4;35067:20;:102::i;:::-;35182:9;:13;;;;;;;;;;;-1:-1:-1;;;;;35182:17:0;;;;;;;;;:27;;35203:6;;35182:9;:27;;35203:6;;35182:27;:::i;:::-;;;;-1:-1:-1;;35225:52:0;;;20942:25:1;;;20998:2;20983:18;;20976:34;;;-1:-1:-1;;;;;35225:52:0;;;;35258:1;;35225:52;;;;;;20915:18:1;35225:52:0;;;;;;;35290:74;35321:8;35339:1;35343:2;35347;35351:6;35359:4;35290:30;:74::i;32411:1074::-;32638:7;:14;32624:3;:10;:28;32616:81;;;;-1:-1:-1;;;32616:81:0;;19977:2:1;32616:81:0;;;19959:21:1;20016:2;19996:18;;;19989:30;20055:34;20035:18;;;20028:62;-1:-1:-1;;;20106:18:1;;;20099:38;20154:19;;32616:81:0;19775:404:1;32616:81:0;-1:-1:-1;;;;;32716:16:0;;32708:66;;;;-1:-1:-1;;;32708:66:0;;;;;;;:::i;:::-;2883:10;32831:60;2883:10;32862:4;32868:2;32872:3;32877:7;32886:4;32831:20;:60::i;:::-;32909:9;32904:421;32928:3;:10;32924:1;:14;32904:421;;;32960:10;32973:3;32977:1;32973:6;;;;;;;;:::i;:::-;;;;;;;32960:19;;32994:14;33011:7;33019:1;33011:10;;;;;;;;:::i;:::-;;;;;;;;;;;;33038:19;33060:13;;;;;;;;;;-1:-1:-1;;;;;33060:19:0;;;;;;;;;;;;33011:10;;-1:-1:-1;33102:21:0;;;;33094:76;;;;-1:-1:-1;;;33094:76:0;;;;;;;:::i;:::-;33214:9;:13;;;;;;;;;;;-1:-1:-1;;;;;33214:19:0;;;;;;;;;;33236:20;;;33214:42;;33286:17;;;;;;;:27;;33236:20;;33214:9;33286:27;;33236:20;;33286:27;:::i;:::-;;;;;;;;32945:380;;;32940:3;;;;:::i;:::-;;;32904:421;;;;33372:2;-1:-1:-1;;;;;33342:47:0;33366:4;-1:-1:-1;;;;;33342:47:0;33356:8;-1:-1:-1;;;;;33342:47:0;;33376:3;33381:7;33342:47;;;;;;;:::i;:::-;;;;;;;;33402:75;33438:8;33448:4;33454:2;33458:3;33463:7;33472:4;33402:35;:75::i;:::-;32605:880;32411:1074;;;;;:::o;5208:120::-;4220:7;;-1:-1:-1;;;4220:7:0;;;;4744:41;;;;-1:-1:-1;;;4744:41:0;;13543:2:1;4744:41:0;;;13525:21:1;13582:2;13562:18;;;13555:30;-1:-1:-1;;;13601:18:1;;;13594:50;13661:18;;4744:41:0;13341:344:1;4744:41:0;5267:7:::1;:15:::0;;-1:-1:-1;;;;5267:15:0::1;::::0;;5298:22:::1;2883:10:::0;5307:12:::1;5298:22;::::0;-1:-1:-1;;;;;9640:32:1;;;9622:51;;9610:2;9595:18;5298:22:0::1;;;;;;;5208:120::o:0;7667:191::-;7760:6;;;-1:-1:-1;;;;;7777:17:0;;;-1:-1:-1;;;;;;7777:17:0;;;;;;;7810:40;;7760:6;;;7777:17;7760:6;;7810:40;;7741:16;;7810:40;7730:128;7667:191;:::o;4949:118::-;4220:7;;-1:-1:-1;;;4220:7:0;;;;4474:9;4466:38;;;;-1:-1:-1;;;4466:38:0;;15804:2:1;4466:38:0;;;15786:21:1;15843:2;15823:18;;;15816:30;-1:-1:-1;;;15862:18:1;;;15855:46;15918:18;;4466:38:0;15602:340:1;4466:38:0;5009:7:::1;:14:::0;;-1:-1:-1;;;;5009:14:0::1;-1:-1:-1::0;;;5009:14:0::1;::::0;;5039:20:::1;5046:12;2883:10:::0;;2803:98;34329:88;34396:13;;;;:4;;:13;;;;;:::i;38597:331::-;38752:8;-1:-1:-1;;;;;38743:17:0;:5;-1:-1:-1;;;;;38743:17:0;;;38735:71;;;;-1:-1:-1;;;38735:71:0;;18800:2:1;38735:71:0;;;18782:21:1;18839:2;18819:18;;;18812:30;18878:34;18858:18;;;18851:62;-1:-1:-1;;;18929:18:1;;;18922:39;18978:19;;38735:71:0;18598:405:1;38735:71:0;-1:-1:-1;;;;;38817:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38817:46:0;;;;;;;;;;38879:41;;12235::1;;;38879::0;;12208:18:1;38879:41:0;;;;;;;38597:331;;;:::o;31233:820::-;-1:-1:-1;;;;;31421:16:0;;31413:66;;;;-1:-1:-1;;;31413:66:0;;;;;;;:::i;:::-;2883:10;31536:96;2883:10;31567:4;31573:2;31577:21;31595:2;31577:17;:21::i;31536:96::-;31645:19;31667:13;;;;;;;;;;;-1:-1:-1;;;;;31667:19:0;;;;;;;;;;31705:21;;;;31697:76;;;;-1:-1:-1;;;31697:76:0;;;;;;;:::i;:::-;31809:9;:13;;;;;;;;;;;-1:-1:-1;;;;;31809:19:0;;;;;;;;;;31831:20;;;31809:42;;31873:17;;;;;;;:27;;31831:20;;31809:9;31873:27;;31831:20;;31873:27;:::i;:::-;;;;-1:-1:-1;;31918:46:0;;;20942:25:1;;;20998:2;20983:18;;20976:34;;;-1:-1:-1;;;;;31918:46:0;;;;;;;;;;;;;;20915:18:1;31918:46:0;;;;;;;31977:68;32008:8;32018:4;32024:2;32028;32032:6;32040:4;31977:30;:68::i;:::-;31402:651;;31233:820;;;;;:::o;27411:310::-;27513:4;-1:-1:-1;;;;;;27550:41:0;;-1:-1:-1;;;27550:41:0;;:110;;-1:-1:-1;;;;;;;27608:52:0;;-1:-1:-1;;;27608:52:0;27550:110;:163;;;-1:-1:-1;;;;;;;;;;18875:40:0;;;27677:36;18766:157;41686:198;41806:16;;;41820:1;41806:16;;;;;;;;;41752;;41781:22;;41806:16;;;;;;;;;;;;-1:-1:-1;41806:16:0;41781:41;;41844:7;41833:5;41839:1;41833:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;41871:5;41686:198;-1:-1:-1;;41686:198:0:o;43024:655::-;-1:-1:-1;;;;;43346:18:0;;43342:160;;43386:9;43381:110;43405:3;:10;43401:1;:14;43381:110;;;43465:7;43473:1;43465:10;;;;;;;;:::i;:::-;;;;;;;43441:12;:20;43454:3;43458:1;43454:6;;;;;;;;:::i;:::-;;;;;;;43441:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;43417:3:0;;-1:-1:-1;43417:3:0;;:::i;:::-;;;43381:110;;;;43342:160;-1:-1:-1;;;;;43518:16:0;;43514:158;;43556:9;43551:110;43575:3;:10;43571:1;:14;43551:110;;;43635:7;43643:1;43635:10;;;;;;;;:::i;:::-;;;;;;;43611:12;:20;43624:3;43628:1;43624:6;;;;;;;;:::i;:::-;;;;;;;43611:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;43587:3:0;;-1:-1:-1;43587:3:0;;:::i;:::-;;;43551:110;;40113:744;-1:-1:-1;;;;;40328:13:0;;9008:20;9056:8;40324:526;;40364:72;;-1:-1:-1;;;40364:72:0;;-1:-1:-1;;;;;40364:38:0;;;;;:72;;40403:8;;40413:4;;40419:2;;40423:6;;40431:4;;40364:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40364:72:0;;;;;;;;-1:-1:-1;;40364:72:0;;;;;;;;;;;;:::i;:::-;;;40360:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;40712:6;40705:14;;-1:-1:-1;;;40705:14:0;;;;;;;;:::i;40360:479::-;;;40761:62;;-1:-1:-1;;;40761:62:0;;12713:2:1;40761:62:0;;;12695:21:1;12752:2;12732:18;;;12725:30;12791:34;12771:18;;;12764:62;-1:-1:-1;;;12842:18:1;;;12835:50;12902:19;;40761:62:0;12511:416:1;40360:479:0;-1:-1:-1;;;;;;40486:55:0;;-1:-1:-1;;;40486:55:0;40482:154;;40566:50;;-1:-1:-1;;;40566:50:0;;;;;;;:::i;40865:813::-;-1:-1:-1;;;;;41105:13:0;;9008:20;9056:8;41101:570;;41141:79;;-1:-1:-1;;;41141:79:0;;-1:-1:-1;;;;;41141:43:0;;;;;:79;;41185:8;;41195:4;;41201:3;;41206:7;;41215:4;;41141:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41141:79:0;;;;;;;;-1:-1:-1;;41141:79:0;;;;;;;;;;;;:::i;:::-;;;41137:523;;;;:::i;:::-;-1:-1:-1;;;;;;41302:60:0;;-1:-1:-1;;;41302:60:0;41298:159;;41387:50;;-1:-1:-1;;;41387:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;665:367;728:8;738:6;792:3;785:4;777:6;773:17;769:27;759:55;;810:1;807;800:12;759:55;-1:-1:-1;833:20:1;;876:18;865:30;;862:50;;;908:1;905;898:12;862:50;945:4;937:6;933:17;921:29;;1005:3;998:4;988:6;985:1;981:14;973:6;969:27;965:38;962:47;959:67;;;1022:1;1019;1012:12;1037:735;1091:5;1144:3;1137:4;1129:6;1125:17;1121:27;1111:55;;1162:1;1159;1152:12;1111:55;1198:6;1185:20;1224:4;1247:43;1287:2;1247:43;:::i;:::-;1319:2;1313:9;1331:31;1359:2;1351:6;1331:31;:::i;:::-;1397:18;;;1431:15;;;;-1:-1:-1;1466:15:1;;;1516:1;1512:10;;;1500:23;;1496:32;;1493:41;-1:-1:-1;1490:61:1;;;1547:1;1544;1537:12;1490:61;1569:1;1579:163;1593:2;1590:1;1587:9;1579:163;;;1650:17;;1638:30;;1688:12;;;;1720;;;;1611:1;1604:9;1579:163;;;-1:-1:-1;1760:6:1;;1037:735;-1:-1:-1;;;;;;;1037:735:1:o;1777:220::-;1819:5;1872:3;1865:4;1857:6;1853:17;1849:27;1839:55;;1890:1;1887;1880:12;1839:55;1912:79;1987:3;1978:6;1965:20;1958:4;1950:6;1946:17;1912:79;:::i;:::-;1903:88;1777:220;-1:-1:-1;;;1777:220:1:o;2002:186::-;2061:6;2114:2;2102:9;2093:7;2089:23;2085:32;2082:52;;;2130:1;2127;2120:12;2082:52;2153:29;2172:9;2153:29;:::i;2193:260::-;2261:6;2269;2322:2;2310:9;2301:7;2297:23;2293:32;2290:52;;;2338:1;2335;2328:12;2290:52;2361:29;2380:9;2361:29;:::i;:::-;2351:39;;2409:38;2443:2;2432:9;2428:18;2409:38;:::i;:::-;2399:48;;2193:260;;;;;:::o;2458:943::-;2612:6;2620;2628;2636;2644;2697:3;2685:9;2676:7;2672:23;2668:33;2665:53;;;2714:1;2711;2704:12;2665:53;2737:29;2756:9;2737:29;:::i;:::-;2727:39;;2785:38;2819:2;2808:9;2804:18;2785:38;:::i;:::-;2775:48;;2874:2;2863:9;2859:18;2846:32;2897:18;2938:2;2930:6;2927:14;2924:34;;;2954:1;2951;2944:12;2924:34;2977:61;3030:7;3021:6;3010:9;3006:22;2977:61;:::i;:::-;2967:71;;3091:2;3080:9;3076:18;3063:32;3047:48;;3120:2;3110:8;3107:16;3104:36;;;3136:1;3133;3126:12;3104:36;3159:63;3214:7;3203:8;3192:9;3188:24;3159:63;:::i;:::-;3149:73;;3275:3;3264:9;3260:19;3247:33;3231:49;;3305:2;3295:8;3292:16;3289:36;;;3321:1;3318;3311:12;3289:36;;3344:51;3387:7;3376:8;3365:9;3361:24;3344:51;:::i;:::-;3334:61;;;2458:943;;;;;;;;:::o;3406:606::-;3510:6;3518;3526;3534;3542;3595:3;3583:9;3574:7;3570:23;3566:33;3563:53;;;3612:1;3609;3602:12;3563:53;3635:29;3654:9;3635:29;:::i;:::-;3625:39;;3683:38;3717:2;3706:9;3702:18;3683:38;:::i;:::-;3673:48;;3768:2;3757:9;3753:18;3740:32;3730:42;;3819:2;3808:9;3804:18;3791:32;3781:42;;3874:3;3863:9;3859:19;3846:33;3902:18;3894:6;3891:30;3888:50;;;3934:1;3931;3924:12;3888:50;3957:49;3998:7;3989:6;3978:9;3974:22;3957:49;:::i;4017:347::-;4082:6;4090;4143:2;4131:9;4122:7;4118:23;4114:32;4111:52;;;4159:1;4156;4149:12;4111:52;4182:29;4201:9;4182:29;:::i;:::-;4172:39;;4261:2;4250:9;4246:18;4233:32;4308:5;4301:13;4294:21;4287:5;4284:32;4274:60;;4330:1;4327;4320:12;4274:60;4353:5;4343:15;;;4017:347;;;;;:::o;4369:254::-;4437:6;4445;4498:2;4486:9;4477:7;4473:23;4469:32;4466:52;;;4514:1;4511;4504:12;4466:52;4537:29;4556:9;4537:29;:::i;:::-;4527:39;4613:2;4598:18;;;;4585:32;;-1:-1:-1;;;4369:254:1:o;4628:771::-;4748:6;4756;4764;4772;4825:2;4813:9;4804:7;4800:23;4796:32;4793:52;;;4841:1;4838;4831:12;4793:52;4881:9;4868:23;4910:18;4951:2;4943:6;4940:14;4937:34;;;4967:1;4964;4957:12;4937:34;5006:70;5068:7;5059:6;5048:9;5044:22;5006:70;:::i;:::-;5095:8;;-1:-1:-1;4980:96:1;-1:-1:-1;5183:2:1;5168:18;;5155:32;;-1:-1:-1;5199:16:1;;;5196:36;;;5228:1;5225;5218:12;5196:36;;5267:72;5331:7;5320:8;5309:9;5305:24;5267:72;:::i;:::-;4628:771;;;;-1:-1:-1;5358:8:1;-1:-1:-1;;;;4628:771:1:o;5404:1219::-;5522:6;5530;5583:2;5571:9;5562:7;5558:23;5554:32;5551:52;;;5599:1;5596;5589:12;5551:52;5639:9;5626:23;5668:18;5709:2;5701:6;5698:14;5695:34;;;5725:1;5722;5715:12;5695:34;5763:6;5752:9;5748:22;5738:32;;5808:7;5801:4;5797:2;5793:13;5789:27;5779:55;;5830:1;5827;5820:12;5779:55;5866:2;5853:16;5888:4;5911:43;5951:2;5911:43;:::i;:::-;5983:2;5977:9;5995:31;6023:2;6015:6;5995:31;:::i;:::-;6061:18;;;6095:15;;;;-1:-1:-1;6130:11:1;;;6172:1;6168:10;;;6160:19;;6156:28;;6153:41;-1:-1:-1;6150:61:1;;;6207:1;6204;6197:12;6150:61;6229:1;6220:10;;6239:169;6253:2;6250:1;6247:9;6239:169;;;6310:23;6329:3;6310:23;:::i;:::-;6298:36;;6271:1;6264:9;;;;;6354:12;;;;6386;;6239:169;;;-1:-1:-1;6427:6:1;-1:-1:-1;;6471:18:1;;6458:32;;-1:-1:-1;;6502:16:1;;;6499:36;;;6531:1;6528;6521:12;6499:36;;6554:63;6609:7;6598:8;6587:9;6583:24;6554:63;:::i;:::-;6544:73;;;5404:1219;;;;;:::o;6628:245::-;6686:6;6739:2;6727:9;6718:7;6714:23;6710:32;6707:52;;;6755:1;6752;6745:12;6707:52;6794:9;6781:23;6813:30;6837:5;6813:30;:::i;6878:249::-;6947:6;7000:2;6988:9;6979:7;6975:23;6971:32;6968:52;;;7016:1;7013;7006:12;6968:52;7048:9;7042:16;7067:30;7091:5;7067:30;:::i;7132:450::-;7201:6;7254:2;7242:9;7233:7;7229:23;7225:32;7222:52;;;7270:1;7267;7260:12;7222:52;7310:9;7297:23;7343:18;7335:6;7332:30;7329:50;;;7375:1;7372;7365:12;7329:50;7398:22;;7451:4;7443:13;;7439:27;-1:-1:-1;7429:55:1;;7480:1;7477;7470:12;7429:55;7503:73;7568:7;7563:2;7550:16;7545:2;7541;7537:11;7503:73;:::i;7587:180::-;7646:6;7699:2;7687:9;7678:7;7674:23;7670:32;7667:52;;;7715:1;7712;7705:12;7667:52;-1:-1:-1;7738:23:1;;7587:180;-1:-1:-1;7587:180:1:o;7772:248::-;7840:6;7848;7901:2;7889:9;7880:7;7876:23;7872:32;7869:52;;;7917:1;7914;7907:12;7869:52;-1:-1:-1;;7940:23:1;;;8010:2;7995:18;;;7982:32;;-1:-1:-1;7772:248:1:o;8025:269::-;8082:6;8135:2;8123:9;8114:7;8110:23;8106:32;8103:52;;;8151:1;8148;8141:12;8103:52;8190:9;8177:23;8240:4;8233:5;8229:16;8222:5;8219:27;8209:55;;8260:1;8257;8250:12;8299:435;8352:3;8390:5;8384:12;8417:6;8412:3;8405:19;8443:4;8472:2;8467:3;8463:12;8456:19;;8509:2;8502:5;8498:14;8530:1;8540:169;8554:6;8551:1;8548:13;8540:169;;;8615:13;;8603:26;;8649:12;;;;8684:15;;;;8576:1;8569:9;8540:169;;;-1:-1:-1;8725:3:1;;8299:435;-1:-1:-1;;;;;8299:435:1:o;8739:257::-;8780:3;8818:5;8812:12;8845:6;8840:3;8833:19;8861:63;8917:6;8910:4;8905:3;8901:14;8894:4;8887:5;8883:16;8861:63;:::i;:::-;8978:2;8957:15;-1:-1:-1;;8953:29:1;8944:39;;;;8985:4;8940:50;;8739:257;-1:-1:-1;;8739:257:1:o;9001:470::-;9180:3;9218:6;9212:13;9234:53;9280:6;9275:3;9268:4;9260:6;9256:17;9234:53;:::i;:::-;9350:13;;9309:16;;;;9372:57;9350:13;9309:16;9406:4;9394:17;;9372:57;:::i;:::-;9445:20;;9001:470;-1:-1:-1;;;;9001:470:1:o;9684:826::-;-1:-1:-1;;;;;10081:15:1;;;10063:34;;10133:15;;10128:2;10113:18;;10106:43;10043:3;10180:2;10165:18;;10158:31;;;10006:4;;10212:57;;10249:19;;10241:6;10212:57;:::i;:::-;10317:9;10309:6;10305:22;10300:2;10289:9;10285:18;10278:50;10351:44;10388:6;10380;10351:44;:::i;:::-;10337:58;;10444:9;10436:6;10432:22;10426:3;10415:9;10411:19;10404:51;10472:32;10497:6;10489;10472:32;:::i;:::-;10464:40;9684:826;-1:-1:-1;;;;;;;;9684:826:1:o;10515:560::-;-1:-1:-1;;;;;10812:15:1;;;10794:34;;10864:15;;10859:2;10844:18;;10837:43;10911:2;10896:18;;10889:34;;;10954:2;10939:18;;10932:34;;;10774:3;10997;10982:19;;10975:32;;;10737:4;;11024:45;;11049:19;;11041:6;11024:45;:::i;:::-;11016:53;10515:560;-1:-1:-1;;;;;;;10515:560:1:o;11359:261::-;11538:2;11527:9;11520:21;11501:4;11558:56;11610:2;11599:9;11595:18;11587:6;11558:56;:::i;11625:465::-;11882:2;11871:9;11864:21;11845:4;11908:56;11960:2;11949:9;11945:18;11937:6;11908:56;:::i;:::-;12012:9;12004:6;12000:22;11995:2;11984:9;11980:18;11973:50;12040:44;12077:6;12069;12040:44;:::i;:::-;12032:52;11625:465;-1:-1:-1;;;;;11625:465:1:o;12287:219::-;12436:2;12425:9;12418:21;12399:4;12456:44;12496:2;12485:9;12481:18;12473:6;12456:44;:::i;12932:404::-;13134:2;13116:21;;;13173:2;13153:18;;;13146:30;13212:34;13207:2;13192:18;;13185:62;-1:-1:-1;;;13278:2:1;13263:18;;13256:38;13326:3;13311:19;;12932:404::o;15947:401::-;16149:2;16131:21;;;16188:2;16168:18;;;16161:30;16227:34;16222:2;16207:18;;16200:62;-1:-1:-1;;;16293:2:1;16278:18;;16271:35;16338:3;16323:19;;15947:401::o;17475:406::-;17677:2;17659:21;;;17716:2;17696:18;;;17689:30;17755:34;17750:2;17735:18;;17728:62;-1:-1:-1;;;17821:2:1;17806:18;;17799:40;17871:3;17856:19;;17475:406::o;17886:356::-;18088:2;18070:21;;;18107:18;;;18100:30;18166:34;18161:2;18146:18;;18139:62;18233:2;18218:18;;17886:356::o;21790:183::-;21850:4;21883:18;21875:6;21872:30;21869:56;;;21905:18;;:::i;:::-;-1:-1:-1;21950:1:1;21946:14;21962:4;21942:25;;21790:183::o;21978:128::-;22018:3;22049:1;22045:6;22042:1;22039:13;22036:39;;;22055:18;;:::i;:::-;-1:-1:-1;22091:9:1;;21978:128::o;22111:120::-;22151:1;22177;22167:35;;22182:18;;:::i;:::-;-1:-1:-1;22216:9:1;;22111:120::o;22236:168::-;22276:7;22342:1;22338;22334:6;22330:14;22327:1;22324:21;22319:1;22312:9;22305:17;22301:45;22298:71;;;22349:18;;:::i;:::-;-1:-1:-1;22389:9:1;;22236:168::o;22409:125::-;22449:4;22477:1;22474;22471:8;22468:34;;;22482:18;;:::i;:::-;-1:-1:-1;22519:9:1;;22409:125::o;22539:258::-;22611:1;22621:113;22635:6;22632:1;22629:13;22621:113;;;22711:11;;;22705:18;22692:11;;;22685:39;22657:2;22650:10;22621:113;;;22752:6;22749:1;22746:13;22743:48;;;22787:1;22778:6;22773:3;22769:16;22762:27;22743:48;;22539:258;;;:::o;22802:380::-;22881:1;22877:12;;;;22924;;;22945:61;;22999:4;22991:6;22987:17;22977:27;;22945:61;23052:2;23044:6;23041:14;23021:18;23018:38;23015:161;;;23098:10;23093:3;23089:20;23086:1;23079:31;23133:4;23130:1;23123:15;23161:4;23158:1;23151:15;23015:161;;22802:380;;;:::o;23187:249::-;23297:2;23278:13;;-1:-1:-1;;23274:27:1;23262:40;;23332:18;23317:34;;23353:22;;;23314:62;23311:88;;;23379:18;;:::i;:::-;23415:2;23408:22;-1:-1:-1;;23187:249:1:o;23441:135::-;23480:3;-1:-1:-1;;23501:17:1;;23498:43;;;23521:18;;:::i;:::-;-1:-1:-1;23568:1:1;23557:13;;23441:135::o;23581:175::-;23618:3;23662:4;23655:5;23651:16;23691:4;23682:7;23679:17;23676:43;;;23699:18;;:::i;:::-;23748:1;23735:15;;23581:175;-1:-1:-1;;23581:175:1:o;23761:112::-;23793:1;23819;23809:35;;23824:18;;:::i;:::-;-1:-1:-1;23858:9:1;;23761:112::o;23878:127::-;23939:10;23934:3;23930:20;23927:1;23920:31;23970:4;23967:1;23960:15;23994:4;23991:1;23984:15;24010:127;24071:10;24066:3;24062:20;24059:1;24052:31;24102:4;24099:1;24092:15;24126:4;24123:1;24116:15;24142:127;24203:10;24198:3;24194:20;24191:1;24184:31;24234:4;24231:1;24224:15;24258:4;24255:1;24248:15;24274:127;24335:10;24330:3;24326:20;24323:1;24316:31;24366:4;24363:1;24356:15;24390:4;24387:1;24380:15;24406:179;24441:3;24483:1;24465:16;24462:23;24459:120;;;24529:1;24526;24523;24508:23;-1:-1:-1;24566:1:1;24560:8;24555:3;24551:18;24459:120;24406:179;:::o;24590:671::-;24629:3;24671:4;24653:16;24650:26;24647:39;;;24590:671;:::o;24647:39::-;24713:2;24707:9;-1:-1:-1;;24778:16:1;24774:25;;24771:1;24707:9;24750:50;24829:4;24823:11;24853:16;24888:18;24959:2;24952:4;24944:6;24940:17;24937:25;24932:2;24924:6;24921:14;24918:45;24915:58;;;24966:5;;;;;24590:671;:::o;24915:58::-;25003:6;24997:4;24993:17;24982:28;;25039:3;25033:10;25066:2;25058:6;25055:14;25052:27;;;25072:5;;;;;;24590:671;:::o;25052:27::-;25156:2;25137:16;25131:4;25127:27;25123:36;25116:4;25107:6;25102:3;25098:16;25094:27;25091:69;25088:82;;;25163:5;;;;;;24590:671;:::o;25088:82::-;25179:57;25230:4;25221:6;25213;25209:19;25205:30;25199:4;25179:57;:::i;:::-;-1:-1:-1;25252:3:1;;24590:671;-1:-1:-1;;;;;24590:671:1:o;25266:131::-;-1:-1:-1;;;;;;25340:32:1;;25330:43;;25320:71;;25387:1;25384;25377:12
Swarm Source
ipfs://7ae07a0aa8a43dc84fe5b278d5c78174d20abc8e1b3d57a2c58e4ea354b87a52
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.