ERC-1155
Overview
Max Total Supply
142 CMTY
Holders
107
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Community
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-13 */ // SPDX-License-Identifier: MIT 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: 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: 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: 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: 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: 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: 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: 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: 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 { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver(to).onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } } // File: IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: ERC721.sol pragma solidity ^0.8.10; abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count = 0; uint length = _owners.length; for( uint i = 0; i < length; ++i ){ if( owner == _owners[i] ){ ++count; } } delete length; return count; } function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _owners.push(to); emit Transfer(address(0), to, tokenId); } function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.0; 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: ERC721Enumerable.sol pragma solidity ^0.8.10; abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) { require(index < ERC721.balanceOf(owner), "ERC721Enum: owner ioob"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ){ if( count == index ) return i; else ++count; } } require(false, "ERC721Enum: owner ioob"); } function tokensOfOwner(address owner) public view returns (uint256[] memory) { require(0 < ERC721.balanceOf(owner), "ERC721Enum: owner ioob"); uint256 tokenCount = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(owner, i); } return tokenIds; } function totalSupply() public view virtual override returns (uint256) { return _owners.length; } function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enum: global ioob"); return index; } } pragma solidity ^0.8.9; contract Community is ERC1155, Ownable { using Strings for string; string public _baseURI; string public _contractURI; string name_; string symbol_; constructor(string memory _name,string memory _symbol) ERC1155(_baseURI) { name_ = _name; symbol_ = _symbol; } function airdrop(address[] calldata addr, uint256 tokenId) public onlyOwner { for(uint256 i = 0; i < addr.length; i++) { _mint(addr[i], tokenId, 1, ""); } } //metadata function setBaseURI(string memory newuri) public onlyOwner { _baseURI = newuri; } function setContractURI(string memory newuri) public onlyOwner { _contractURI = newuri; } function uri(uint256 tokenId) public view override returns (string memory) { return string(abi.encodePacked(_baseURI, uint2str(tokenId))); } function contractURI() public view returns (string memory) { return _contractURI; } function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) { if (_i == 0) {return "0";} uint256 j = _i; uint256 len; while (j != 0) {len++; j /= 10;} bytes memory bstr = new bytes(len); uint256 k = len; while (_i != 0) { k = k - 1; uint8 temp = (48 + uint8(_i - (_i / 10) * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return string(bstr); } function name() public view returns (string memory) { return name_; } function symbol() public view returns (string memory) { return symbol_; } //withdraw any funds function withdrawToOwner() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setContractURI","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawToOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200212c3803806200212c8339810160408190526200003491620002f6565b60048054620000439062000360565b80601f0160208091040260200160405190810160405280929190818152602001828054620000719062000360565b8015620000c25780601f106200009657610100808354040283529160200191620000c2565b820191906000526020600020905b815481529060010190602001808311620000a457829003601f168201915b5050505050620000d8816200011860201b60201c565b50620000e43362000131565b8151620000f990600690602085019062000183565b5080516200010f90600790602084019062000183565b5050506200039c565b80516200012d90600290602084019062000183565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001919062000360565b90600052602060002090601f016020900481019282620001b5576000855562000200565b82601f10620001d057805160ff191683800117855562000200565b8280016001018555821562000200579182015b8281111562000200578251825591602001919060010190620001e3565b506200020e92915062000212565b5090565b5b808211156200020e576000815560010162000213565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200025157600080fd5b81516001600160401b03808211156200026e576200026e62000229565b604051601f8301601f19908116603f0116810190828211818310171562000299576200029962000229565b81604052838152602092508683858801011115620002b657600080fd5b600091505b83821015620002da5785820183015181830184015290820190620002bb565b83821115620002ec5760008385830101525b9695505050505050565b600080604083850312156200030a57600080fd5b82516001600160401b03808211156200032257600080fd5b62000330868387016200023f565b935060208501519150808211156200034757600080fd5b5062000356858286016200023f565b9150509250929050565b600181811c908216806200037557607f821691505b6020821081036200039657634e487b7160e01b600052602260045260246000fd5b50919050565b611d8080620003ac6000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c80638da5cb5b116100ad578063c204642c11610071578063c204642c14610252578063e8a3d48514610265578063e985e9c51461026d578063f242432a146102a9578063f2fde38b146102bc57600080fd5b80638da5cb5b14610201578063938e3d7b1461021c57806395d89b411461022f578063a22cb46514610237578063c0e727401461024a57600080fd5b80633cb40e16116100f45780633cb40e16146101b65780634e1273f4146101be57806355f804b3146101de578063715018a6146101f1578063743976a0146101f957600080fd5b8062fdd58e1461013057806301ffc9a71461015657806306fdde03146101795780630e89341c1461018e5780632eb2c2d6146101a1575b600080fd5b61014361013e366004611321565b6102cf565b6040519081526020015b60405180910390f35b610169610164366004611361565b610366565b604051901515815260200161014d565b6101816103b8565b60405161014d91906113dd565b61018161019c3660046113f0565b61044a565b6101b46101af36600461155f565b61047e565b005b6101b4610515565b6101d16101cc366004611609565b61056e565b60405161014d919061170f565b6101b46101ec366004611722565b610698565b6101b46106d9565b61018161070f565b6003546040516001600160a01b03909116815260200161014d565b6101b461022a366004611722565b61079d565b6101816107da565b6101b4610245366004611773565b6107e9565b6101816108bf565b6101b46102603660046117af565b6108cc565b61018161095b565b61016961027b36600461182a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101b46102b736600461185d565b61096a565b6101b46102ca3660046118c2565b6109f1565b60006001600160a01b0383166103405760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061039757506001600160e01b031982166303a24d0760e21b145b806103b257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600680546103c7906118dd565b80601f01602080910402602001604051908101604052809291908181526020018280546103f3906118dd565b80156104405780601f1061041557610100808354040283529160200191610440565b820191906000526020600020905b81548152906001019060200180831161042357829003601f168201915b5050505050905090565b6060600461045783610a89565b604051602001610468929190611933565b6040516020818303038152906040529050919050565b6001600160a01b03851633148061049a575061049a853361027b565b6105015760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610337565b61050e8585858585610bb5565b5050505050565b6003546001600160a01b0316331461053f5760405162461bcd60e51b8152600401610337906119d9565b60405133904780156108fc02916000818181858888f1935050505015801561056b573d6000803e3d6000fd5b50565b606081518351146105d35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610337565b6000835167ffffffffffffffff8111156105ef576105ef611409565b604051908082528060200260200182016040528015610618578160200160208202803683370190505b50905060005b84518110156106905761066385828151811061063c5761063c611a0e565b602002602001015185838151811061065657610656611a0e565b60200260200101516102cf565b82828151811061067557610675611a0e565b602090810291909101015261068981611a3a565b905061061e565b509392505050565b6003546001600160a01b031633146106c25760405162461bcd60e51b8152600401610337906119d9565b80516106d590600490602084019061126c565b5050565b6003546001600160a01b031633146107035760405162461bcd60e51b8152600401610337906119d9565b61070d6000610d92565b565b6004805461071c906118dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610748906118dd565b80156107955780601f1061076a57610100808354040283529160200191610795565b820191906000526020600020905b81548152906001019060200180831161077857829003601f168201915b505050505081565b6003546001600160a01b031633146107c75760405162461bcd60e51b8152600401610337906119d9565b80516106d590600590602084019061126c565b6060600780546103c7906118dd565b6001600160a01b03821633036108535760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610337565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005805461071c906118dd565b6003546001600160a01b031633146108f65760405162461bcd60e51b8152600401610337906119d9565b60005b828110156109555761094384848381811061091657610916611a0e565b905060200201602081019061092b91906118c2565b83600160405180602001604052806000815250610de4565b8061094d81611a3a565b9150506108f9565b50505050565b6060600580546103c7906118dd565b6001600160a01b0385163314806109865750610986853361027b565b6109e45760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610337565b61050e8585858585610eee565b6003546001600160a01b03163314610a1b5760405162461bcd60e51b8152600401610337906119d9565b6001600160a01b038116610a805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610337565b61056b81610d92565b606081600003610ab05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610ada5780610ac481611a3a565b9150610ad39050600a83611a53565b9150610ab4565b60008167ffffffffffffffff811115610af557610af5611409565b6040519080825280601f01601f191660200182016040528015610b1f576020820181803683370190505b509050815b8515610bac57610b35600182611a75565b90506000610b44600a88611a53565b610b4f90600a611a8c565b610b599088611a75565b610b64906030611aab565b905060008160f81b905080848481518110610b8157610b81611a0e565b60200101906001600160f81b031916908160001a905350610ba3600a89611a53565b97505050610b24565b50949350505050565b8151835114610c175760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610337565b6001600160a01b038416610c3d5760405162461bcd60e51b815260040161033790611ad0565b3360005b8451811015610d24576000858281518110610c5e57610c5e611a0e565b602002602001015190506000858381518110610c7c57610c7c611a0e565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610ccc5760405162461bcd60e51b815260040161033790611b15565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610d09908490611b5f565b9250508190555050505080610d1d90611a3a565b9050610c41565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d74929190611b77565b60405180910390a4610d8a81878787878761100b565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610e445760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610337565b33610e5e81600087610e5588611166565b61050e88611166565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610e8e908490611b5f565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461050e816000878787876111b1565b6001600160a01b038416610f145760405162461bcd60e51b815260040161033790611ad0565b33610f24818787610e5588611166565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015610f655760405162461bcd60e51b815260040161033790611b15565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290610fa2908490611b5f565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46110028288888888886111b1565b50505050505050565b6001600160a01b0384163b15610d8a5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061104f9089908990889088908890600401611b9c565b6020604051808303816000875af192505050801561108a575060408051601f3d908101601f1916820190925261108791810190611bfa565b60015b61113657611096611c17565b806308c379a0036110cf57506110aa611c33565b806110b557506110d1565b8060405162461bcd60e51b815260040161033791906113dd565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610337565b6001600160e01b0319811663bc197c8160e01b146110025760405162461bcd60e51b815260040161033790611cbd565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106111a0576111a0611a0e565b602090810291909101015292915050565b6001600160a01b0384163b15610d8a5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906111f59089908990889088908890600401611d05565b6020604051808303816000875af1925050508015611230575060408051601f3d908101601f1916820190925261122d91810190611bfa565b60015b61123c57611096611c17565b6001600160e01b0319811663f23a6e6160e01b146110025760405162461bcd60e51b815260040161033790611cbd565b828054611278906118dd565b90600052602060002090601f01602090048101928261129a57600085556112e0565b82601f106112b357805160ff19168380011785556112e0565b828001600101855582156112e0579182015b828111156112e05782518255916020019190600101906112c5565b506112ec9291506112f0565b5090565b5b808211156112ec57600081556001016112f1565b80356001600160a01b038116811461131c57600080fd5b919050565b6000806040838503121561133457600080fd5b61133d83611305565b946020939093013593505050565b6001600160e01b03198116811461056b57600080fd5b60006020828403121561137357600080fd5b813561137e8161134b565b9392505050565b60005b838110156113a0578181015183820152602001611388565b838111156109555750506000910152565b600081518084526113c9816020860160208601611385565b601f01601f19169290920160200192915050565b60208152600061137e60208301846113b1565b60006020828403121561140257600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561144557611445611409565b6040525050565b600067ffffffffffffffff82111561146657611466611409565b5060051b60200190565b600082601f83011261148157600080fd5b8135602061148e8261144c565b60405161149b828261141f565b83815260059390931b85018201928281019150868411156114bb57600080fd5b8286015b848110156114d657803583529183019183016114bf565b509695505050505050565b600067ffffffffffffffff8311156114fb576114fb611409565b604051611512601f8501601f19166020018261141f565b80915083815284848401111561152757600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261155057600080fd5b61137e838335602085016114e1565b600080600080600060a0868803121561157757600080fd5b61158086611305565b945061158e60208701611305565b9350604086013567ffffffffffffffff808211156115ab57600080fd5b6115b789838a01611470565b945060608801359150808211156115cd57600080fd5b6115d989838a01611470565b935060808801359150808211156115ef57600080fd5b506115fc8882890161153f565b9150509295509295909350565b6000806040838503121561161c57600080fd5b823567ffffffffffffffff8082111561163457600080fd5b818501915085601f83011261164857600080fd5b813560206116558261144c565b604051611662828261141f565b83815260059390931b850182019282810191508984111561168257600080fd5b948201945b838610156116a75761169886611305565b82529482019490820190611687565b965050860135925050808211156116bd57600080fd5b506116ca85828601611470565b9150509250929050565b600081518084526020808501945080840160005b83811015611704578151875295820195908201906001016116e8565b509495945050505050565b60208152600061137e60208301846116d4565b60006020828403121561173457600080fd5b813567ffffffffffffffff81111561174b57600080fd5b8201601f8101841361175c57600080fd5b61176b848235602084016114e1565b949350505050565b6000806040838503121561178657600080fd5b61178f83611305565b9150602083013580151581146117a457600080fd5b809150509250929050565b6000806000604084860312156117c457600080fd5b833567ffffffffffffffff808211156117dc57600080fd5b818601915086601f8301126117f057600080fd5b8135818111156117ff57600080fd5b8760208260051b850101111561181457600080fd5b6020928301989097509590910135949350505050565b6000806040838503121561183d57600080fd5b61184683611305565b915061185460208401611305565b90509250929050565b600080600080600060a0868803121561187557600080fd5b61187e86611305565b945061188c60208701611305565b93506040860135925060608601359150608086013567ffffffffffffffff8111156118b657600080fd5b6115fc8882890161153f565b6000602082840312156118d457600080fd5b61137e82611305565b600181811c908216806118f157607f821691505b60208210810361191157634e487b7160e01b600052602260045260246000fd5b50919050565b60008151611929818560208601611385565b9290920192915050565b600080845481600182811c91508083168061194f57607f831692505b6020808410820361196e57634e487b7160e01b86526022600452602486fd5b8180156119825760018114611993576119c0565b60ff198616895284890196506119c0565b60008b81526020902060005b868110156119b85781548b82015290850190830161199f565b505084890196505b5050505050506119d08185611917565b95945050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611a4c57611a4c611a24565b5060010190565b600082611a7057634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611a8757611a87611a24565b500390565b6000816000190483118215151615611aa657611aa6611a24565b500290565b600060ff821660ff84168060ff03821115611ac857611ac8611a24565b019392505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60008219821115611b7257611b72611a24565b500190565b604081526000611b8a60408301856116d4565b82810360208401526119d081856116d4565b6001600160a01b0386811682528516602082015260a060408201819052600090611bc8908301866116d4565b8281036060840152611bda81866116d4565b90508281036080840152611bee81856113b1565b98975050505050505050565b600060208284031215611c0c57600080fd5b815161137e8161134b565b600060033d1115611c305760046000803e5060005160e01c5b90565b600060443d1015611c415790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611c7157505050505090565b8285019150815181811115611c895750505050505090565b843d8701016020828501011115611ca35750505050505090565b611cb26020828601018761141f565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611d3f908301846113b1565b97965050505050505056fea2646970667358221220a0577668d2846c226ebfe4f5b18080a459e7a46e59445a63653f20d74322257b64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009436f6d6d756e69747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004434d545900000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012b5760003560e01c80638da5cb5b116100ad578063c204642c11610071578063c204642c14610252578063e8a3d48514610265578063e985e9c51461026d578063f242432a146102a9578063f2fde38b146102bc57600080fd5b80638da5cb5b14610201578063938e3d7b1461021c57806395d89b411461022f578063a22cb46514610237578063c0e727401461024a57600080fd5b80633cb40e16116100f45780633cb40e16146101b65780634e1273f4146101be57806355f804b3146101de578063715018a6146101f1578063743976a0146101f957600080fd5b8062fdd58e1461013057806301ffc9a71461015657806306fdde03146101795780630e89341c1461018e5780632eb2c2d6146101a1575b600080fd5b61014361013e366004611321565b6102cf565b6040519081526020015b60405180910390f35b610169610164366004611361565b610366565b604051901515815260200161014d565b6101816103b8565b60405161014d91906113dd565b61018161019c3660046113f0565b61044a565b6101b46101af36600461155f565b61047e565b005b6101b4610515565b6101d16101cc366004611609565b61056e565b60405161014d919061170f565b6101b46101ec366004611722565b610698565b6101b46106d9565b61018161070f565b6003546040516001600160a01b03909116815260200161014d565b6101b461022a366004611722565b61079d565b6101816107da565b6101b4610245366004611773565b6107e9565b6101816108bf565b6101b46102603660046117af565b6108cc565b61018161095b565b61016961027b36600461182a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101b46102b736600461185d565b61096a565b6101b46102ca3660046118c2565b6109f1565b60006001600160a01b0383166103405760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061039757506001600160e01b031982166303a24d0760e21b145b806103b257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600680546103c7906118dd565b80601f01602080910402602001604051908101604052809291908181526020018280546103f3906118dd565b80156104405780601f1061041557610100808354040283529160200191610440565b820191906000526020600020905b81548152906001019060200180831161042357829003601f168201915b5050505050905090565b6060600461045783610a89565b604051602001610468929190611933565b6040516020818303038152906040529050919050565b6001600160a01b03851633148061049a575061049a853361027b565b6105015760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610337565b61050e8585858585610bb5565b5050505050565b6003546001600160a01b0316331461053f5760405162461bcd60e51b8152600401610337906119d9565b60405133904780156108fc02916000818181858888f1935050505015801561056b573d6000803e3d6000fd5b50565b606081518351146105d35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610337565b6000835167ffffffffffffffff8111156105ef576105ef611409565b604051908082528060200260200182016040528015610618578160200160208202803683370190505b50905060005b84518110156106905761066385828151811061063c5761063c611a0e565b602002602001015185838151811061065657610656611a0e565b60200260200101516102cf565b82828151811061067557610675611a0e565b602090810291909101015261068981611a3a565b905061061e565b509392505050565b6003546001600160a01b031633146106c25760405162461bcd60e51b8152600401610337906119d9565b80516106d590600490602084019061126c565b5050565b6003546001600160a01b031633146107035760405162461bcd60e51b8152600401610337906119d9565b61070d6000610d92565b565b6004805461071c906118dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610748906118dd565b80156107955780601f1061076a57610100808354040283529160200191610795565b820191906000526020600020905b81548152906001019060200180831161077857829003601f168201915b505050505081565b6003546001600160a01b031633146107c75760405162461bcd60e51b8152600401610337906119d9565b80516106d590600590602084019061126c565b6060600780546103c7906118dd565b6001600160a01b03821633036108535760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610337565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005805461071c906118dd565b6003546001600160a01b031633146108f65760405162461bcd60e51b8152600401610337906119d9565b60005b828110156109555761094384848381811061091657610916611a0e565b905060200201602081019061092b91906118c2565b83600160405180602001604052806000815250610de4565b8061094d81611a3a565b9150506108f9565b50505050565b6060600580546103c7906118dd565b6001600160a01b0385163314806109865750610986853361027b565b6109e45760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610337565b61050e8585858585610eee565b6003546001600160a01b03163314610a1b5760405162461bcd60e51b8152600401610337906119d9565b6001600160a01b038116610a805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610337565b61056b81610d92565b606081600003610ab05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610ada5780610ac481611a3a565b9150610ad39050600a83611a53565b9150610ab4565b60008167ffffffffffffffff811115610af557610af5611409565b6040519080825280601f01601f191660200182016040528015610b1f576020820181803683370190505b509050815b8515610bac57610b35600182611a75565b90506000610b44600a88611a53565b610b4f90600a611a8c565b610b599088611a75565b610b64906030611aab565b905060008160f81b905080848481518110610b8157610b81611a0e565b60200101906001600160f81b031916908160001a905350610ba3600a89611a53565b97505050610b24565b50949350505050565b8151835114610c175760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610337565b6001600160a01b038416610c3d5760405162461bcd60e51b815260040161033790611ad0565b3360005b8451811015610d24576000858281518110610c5e57610c5e611a0e565b602002602001015190506000858381518110610c7c57610c7c611a0e565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610ccc5760405162461bcd60e51b815260040161033790611b15565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610d09908490611b5f565b9250508190555050505080610d1d90611a3a565b9050610c41565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d74929190611b77565b60405180910390a4610d8a81878787878761100b565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610e445760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610337565b33610e5e81600087610e5588611166565b61050e88611166565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610e8e908490611b5f565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461050e816000878787876111b1565b6001600160a01b038416610f145760405162461bcd60e51b815260040161033790611ad0565b33610f24818787610e5588611166565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015610f655760405162461bcd60e51b815260040161033790611b15565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290610fa2908490611b5f565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46110028288888888886111b1565b50505050505050565b6001600160a01b0384163b15610d8a5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061104f9089908990889088908890600401611b9c565b6020604051808303816000875af192505050801561108a575060408051601f3d908101601f1916820190925261108791810190611bfa565b60015b61113657611096611c17565b806308c379a0036110cf57506110aa611c33565b806110b557506110d1565b8060405162461bcd60e51b815260040161033791906113dd565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610337565b6001600160e01b0319811663bc197c8160e01b146110025760405162461bcd60e51b815260040161033790611cbd565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106111a0576111a0611a0e565b602090810291909101015292915050565b6001600160a01b0384163b15610d8a5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906111f59089908990889088908890600401611d05565b6020604051808303816000875af1925050508015611230575060408051601f3d908101601f1916820190925261122d91810190611bfa565b60015b61123c57611096611c17565b6001600160e01b0319811663f23a6e6160e01b146110025760405162461bcd60e51b815260040161033790611cbd565b828054611278906118dd565b90600052602060002090601f01602090048101928261129a57600085556112e0565b82601f106112b357805160ff19168380011785556112e0565b828001600101855582156112e0579182015b828111156112e05782518255916020019190600101906112c5565b506112ec9291506112f0565b5090565b5b808211156112ec57600081556001016112f1565b80356001600160a01b038116811461131c57600080fd5b919050565b6000806040838503121561133457600080fd5b61133d83611305565b946020939093013593505050565b6001600160e01b03198116811461056b57600080fd5b60006020828403121561137357600080fd5b813561137e8161134b565b9392505050565b60005b838110156113a0578181015183820152602001611388565b838111156109555750506000910152565b600081518084526113c9816020860160208601611385565b601f01601f19169290920160200192915050565b60208152600061137e60208301846113b1565b60006020828403121561140257600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561144557611445611409565b6040525050565b600067ffffffffffffffff82111561146657611466611409565b5060051b60200190565b600082601f83011261148157600080fd5b8135602061148e8261144c565b60405161149b828261141f565b83815260059390931b85018201928281019150868411156114bb57600080fd5b8286015b848110156114d657803583529183019183016114bf565b509695505050505050565b600067ffffffffffffffff8311156114fb576114fb611409565b604051611512601f8501601f19166020018261141f565b80915083815284848401111561152757600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261155057600080fd5b61137e838335602085016114e1565b600080600080600060a0868803121561157757600080fd5b61158086611305565b945061158e60208701611305565b9350604086013567ffffffffffffffff808211156115ab57600080fd5b6115b789838a01611470565b945060608801359150808211156115cd57600080fd5b6115d989838a01611470565b935060808801359150808211156115ef57600080fd5b506115fc8882890161153f565b9150509295509295909350565b6000806040838503121561161c57600080fd5b823567ffffffffffffffff8082111561163457600080fd5b818501915085601f83011261164857600080fd5b813560206116558261144c565b604051611662828261141f565b83815260059390931b850182019282810191508984111561168257600080fd5b948201945b838610156116a75761169886611305565b82529482019490820190611687565b965050860135925050808211156116bd57600080fd5b506116ca85828601611470565b9150509250929050565b600081518084526020808501945080840160005b83811015611704578151875295820195908201906001016116e8565b509495945050505050565b60208152600061137e60208301846116d4565b60006020828403121561173457600080fd5b813567ffffffffffffffff81111561174b57600080fd5b8201601f8101841361175c57600080fd5b61176b848235602084016114e1565b949350505050565b6000806040838503121561178657600080fd5b61178f83611305565b9150602083013580151581146117a457600080fd5b809150509250929050565b6000806000604084860312156117c457600080fd5b833567ffffffffffffffff808211156117dc57600080fd5b818601915086601f8301126117f057600080fd5b8135818111156117ff57600080fd5b8760208260051b850101111561181457600080fd5b6020928301989097509590910135949350505050565b6000806040838503121561183d57600080fd5b61184683611305565b915061185460208401611305565b90509250929050565b600080600080600060a0868803121561187557600080fd5b61187e86611305565b945061188c60208701611305565b93506040860135925060608601359150608086013567ffffffffffffffff8111156118b657600080fd5b6115fc8882890161153f565b6000602082840312156118d457600080fd5b61137e82611305565b600181811c908216806118f157607f821691505b60208210810361191157634e487b7160e01b600052602260045260246000fd5b50919050565b60008151611929818560208601611385565b9290920192915050565b600080845481600182811c91508083168061194f57607f831692505b6020808410820361196e57634e487b7160e01b86526022600452602486fd5b8180156119825760018114611993576119c0565b60ff198616895284890196506119c0565b60008b81526020902060005b868110156119b85781548b82015290850190830161199f565b505084890196505b5050505050506119d08185611917565b95945050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611a4c57611a4c611a24565b5060010190565b600082611a7057634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611a8757611a87611a24565b500390565b6000816000190483118215151615611aa657611aa6611a24565b500290565b600060ff821660ff84168060ff03821115611ac857611ac8611a24565b019392505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60008219821115611b7257611b72611a24565b500190565b604081526000611b8a60408301856116d4565b82810360208401526119d081856116d4565b6001600160a01b0386811682528516602082015260a060408201819052600090611bc8908301866116d4565b8281036060840152611bda81866116d4565b90508281036080840152611bee81856113b1565b98975050505050505050565b600060208284031215611c0c57600080fd5b815161137e8161134b565b600060033d1115611c305760046000803e5060005160e01c5b90565b600060443d1015611c415790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611c7157505050505090565b8285019150815181811115611c895750505050505090565b843d8701016020828501011115611ca35750505050505090565b611cb26020828601018761141f565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611d3f908301846113b1565b97965050505050505056fea2646970667358221220a0577668d2846c226ebfe4f5b18080a459e7a46e59445a63653f20d74322257b64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009436f6d6d756e69747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004434d545900000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Community
Arg [1] : _symbol (string): CMTY
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 436f6d6d756e6974790000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 434d545900000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
54482:1714:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24592:231;;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;24592:231:0;;;;;;;;23615:310;;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;23615:310:0;1019:187:1;55871:83:0;;;:::i;:::-;;;;;;;:::i;55190:145::-;;;;;;:::i;:::-;;:::i;26687:442::-;;;;;;:::i;:::-;;:::i;:::-;;56084:107;;;:::i;24989:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;55000:86::-;;;;;;:::i;:::-;;:::i;4467:94::-;;;:::i;54555:22::-;;;:::i;3816:87::-;3889:6;;3816:87;;-1:-1:-1;;;;;3889:6:0;;;7638:51:1;;7626:2;7611:18;3816:87:0;7492:203:1;55091:94:0;;;;;;:::i;:::-;;:::i;55962:87::-;;;:::i;25586:311::-;;;;;;:::i;:::-;;:::i;54581:26::-;;;:::i;54799:183::-;;;;;;:::i;:::-;;:::i;55340:88::-;;;:::i;25969:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26092:27:0;;;26068:4;26092:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;25969:168;26209:401;;;;;;:::i;:::-;;:::i;4716:192::-;;;;;;:::i;:::-;;:::i;24592:231::-;24678:7;-1:-1:-1;;;;;24706:21:0;;24698:77;;;;-1:-1:-1;;;24698:77:0;;10015:2:1;24698:77:0;;;9997:21:1;10054:2;10034:18;;;10027:30;10093:34;10073:18;;;10066:62;-1:-1:-1;;;10144:18:1;;;10137:41;10195:19;;24698:77:0;;;;;;;;;-1:-1:-1;24793:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;24793:22:0;;;;;;;;;;;;24592:231::o;23615:310::-;23717:4;-1:-1:-1;;;;;;23754:41:0;;-1:-1:-1;;;23754:41:0;;:110;;-1:-1:-1;;;;;;;23812:52:0;;-1:-1:-1;;;23812:52:0;23754:110;:163;;;-1:-1:-1;;;;;;;;;;22585:40:0;;;23881:36;23734:183;23615:310;-1:-1:-1;;23615:310:0:o;55871:83::-;55908:13;55941:5;55934:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55871:83;:::o;55190:145::-;55250:13;55301:8;55311:17;55320:7;55311:8;:17::i;:::-;55284:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55270:60;;55190:145;;;:::o;26687:442::-;-1:-1:-1;;;;;26920:20:0;;2717:10;26920:20;;:60;;-1:-1:-1;26944:36:0;26961:4;2717:10;25969:168;:::i;26944:36::-;26898:160;;;;-1:-1:-1;;;26898:160:0;;12307:2:1;26898:160:0;;;12289:21:1;12346:2;12326:18;;;12319:30;12385:34;12365:18;;;12358:62;-1:-1:-1;;;12436:18:1;;;12429:48;12494:19;;26898:160:0;12105:414:1;26898:160:0;27069:52;27092:4;27098:2;27102:3;27107:7;27116:4;27069:22;:52::i;:::-;26687:442;;;;;:::o;56084:107::-;3889:6;;-1:-1:-1;;;;;3889:6:0;2717:10;4036:23;4028:68;;;;-1:-1:-1;;;4028:68:0;;;;;;;:::i;:::-;56135:51:::1;::::0;56143:10:::1;::::0;56164:21:::1;56135:51:::0;::::1;;;::::0;::::1;::::0;;;56164:21;56143:10;56135:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;56084:107::o:0;24989:524::-;25145:16;25206:3;:10;25187:8;:15;:29;25179:83;;;;-1:-1:-1;;;25179:83:0;;13087:2:1;25179:83:0;;;13069:21:1;13126:2;13106:18;;;13099:30;13165:34;13145:18;;;13138:62;-1:-1:-1;;;13216:18:1;;;13209:39;13265:19;;25179:83:0;12885:405:1;25179:83:0;25275:30;25322:8;:15;25308:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25308:30:0;;25275:63;;25356:9;25351:122;25375:8;:15;25371:1;:19;25351:122;;;25431:30;25441:8;25450:1;25441:11;;;;;;;;:::i;:::-;;;;;;;25454:3;25458:1;25454:6;;;;;;;;:::i;:::-;;;;;;;25431:9;:30::i;:::-;25412:13;25426:1;25412:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;25392:3;;;:::i;:::-;;;25351:122;;;-1:-1:-1;25492:13:0;24989:524;-1:-1:-1;;;24989:524:0:o;55000:86::-;3889:6;;-1:-1:-1;;;;;3889:6:0;2717:10;4036:23;4028:68;;;;-1:-1:-1;;;4028:68:0;;;;;;;:::i;:::-;55064:17;;::::1;::::0;:8:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55000:86:::0;:::o;4467:94::-;3889:6;;-1:-1:-1;;;;;3889:6:0;2717:10;4036:23;4028:68;;;;-1:-1:-1;;;4028:68:0;;;;;;;:::i;:::-;4532:21:::1;4550:1;4532:9;:21::i;:::-;4467:94::o:0;54555:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55091:94::-;3889:6;;-1:-1:-1;;;;;3889:6:0;2717:10;4036:23;4028:68;;;;-1:-1:-1;;;4028:68:0;;;;;;;:::i;:::-;55159:21;;::::1;::::0;:12:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;55962:87::-:0;56001:13;56034:7;56027:14;;;;;:::i;25586:311::-;-1:-1:-1;;;;;25689:24:0;;2717:10;25689:24;25681:78;;;;-1:-1:-1;;;25681:78:0;;13901:2:1;25681:78:0;;;13883:21:1;13940:2;13920:18;;;13913:30;13979:34;13959:18;;;13952:62;-1:-1:-1;;;14030:18:1;;;14023:39;14079:19;;25681:78:0;13699:405:1;25681:78:0;2717:10;25772:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25772:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25772:53:0;;;;;;;;;;25841:48;;1159:41:1;;;25772:42:0;;2717:10;25841:48;;1132:18:1;25841:48:0;;;;;;;25586:311;;:::o;54581:26::-;;;;;;;:::i;54799:183::-;3889:6;;-1:-1:-1;;;;;3889:6:0;2717:10;4036:23;4028:68;;;;-1:-1:-1;;;4028:68:0;;;;;;;:::i;:::-;54884:9:::1;54880:98;54899:15:::0;;::::1;54880:98;;;54936:30;54942:4;;54947:1;54942:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;54951;54960:1;54936:30;;;;;;;;;;;::::0;:5:::1;:30::i;:::-;54916:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54880:98;;;;54799:183:::0;;;:::o;55340:88::-;55384:13;55411:12;55404:19;;;;;:::i;26209:401::-;-1:-1:-1;;;;;26417:20:0;;2717:10;26417:20;;:60;;-1:-1:-1;26441:36:0;26458:4;2717:10;25969:168;:::i;26441:36::-;26395:151;;;;-1:-1:-1;;;26395:151:0;;14311:2:1;26395:151:0;;;14293:21:1;14350:2;14330:18;;;14323:30;14389:34;14369:18;;;14362:62;-1:-1:-1;;;14440:18:1;;;14433:39;14489:19;;26395:151:0;14109:405:1;26395:151:0;26557:45;26575:4;26581:2;26585;26589:6;26597:4;26557:17;:45::i;4716:192::-;3889:6;;-1:-1:-1;;;;;3889:6:0;2717:10;4036:23;4028:68;;;;-1:-1:-1;;;4028:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4805:22:0;::::1;4797:73;;;::::0;-1:-1:-1;;;4797:73:0;;14721:2:1;4797:73:0::1;::::0;::::1;14703:21:1::0;14760:2;14740:18;;;14733:30;14799:34;14779:18;;;14772:62;-1:-1:-1;;;14850:18:1;;;14843:36;14896:19;;4797:73:0::1;14519:402:1::0;4797:73:0::1;4881:19;4891:8;4881:9;:19::i;55433:430::-:0;55486:27;55524:2;55530:1;55524:7;55520:26;;-1:-1:-1;;55534:10:0;;;;;;;;;;;;-1:-1:-1;;;55534:10:0;;;;;55433:430::o;55520:26::-;55563:2;55551:9;55587:32;55594:6;;55587:32;;55603:5;;;;:::i;:::-;;-1:-1:-1;55610:7:0;;-1:-1:-1;55615:2:0;55610:7;;:::i;:::-;;;55587:32;;;55624:17;55654:3;55644:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55644:14:0;-1:-1:-1;55624:34:0;-1:-1:-1;55676:3:0;55684:151;55691:7;;55684:151;;55710:5;55714:1;55710;:5;:::i;:::-;55706:9;-1:-1:-1;55721:10:0;55752:7;55757:2;55752;:7;:::i;:::-;55751:14;;55763:2;55751:14;:::i;:::-;55746:19;;:2;:19;:::i;:::-;55735:31;;:2;:31;:::i;:::-;55721:46;;55773:9;55792:4;55785:12;;55773:24;;55813:2;55803:4;55808:1;55803:7;;;;;;;;:::i;:::-;;;;:12;-1:-1:-1;;;;;55803:12:0;;;;;;;;-1:-1:-1;55821:8:0;55827:2;55821:8;;:::i;:::-;;;55700:135;;55684:151;;;-1:-1:-1;55853:4:0;55433:430;-1:-1:-1;;;;55433:430:0:o;28771:1074::-;28998:7;:14;28984:3;:10;:28;28976:81;;;;-1:-1:-1;;;28976:81:0;;15862:2:1;28976:81:0;;;15844:21:1;15901:2;15881:18;;;15874:30;15940:34;15920:18;;;15913:62;-1:-1:-1;;;15991:18:1;;;15984:38;16039:19;;28976:81:0;15660:404:1;28976:81:0;-1:-1:-1;;;;;29076:16:0;;29068:66;;;;-1:-1:-1;;;29068:66:0;;;;;;;:::i;:::-;2717:10;29147:16;29264:421;29288:3;:10;29284:1;:14;29264:421;;;29320:10;29333:3;29337:1;29333:6;;;;;;;;:::i;:::-;;;;;;;29320:19;;29354:14;29371:7;29379:1;29371:10;;;;;;;;:::i;:::-;;;;;;;;;;;;29398:19;29420:13;;;;;;;;;;-1:-1:-1;;;;;29420:19:0;;;;;;;;;;;;29371:10;;-1:-1:-1;29462:21:0;;;;29454:76;;;;-1:-1:-1;;;29454:76:0;;;;;;;:::i;:::-;29574:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29574:19:0;;;;;;;;;;29596:20;;;29574:42;;29646:17;;;;;;;:27;;29596:20;;29574:9;29646:27;;29596:20;;29646:27;:::i;:::-;;;;;;;;29305:380;;;29300:3;;;;:::i;:::-;;;29264:421;;;;29732:2;-1:-1:-1;;;;;29702:47:0;29726:4;-1:-1:-1;;;;;29702:47:0;29716:8;-1:-1:-1;;;;;29702:47:0;;29736:3;29741:7;29702:47;;;;;;;:::i;:::-;;;;;;;;29762:75;29798:8;29808:4;29814:2;29818:3;29823:7;29832:4;29762:35;:75::i;:::-;28965:880;28771:1074;;;;;:::o;4916:173::-;4991:6;;;-1:-1:-1;;;;;5008:17:0;;;-1:-1:-1;;;;;;5008:17:0;;;;;;;5041:40;;4991:6;;;5008:17;4991:6;;5041:40;;4972:16;;5041:40;4961:128;4916:173;:::o;31178:599::-;-1:-1:-1;;;;;31336:21:0;;31328:67;;;;-1:-1:-1;;;31328:67:0;;17691:2:1;31328:67:0;;;17673:21:1;17730:2;17710:18;;;17703:30;17769:34;17749:18;;;17742:62;-1:-1:-1;;;17820:18:1;;;17813:31;17861:19;;31328:67:0;17489:397:1;31328:67:0;2717:10;31452:107;2717:10;31408:16;31495:7;31504:21;31522:2;31504:17;:21::i;:::-;31527:25;31545:6;31527:17;:25::i;31452:107::-;31572:9;:13;;;;;;;;;;;-1:-1:-1;;;;;31572:22:0;;;;;;;;;:32;;31598:6;;31572:9;:32;;31598:6;;31572:32;:::i;:::-;;;;-1:-1:-1;;31620:57:0;;;18065:25:1;;;18121:2;18106:18;;18099:34;;;-1:-1:-1;;;;;31620:57:0;;;;31653:1;;31620:57;;;;;;18038:18:1;31620:57:0;;;;;;;31690:79;31721:8;31739:1;31743:7;31752:2;31756:6;31764:4;31690:30;:79::i;27593:820::-;-1:-1:-1;;;;;27781:16:0;;27773:66;;;;-1:-1:-1;;;27773:66:0;;;;;;;:::i;:::-;2717:10;27896:96;2717:10;27927:4;27933:2;27937:21;27955:2;27937:17;:21::i;27896:96::-;28005:19;28027:13;;;;;;;;;;;-1:-1:-1;;;;;28027:19:0;;;;;;;;;;28065:21;;;;28057:76;;;;-1:-1:-1;;;28057:76:0;;;;;;;:::i;:::-;28169:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28169:19:0;;;;;;;;;;28191:20;;;28169:42;;28233:17;;;;;;;:27;;28191:20;;28169:9;28233:27;;28191:20;;28233:27;:::i;:::-;;;;-1:-1:-1;;28278:46:0;;;18065:25:1;;;18121:2;18106:18;;18099:34;;;-1:-1:-1;;;;;28278:46:0;;;;;;;;;;;;;;18038:18:1;28278:46:0;;;;;;;28337:68;28368:8;28378:4;28384:2;28388;28392:6;28400:4;28337:30;:68::i;:::-;27762:651;;27593:820;;;;;:::o;36864:817::-;-1:-1:-1;;;;;37104:13:0;;6153:20;6201:8;37100:574;;37140:79;;-1:-1:-1;;;37140:79:0;;-1:-1:-1;;;;;37140:43:0;;;;;:79;;37184:8;;37194:4;;37200:3;;37205:7;;37214:4;;37140:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37140:79:0;;;;;;;;-1:-1:-1;;37140:79:0;;;;;;;;;;;;:::i;:::-;;;37136:527;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;37536:6;37529:14;;-1:-1:-1;;;37529:14:0;;;;;;;;:::i;37136:527::-;;;37585:62;;-1:-1:-1;;;37585:62:0;;20303:2:1;37585:62:0;;;20285:21:1;20342:2;20322:18;;;20315:30;20381:34;20361:18;;;20354:62;-1:-1:-1;;;20432:18:1;;;20425:50;20492:19;;37585:62:0;20101:416:1;37136:527:0;-1:-1:-1;;;;;;37301:64:0;;-1:-1:-1;;;37301:64:0;37297:163;;37390:50;;-1:-1:-1;;;37390:50:0;;;;;;;:::i;37689:198::-;37809:16;;;37823:1;37809:16;;;;;;;;;37755;;37784:22;;37809:16;;;;;;;;;;;;-1:-1:-1;37809:16:0;37784:41;;37847:7;37836:5;37842:1;37836:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;37874:5;37689:198;-1:-1:-1;;37689:198:0:o;36108:748::-;-1:-1:-1;;;;;36323:13:0;;6153:20;6201:8;36319:530;;36359:72;;-1:-1:-1;;;36359:72:0;;-1:-1:-1;;;;;36359:38:0;;;;;:72;;36398:8;;36408:4;;36414:2;;36418:6;;36426:4;;36359:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36359:72:0;;;;;;;;-1:-1:-1;;36359:72:0;;;;;;;;;;;;:::i;:::-;;;36355:483;;;;:::i;:::-;-1:-1:-1;;;;;;36481:59:0;;-1:-1:-1;;;36481:59:0;36477:158;;36565:50;;-1:-1:-1;;;36565:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:258::-;1283:1;1293:113;1307:6;1304:1;1301:13;1293:113;;;1383:11;;;1377:18;1364:11;;;1357:39;1329:2;1322:10;1293:113;;;1424:6;1421:1;1418:13;1415:48;;;-1:-1:-1;;1459:1:1;1441:16;;1434:27;1211:258::o;1474:269::-;1527:3;1565:5;1559:12;1592:6;1587:3;1580:19;1608:63;1664:6;1657:4;1652:3;1648:14;1641:4;1634:5;1630:16;1608:63;:::i;:::-;1725:2;1704:15;-1:-1:-1;;1700:29:1;1691:39;;;;1732:4;1687:50;;1474:269;-1:-1:-1;;1474:269:1:o;1748:231::-;1897:2;1886:9;1879:21;1860:4;1917:56;1969:2;1958:9;1954:18;1946:6;1917:56;:::i;1984:180::-;2043:6;2096:2;2084:9;2075:7;2071:23;2067:32;2064:52;;;2112:1;2109;2102:12;2064:52;-1:-1:-1;2135:23:1;;1984:180;-1:-1:-1;1984:180:1:o;2169:127::-;2230:10;2225:3;2221:20;2218:1;2211:31;2261:4;2258:1;2251:15;2285:4;2282:1;2275:15;2301:249;2411:2;2392:13;;-1:-1:-1;;2388:27:1;2376:40;;2446:18;2431:34;;2467:22;;;2428:62;2425:88;;;2493:18;;:::i;:::-;2529:2;2522:22;-1:-1:-1;;2301:249:1:o;2555:183::-;2615:4;2648:18;2640:6;2637:30;2634:56;;;2670:18;;:::i;:::-;-1:-1:-1;2715:1:1;2711:14;2727:4;2707:25;;2555:183::o;2743:724::-;2797:5;2850:3;2843:4;2835:6;2831:17;2827:27;2817:55;;2868:1;2865;2858:12;2817:55;2904:6;2891:20;2930:4;2953:43;2993:2;2953:43;:::i;:::-;3025:2;3019:9;3037:31;3065:2;3057:6;3037:31;:::i;:::-;3103:18;;;3195:1;3191:10;;;;3179:23;;3175:32;;;3137:15;;;;-1:-1:-1;3219:15:1;;;3216:35;;;3247:1;3244;3237:12;3216:35;3283:2;3275:6;3271:15;3295:142;3311:6;3306:3;3303:15;3295:142;;;3377:17;;3365:30;;3415:12;;;;3328;;3295:142;;;-1:-1:-1;3455:6:1;2743:724;-1:-1:-1;;;;;;2743:724:1:o;3472:468::-;3536:5;3570:18;3562:6;3559:30;3556:56;;;3592:18;;:::i;:::-;3641:2;3635:9;3653:69;3710:2;3689:15;;-1:-1:-1;;3685:29:1;3716:4;3681:40;3635:9;3653:69;:::i;:::-;3740:6;3731:15;;3770:6;3762;3755:22;3810:3;3801:6;3796:3;3792:16;3789:25;3786:45;;;3827:1;3824;3817:12;3786:45;3877:6;3872:3;3865:4;3857:6;3853:17;3840:44;3932:1;3925:4;3916:6;3908;3904:19;3900:30;3893:41;;3472:468;;;;;:::o;3945:220::-;3987:5;4040:3;4033:4;4025:6;4021:17;4017:27;4007:55;;4058:1;4055;4048:12;4007:55;4080:79;4155:3;4146:6;4133:20;4126:4;4118:6;4114:17;4080:79;:::i;4170:943::-;4324:6;4332;4340;4348;4356;4409:3;4397:9;4388:7;4384:23;4380:33;4377:53;;;4426:1;4423;4416:12;4377:53;4449:29;4468:9;4449:29;:::i;:::-;4439:39;;4497:38;4531:2;4520:9;4516:18;4497:38;:::i;:::-;4487:48;;4586:2;4575:9;4571:18;4558:32;4609:18;4650:2;4642:6;4639:14;4636:34;;;4666:1;4663;4656:12;4636:34;4689:61;4742:7;4733:6;4722:9;4718:22;4689:61;:::i;:::-;4679:71;;4803:2;4792:9;4788:18;4775:32;4759:48;;4832:2;4822:8;4819:16;4816:36;;;4848:1;4845;4838:12;4816:36;4871:63;4926:7;4915:8;4904:9;4900:24;4871:63;:::i;:::-;4861:73;;4987:3;4976:9;4972:19;4959:33;4943:49;;5017:2;5007:8;5004:16;5001:36;;;5033:1;5030;5023:12;5001:36;;5056:51;5099:7;5088:8;5077:9;5073:24;5056:51;:::i;:::-;5046:61;;;4170:943;;;;;;;;:::o;5118:1208::-;5236:6;5244;5297:2;5285:9;5276:7;5272:23;5268:32;5265:52;;;5313:1;5310;5303:12;5265:52;5353:9;5340:23;5382:18;5423:2;5415:6;5412:14;5409:34;;;5439:1;5436;5429:12;5409:34;5477:6;5466:9;5462:22;5452:32;;5522:7;5515:4;5511:2;5507:13;5503:27;5493:55;;5544:1;5541;5534:12;5493:55;5580:2;5567:16;5602:4;5625:43;5665:2;5625:43;:::i;:::-;5697:2;5691:9;5709:31;5737:2;5729:6;5709:31;:::i;:::-;5775:18;;;5863:1;5859:10;;;;5851:19;;5847:28;;;5809:15;;;;-1:-1:-1;5887:19:1;;;5884:39;;;5919:1;5916;5909:12;5884:39;5943:11;;;;5963:148;5979:6;5974:3;5971:15;5963:148;;;6045:23;6064:3;6045:23;:::i;:::-;6033:36;;5996:12;;;;6089;;;;5963:148;;;6130:6;-1:-1:-1;;6174:18:1;;6161:32;;-1:-1:-1;;6205:16:1;;;6202:36;;;6234:1;6231;6224:12;6202:36;;6257:63;6312:7;6301:8;6290:9;6286:24;6257:63;:::i;:::-;6247:73;;;5118:1208;;;;;:::o;6331:435::-;6384:3;6422:5;6416:12;6449:6;6444:3;6437:19;6475:4;6504:2;6499:3;6495:12;6488:19;;6541:2;6534:5;6530:14;6562:1;6572:169;6586:6;6583:1;6580:13;6572:169;;;6647:13;;6635:26;;6681:12;;;;6716:15;;;;6608:1;6601:9;6572:169;;;-1:-1:-1;6757:3:1;;6331:435;-1:-1:-1;;;;;6331:435:1:o;6771:261::-;6950:2;6939:9;6932:21;6913:4;6970:56;7022:2;7011:9;7007:18;6999:6;6970:56;:::i;7037:450::-;7106:6;7159:2;7147:9;7138:7;7134:23;7130:32;7127:52;;;7175:1;7172;7165:12;7127:52;7215:9;7202:23;7248:18;7240:6;7237:30;7234:50;;;7280:1;7277;7270:12;7234:50;7303:22;;7356:4;7348:13;;7344:27;-1:-1:-1;7334:55:1;;7385:1;7382;7375:12;7334:55;7408:73;7473:7;7468:2;7455:16;7450:2;7446;7442:11;7408:73;:::i;:::-;7398:83;7037:450;-1:-1:-1;;;;7037:450:1:o;7700:347::-;7765:6;7773;7826:2;7814:9;7805:7;7801:23;7797:32;7794:52;;;7842:1;7839;7832:12;7794:52;7865:29;7884:9;7865:29;:::i;:::-;7855:39;;7944:2;7933:9;7929:18;7916:32;7991:5;7984:13;7977:21;7970:5;7967:32;7957:60;;8013:1;8010;8003:12;7957:60;8036:5;8026:15;;;7700:347;;;;;:::o;8052:689::-;8147:6;8155;8163;8216:2;8204:9;8195:7;8191:23;8187:32;8184:52;;;8232:1;8229;8222:12;8184:52;8272:9;8259:23;8301:18;8342:2;8334:6;8331:14;8328:34;;;8358:1;8355;8348:12;8328:34;8396:6;8385:9;8381:22;8371:32;;8441:7;8434:4;8430:2;8426:13;8422:27;8412:55;;8463:1;8460;8453:12;8412:55;8503:2;8490:16;8529:2;8521:6;8518:14;8515:34;;;8545:1;8542;8535:12;8515:34;8600:7;8593:4;8583:6;8580:1;8576:14;8572:2;8568:23;8564:34;8561:47;8558:67;;;8621:1;8618;8611:12;8558:67;8652:4;8644:13;;;;8676:6;;-1:-1:-1;8714:20:1;;;;8701:34;;8052:689;-1:-1:-1;;;;8052:689:1:o;8746:260::-;8814:6;8822;8875:2;8863:9;8854:7;8850:23;8846:32;8843:52;;;8891:1;8888;8881:12;8843:52;8914:29;8933:9;8914:29;:::i;:::-;8904:39;;8962:38;8996:2;8985:9;8981:18;8962:38;:::i;:::-;8952:48;;8746:260;;;;;:::o;9011:606::-;9115:6;9123;9131;9139;9147;9200:3;9188:9;9179:7;9175:23;9171:33;9168:53;;;9217:1;9214;9207:12;9168:53;9240:29;9259:9;9240:29;:::i;:::-;9230:39;;9288:38;9322:2;9311:9;9307:18;9288:38;:::i;:::-;9278:48;;9373:2;9362:9;9358:18;9345:32;9335:42;;9424:2;9413:9;9409:18;9396:32;9386:42;;9479:3;9468:9;9464:19;9451:33;9507:18;9499:6;9496:30;9493:50;;;9539:1;9536;9529:12;9493:50;9562:49;9603:7;9594:6;9583:9;9579:22;9562:49;:::i;9622:186::-;9681:6;9734:2;9722:9;9713:7;9709:23;9705:32;9702:52;;;9750:1;9747;9740:12;9702:52;9773:29;9792:9;9773:29;:::i;10225:380::-;10304:1;10300:12;;;;10347;;;10368:61;;10422:4;10414:6;10410:17;10400:27;;10368:61;10475:2;10467:6;10464:14;10444:18;10441:38;10438:161;;10521:10;10516:3;10512:20;10509:1;10502:31;10556:4;10553:1;10546:15;10584:4;10581:1;10574:15;10438:161;;10225:380;;;:::o;10736:185::-;10778:3;10816:5;10810:12;10831:52;10876:6;10871:3;10864:4;10857:5;10853:16;10831:52;:::i;:::-;10899:16;;;;;10736:185;-1:-1:-1;;10736:185:1:o;10926:1174::-;11102:3;11131:1;11164:6;11158:13;11194:3;11216:1;11244:9;11240:2;11236:18;11226:28;;11304:2;11293:9;11289:18;11326;11316:61;;11370:4;11362:6;11358:17;11348:27;;11316:61;11396:2;11444;11436:6;11433:14;11413:18;11410:38;11407:165;;-1:-1:-1;;;11471:33:1;;11527:4;11524:1;11517:15;11557:4;11478:3;11545:17;11407:165;11588:18;11615:104;;;;11733:1;11728:320;;;;11581:467;;11615:104;-1:-1:-1;;11648:24:1;;11636:37;;11693:16;;;;-1:-1:-1;11615:104:1;;11728:320;10683:1;10676:14;;;10720:4;10707:18;;11823:1;11837:165;11851:6;11848:1;11845:13;11837:165;;;11929:14;;11916:11;;;11909:35;11972:16;;;;11866:10;;11837:165;;;11841:3;;12031:6;12026:3;12022:16;12015:23;;11581:467;;;;;;;12064:30;12090:3;12082:6;12064:30;:::i;:::-;12057:37;10926:1174;-1:-1:-1;;;;;10926:1174:1:o;12524:356::-;12726:2;12708:21;;;12745:18;;;12738:30;12804:34;12799:2;12784:18;;12777:62;12871:2;12856:18;;12524:356::o;13295:127::-;13356:10;13351:3;13347:20;13344:1;13337:31;13387:4;13384:1;13377:15;13411:4;13408:1;13401:15;13427:127;13488:10;13483:3;13479:20;13476:1;13469:31;13519:4;13516:1;13509:15;13543:4;13540:1;13533:15;13559:135;13598:3;13619:17;;;13616:43;;13639:18;;:::i;:::-;-1:-1:-1;13686:1:1;13675:13;;13559:135::o;14926:217::-;14966:1;14992;14982:132;;15036:10;15031:3;15027:20;15024:1;15017:31;15071:4;15068:1;15061:15;15099:4;15096:1;15089:15;14982:132;-1:-1:-1;15128:9:1;;14926:217::o;15148:125::-;15188:4;15216:1;15213;15210:8;15207:34;;;15221:18;;:::i;:::-;-1:-1:-1;15258:9:1;;15148:125::o;15278:168::-;15318:7;15384:1;15380;15376:6;15372:14;15369:1;15366:21;15361:1;15354:9;15347:17;15343:45;15340:71;;;15391:18;;:::i;:::-;-1:-1:-1;15431:9:1;;15278:168::o;15451:204::-;15489:3;15525:4;15522:1;15518:12;15557:4;15554:1;15550:12;15592:3;15586:4;15582:14;15577:3;15574:23;15571:49;;;15600:18;;:::i;:::-;15636:13;;15451:204;-1:-1:-1;;;15451:204:1:o;16069:401::-;16271:2;16253:21;;;16310:2;16290:18;;;16283:30;16349:34;16344:2;16329:18;;16322:62;-1:-1:-1;;;16415:2:1;16400:18;;16393:35;16460:3;16445:19;;16069:401::o;16475:406::-;16677:2;16659:21;;;16716:2;16696:18;;;16689:30;16755:34;16750:2;16735:18;;16728:62;-1:-1:-1;;;16821:2:1;16806:18;;16799:40;16871:3;16856:19;;16475:406::o;16886:128::-;16926:3;16957:1;16953:6;16950:1;16947:13;16944:39;;;16963:18;;:::i;:::-;-1:-1:-1;16999:9:1;;16886:128::o;17019:465::-;17276:2;17265:9;17258:21;17239:4;17302:56;17354:2;17343:9;17339:18;17331:6;17302:56;:::i;:::-;17406:9;17398:6;17394:22;17389:2;17378:9;17374:18;17367:50;17434:44;17471:6;17463;17434:44;:::i;18144:838::-;-1:-1:-1;;;;;18541:15:1;;;18523:34;;18593:15;;18588:2;18573:18;;18566:43;18503:3;18640:2;18625:18;;18618:31;;;18466:4;;18672:57;;18709:19;;18701:6;18672:57;:::i;:::-;18777:9;18769:6;18765:22;18760:2;18749:9;18745:18;18738:50;18811:44;18848:6;18840;18811:44;:::i;:::-;18797:58;;18904:9;18896:6;18892:22;18886:3;18875:9;18871:19;18864:51;18932:44;18969:6;18961;18932:44;:::i;:::-;18924:52;18144:838;-1:-1:-1;;;;;;;;18144:838:1:o;18987:249::-;19056:6;19109:2;19097:9;19088:7;19084:23;19080:32;19077:52;;;19125:1;19122;19115:12;19077:52;19157:9;19151:16;19176:30;19200:5;19176:30;:::i;19241:179::-;19276:3;19318:1;19300:16;19297:23;19294:120;;;19364:1;19361;19358;19343:23;-1:-1:-1;19401:1:1;19395:8;19390:3;19386:18;19294:120;19241:179;:::o;19425:671::-;19464:3;19506:4;19488:16;19485:26;19482:39;;;19425:671;:::o;19482:39::-;19548:2;19542:9;-1:-1:-1;;19613:16:1;19609:25;;19606:1;19542:9;19585:50;19664:4;19658:11;19688:16;19723:18;19794:2;19787:4;19779:6;19775:17;19772:25;19767:2;19759:6;19756:14;19753:45;19750:58;;;19801:5;;;;;19425:671;:::o;19750:58::-;19838:6;19832:4;19828:17;19817:28;;19874:3;19868:10;19901:2;19893:6;19890:14;19887:27;;;19907:5;;;;;;19425:671;:::o;19887:27::-;19991:2;19972:16;19966:4;19962:27;19958:36;19951:4;19942:6;19937:3;19933:16;19929:27;19926:69;19923:82;;;19998:5;;;;;;19425:671;:::o;19923:82::-;20014:57;20065:4;20056:6;20048;20044:19;20040:30;20034:4;20014:57;:::i;:::-;-1:-1:-1;20087:3:1;;19425:671;-1:-1:-1;;;;;19425:671:1:o;20522:404::-;20724:2;20706:21;;;20763:2;20743:18;;;20736:30;20802:34;20797:2;20782:18;;20775:62;-1:-1:-1;;;20868:2:1;20853:18;;20846:38;20916:3;20901:19;;20522:404::o;20931:572::-;-1:-1:-1;;;;;21228:15:1;;;21210:34;;21280:15;;21275:2;21260:18;;21253:43;21327:2;21312:18;;21305:34;;;21370:2;21355:18;;21348:34;;;21190:3;21413;21398:19;;21391:32;;;21153:4;;21440:57;;21477:19;;21469:6;21440:57;:::i;:::-;21432:65;20931:572;-1:-1:-1;;;;;;;20931:572:1:o
Swarm Source
ipfs://a0577668d2846c226ebfe4f5b18080a459e7a46e59445a63653f20d74322257b
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.