Contract Overview
Balance:
0 MATIC
My Name Tag:
Not Available
TokenTracker:
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x36a678e413e0f2e4148ec1fbead80885b45dfecb840cc1cf6d15837a1aab9d63 | 25604537 | 438 days 21 hrs ago | 0x410e494c14b75c371198d78dbb8e629bdf318e54 | Contract Creation | 0 MATIC |
[ Download CSV Export ]
Contract Name:
Property
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-04-20 */ //SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } /** * @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; } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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); } // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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); } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ 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; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ 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); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ 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); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ 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); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ 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"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ 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)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ 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" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ 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); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ 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; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @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); /** * @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); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * @dev Harberger property, constantly in auction by allowing market contract to transfer token. */ contract Property is ERC721Enumerable { error TokenNotExists(); error Unauthorized(); error InvalidTokenId(uint256 min, uint256 max); // mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev Address of market contract, allowed to move token via safeTransferByMarket */ address public market; /** * @dev total supply of token */ uint256 private _totalSupply; modifier onlyMarket() { if (msg.sender != market) revert Unauthorized(); _; } /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor( string memory name, string memory symbol, address marketAddress, uint256 totalSupply ) ERC721(name, symbol) { market = marketAddress; _totalSupply = totalSupply; } /** * @dev Transfer token by market contract. */ function safeTransferByMarket( address from_, address to, uint256 tokenId ) public onlyMarket { _safeTransfer(from_, to, tokenId, ""); } /** * @dev Burn token by market contract. */ function burn(uint256 tokenId) public onlyMarket { _burn(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function isApprovedOrOwner(address spender, uint256 tokenId) public view returns (bool) { return _isApprovedOrOwner(spender, tokenId); } /** * @dev Mint token by market contract. */ function mint(address to, uint256 tokenId) public onlyMarket { if (tokenId >= _totalSupply) revert InvalidTokenId(tokenId, _totalSupply); _safeMint(to, tokenId); } /** * @dev Returns whether `tokenId` exists. */ function exists(uint256 tokenId) public view returns (bool) { return _exists(tokenId); } /** * @dev Sets `tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function setTokenURI(uint256 tokenId, string memory uri) internal virtual { if (!_exists(tokenId)) revert TokenNotExists(); if (!_isApprovedOrOwner(msg.sender, tokenId)) revert Unauthorized(); _tokenURIs[tokenId] = uri; } /** * @dev Return token URI */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert TokenNotExists(); string memory _tokenURI = _tokenURIs[tokenId]; return _tokenURI; } }
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"marketAddress","type":"address"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"min","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"InvalidTokenId","type":"error"},{"inputs":[],"name":"TokenNotExists","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"market","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferByMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001ba938038062001ba9833981016040819052620000349162000206565b8351849084906200004d90600090602085019062000093565b5080516200006390600190602084019062000093565b5050600b80546001600160a01b0319166001600160a01b039490941693909317909255600c5550620002d6915050565b828054620000a19062000299565b90600052602060002090601f016020900481019282620000c5576000855562000110565b82601f10620000e057805160ff191683800117855562000110565b8280016001018555821562000110579182015b8281111562000110578251825591602001919060010190620000f3565b506200011e92915062000122565b5090565b5b808211156200011e576000815560010162000123565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200016157600080fd5b81516001600160401b03808211156200017e576200017e62000139565b604051601f8301601f19908116603f01168101908282118183101715620001a957620001a962000139565b81604052838152602092508683858801011115620001c657600080fd5b600091505b83821015620001ea5785820183015181830184015290820190620001cb565b83821115620001fc5760008385830101525b9695505050505050565b600080600080608085870312156200021d57600080fd5b84516001600160401b03808211156200023557600080fd5b62000243888389016200014f565b955060208701519150808211156200025a57600080fd5b5062000269878288016200014f565b604087015190945090506001600160a01b03811681146200028957600080fd5b6060959095015193969295505050565b600181811c90821680620002ae57607f821691505b60208210811415620002d057634e487b7160e01b600052602260045260246000fd5b50919050565b6118c380620002e66000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80634f558e79116100b857806380f556051161007c57806380f55605146102a757806395d89b41146102ba578063a22cb465146102c2578063b88d4fde146102d5578063c87b56dd146102e8578063e985e9c5146102fb57600080fd5b80634f558e79146102485780634f6ccce71461025b578063585008841461026e5780636352211e1461028157806370a082311461029457600080fd5b806323b872dd1161010a57806323b872dd146101d65780632f745c59146101e957806340c10f19146101fc57806342842e0e1461020f57806342966c6814610222578063430c20811461023557600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a610155366004611450565b610337565b60405190151581526020015b60405180910390f35b610177610362565b60405161016691906114ba565b6101976101923660046114cd565b6103f4565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611502565b61048e565b005b6008545b604051908152602001610166565b6101c26101e436600461152c565b6105a4565b6101c86101f7366004611502565b6105d5565b6101c261020a366004611502565b61066b565b6101c261021d36600461152c565b6106d3565b6101c26102303660046114cd565b6106ee565b61015a610243366004611502565b610724565b61015a6102563660046114cd565b610737565b6101c86102693660046114cd565b610756565b6101c261027c36600461152c565b6107e9565b61019761028f3660046114cd565b61082e565b6101c86102a2366004611568565b6108a5565b600b54610197906001600160a01b031681565b61017761092c565b6101c26102d0366004611583565b61093b565b6101c26102e33660046115d5565b610946565b6101776102f63660046114cd565b61097e565b61015a6103093660046116b1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b0319821663780e9d6360e01b148061035c575061035c82610a54565b92915050565b606060008054610371906116e4565b80601f016020809104026020016040519081016040528092919081815260200182805461039d906116e4565b80156103ea5780601f106103bf576101008083540402835291602001916103ea565b820191906000526020600020905b8154815290600101906020018083116103cd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104998261082e565b9050806001600160a01b0316836001600160a01b031614156105075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610469565b336001600160a01b038216148061052357506105238133610309565b6105955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610469565b61059f8383610aa4565b505050565b6105ae3382610b12565b6105ca5760405162461bcd60e51b81526004016104699061171f565b61059f838383610c09565b60006105e0836108a5565b82106106425760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610469565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610695576040516282b42960e81b815260040160405180910390fd5b600c5481106106c557600c5460405163168a450960e21b8152610469918391600401918252602082015260400190565b6106cf8282610db0565b5050565b61059f83838360405180602001604052806000815250610946565b600b546001600160a01b03163314610718576040516282b42960e81b815260040160405180910390fd5b61072181610dca565b50565b60006107308383610b12565b9392505050565b6000818152600260205260408120546001600160a01b0316151561035c565b600061076160085490565b82106107c45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610469565b600882815481106107d7576107d7611770565b90600052602060002001549050919050565b600b546001600160a01b03163314610813576040516282b42960e81b815260040160405180910390fd5b61059f83838360405180602001604052806000815250610e71565b6000818152600260205260408120546001600160a01b03168061035c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610469565b60006001600160a01b0382166109105760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610469565b506001600160a01b031660009081526003602052604090205490565b606060018054610371906116e4565b6106cf338383610ea4565b6109503383610b12565b61096c5760405162461bcd60e51b81526004016104699061171f565b61097884848484610e71565b50505050565b6000818152600260205260409020546060906001600160a01b03166109b557604051626f708760e21b815260040160405180910390fd5b6000828152600a6020526040812080546109ce906116e4565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa906116e4565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b5093979650505050505050565b60006001600160e01b031982166380ac58cd60e01b1480610a8557506001600160e01b03198216635b5e139f60e01b145b8061035c57506301ffc9a760e01b6001600160e01b031983161461035c565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ad98261082e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610b8b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610469565b6000610b968361082e565b9050806001600160a01b0316846001600160a01b03161480610bd15750836001600160a01b0316610bc6846103f4565b6001600160a01b0316145b80610c0157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610c1c8261082e565b6001600160a01b031614610c805760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610469565b6001600160a01b038216610ce25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610469565b610ced838383610f73565b610cf8600082610aa4565b6001600160a01b0383166000908152600360205260408120805460019290610d2190849061179c565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d4f9084906117b3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6106cf82826040518060200160405280600081525061102b565b6000610dd58261082e565b9050610de381600084610f73565b610dee600083610aa4565b6001600160a01b0381166000908152600360205260408120805460019290610e1790849061179c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610e7c848484610c09565b610e888484848461105e565b6109785760405162461bcd60e51b8152600401610469906117cb565b816001600160a01b0316836001600160a01b03161415610f065760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610469565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038316610fce57610fc981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b610ff1565b816001600160a01b0316836001600160a01b031614610ff157610ff1838261115c565b6001600160a01b0382166110085761059f816111f9565b826001600160a01b0316826001600160a01b03161461059f5761059f82826112a8565b61103583836112ec565b611042600084848461105e565b61059f5760405162461bcd60e51b8152600401610469906117cb565b60006001600160a01b0384163b1561115157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906110a290339089908890889060040161181d565b6020604051808303816000875af19250505080156110dd575060408051601f3d908101601f191682019092526110da9181019061185a565b60015b611137573d80801561110b576040519150601f19603f3d011682016040523d82523d6000602084013e611110565b606091505b50805161112f5760405162461bcd60e51b8152600401610469906117cb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c01565b506001949350505050565b60006001611169846108a5565b611173919061179c565b6000838152600760205260409020549091508082146111c6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061120b9060019061179c565b6000838152600960205260408120546008805493945090928490811061123357611233611770565b90600052602060002001549050806008838154811061125457611254611770565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061128c5761128c611877565b6001900381819060005260206000200160009055905550505050565b60006112b3836108a5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166113425760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610469565b6000818152600260205260409020546001600160a01b0316156113a75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610469565b6113b360008383610f73565b6001600160a01b03821660009081526003602052604081208054600192906113dc9084906117b3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461072157600080fd5b60006020828403121561146257600080fd5b81356107308161143a565b6000815180845260005b8181101561149357602081850181015186830182015201611477565b818111156114a5576000602083870101525b50601f01601f19169290920160200192915050565b602081526000610730602083018461146d565b6000602082840312156114df57600080fd5b5035919050565b80356001600160a01b03811681146114fd57600080fd5b919050565b6000806040838503121561151557600080fd5b61151e836114e6565b946020939093013593505050565b60008060006060848603121561154157600080fd5b61154a846114e6565b9250611558602085016114e6565b9150604084013590509250925092565b60006020828403121561157a57600080fd5b610730826114e6565b6000806040838503121561159657600080fd5b61159f836114e6565b9150602083013580151581146115b457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156115eb57600080fd5b6115f4856114e6565b9350611602602086016114e6565b925060408501359150606085013567ffffffffffffffff8082111561162657600080fd5b818701915087601f83011261163a57600080fd5b81358181111561164c5761164c6115bf565b604051601f8201601f19908116603f01168101908382118183101715611674576116746115bf565b816040528281528a602084870101111561168d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156116c457600080fd5b6116cd836114e6565b91506116db602084016114e6565b90509250929050565b600181811c908216806116f857607f821691505b6020821081141561171957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000828210156117ae576117ae611786565b500390565b600082198211156117c6576117c6611786565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118509083018461146d565b9695505050505050565b60006020828403121561186c57600080fd5b81516107308161143a565b634e487b7160e01b600052603160045260246000fdfea26469706673582212202e02aa26c5c166e9b7848bf744bbe680ed2860d5accb0293a83f3d56e974e1ff64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000410e494c14b75c371198d78dbb8e629bdf318e5400000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000006506c616e636b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504c4b0000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000410e494c14b75c371198d78dbb8e629bdf318e5400000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000006506c616e636b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504c4b0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Planck
Arg [1] : symbol (string): PLK
Arg [2] : marketAddress (address): 0x410e494c14b75c371198d78dbb8e629bdf318e54
Arg [3] : totalSupply (uint256): 1000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000410e494c14b75c371198d78dbb8e629bdf318e54
Arg [3] : 00000000000000000000000000000000000000000000000000000000000f4240
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 506c616e636b0000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 504c4b0000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
42041:2796:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35785:224;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35785:224:0;;;;;;;;21834:100;;;:::i;:::-;;;;;;;:::i;23394:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1643:32:1;;;1625:51;;1613:2;1598:18;23394:221:0;1479:203:1;22917:411:0;;;;;;:::i;:::-;;:::i;:::-;;36425:113;36513:10;:17;36425:113;;;2270:25:1;;;2258:2;2243:18;36425:113:0;2124:177:1;24144:339:0;;;;;;:::i;:::-;;:::i;36093:256::-;;;;;;:::i;:::-;;:::i;43767:188::-;;;;;;:::i;:::-;;:::i;24554:185::-;;;;;;:::i;:::-;;:::i;43298:82::-;;;;;;:::i;:::-;;:::i;43547:150::-;;;;;;:::i;:::-;;:::i;44028:102::-;;;;;;:::i;:::-;;:::i;36615:233::-;;;;;;:::i;:::-;;:::i;43046:182::-;;;;;;:::i;:::-;;:::i;21528:239::-;;;;;;:::i;:::-;;:::i;21258:208::-;;;;;;:::i;:::-;;:::i;42388:21::-;;;;;-1:-1:-1;;;;;42388:21:0;;;22003:104;;;:::i;23687:155::-;;;;;;:::i;:::-;;:::i;24810:328::-;;;;;;:::i;:::-;;:::i;44596:238::-;;;;;;:::i;:::-;;:::i;23913:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24034:25:0;;;24010:4;24034:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23913:164;35785:224;35887:4;-1:-1:-1;;;;;;35911:50:0;;-1:-1:-1;;;35911:50:0;;:90;;;35965:36;35989:11;35965:23;:36::i;:::-;35904:97;35785:224;-1:-1:-1;;35785:224:0:o;21834:100::-;21888:13;21921:5;21914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21834:100;:::o;23394:221::-;23470:7;26737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26737:16:0;23490:73;;;;-1:-1:-1;;;23490:73:0;;5309:2:1;23490:73:0;;;5291:21:1;5348:2;5328:18;;;5321:30;5387:34;5367:18;;;5360:62;-1:-1:-1;;;5438:18:1;;;5431:42;5490:19;;23490:73:0;;;;;;;;;-1:-1:-1;23583:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23583:24:0;;23394:221::o;22917:411::-;22998:13;23014:23;23029:7;23014:14;:23::i;:::-;22998:39;;23062:5;-1:-1:-1;;;;;23056:11:0;:2;-1:-1:-1;;;;;23056:11:0;;;23048:57;;;;-1:-1:-1;;;23048:57:0;;5722:2:1;23048:57:0;;;5704:21:1;5761:2;5741:18;;;5734:30;5800:34;5780:18;;;5773:62;-1:-1:-1;;;5851:18:1;;;5844:31;5892:19;;23048:57:0;5520:397:1;23048:57:0;16556:10;-1:-1:-1;;;;;23140:21:0;;;;:62;;-1:-1:-1;23165:37:0;23182:5;16556:10;23913:164;:::i;23165:37::-;23118:168;;;;-1:-1:-1;;;23118:168:0;;6124:2:1;23118:168:0;;;6106:21:1;6163:2;6143:18;;;6136:30;6202:34;6182:18;;;6175:62;6273:26;6253:18;;;6246:54;6317:19;;23118:168:0;5922:420:1;23118:168:0;23299:21;23308:2;23312:7;23299:8;:21::i;:::-;22987:341;22917:411;;:::o;24144:339::-;24339:41;16556:10;24372:7;24339:18;:41::i;:::-;24331:103;;;;-1:-1:-1;;;24331:103:0;;;;;;;:::i;:::-;24447:28;24457:4;24463:2;24467:7;24447:9;:28::i;36093:256::-;36190:7;36226:23;36243:5;36226:16;:23::i;:::-;36218:5;:31;36210:87;;;;-1:-1:-1;;;36210:87:0;;6967:2:1;36210:87:0;;;6949:21:1;7006:2;6986:18;;;6979:30;7045:34;7025:18;;;7018:62;-1:-1:-1;;;7096:18:1;;;7089:41;7147:19;;36210:87:0;6765:407:1;36210:87:0;-1:-1:-1;;;;;;36315:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36093:256::o;43767:188::-;42559:6;;-1:-1:-1;;;;;42559:6:0;42545:10;:20;42541:47;;42574:14;;-1:-1:-1;;;42574:14:0;;;;;;;;;;;42541:47;43854:12:::1;;43843:7;:23;43839:73;;43899:12;::::0;43875:37:::1;::::0;-1:-1:-1;;;43875:37:0;;::::1;::::0;43890:7;;43875:37:::1;;7351:25:1::0;;;7407:2;7392:18;;7385:34;7339:2;7324:18;;7177:248;43839:73:0::1;43925:22;43935:2;43939:7;43925:9;:22::i;:::-;43767:188:::0;;:::o;24554:185::-;24692:39;24709:4;24715:2;24719:7;24692:39;;;;;;;;;;;;:16;:39::i;43298:82::-;42559:6;;-1:-1:-1;;;;;42559:6:0;42545:10;:20;42541:47;;42574:14;;-1:-1:-1;;;42574:14:0;;;;;;;;;;;42541:47;43358:14:::1;43364:7;43358:5;:14::i;:::-;43298:82:::0;:::o;43547:150::-;43629:4;43653:36;43672:7;43681;43653:18;:36::i;:::-;43646:43;43547:150;-1:-1:-1;;;43547:150:0:o;44028:102::-;44082:4;26737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26737:16:0;:30;;44106:16;26648:127;36615:233;36690:7;36726:30;36513:10;:17;;36425:113;36726:30;36718:5;:38;36710:95;;;;-1:-1:-1;;;36710:95:0;;7632:2:1;36710:95:0;;;7614:21:1;7671:2;7651:18;;;7644:30;7710:34;7690:18;;;7683:62;-1:-1:-1;;;7761:18:1;;;7754:42;7813:19;;36710:95:0;7430:408:1;36710:95:0;36823:10;36834:5;36823:17;;;;;;;;:::i;:::-;;;;;;;;;36816:24;;36615:233;;;:::o;43046:182::-;42559:6;;-1:-1:-1;;;;;42559:6:0;42545:10;:20;42541:47;;42574:14;;-1:-1:-1;;;42574:14:0;;;;;;;;;;;42541:47;43183:37:::1;43197:5;43204:2;43208:7;43183:37;;;;;;;;;;;::::0;:13:::1;:37::i;21528:239::-:0;21600:7;21636:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21636:16:0;21671:19;21663:73;;;;-1:-1:-1;;;21663:73:0;;8177:2:1;21663:73:0;;;8159:21:1;8216:2;8196:18;;;8189:30;8255:34;8235:18;;;8228:62;-1:-1:-1;;;8306:18:1;;;8299:39;8355:19;;21663:73:0;7975:405:1;21258:208:0;21330:7;-1:-1:-1;;;;;21358:19:0;;21350:74;;;;-1:-1:-1;;;21350:74:0;;8587:2:1;21350:74:0;;;8569:21:1;8626:2;8606:18;;;8599:30;8665:34;8645:18;;;8638:62;-1:-1:-1;;;8716:18:1;;;8709:40;8766:19;;21350:74:0;8385:406:1;21350:74:0;-1:-1:-1;;;;;;21442:16:0;;;;;:9;:16;;;;;;;21258:208::o;22003:104::-;22059:13;22092:7;22085:14;;;;;:::i;23687:155::-;23782:52;16556:10;23815:8;23825;23782:18;:52::i;24810:328::-;24985:41;16556:10;25018:7;24985:18;:41::i;:::-;24977:103;;;;-1:-1:-1;;;24977:103:0;;;;;;;:::i;:::-;25091:39;25105:4;25111:2;25115:7;25124:5;25091:13;:39::i;:::-;24810:328;;;;:::o;44596:238::-;26713:4;26737:16;;;:7;:16;;;;;;44669:13;;-1:-1:-1;;;;;26737:16:0;44695:46;;44725:16;;-1:-1:-1;;;44725:16:0;;;;;;;;;;;44695:46;44754:23;44780:19;;;:10;:19;;;;;44754:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44754:45:0;;44596:238;-1:-1:-1;;;;;;;44596:238:0:o;20889:305::-;20991:4;-1:-1:-1;;;;;;21028:40:0;;-1:-1:-1;;;21028:40:0;;:105;;-1:-1:-1;;;;;;;21085:48:0;;-1:-1:-1;;;21085:48:0;21028:105;:158;;;-1:-1:-1;;;;;;;;;;19607:40:0;;;21150:36;19498:157;30794:174;30869:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30869:29:0;-1:-1:-1;;;;;30869:29:0;;;;;;;;:24;;30923:23;30869:24;30923:14;:23::i;:::-;-1:-1:-1;;;;;30914:46:0;;;;;;;;;;;30794:174;;:::o;26942:348::-;27035:4;26737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26737:16:0;27052:73;;;;-1:-1:-1;;;27052:73:0;;8998:2:1;27052:73:0;;;8980:21:1;9037:2;9017:18;;;9010:30;9076:34;9056:18;;;9049:62;-1:-1:-1;;;9127:18:1;;;9120:42;9179:19;;27052:73:0;8796:408:1;27052:73:0;27136:13;27152:23;27167:7;27152:14;:23::i;:::-;27136:39;;27205:5;-1:-1:-1;;;;;27194:16:0;:7;-1:-1:-1;;;;;27194:16:0;;:51;;;;27238:7;-1:-1:-1;;;;;27214:31:0;:20;27226:7;27214:11;:20::i;:::-;-1:-1:-1;;;;;27214:31:0;;27194:51;:87;;;-1:-1:-1;;;;;;24034:25:0;;;24010:4;24034:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27249:32;27186:96;26942:348;-1:-1:-1;;;;26942:348:0:o;30051:625::-;30210:4;-1:-1:-1;;;;;30183:31:0;:23;30198:7;30183:14;:23::i;:::-;-1:-1:-1;;;;;30183:31:0;;30175:81;;;;-1:-1:-1;;;30175:81:0;;9411:2:1;30175:81:0;;;9393:21:1;9450:2;9430:18;;;9423:30;9489:34;9469:18;;;9462:62;-1:-1:-1;;;9540:18:1;;;9533:35;9585:19;;30175:81:0;9209:401:1;30175:81:0;-1:-1:-1;;;;;30275:16:0;;30267:65;;;;-1:-1:-1;;;30267:65:0;;9817:2:1;30267:65:0;;;9799:21:1;9856:2;9836:18;;;9829:30;9895:34;9875:18;;;9868:62;-1:-1:-1;;;9946:18:1;;;9939:34;9990:19;;30267:65:0;9615:400:1;30267:65:0;30345:39;30366:4;30372:2;30376:7;30345:20;:39::i;:::-;30449:29;30466:1;30470:7;30449:8;:29::i;:::-;-1:-1:-1;;;;;30491:15:0;;;;;;:9;:15;;;;;:20;;30510:1;;30491:15;:20;;30510:1;;30491:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30522:13:0;;;;;;:9;:13;;;;;:18;;30539:1;;30522:13;:18;;30539:1;;30522:18;:::i;:::-;;;;-1:-1:-1;;30551:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30551:21:0;-1:-1:-1;;;;;30551:21:0;;;;;;;;;30590:27;;30551:16;;30590:27;;;;;;;22987:341;22917:411;;:::o;27632:110::-;27708:26;27718:2;27722:7;27708:26;;;;;;;;;;;;:9;:26::i;29294:420::-;29354:13;29370:23;29385:7;29370:14;:23::i;:::-;29354:39;;29406:48;29427:5;29442:1;29446:7;29406:20;:48::i;:::-;29495:29;29512:1;29516:7;29495:8;:29::i;:::-;-1:-1:-1;;;;;29537:16:0;;;;;;:9;:16;;;;;:21;;29557:1;;29537:16;:21;;29557:1;;29537:21;:::i;:::-;;;;-1:-1:-1;;29576:16:0;;;;:7;:16;;;;;;29569:23;;-1:-1:-1;;;;;;29569:23:0;;;29610:36;29584:7;;29576:16;-1:-1:-1;;;;;29610:36:0;;;;;29576:16;;29610:36;43767:188;;:::o;26020:315::-;26177:28;26187:4;26193:2;26197:7;26177:9;:28::i;:::-;26224:48;26247:4;26253:2;26257:7;26266:5;26224:22;:48::i;:::-;26216:111;;;;-1:-1:-1;;;26216:111:0;;;;;;;:::i;31110:315::-;31265:8;-1:-1:-1;;;;;31256:17:0;:5;-1:-1:-1;;;;;31256:17:0;;;31248:55;;;;-1:-1:-1;;;31248:55:0;;11036:2:1;31248:55:0;;;11018:21:1;11075:2;11055:18;;;11048:30;11114:27;11094:18;;;11087:55;11159:18;;31248:55:0;10834:349:1;31248:55:0;-1:-1:-1;;;;;31314:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31314:46:0;;;;;;;;;;31376:41;;540::1;;;31376::0;;513:18:1;31376:41:0;;;;;;;31110:315;;;:::o;37461:589::-;-1:-1:-1;;;;;37667:18:0;;37663:187;;37702:40;37734:7;38877:10;:17;;38850:24;;;;:15;:24;;;;;:44;;;38905:24;;;;;;;;;;;;38773:164;37702:40;37663:187;;;37772:2;-1:-1:-1;;;;;37764:10:0;:4;-1:-1:-1;;;;;37764:10:0;;37760:90;;37791:47;37824:4;37830:7;37791:32;:47::i;:::-;-1:-1:-1;;;;;37864:16:0;;37860:183;;37897:45;37934:7;37897:36;:45::i;37860:183::-;37970:4;-1:-1:-1;;;;;37964:10:0;:2;-1:-1:-1;;;;;37964:10:0;;37960:83;;37991:40;38019:2;38023:7;37991:27;:40::i;27969:321::-;28099:18;28105:2;28109:7;28099:5;:18::i;:::-;28150:54;28181:1;28185:2;28189:7;28198:5;28150:22;:54::i;:::-;28128:154;;;;-1:-1:-1;;;28128:154:0;;;;;;;:::i;31990:799::-;32145:4;-1:-1:-1;;;;;32166:13:0;;8905:19;:23;32162:620;;32202:72;;-1:-1:-1;;;32202:72:0;;-1:-1:-1;;;;;32202:36:0;;;;;:72;;16556:10;;32253:4;;32259:7;;32268:5;;32202:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32202:72:0;;;;;;;;-1:-1:-1;;32202:72:0;;;;;;;;;;;;:::i;:::-;;;32198:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32444:13:0;;32440:272;;32487:60;;-1:-1:-1;;;32487:60:0;;;;;;;:::i;32440:272::-;32662:6;32656:13;32647:6;32643:2;32639:15;32632:38;32198:529;-1:-1:-1;;;;;;32325:51:0;-1:-1:-1;;;32325:51:0;;-1:-1:-1;32318:58:0;;32162:620;-1:-1:-1;32766:4:0;31990:799;;;;;;:::o;39564:988::-;39830:22;39880:1;39855:22;39872:4;39855:16;:22::i;:::-;:26;;;;:::i;:::-;39892:18;39913:26;;;:17;:26;;;;;;39830:51;;-1:-1:-1;40046:28:0;;;40042:328;;-1:-1:-1;;;;;40113:18:0;;40091:19;40113:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40164:30;;;;;;:44;;;40281:30;;:17;:30;;;;;:43;;;40042:328;-1:-1:-1;40466:26:0;;;;:17;:26;;;;;;;;40459:33;;;-1:-1:-1;;;;;40510:18:0;;;;;:12;:18;;;;;:34;;;;;;;40503:41;39564:988::o;40847:1079::-;41125:10;:17;41100:22;;41125:21;;41145:1;;41125:21;:::i;:::-;41157:18;41178:24;;;:15;:24;;;;;;41551:10;:26;;41100:46;;-1:-1:-1;41178:24:0;;41100:46;;41551:26;;;;;;:::i;:::-;;;;;;;;;41529:48;;41615:11;41590:10;41601;41590:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41695:28;;;:15;:28;;;;;;;:41;;;41867:24;;;;;41860:31;41902:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40918:1008;;;40847:1079;:::o;38351:221::-;38436:14;38453:20;38470:2;38453:16;:20::i;:::-;-1:-1:-1;;;;;38484:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38529:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38351:221:0:o;28626:439::-;-1:-1:-1;;;;;28706:16:0;;28698:61;;;;-1:-1:-1;;;28698:61:0;;12270:2:1;28698:61:0;;;12252:21:1;;;12289:18;;;12282:30;12348:34;12328:18;;;12321:62;12400:18;;28698:61:0;12068:356:1;28698:61:0;26713:4;26737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26737:16:0;:30;28770:58;;;;-1:-1:-1;;;28770:58:0;;12631:2:1;28770:58:0;;;12613:21:1;12670:2;12650:18;;;12643:30;12709;12689:18;;;12682:58;12757:18;;28770:58:0;12429:352:1;28770:58:0;28841:45;28870:1;28874:2;28878:7;28841:20;:45::i;:::-;-1:-1:-1;;;;;28899:13:0;;;;;;:9;:13;;;;;:18;;28916:1;;28899:13;:18;;28916:1;;28899:18;:::i;:::-;;;;-1:-1:-1;;28928:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28928:21:0;-1:-1:-1;;;;;28928:21:0;;;;;;;;28967:33;;28928:16;;;28967:33;;28928:16;;28967:33;43767:188;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:472::-;634:3;672:5;666:12;699:6;694:3;687:19;724:1;734:162;748:6;745:1;742:13;734:162;;;810:4;866:13;;;862:22;;856:29;838:11;;;834:20;;827:59;763:12;734:162;;;914:6;911:1;908:13;905:87;;;980:1;973:4;964:6;959:3;955:16;951:27;944:38;905:87;-1:-1:-1;1046:2:1;1025:15;-1:-1:-1;;1021:29:1;1012:39;;;;1053:4;1008:50;;592:472;-1:-1:-1;;592:472:1:o;1069:220::-;1218:2;1207:9;1200:21;1181:4;1238:45;1279:2;1268:9;1264:18;1256:6;1238:45;:::i;1294:180::-;1353:6;1406:2;1394:9;1385:7;1381:23;1377:32;1374:52;;;1422:1;1419;1412:12;1374:52;-1:-1:-1;1445:23:1;;1294:180;-1:-1:-1;1294:180:1:o;1687:173::-;1755:20;;-1:-1:-1;;;;;1804:31:1;;1794:42;;1784:70;;1850:1;1847;1840:12;1784:70;1687:173;;;:::o;1865:254::-;1933:6;1941;1994:2;1982:9;1973:7;1969:23;1965:32;1962:52;;;2010:1;2007;2000:12;1962:52;2033:29;2052:9;2033:29;:::i;:::-;2023:39;2109:2;2094:18;;;;2081:32;;-1:-1:-1;;;1865:254:1:o;2306:328::-;2383:6;2391;2399;2452:2;2440:9;2431:7;2427:23;2423:32;2420:52;;;2468:1;2465;2458:12;2420:52;2491:29;2510:9;2491:29;:::i;:::-;2481:39;;2539:38;2573:2;2562:9;2558:18;2539:38;:::i;:::-;2529:48;;2624:2;2613:9;2609:18;2596:32;2586:42;;2306:328;;;;;:::o;2639:186::-;2698:6;2751:2;2739:9;2730:7;2726:23;2722:32;2719:52;;;2767:1;2764;2757:12;2719:52;2790:29;2809:9;2790:29;:::i;2830:347::-;2895:6;2903;2956:2;2944:9;2935:7;2931:23;2927:32;2924:52;;;2972:1;2969;2962:12;2924:52;2995:29;3014:9;2995:29;:::i;:::-;2985:39;;3074:2;3063:9;3059:18;3046:32;3121:5;3114:13;3107:21;3100:5;3097:32;3087:60;;3143:1;3140;3133:12;3087:60;3166:5;3156:15;;;2830:347;;;;;:::o;3182:127::-;3243:10;3238:3;3234:20;3231:1;3224:31;3274:4;3271:1;3264:15;3298:4;3295:1;3288:15;3314:1138;3409:6;3417;3425;3433;3486:3;3474:9;3465:7;3461:23;3457:33;3454:53;;;3503:1;3500;3493:12;3454:53;3526:29;3545:9;3526:29;:::i;:::-;3516:39;;3574:38;3608:2;3597:9;3593:18;3574:38;:::i;:::-;3564:48;;3659:2;3648:9;3644:18;3631:32;3621:42;;3714:2;3703:9;3699:18;3686:32;3737:18;3778:2;3770:6;3767:14;3764:34;;;3794:1;3791;3784:12;3764:34;3832:6;3821:9;3817:22;3807:32;;3877:7;3870:4;3866:2;3862:13;3858:27;3848:55;;3899:1;3896;3889:12;3848:55;3935:2;3922:16;3957:2;3953;3950:10;3947:36;;;3963:18;;:::i;:::-;4038:2;4032:9;4006:2;4092:13;;-1:-1:-1;;4088:22:1;;;4112:2;4084:31;4080:40;4068:53;;;4136:18;;;4156:22;;;4133:46;4130:72;;;4182:18;;:::i;:::-;4222:10;4218:2;4211:22;4257:2;4249:6;4242:18;4297:7;4292:2;4287;4283;4279:11;4275:20;4272:33;4269:53;;;4318:1;4315;4308:12;4269:53;4374:2;4369;4365;4361:11;4356:2;4348:6;4344:15;4331:46;4419:1;4414:2;4409;4401:6;4397:15;4393:24;4386:35;4440:6;4430:16;;;;;;;3314:1138;;;;;;;:::o;4457:260::-;4525:6;4533;4586:2;4574:9;4565:7;4561:23;4557:32;4554:52;;;4602:1;4599;4592:12;4554:52;4625:29;4644:9;4625:29;:::i;:::-;4615:39;;4673:38;4707:2;4696:9;4692:18;4673:38;:::i;:::-;4663:48;;4457:260;;;;;:::o;4722:380::-;4801:1;4797:12;;;;4844;;;4865:61;;4919:4;4911:6;4907:17;4897:27;;4865:61;4972:2;4964:6;4961:14;4941:18;4938:38;4935:161;;;5018:10;5013:3;5009:20;5006:1;4999:31;5053:4;5050:1;5043:15;5081:4;5078:1;5071:15;4935:161;;4722:380;;;:::o;6347:413::-;6549:2;6531:21;;;6588:2;6568:18;;;6561:30;6627:34;6622:2;6607:18;;6600:62;-1:-1:-1;;;6693:2:1;6678:18;;6671:47;6750:3;6735:19;;6347:413::o;7843:127::-;7904:10;7899:3;7895:20;7892:1;7885:31;7935:4;7932:1;7925:15;7959:4;7956:1;7949:15;10020:127;10081:10;10076:3;10072:20;10069:1;10062:31;10112:4;10109:1;10102:15;10136:4;10133:1;10126:15;10152:125;10192:4;10220:1;10217;10214:8;10211:34;;;10225:18;;:::i;:::-;-1:-1:-1;10262:9:1;;10152:125::o;10282:128::-;10322:3;10353:1;10349:6;10346:1;10343:13;10340:39;;;10359:18;;:::i;:::-;-1:-1:-1;10395:9:1;;10282:128::o;10415:414::-;10617:2;10599:21;;;10656:2;10636:18;;;10629:30;10695:34;10690:2;10675:18;;10668:62;-1:-1:-1;;;10761:2:1;10746:18;;10739:48;10819:3;10804:19;;10415:414::o;11188:489::-;-1:-1:-1;;;;;11457:15:1;;;11439:34;;11509:15;;11504:2;11489:18;;11482:43;11556:2;11541:18;;11534:34;;;11604:3;11599:2;11584:18;;11577:31;;;11382:4;;11625:46;;11651:19;;11643:6;11625:46;:::i;:::-;11617:54;11188:489;-1:-1:-1;;;;;;11188:489:1:o;11682:249::-;11751:6;11804:2;11792:9;11783:7;11779:23;11775:32;11772:52;;;11820:1;11817;11810:12;11772:52;11852:9;11846:16;11871:30;11895:5;11871:30;:::i;11936:127::-;11997:10;11992:3;11988:20;11985:1;11978:31;12028:4;12025:1;12018:15;12052:4;12049:1;12042:15
Swarm Source
ipfs://2e02aa26c5c166e9b7848bf744bbe680ed2860d5accb0293a83f3d56e974e1ff
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|