Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
[ Download CSV Export ]
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x1d3cD2830A1520fef025b714100aEAb7DF90484C
Contract Name:
ERC721NFTCustom
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-02-01 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @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 (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; } } // 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/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 (token/ERC721/ERC721.sol) // 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 `IERC721.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 v4.4.1 (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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 overriden 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); } /** * @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); } /** * @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 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); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(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 {} } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol) /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol) // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) // OpenZeppelin Contracts v4.4.1 (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 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); } /** * @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(); } } contract ERC721NFTCustom is ERC721URIStorage, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); address private _owner; bool public metadataUpdatable; bool public tokensBurnable; bool public tokensTransferable; // Mapping of individually frozen tokens mapping (uint256 => bool) public freezeTokenUris; // 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; string public baseURI; event PermanentURI(string _value, uint256 indexed _id); // https://docs.opensea.io/docs/metadata-standards event PermanentURIGlobal(); constructor( string memory _name, string memory _symbol, address owner, bool _metadataUpdatable, bool _tokensBurnable, bool _tokensTransferable, string memory _initBaseURI ) ERC721(_name, _symbol) { _setupRole(DEFAULT_ADMIN_ROLE, owner); _setupRole(MINTER_ROLE, owner); _setupRole(MINTER_ROLE, msg.sender); metadataUpdatable = _metadataUpdatable; tokensBurnable = _tokensBurnable; tokensTransferable = _tokensTransferable; baseURI = _initBaseURI; _owner = owner; } function mintToCaller(address caller, uint256 tokenId, string memory tokenURI) public onlyRole(MINTER_ROLE) returns (uint256) { _safeMint(caller, tokenId); _setTokenURI(tokenId, tokenURI); return tokenId; } function supportsInterface(bytes4 interfaceId) public view override(ERC721, AccessControl) returns (bool) { return ERC721.supportsInterface(interfaceId); } function owner() public view returns (address) { return _owner; } function _baseURI() internal view virtual override(ERC721) returns (string memory) { return baseURI; } function updateTokenUri(uint256 _tokenId, string memory _tokenUri, bool _isFreezeTokenUri) public onlyRole(MINTER_ROLE) { require(_exists(_tokenId), "NFT: update URI query for nonexistent token"); require(metadataUpdatable, "NFT: Token uris are frozen globally"); require(freezeTokenUris[_tokenId] != true, "NFT: Token is frozen"); require(_isFreezeTokenUri || (bytes(_tokenUri).length != 0), "NFT: Either _tokenUri or _isFreezeTokenUri=true required"); if (bytes(_tokenUri).length != 0) { require(keccak256(bytes(tokenURI(_tokenId))) != keccak256(bytes(string(abi.encodePacked(_baseURI(), _tokenUri)))), "NFT: New token URI is same as updated"); _setTokenURI(_tokenId, _tokenUri); } if (_isFreezeTokenUri) { freezeTokenUris[_tokenId] = true; emit PermanentURI(tokenURI(_tokenId), _tokenId); } } function transferByOwner( address _to, uint256 _tokenId ) public onlyRole(MINTER_ROLE) { require(tokensTransferable, "NFT: Transfers by owner are disabled"); _safeTransfer(_owner, _to, _tokenId, ""); } function burn(uint256 _tokenId) public onlyRole(MINTER_ROLE) { require(tokensBurnable, "NFT: tokens burning is disabled"); require(_exists(_tokenId), "Burn for nonexistent token"); require(ERC721.ownerOf(_tokenId) == _owner, "NFT: tokens may be burned by owner only"); _burn(_tokenId); } function update( string memory _newBaseURI, bool _tokensTransferable, bool _freezeUpdates ) public onlyRole(MINTER_ROLE) { require(metadataUpdatable, "NFT: Contract updates are frozen"); baseURI = _newBaseURI; if (!_tokensTransferable) { tokensTransferable = false; } if (_freezeUpdates) { metadataUpdatable = false; emit PermanentURIGlobal(); } } function totalSupply() public view virtual returns (uint256) { return _allTokens.length; } function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) { require(index < balanceOf(owner), "ERC721: owner index out of bounds"); return _ownedTokens[owner][index]; } function tokenByIndex(uint256 index) public view virtual returns (uint256) { require(index < totalSupply(), "ERC721: global index out of bounds"); return _allTokens[index]; } 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); } } function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * 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). */ 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]; } 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(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"bool","name":"_metadataUpdatable","type":"bool"},{"internalType":"bool","name":"_tokensBurnable","type":"bool"},{"internalType":"bool","name":"_tokensTransferable","type":"bool"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[],"name":"PermanentURIGlobal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"freezeTokenUris","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"metadataUpdatable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mintToCaller","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":"tokensBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensTransferable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferByOwner","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"},{"internalType":"bool","name":"_tokensTransferable","type":"bool"},{"internalType":"bool","name":"_freezeUpdates","type":"bool"}],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenUri","type":"string"},{"internalType":"bool","name":"_isFreezeTokenUri","type":"bool"}],"name":"updateTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002efb38038062002efb833981016040819052620000349162000366565b8651879087906200004d906000906020850190620001dd565b50805162000063906001906020840190620001dd565b50620000759150600090508662000129565b6200009060008051602062002edb8339815191528662000129565b620000ab60008051602062002edb8339815191523362000129565b6008805461ffff60a01b1916600160a01b8615150260ff60a81b191617600160a81b851515021760ff60b01b1916600160b01b841515021790558051620000fa90600e906020840190620001dd565b5050600880546001600160a01b0319166001600160a01b03959095169490941790935550620004909350505050565b62000135828262000139565b5050565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff16620001355760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001993390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828054620001eb9062000453565b90600052602060002090601f0160209004810192826200020f57600085556200025a565b82601f106200022a57805160ff19168380011785556200025a565b828001600101855582156200025a579182015b828111156200025a5782518255916020019190600101906200023d565b50620002689291506200026c565b5090565b5b808211156200026857600081556001016200026d565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002ab57600080fd5b81516001600160401b0380821115620002c857620002c862000283565b604051601f8301601f19908116603f01168101908282118183101715620002f357620002f362000283565b816040528381526020925086838588010111156200031057600080fd5b600091505b8382101562000334578582018301518183018401529082019062000315565b83821115620003465760008385830101525b9695505050505050565b805180151581146200036157600080fd5b919050565b600080600080600080600060e0888a0312156200038257600080fd5b87516001600160401b03808211156200039a57600080fd5b620003a88b838c0162000299565b985060208a0151915080821115620003bf57600080fd5b620003cd8b838c0162000299565b60408b015190985091506001600160a01b0382168214620003ed57600080fd5b819650620003fe60608b0162000350565b95506200040e60808b0162000350565b94506200041e60a08b0162000350565b935060c08a01519150808211156200043557600080fd5b50620004448a828b0162000299565b91505092959891949750929550565b600181811c908216806200046857607f821691505b602082108114156200048a57634e487b7160e01b600052602260045260246000fd5b50919050565b612a3b80620004a06000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a578063a2f551ec116100ad578063d547741f1161007c578063d547741f14610462578063de374d9d14610475578063e3d5207214610489578063e985e9c51461049d578063f127ed0b146104d957600080fd5b8063a2f551ec14610414578063b88d4fde14610427578063c87b56dd1461043a578063d53913931461044d57600080fd5b806391d14854116100e957806391d14854146103de57806395d89b41146103f1578063a217fddf146103f9578063a22cb4651461040157600080fd5b806370a08231146103845780637afdcdbb146103975780638d010db3146103aa5780638da5cb5b146103cd57600080fd5b80632f2ff15d1161019d57806342966c681161016c57806342966c681461032f5780634e6f9dd6146103425780634f6ccce7146103565780636352211e146103695780636c0360eb1461037c57600080fd5b80632f2ff15d146102e35780632f745c59146102f657806336568abe1461030957806342842e0e1461031c57600080fd5b806318160ddd116101d957806318160ddd1461028857806321e92d491461029a57806323b872dd146102ad578063248a9ca3146102c057600080fd5b806301ffc9a71461020b57806306fdde0314610233578063081812fc14610248578063095ea7b314610273575b600080fd5b61021e610219366004612310565b6104ec565b60405190151581526020015b60405180910390f35b61023b6104fd565b60405161022a9190612385565b61025b610256366004612398565b61058f565b6040516001600160a01b03909116815260200161022a565b6102866102813660046123cd565b61061c565b005b600c545b60405190815260200161022a565b6102866102a83660046123cd565b610732565b6102866102bb3660046123f7565b6107d9565b61028c6102ce366004612398565b60009081526007602052604090206001015490565b6102866102f1366004612433565b61080a565b61028c6103043660046123cd565b610830565b610286610317366004612433565b6108bc565b61028661032a3660046123f7565b61093a565b61028661033d366004612398565b610955565b60085461021e90600160a01b900460ff1681565b61028c610364366004612398565b610aa0565b61025b610377366004612398565b610b29565b61023b610ba0565b61028c61039236600461245f565b610c2e565b61028c6103a5366004612526565b610cb5565b61021e6103b8366004612398565b60096020526000908152604090205460ff1681565b6008546001600160a01b031661025b565b61021e6103ec366004612433565b610ced565b61023b610d18565b61028c600081565b61028661040f36600461258d565b610d27565b6102866104223660046125b7565b610d32565b61028661043536600461260e565b611005565b61023b610448366004612398565b611037565b61028c6000805160206129e683398151915281565b610286610470366004612433565b6111a1565b60085461021e90600160b01b900460ff1681565b60085461021e90600160a81b900460ff1681565b61021e6104ab36600461268a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102866104e73660046126b4565b6111c7565b60006104f7826112a2565b92915050565b60606000805461050c90612709565b80601f016020809104026020016040519081016040528092919081815260200182805461053890612709565b80156105855780601f1061055a57610100808354040283529160200191610585565b820191906000526020600020905b81548152906001019060200180831161056857829003601f168201915b5050505050905090565b600061059a826112f2565b6106005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062782610b29565b9050806001600160a01b0316836001600160a01b031614156106955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105f7565b336001600160a01b03821614806106b157506106b181336104ab565b6107235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105f7565b61072d838361130f565b505050565b6000805160206129e683398151915261074b813361137d565b600854600160b01b900460ff166107b05760405162461bcd60e51b8152602060048201526024808201527f4e46543a205472616e7366657273206279206f776e6572206172652064697361604482015263189b195960e21b60648201526084016105f7565b60085460408051602081019091526000815261072d916001600160a01b031690859085906113e1565b6107e33382611414565b6107ff5760405162461bcd60e51b81526004016105f790612744565b61072d8383836114fa565b600082815260076020526040902060010154610826813361137d565b61072d83836116a5565b600061083b83610c2e565b82106108935760405162461bcd60e51b815260206004820152602160248201527f4552433732313a206f776e657220696e646578206f7574206f6620626f756e646044820152607360f81b60648201526084016105f7565b506001600160a01b03919091166000908152600a60209081526040808320938352929052205490565b6001600160a01b038116331461092c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016105f7565b610936828261172b565b5050565b61072d83838360405180602001604052806000815250611005565b6000805160206129e683398151915261096e813361137d565b600854600160a81b900460ff166109c75760405162461bcd60e51b815260206004820152601f60248201527f4e46543a20746f6b656e73206275726e696e672069732064697361626c65640060448201526064016105f7565b6109d0826112f2565b610a1c5760405162461bcd60e51b815260206004820152601a60248201527f4275726e20666f72206e6f6e6578697374656e7420746f6b656e00000000000060448201526064016105f7565b6008546001600160a01b0316610a3183610b29565b6001600160a01b031614610a975760405162461bcd60e51b815260206004820152602760248201527f4e46543a20746f6b656e73206d6179206265206275726e6564206279206f776e6044820152666572206f6e6c7960c81b60648201526084016105f7565b61093682611792565b6000610aab600c5490565b8210610b045760405162461bcd60e51b815260206004820152602260248201527f4552433732313a20676c6f62616c20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016105f7565b600c8281548110610b1757610b17612795565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104f75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105f7565b600e8054610bad90612709565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd990612709565b8015610c265780601f10610bfb57610100808354040283529160200191610c26565b820191906000526020600020905b815481529060010190602001808311610c0957829003601f168201915b505050505081565b60006001600160a01b038216610c995760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105f7565b506001600160a01b031660009081526003602052604090205490565b60006000805160206129e6833981519152610cd0813361137d565b610cda85856117d5565b610ce484846117ef565b50919392505050565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461050c90612709565b61093633838361187a565b6000805160206129e6833981519152610d4b813361137d565b610d54846112f2565b610db45760405162461bcd60e51b815260206004820152602b60248201527f4e46543a207570646174652055524920717565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016105f7565b600854600160a01b900460ff16610e195760405162461bcd60e51b815260206004820152602360248201527f4e46543a20546f6b656e2075726973206172652066726f7a656e20676c6f62616044820152626c6c7960e81b60648201526084016105f7565b60008481526009602052604090205460ff16151560011415610e745760405162461bcd60e51b815260206004820152601460248201527327232a1d102a37b5b2b71034b990333937bd32b760611b60448201526064016105f7565b8180610e805750825115155b610ef25760405162461bcd60e51b815260206004820152603860248201527f4e46543a20456974686572205f746f6b656e557269206f72205f69734672656560448201527f7a65546f6b656e5572693d74727565207265717569726564000000000000000060648201526084016105f7565b825115610f9f57610f01611949565b83604051602001610f139291906127ab565b60405160208183030381529060405280519060200120610f3285611037565b805190602001201415610f955760405162461bcd60e51b815260206004820152602560248201527f4e46543a204e657720746f6b656e205552492069732073616d6520617320757060448201526419185d195960da1b60648201526084016105f7565b610f9f84846117ef565b8115610fff576000848152600960205260409020805460ff19166001179055837fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207610fe982611037565b604051610ff69190612385565b60405180910390a25b50505050565b61100f3383611414565b61102b5760405162461bcd60e51b81526004016105f790612744565b610fff848484846113e1565b6060611042826112f2565b6110a85760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016105f7565b600082815260066020526040812080546110c190612709565b80601f01602080910402602001604051908101604052809291908181526020018280546110ed90612709565b801561113a5780601f1061110f5761010080835404028352916020019161113a565b820191906000526020600020905b81548152906001019060200180831161111d57829003601f168201915b50505050509050600061114b611949565b905080516000141561115e575092915050565b8151156111905780826040516020016111789291906127ab565b60405160208183030381529060405292505050919050565b61119984611958565b949350505050565b6000828152600760205260409020600101546111bd813361137d565b61072d838361172b565b6000805160206129e68339815191526111e0813361137d565b600854600160a01b900460ff166112395760405162461bcd60e51b815260206004820181905260248201527f4e46543a20436f6e74726163742075706461746573206172652066726f7a656e60448201526064016105f7565b835161124c90600e90602087019061222b565b5082611260576008805460ff60b01b191690555b8115610fff576008805460ff60a01b191690556040517fb59f45df38ec0d34114b1248c38a29cdbccbf3e745ae3ef310ac66199a4ceccf90600090a150505050565b60006001600160e01b031982166380ac58cd60e01b14806112d357506001600160e01b03198216635b5e139f60e01b145b806104f757506301ffc9a760e01b6001600160e01b03198316146104f7565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061134482610b29565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6113878282610ced565b6109365761139f816001600160a01b03166014611a23565b6113aa836020611a23565b6040516020016113bb9291906127da565b60408051601f198184030181529082905262461bcd60e51b82526105f791600401612385565b6113ec8484846114fa565b6113f884848484611bbf565b610fff5760405162461bcd60e51b81526004016105f79061284f565b600061141f826112f2565b6114805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105f7565b600061148b83610b29565b9050806001600160a01b0316846001600160a01b031614806114c65750836001600160a01b03166114bb8461058f565b6001600160a01b0316145b8061119957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611199565b826001600160a01b031661150d82610b29565b6001600160a01b0316146115755760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105f7565b6001600160a01b0382166115d75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105f7565b6115e2838383611ccc565b6115ed60008261130f565b6001600160a01b03831660009081526003602052604081208054600192906116169084906128b7565b90915550506001600160a01b03821660009081526003602052604081208054600192906116449084906128ce565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6116af8282610ced565b6109365760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556116e73390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6117358282610ced565b156109365760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61179b81611d84565b600081815260066020526040902080546117b490612709565b1590506117d25760008181526006602052604081206117d2916122af565b50565b610936828260405180602001604052806000815250611e2b565b6117f8826112f2565b61185b5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016105f7565b6000828152600660209081526040909120825161072d9284019061222b565b816001600160a01b0316836001600160a01b031614156118dc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105f7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6060600e805461050c90612709565b6060611963826112f2565b6119c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105f7565b60006119d1611949565b905060008151116119f15760405180602001604052806000815250611a1c565b806119fb84611e5e565b604051602001611a0c9291906127ab565b6040516020818303038152906040525b9392505050565b60606000611a328360026128e6565b611a3d9060026128ce565b67ffffffffffffffff811115611a5557611a5561247a565b6040519080825280601f01601f191660200182016040528015611a7f576020820181803683370190505b509050600360fc1b81600081518110611a9a57611a9a612795565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611ac957611ac9612795565b60200101906001600160f81b031916908160001a9053506000611aed8460026128e6565b611af89060016128ce565b90505b6001811115611b70576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611b2c57611b2c612795565b1a60f81b828281518110611b4257611b42612795565b60200101906001600160f81b031916908160001a90535060049490941c93611b6981612905565b9050611afb565b508315611a1c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105f7565b60006001600160a01b0384163b15611cc157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c0390339089908890889060040161291c565b602060405180830381600087803b158015611c1d57600080fd5b505af1925050508015611c4d575060408051601f3d908101601f19168201909252611c4a91810190612959565b60015b611ca7573d808015611c7b576040519150601f19603f3d011682016040523d82523d6000602084013e611c80565b606091505b508051611c9f5760405162461bcd60e51b81526004016105f79061284f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611199565b506001949350505050565b6001600160a01b038316611d2757611d2281600c80546000838152600d60205260408120829055600182018355919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70155565b611d4a565b816001600160a01b0316836001600160a01b031614611d4a57611d4a8382611f5c565b6001600160a01b038216611d615761072d81611ff9565b826001600160a01b0316826001600160a01b03161461072d5761072d82826120a8565b6000611d8f82610b29565b9050611d9d81600084611ccc565b611da860008361130f565b6001600160a01b0381166000908152600360205260408120805460019290611dd19084906128b7565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611e3583836120ec565b611e426000848484611bbf565b61072d5760405162461bcd60e51b81526004016105f79061284f565b606081611e825750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eac5780611e9681612976565b9150611ea59050600a836129a7565b9150611e86565b60008167ffffffffffffffff811115611ec757611ec761247a565b6040519080825280601f01601f191660200182016040528015611ef1576020820181803683370190505b5090505b841561119957611f066001836128b7565b9150611f13600a866129bb565b611f1e9060306128ce565b60f81b818381518110611f3357611f33612795565b60200101906001600160f81b031916908160001a905350611f55600a866129a7565b9450611ef5565b60006001611f6984610c2e565b611f7391906128b7565b6000838152600b6020526040902054909150808214611fc6576001600160a01b0384166000908152600a602090815260408083208584528252808320548484528184208190558352600b90915290208190555b506000918252600b602090815260408084208490556001600160a01b039094168352600a81528383209183525290812055565b600c5460009061200b906001906128b7565b6000838152600d6020526040812054600c805493945090928490811061203357612033612795565b9060005260206000200154905080600c838154811061205457612054612795565b6000918252602080832090910192909255828152600d9091526040808220849055858252812055600c80548061208c5761208c6129cf565b6001900381819060005260206000200160009055905550505050565b60006120b383610c2e565b6001600160a01b039093166000908152600a602090815260408083208684528252808320859055938252600b9052919091209190915550565b6001600160a01b0382166121425760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105f7565b61214b816112f2565b156121985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f7565b6121a460008383611ccc565b6001600160a01b03821660009081526003602052604081208054600192906121cd9084906128ce565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461223790612709565b90600052602060002090601f016020900481019282612259576000855561229f565b82601f1061227257805160ff191683800117855561229f565b8280016001018555821561229f579182015b8281111561229f578251825591602001919060010190612284565b506122ab9291506122e5565b5090565b5080546122bb90612709565b6000825580601f106122cb575050565b601f0160209004906000526020600020908101906117d291905b5b808211156122ab57600081556001016122e6565b6001600160e01b0319811681146117d257600080fd5b60006020828403121561232257600080fd5b8135611a1c816122fa565b60005b83811015612348578181015183820152602001612330565b83811115610fff5750506000910152565b6000815180845261237181602086016020860161232d565b601f01601f19169290920160200192915050565b602081526000611a1c6020830184612359565b6000602082840312156123aa57600080fd5b5035919050565b80356001600160a01b03811681146123c857600080fd5b919050565b600080604083850312156123e057600080fd5b6123e9836123b1565b946020939093013593505050565b60008060006060848603121561240c57600080fd5b612415846123b1565b9250612423602085016123b1565b9150604084013590509250925092565b6000806040838503121561244657600080fd5b82359150612456602084016123b1565b90509250929050565b60006020828403121561247157600080fd5b611a1c826123b1565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124ab576124ab61247a565b604051601f8501601f19908116603f011681019082821181831017156124d3576124d361247a565b816040528093508581528686860111156124ec57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261251757600080fd5b611a1c83833560208501612490565b60008060006060848603121561253b57600080fd5b612544846123b1565b925060208401359150604084013567ffffffffffffffff81111561256757600080fd5b61257386828701612506565b9150509250925092565b803580151581146123c857600080fd5b600080604083850312156125a057600080fd5b6125a9836123b1565b91506124566020840161257d565b6000806000606084860312156125cc57600080fd5b83359250602084013567ffffffffffffffff8111156125ea57600080fd5b6125f686828701612506565b9250506126056040850161257d565b90509250925092565b6000806000806080858703121561262457600080fd5b61262d856123b1565b935061263b602086016123b1565b925060408501359150606085013567ffffffffffffffff81111561265e57600080fd5b8501601f8101871361266f57600080fd5b61267e87823560208401612490565b91505092959194509250565b6000806040838503121561269d57600080fd5b6126a6836123b1565b9150612456602084016123b1565b6000806000606084860312156126c957600080fd5b833567ffffffffffffffff8111156126e057600080fd5b6126ec86828701612506565b9350506126fb6020850161257d565b91506126056040850161257d565b600181811c9082168061271d57607f821691505b6020821081141561273e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600083516127bd81846020880161232d565b8351908301906127d181836020880161232d565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161281281601785016020880161232d565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161284381602884016020880161232d565b01602801949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000828210156128c9576128c96128a1565b500390565b600082198211156128e1576128e16128a1565b500190565b6000816000190483118215151615612900576129006128a1565b500290565b600081612914576129146128a1565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061294f90830184612359565b9695505050505050565b60006020828403121561296b57600080fd5b8151611a1c816122fa565b600060001982141561298a5761298a6128a1565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826129b6576129b6612991565b500490565b6000826129ca576129ca612991565b500690565b634e487b7160e01b600052603160045260246000fdfe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220d2c06bd94aa7f1a797e1c6858ba4db1c625bda3d4e5fab8aecb24d576b13c10164736f6c634300080900339f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a600000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000005fdd0881ef284d6fbb2ed97b01cb13d707f91e42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000104e4654506f727420636f6e74726163740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e465450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
53267:8292:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55210:194;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;55210:194:0;;;;;;;;21429:100;;;:::i;:::-;;;;;;;:::i;22988:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;22988:221:0;1528:203:1;22511:411:0;;;;;;:::i;:::-;;:::i;:::-;;57679:104;57758:10;:17;57679:104;;;2319:25:1;;;2307:2;2292:18;57679:104:0;2173:177:1;56597:247:0;;;;;;:::i;:::-;;:::i;23738:339::-;;;;;;:::i;:::-;;:::i;41690:123::-;;;;;;:::i;:::-;41756:7;41783:12;;;:6;:12;;;;;:22;;;;41690:123;42075:147;;;;;;:::i;:::-;;:::i;57791:230::-;;;;;;:::i;:::-;;:::i;43123:218::-;;;;;;:::i;:::-;;:::i;24148:185::-;;;;;;:::i;:::-;;:::i;56852:333::-;;;;;;:::i;:::-;;:::i;53434:29::-;;;;;-1:-1:-1;;;53434:29:0;;;;;;58029:197;;;;;;:::i;:::-;;:::i;21123:239::-;;;;;;:::i;:::-;;:::i;54119:21::-;;;:::i;20853:208::-;;;;;;:::i;:::-;;:::i;54949:253::-;;;;;;:::i;:::-;;:::i;53588:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;55412:79;55477:6;;-1:-1:-1;;;;;55477:6:0;55412:79;;40575:139;;;;;;:::i;:::-;;:::i;21598:104::-;;;:::i;39666:49::-;;39711:4;39666:49;;23281:155;;;;;;:::i;:::-;;:::i;55653:936::-;;;;;;:::i;:::-;;:::i;24404:328::-;;;;;;:::i;:::-;;:::i;33337:679::-;;;;;;:::i;:::-;;:::i;53334:62::-;;-1:-1:-1;;;;;;;;;;;53334:62:0;;42467:149;;;;;;:::i;:::-;;:::i;53503:30::-;;;;;-1:-1:-1;;;53503:30:0;;;;;;53470:26;;;;;-1:-1:-1;;;53470:26:0;;;;;;23507:164;;;;;;:::i;:::-;-1:-1:-1;;;;;23628:25:0;;;23604:4;23628:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23507:164;57193:478;;;;;;:::i;:::-;;:::i;55210:194::-;55330:4;55359:37;55384:11;55359:24;:37::i;:::-;55352:44;55210:194;-1:-1:-1;;55210:194:0:o;21429:100::-;21483:13;21516:5;21509:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21429:100;:::o;22988:221::-;23064:7;23092:16;23100:7;23092;:16::i;:::-;23084:73;;;;-1:-1:-1;;;23084:73:0;;7844:2:1;23084:73:0;;;7826:21:1;7883:2;7863:18;;;7856:30;7922:34;7902:18;;;7895:62;-1:-1:-1;;;7973:18:1;;;7966:42;8025:19;;23084:73:0;;;;;;;;;-1:-1:-1;23177:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23177:24:0;;22988:221::o;22511:411::-;22592:13;22608:23;22623:7;22608:14;:23::i;:::-;22592:39;;22656:5;-1:-1:-1;;;;;22650:11:0;:2;-1:-1:-1;;;;;22650:11:0;;;22642:57;;;;-1:-1:-1;;;22642:57:0;;8257:2:1;22642:57:0;;;8239:21:1;8296:2;8276:18;;;8269:30;8335:34;8315:18;;;8308:62;-1:-1:-1;;;8386:18:1;;;8379:31;8427:19;;22642:57:0;8055:397:1;22642:57:0;9322:10;-1:-1:-1;;;;;22734:21:0;;;;:62;;-1:-1:-1;22759:37:0;22776:5;9322:10;23507:164;:::i;22759:37::-;22712:168;;;;-1:-1:-1;;;22712:168:0;;8659:2:1;22712:168:0;;;8641:21:1;8698:2;8678:18;;;8671:30;8737:34;8717:18;;;8710:62;8808:26;8788:18;;;8781:54;8852:19;;22712:168:0;8457:420:1;22712:168:0;22893:21;22902:2;22906:7;22893:8;:21::i;:::-;22581:341;22511:411;;:::o;56597:247::-;-1:-1:-1;;;;;;;;;;;40157:30:0;53372:24;9322:10;40157;:30::i;:::-;56726:18:::1;::::0;-1:-1:-1;;;56726:18:0;::::1;;;56718:67;;;::::0;-1:-1:-1;;;56718:67:0;;9084:2:1;56718:67:0::1;::::0;::::1;9066:21:1::0;9123:2;9103:18;;;9096:30;9162:34;9142:18;;;9135:62;-1:-1:-1;;;9213:18:1;;;9206:34;9257:19;;56718:67:0::1;8882:400:1::0;56718:67:0::1;56810:6;::::0;56796:40:::1;::::0;;::::1;::::0;::::1;::::0;;;56810:6:::1;56796:40:::0;;::::1;::::0;-1:-1:-1;;;;;56810:6:0::1;::::0;56818:3;;56823:8;;56796:13:::1;:40::i;23738:339::-:0;23933:41;9322:10;23966:7;23933:18;:41::i;:::-;23925:103;;;;-1:-1:-1;;;23925:103:0;;;;;;;:::i;:::-;24041:28;24051:4;24057:2;24061:7;24041:9;:28::i;42075:147::-;41756:7;41783:12;;;:6;:12;;;;;:22;;;40157:30;40168:4;9322:10;40157;:30::i;:::-;42189:25:::1;42200:4;42206:7;42189:10;:25::i;57791:230::-:0;57879:7;57915:16;57925:5;57915:9;:16::i;:::-;57907:5;:24;57899:70;;;;-1:-1:-1;;;57899:70:0;;9907:2:1;57899:70:0;;;9889:21:1;9946:2;9926:18;;;9919:30;9985:34;9965:18;;;9958:62;-1:-1:-1;;;10036:18:1;;;10029:31;10077:19;;57899:70:0;9705:397:1;57899:70:0;-1:-1:-1;;;;;;57987:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;57791:230::o;43123:218::-;-1:-1:-1;;;;;43219:23:0;;9322:10;43219:23;43211:83;;;;-1:-1:-1;;;43211:83:0;;10309:2:1;43211:83:0;;;10291:21:1;10348:2;10328:18;;;10321:30;10387:34;10367:18;;;10360:62;-1:-1:-1;;;10438:18:1;;;10431:45;10493:19;;43211:83:0;10107:411:1;43211:83:0;43307:26;43319:4;43325:7;43307:11;:26::i;:::-;43123:218;;:::o;24148:185::-;24286:39;24303:4;24309:2;24313:7;24286:39;;;;;;;;;;;;:16;:39::i;56852:333::-;-1:-1:-1;;;;;;;;;;;40157:30:0;53372:24;9322:10;40157;:30::i;:::-;56937:14:::1;::::0;-1:-1:-1;;;56937:14:0;::::1;;;56929:58;;;::::0;-1:-1:-1;;;56929:58:0;;10725:2:1;56929:58:0::1;::::0;::::1;10707:21:1::0;10764:2;10744:18;;;10737:30;10803:33;10783:18;;;10776:61;10854:18;;56929:58:0::1;10523:355:1::0;56929:58:0::1;57006:17;57014:8;57006:7;:17::i;:::-;56998:56;;;::::0;-1:-1:-1;;;56998:56:0;;11085:2:1;56998:56:0::1;::::0;::::1;11067:21:1::0;11124:2;11104:18;;;11097:30;11163:28;11143:18;;;11136:56;11209:18;;56998:56:0::1;10883:350:1::0;56998:56:0::1;57101:6;::::0;-1:-1:-1;;;;;57101:6:0::1;57073:24;57088:8:::0;57073:14:::1;:24::i;:::-;-1:-1:-1::0;;;;;57073:34:0::1;;57065:86;;;::::0;-1:-1:-1;;;57065:86:0;;11440:2:1;57065:86:0::1;::::0;::::1;11422:21:1::0;11479:2;11459:18;;;11452:30;11518:34;11498:18;;;11491:62;-1:-1:-1;;;11569:18:1;;;11562:37;11616:19;;57065:86:0::1;11238:403:1::0;57065:86:0::1;57162:15;57168:8;57162:5;:15::i;58029:197::-:0;58095:7;58131:13;57758:10;:17;;57679:104;58131:13;58123:5;:21;58115:68;;;;-1:-1:-1;;;58115:68:0;;11848:2:1;58115:68:0;;;11830:21:1;11887:2;11867:18;;;11860:30;11926:34;11906:18;;;11899:62;-1:-1:-1;;;11977:18:1;;;11970:32;12019:19;;58115:68:0;11646:398:1;58115:68:0;58201:10;58212:5;58201:17;;;;;;;;:::i;:::-;;;;;;;;;58194:24;;58029:197;;;:::o;21123:239::-;21195:7;21231:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21231:16:0;21266:19;21258:73;;;;-1:-1:-1;;;21258:73:0;;12383:2:1;21258:73:0;;;12365:21:1;12422:2;12402:18;;;12395:30;12461:34;12441:18;;;12434:62;-1:-1:-1;;;12512:18:1;;;12505:39;12561:19;;21258:73:0;12181:405:1;54119:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20853:208::-;20925:7;-1:-1:-1;;;;;20953:19:0;;20945:74;;;;-1:-1:-1;;;20945:74:0;;12793:2:1;20945:74:0;;;12775:21:1;12832:2;12812:18;;;12805:30;12871:34;12851:18;;;12844:62;-1:-1:-1;;;12922:18:1;;;12915:40;12972:19;;20945:74:0;12591:406:1;20945:74:0;-1:-1:-1;;;;;;21037:16:0;;;;;:9;:16;;;;;;;20853:208::o;54949:253::-;55076:7;-1:-1:-1;;;;;;;;;;;40157:30:0;53372:24;9322:10;40157;:30::i;:::-;55101:26:::1;55111:6;55119:7;55101:9;:26::i;:::-;55138:31;55151:7;55160:8;55138:12;:31::i;:::-;-1:-1:-1::0;55187:7:0;;54949:253;-1:-1:-1;;;54949:253:0:o;40575:139::-;40653:4;40677:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;40677:29:0;;;;;;;;;;;;;;;40575:139::o;21598:104::-;21654:13;21687:7;21680:14;;;;;:::i;23281:155::-;23376:52;9322:10;23409:8;23419;23376:18;:52::i;55653:936::-;-1:-1:-1;;;;;;;;;;;40157:30:0;53372:24;9322:10;40157;:30::i;:::-;55802:17:::1;55810:8;55802:7;:17::i;:::-;55794:73;;;::::0;-1:-1:-1;;;55794:73:0;;13204:2:1;55794:73:0::1;::::0;::::1;13186:21:1::0;13243:2;13223:18;;;13216:30;13282:34;13262:18;;;13255:62;-1:-1:-1;;;13333:18:1;;;13326:41;13384:19;;55794:73:0::1;13002:407:1::0;55794:73:0::1;55886:17;::::0;-1:-1:-1;;;55886:17:0;::::1;;;55878:65;;;::::0;-1:-1:-1;;;55878:65:0;;13616:2:1;55878:65:0::1;::::0;::::1;13598:21:1::0;13655:2;13635:18;;;13628:30;13694:34;13674:18;;;13667:62;-1:-1:-1;;;13745:18:1;;;13738:33;13788:19;;55878:65:0::1;13414:399:1::0;55878:65:0::1;55962:25;::::0;;;:15:::1;:25;::::0;;;;;::::1;;:33;;:25:::0;:33:::1;;55954:66;;;::::0;-1:-1:-1;;;55954:66:0;;14020:2:1;55954:66:0::1;::::0;::::1;14002:21:1::0;14059:2;14039:18;;;14032:30;-1:-1:-1;;;14078:18:1;;;14071:50;14138:18;;55954:66:0::1;13818:344:1::0;55954:66:0::1;56039:17;:51;;;-1:-1:-1::0;56061:23:0;;:28;::::1;56039:51;56031:120;;;::::0;-1:-1:-1;;;56031:120:0;;14369:2:1;56031:120:0::1;::::0;::::1;14351:21:1::0;14408:2;14388:18;;;14381:30;14447:34;14427:18;;;14420:62;14518:26;14498:18;;;14491:54;14562:19;;56031:120:0::1;14167:420:1::0;56031:120:0::1;56168:23:::0;;:28;56164:264:::1;;56301:10;:8;:10::i;:::-;56313:9;56284:39;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56261:65;;;;;;56237:18;56246:8;56237;:18::i;:::-;56221:36;;;;;;:105;;56213:155;;;::::0;-1:-1:-1;;;56213:155:0;;15269:2:1;56213:155:0::1;::::0;::::1;15251:21:1::0;15308:2;15288:18;;;15281:30;15347:34;15327:18;;;15320:62;-1:-1:-1;;;15398:18:1;;;15391:35;15443:19;;56213:155:0::1;15067:401:1::0;56213:155:0::1;56383:33;56396:8;56406:9;56383:12;:33::i;:::-;56442:17;56438:144;;;56476:25;::::0;;;:15:::1;:25;::::0;;;;:32;;-1:-1:-1;;56476:32:0::1;56504:4;56476:32;::::0;;56492:8;56528:42:::1;56541:18;56492:8:::0;56541::::1;:18::i;:::-;56528:42;;;;;;:::i;:::-;;;;;;;;56438:144;55653:936:::0;;;;:::o;24404:328::-;24579:41;9322:10;24612:7;24579:18;:41::i;:::-;24571:103;;;;-1:-1:-1;;;24571:103:0;;;;;;;:::i;:::-;24685:39;24699:4;24705:2;24709:7;24718:5;24685:13;:39::i;33337:679::-;33410:13;33444:16;33452:7;33444;:16::i;:::-;33436:78;;;;-1:-1:-1;;;33436:78:0;;15675:2:1;33436:78:0;;;15657:21:1;15714:2;15694:18;;;15687:30;15753:34;15733:18;;;15726:62;-1:-1:-1;;;15804:18:1;;;15797:47;15861:19;;33436:78:0;15473:413:1;33436:78:0;33527:23;33553:19;;;:10;:19;;;;;33527:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33583:18;33604:10;:8;:10::i;:::-;33583:31;;33696:4;33690:18;33712:1;33690:23;33686:72;;;-1:-1:-1;33737:9:0;33337:679;-1:-1:-1;;33337:679:0:o;33686:72::-;33862:23;;:27;33858:108;;33937:4;33943:9;33920:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33906:48;;;;33337:679;;;:::o;33858:108::-;33985:23;34000:7;33985:14;:23::i;:::-;33978:30;33337:679;-1:-1:-1;;;;33337:679:0:o;42467:149::-;41756:7;41783:12;;;:6;:12;;;;;:22;;;40157:30;40168:4;9322:10;40157;:30::i;:::-;42582:26:::1;42594:4;42600:7;42582:11;:26::i;57193:478::-:0;-1:-1:-1;;;;;;;;;;;40157:30:0;53372:24;9322:10;40157;:30::i;:::-;57366:17:::1;::::0;-1:-1:-1;;;57366:17:0;::::1;;;57358:62;;;::::0;-1:-1:-1;;;57358:62:0;;16093:2:1;57358:62:0::1;::::0;::::1;16075:21:1::0;;;16112:18;;;16105:30;16171:34;16151:18;;;16144:62;16223:18;;57358:62:0::1;15891:356:1::0;57358:62:0::1;57431:21:::0;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57468:19;57463:79;;57504:18;:26:::0;;-1:-1:-1;;;;57504:26:0::1;::::0;;57463:79:::1;57556:14;57552:112;;;57587:17;:25:::0;;-1:-1:-1;;;;57587:25:0::1;::::0;;57632:20:::1;::::0;::::1;::::0;57607:5:::1;::::0;57632:20:::1;57193:478:::0;;;;:::o;20484:305::-;20586:4;-1:-1:-1;;;;;;20623:40:0;;-1:-1:-1;;;20623:40:0;;:105;;-1:-1:-1;;;;;;;20680:48:0;;-1:-1:-1;;;20680:48:0;20623:105;:158;;;-1:-1:-1;;;;;;;;;;6542:40:0;;;20745:36;6433:157;26242:127;26307:4;26331:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26331:16:0;:30;;;26242:127::o;30224:174::-;30299:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30299:29:0;-1:-1:-1;;;;;30299:29:0;;;;;;;;:24;;30353:23;30299:24;30353:14;:23::i;:::-;-1:-1:-1;;;;;30344:46:0;;;;;;;;;;;30224:174;;:::o;41004:497::-;41085:22;41093:4;41099:7;41085;:22::i;:::-;41080:414;;41273:41;41301:7;-1:-1:-1;;;;;41273:41:0;41311:2;41273:19;:41::i;:::-;41387:38;41415:4;41422:2;41387:19;:38::i;:::-;41178:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;41178:270:0;;;;;;;;;;-1:-1:-1;;;41124:358:0;;;;;;;:::i;25614:315::-;25771:28;25781:4;25787:2;25791:7;25771:9;:28::i;:::-;25818:48;25841:4;25847:2;25851:7;25860:5;25818:22;:48::i;:::-;25810:111;;;;-1:-1:-1;;;25810:111:0;;;;;;;:::i;26536:348::-;26629:4;26654:16;26662:7;26654;:16::i;:::-;26646:73;;;;-1:-1:-1;;;26646:73:0;;17664:2:1;26646:73:0;;;17646:21:1;17703:2;17683:18;;;17676:30;17742:34;17722:18;;;17715:62;-1:-1:-1;;;17793:18:1;;;17786:42;17845:19;;26646:73:0;17462:408:1;26646:73:0;26730:13;26746:23;26761:7;26746:14;:23::i;:::-;26730:39;;26799:5;-1:-1:-1;;;;;26788:16:0;:7;-1:-1:-1;;;;;26788:16:0;;:51;;;;26832:7;-1:-1:-1;;;;;26808:31:0;:20;26820:7;26808:11;:20::i;:::-;-1:-1:-1;;;;;26808:31:0;;26788:51;:87;;;-1:-1:-1;;;;;;23628:25:0;;;23604:4;23628:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26843:32;23507:164;29528:578;29687:4;-1:-1:-1;;;;;29660:31:0;:23;29675:7;29660:14;:23::i;:::-;-1:-1:-1;;;;;29660:31:0;;29652:85;;;;-1:-1:-1;;;29652:85:0;;18077:2:1;29652:85:0;;;18059:21:1;18116:2;18096:18;;;18089:30;18155:34;18135:18;;;18128:62;-1:-1:-1;;;18206:18:1;;;18199:39;18255:19;;29652:85:0;17875:405:1;29652:85:0;-1:-1:-1;;;;;29756:16:0;;29748:65;;;;-1:-1:-1;;;29748:65:0;;18487:2:1;29748:65:0;;;18469:21:1;18526:2;18506:18;;;18499:30;18565:34;18545:18;;;18538:62;-1:-1:-1;;;18616:18:1;;;18609:34;18660:19;;29748:65:0;18285:400:1;29748:65:0;29826:39;29847:4;29853:2;29857:7;29826:20;:39::i;:::-;29930:29;29947:1;29951:7;29930:8;:29::i;:::-;-1:-1:-1;;;;;29972:15:0;;;;;;:9;:15;;;;;:20;;29991:1;;29972:15;:20;;29991:1;;29972:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30003:13:0;;;;;;:9;:13;;;;;:18;;30020:1;;30003:13;:18;;30020:1;;30003:18;:::i;:::-;;;;-1:-1:-1;;30032:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30032:21:0;-1:-1:-1;;;;;30032:21:0;;;;;;;;;30071:27;;30032:16;;30071:27;;;;;;;29528:578;;;:::o;44624:238::-;44708:22;44716:4;44722:7;44708;:22::i;:::-;44703:152;;44747:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;44747:29:0;;;;;;;;;:36;;-1:-1:-1;;44747:36:0;44779:4;44747:36;;;44830:12;9322:10;;9242:98;44830:12;-1:-1:-1;;;;;44803:40:0;44821:7;-1:-1:-1;;;;;44803:40:0;44815:4;44803:40;;;;;;;;;;44624:238;;:::o;44994:239::-;45078:22;45086:4;45092:7;45078;:22::i;:::-;45074:152;;;45149:5;45117:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;45117:29:0;;;;;;;;;;:37;;-1:-1:-1;;45117:37:0;;;45174:40;9322:10;;45117:12;;45174:40;;45149:5;45174:40;44994:239;;:::o;34618:206::-;34687:20;34699:7;34687:11;:20::i;:::-;34730:19;;;;:10;:19;;;;;34724:33;;;;;:::i;:::-;:38;;-1:-1:-1;34720:97:0;;34786:19;;;;:10;:19;;;;;34779:26;;;:::i;:::-;34618:206;:::o;27226:110::-;27302:26;27312:2;27316:7;27302:26;;;;;;;;;;;;:9;:26::i;34172:217::-;34272:16;34280:7;34272;:16::i;:::-;34264:75;;;;-1:-1:-1;;;34264:75:0;;19287:2:1;34264:75:0;;;19269:21:1;19326:2;19306:18;;;19299:30;19365:34;19345:18;;;19338:62;-1:-1:-1;;;19416:18:1;;;19409:44;19470:19;;34264:75:0;19085:410:1;34264:75:0;34350:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;30540:315::-;30695:8;-1:-1:-1;;;;;30686:17:0;:5;-1:-1:-1;;;;;30686:17:0;;;30678:55;;;;-1:-1:-1;;;30678:55:0;;19702:2:1;30678:55:0;;;19684:21:1;19741:2;19721:18;;;19714:30;19780:27;19760:18;;;19753:55;19825:18;;30678:55:0;19500:349:1;30678:55:0;-1:-1:-1;;;;;30744:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;30744:46:0;;;;;;;;;;30806:41;;540::1;;;30806::0;;513:18:1;30806:41:0;;;;;;;30540:315;;;:::o;55499:144::-;55595:13;55628:7;55621:14;;;;;:::i;21773:334::-;21846:13;21880:16;21888:7;21880;:16::i;:::-;21872:76;;;;-1:-1:-1;;;21872:76:0;;20056:2:1;21872:76:0;;;20038:21:1;20095:2;20075:18;;;20068:30;20134:34;20114:18;;;20107:62;-1:-1:-1;;;20185:18:1;;;20178:45;20240:19;;21872:76:0;19854:411:1;21872:76:0;21961:21;21985:10;:8;:10::i;:::-;21961:34;;22037:1;22019:7;22013:21;:25;:86;;;;;;;;;;;;;;;;;22065:7;22074:18;:7;:16;:18::i;:::-;22048:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22013:86;22006:93;21773:334;-1:-1:-1;;;21773:334:0:o;8184:451::-;8259:13;8285:19;8317:10;8321:6;8317:1;:10;:::i;:::-;:14;;8330:1;8317:14;:::i;:::-;8307:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8307:25:0;;8285:47;;-1:-1:-1;;;8343:6:0;8350:1;8343:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;8343:15:0;;;;;;;;;-1:-1:-1;;;8369:6:0;8376:1;8369:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;8369:15:0;;;;;;;;-1:-1:-1;8400:9:0;8412:10;8416:6;8412:1;:10;:::i;:::-;:14;;8425:1;8412:14;:::i;:::-;8400:26;;8395:135;8432:1;8428;:5;8395:135;;;-1:-1:-1;;;8480:5:0;8488:3;8480:11;8467:25;;;;;;;:::i;:::-;;;;8455:6;8462:1;8455:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;8455:37:0;;;;;;;;-1:-1:-1;8517:1:0;8507:11;;;;;8435:3;;;:::i;:::-;;;8395:135;;;-1:-1:-1;8548:10:0;;8540:55;;;;-1:-1:-1;;;8540:55:0;;20786:2:1;8540:55:0;;;20768:21:1;;;20805:18;;;20798:30;20864:34;20844:18;;;20837:62;20916:18;;8540:55:0;20584:356:1;31420:799:0;31575:4;-1:-1:-1;;;;;31596:13:0;;12241:20;12289:8;31592:620;;31632:72;;-1:-1:-1;;;31632:72:0;;-1:-1:-1;;;;;31632:36:0;;;;;:72;;9322:10;;31683:4;;31689:7;;31698:5;;31632:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31632:72:0;;;;;;;;-1:-1:-1;;31632:72:0;;;;;;;;;;;;:::i;:::-;;;31628:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31874:13:0;;31870:272;;31917:60;;-1:-1:-1;;;31917:60:0;;;;;;;:::i;31870:272::-;32092:6;32086:13;32077:6;32073:2;32069:15;32062:38;31628:529;-1:-1:-1;;;;;;31755:51:0;-1:-1:-1;;;31755:51:0;;-1:-1:-1;31748:58:0;;31592:620;-1:-1:-1;32196:4:0;31420:799;;;;;;:::o;58234:589::-;-1:-1:-1;;;;;58440:18:0;;58436:187;;58475:40;58507:7;59164:10;:17;;59137:24;;;;:15;:24;;;;;:44;;;59192:24;;;;;;;;;;;;59060:164;58475:40;58436:187;;;58545:2;-1:-1:-1;;;;;58537:10:0;:4;-1:-1:-1;;;;;58537:10:0;;58533:90;;58564:47;58597:4;58603:7;58564:32;:47::i;:::-;-1:-1:-1;;;;;58637:16:0;;58633:183;;58670:45;58707:7;58670:36;:45::i;58633:183::-;58743:4;-1:-1:-1;;;;;58737:10:0;:2;-1:-1:-1;;;;;58737:10:0;;58733:83;;58764:40;58792:2;58796:7;58764:27;:40::i;28831:360::-;28891:13;28907:23;28922:7;28907:14;:23::i;:::-;28891:39;;28943:48;28964:5;28979:1;28983:7;28943:20;:48::i;:::-;29032:29;29049:1;29053:7;29032:8;:29::i;:::-;-1:-1:-1;;;;;29074:16:0;;;;;;:9;:16;;;;;:21;;29094:1;;29074:16;:21;;29094:1;;29074:21;:::i;:::-;;;;-1:-1:-1;;29113:16:0;;;;:7;:16;;;;;;29106:23;;-1:-1:-1;;;;;;29106:23:0;;;29147:36;29121:7;;29113:16;-1:-1:-1;;;;;29147:36:0;;;;;29113:16;;29147:36;28880:311;28831:360;:::o;27563:321::-;27693:18;27699:2;27703:7;27693:5;:18::i;:::-;27744:54;27775:1;27779:2;27783:7;27792:5;27744:22;:54::i;:::-;27722:154;;;;-1:-1:-1;;;27722:154:0;;;;;;;:::i;6883:723::-;6939:13;7160:10;7156:53;;-1:-1:-1;;7187:10:0;;;;;;;;;;;;-1:-1:-1;;;7187:10:0;;;;;6883:723::o;7156:53::-;7234:5;7219:12;7275:78;7282:9;;7275:78;;7308:8;;;;:::i;:::-;;-1:-1:-1;7331:10:0;;-1:-1:-1;7339:2:0;7331:10;;:::i;:::-;;;7275:78;;;7363:19;7395:6;7385:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7385:17:0;;7363:39;;7413:154;7420:10;;7413:154;;7447:11;7457:1;7447:11;;:::i;:::-;;-1:-1:-1;7516:10:0;7524:2;7516:5;:10;:::i;:::-;7503:24;;:2;:24;:::i;:::-;7490:39;;7473:6;7480;7473:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7473:56:0;;;;;;;;-1:-1:-1;7544:11:0;7553:2;7544:11;;:::i;:::-;;;7413:154;;59481:988;59747:22;59797:1;59772:22;59789:4;59772:16;:22::i;:::-;:26;;;;:::i;:::-;59809:18;59830:26;;;:17;:26;;;;;;59747:51;;-1:-1:-1;59963:28:0;;;59959:328;;-1:-1:-1;;;;;60030:18:0;;60008:19;60030:18;;;:12;:18;;;;;;;;:34;;;;;;;;;60081:30;;;;;;:44;;;60198:30;;:17;:30;;;;;:43;;;59959:328;-1:-1:-1;60383:26:0;;;;:17;:26;;;;;;;;60376:33;;;-1:-1:-1;;;;;60427:18:0;;;;;:12;:18;;;;;:34;;;;;;;60420:41;59481:988::o;60477:1079::-;60755:10;:17;60730:22;;60755:21;;60775:1;;60755:21;:::i;:::-;60787:18;60808:24;;;:15;:24;;;;;;61181:10;:26;;60730:46;;-1:-1:-1;60808:24:0;;60730:46;;61181:26;;;;;;:::i;:::-;;;;;;;;;61159:48;;61245:11;61220:10;61231;61220:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;61325:28;;;:15;:28;;;;;;;:41;;;61497:24;;;;;61490:31;61532:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;60548:1008;;;60477:1079;:::o;58831:221::-;58916:14;58933:20;58950:2;58933:16;:20::i;:::-;-1:-1:-1;;;;;58964:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;59009:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;58831:221:0:o;28220:382::-;-1:-1:-1;;;;;28300:16:0;;28292:61;;;;-1:-1:-1;;;28292:61:0;;22541:2:1;28292:61:0;;;22523:21:1;;;22560:18;;;22553:30;22619:34;22599:18;;;22592:62;22671:18;;28292:61:0;22339:356:1;28292:61:0;28373:16;28381:7;28373;:16::i;:::-;28372:17;28364:58;;;;-1:-1:-1;;;28364:58:0;;22902:2:1;28364:58:0;;;22884:21:1;22941:2;22921:18;;;22914:30;22980;22960:18;;;22953:58;23028:18;;28364:58:0;22700:352:1;28364:58:0;28435:45;28464:1;28468:2;28472:7;28435:20;:45::i;:::-;-1:-1:-1;;;;;28493:13:0;;;;;;:9;:13;;;;;:18;;28510:1;;28493:13;:18;;28510:1;;28493:18;:::i;:::-;;;;-1:-1:-1;;28522:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28522:21:0;-1:-1:-1;;;;;28522:21:0;;;;;;;;28561:33;;28522:16;;;28561:33;;28522:16;;28561:33;28220:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;3055:254::-;3123:6;3131;3184:2;3172:9;3163:7;3159:23;3155:32;3152:52;;;3200:1;3197;3190:12;3152:52;3236:9;3223:23;3213:33;;3265:38;3299:2;3288:9;3284:18;3265:38;:::i;:::-;3255:48;;3055:254;;;;;:::o;3314:186::-;3373:6;3426:2;3414:9;3405:7;3401:23;3397:32;3394:52;;;3442:1;3439;3432:12;3394:52;3465:29;3484:9;3465:29;:::i;3505:127::-;3566:10;3561:3;3557:20;3554:1;3547:31;3597:4;3594:1;3587:15;3621:4;3618:1;3611:15;3637:632;3702:5;3732:18;3773:2;3765:6;3762:14;3759:40;;;3779:18;;:::i;:::-;3854:2;3848:9;3822:2;3908:15;;-1:-1:-1;;3904:24:1;;;3930:2;3900:33;3896:42;3884:55;;;3954:18;;;3974:22;;;3951:46;3948:72;;;4000:18;;:::i;:::-;4040:10;4036:2;4029:22;4069:6;4060:15;;4099:6;4091;4084:22;4139:3;4130:6;4125:3;4121:16;4118:25;4115:45;;;4156:1;4153;4146:12;4115:45;4206:6;4201:3;4194:4;4186:6;4182:17;4169:44;4261:1;4254:4;4245:6;4237;4233:19;4229:30;4222:41;;;;3637:632;;;;;:::o;4274:222::-;4317:5;4370:3;4363:4;4355:6;4351:17;4347:27;4337:55;;4388:1;4385;4378:12;4337:55;4410:80;4486:3;4477:6;4464:20;4457:4;4449:6;4445:17;4410:80;:::i;4501:464::-;4588:6;4596;4604;4657:2;4645:9;4636:7;4632:23;4628:32;4625:52;;;4673:1;4670;4663:12;4625:52;4696:29;4715:9;4696:29;:::i;:::-;4686:39;;4772:2;4761:9;4757:18;4744:32;4734:42;;4827:2;4816:9;4812:18;4799:32;4854:18;4846:6;4843:30;4840:50;;;4886:1;4883;4876:12;4840:50;4909;4951:7;4942:6;4931:9;4927:22;4909:50;:::i;:::-;4899:60;;;4501:464;;;;;:::o;4970:160::-;5035:20;;5091:13;;5084:21;5074:32;;5064:60;;5120:1;5117;5110:12;5135:254;5200:6;5208;5261:2;5249:9;5240:7;5236:23;5232:32;5229:52;;;5277:1;5274;5267:12;5229:52;5300:29;5319:9;5300:29;:::i;:::-;5290:39;;5348:35;5379:2;5368:9;5364:18;5348:35;:::i;5394:458::-;5478:6;5486;5494;5547:2;5535:9;5526:7;5522:23;5518:32;5515:52;;;5563:1;5560;5553:12;5515:52;5599:9;5586:23;5576:33;;5660:2;5649:9;5645:18;5632:32;5687:18;5679:6;5676:30;5673:50;;;5719:1;5716;5709:12;5673:50;5742;5784:7;5775:6;5764:9;5760:22;5742:50;:::i;:::-;5732:60;;;5811:35;5842:2;5831:9;5827:18;5811:35;:::i;:::-;5801:45;;5394:458;;;;;:::o;5857:667::-;5952:6;5960;5968;5976;6029:3;6017:9;6008:7;6004:23;6000:33;5997:53;;;6046:1;6043;6036:12;5997:53;6069:29;6088:9;6069:29;:::i;:::-;6059:39;;6117:38;6151:2;6140:9;6136:18;6117:38;:::i;:::-;6107:48;;6202:2;6191:9;6187:18;6174:32;6164:42;;6257:2;6246:9;6242:18;6229:32;6284:18;6276:6;6273:30;6270:50;;;6316:1;6313;6306:12;6270:50;6339:22;;6392:4;6384:13;;6380:27;-1:-1:-1;6370:55:1;;6421:1;6418;6411:12;6370:55;6444:74;6510:7;6505:2;6492:16;6487:2;6483;6479:11;6444:74;:::i;:::-;6434:84;;;5857:667;;;;;;;:::o;6529:260::-;6597:6;6605;6658:2;6646:9;6637:7;6633:23;6629:32;6626:52;;;6674:1;6671;6664:12;6626:52;6697:29;6716:9;6697:29;:::i;:::-;6687:39;;6745:38;6779:2;6768:9;6764:18;6745:38;:::i;6794:458::-;6875:6;6883;6891;6944:2;6932:9;6923:7;6919:23;6915:32;6912:52;;;6960:1;6957;6950:12;6912:52;7000:9;6987:23;7033:18;7025:6;7022:30;7019:50;;;7065:1;7062;7055:12;7019:50;7088;7130:7;7121:6;7110:9;7106:22;7088:50;:::i;:::-;7078:60;;;7157:35;7188:2;7177:9;7173:18;7157:35;:::i;:::-;7147:45;;7211:35;7242:2;7231:9;7227:18;7211:35;:::i;7257:380::-;7336:1;7332:12;;;;7379;;;7400:61;;7454:4;7446:6;7442:17;7432:27;;7400:61;7507:2;7499:6;7496:14;7476:18;7473:38;7470:161;;;7553:10;7548:3;7544:20;7541:1;7534:31;7588:4;7585:1;7578:15;7616:4;7613:1;7606:15;7470:161;;7257:380;;;:::o;9287:413::-;9489:2;9471:21;;;9528:2;9508:18;;;9501:30;9567:34;9562:2;9547:18;;9540:62;-1:-1:-1;;;9633:2:1;9618:18;;9611:47;9690:3;9675:19;;9287:413::o;12049:127::-;12110:10;12105:3;12101:20;12098:1;12091:31;12141:4;12138:1;12131:15;12165:4;12162:1;12155:15;14592:470;14771:3;14809:6;14803:13;14825:53;14871:6;14866:3;14859:4;14851:6;14847:17;14825:53;:::i;:::-;14941:13;;14900:16;;;;14963:57;14941:13;14900:16;14997:4;14985:17;;14963:57;:::i;:::-;15036:20;;14592:470;-1:-1:-1;;;;14592:470:1:o;16252:786::-;16663:25;16658:3;16651:38;16633:3;16718:6;16712:13;16734:62;16789:6;16784:2;16779:3;16775:12;16768:4;16760:6;16756:17;16734:62;:::i;:::-;-1:-1:-1;;;16855:2:1;16815:16;;;16847:11;;;16840:40;16905:13;;16927:63;16905:13;16976:2;16968:11;;16961:4;16949:17;;16927:63;:::i;:::-;17010:17;17029:2;17006:26;;16252:786;-1:-1:-1;;;;16252:786:1:o;17043:414::-;17245:2;17227:21;;;17284:2;17264:18;;;17257:30;17323:34;17318:2;17303:18;;17296:62;-1:-1:-1;;;17389:2:1;17374:18;;17367:48;17447:3;17432:19;;17043:414::o;18690:127::-;18751:10;18746:3;18742:20;18739:1;18732:31;18782:4;18779:1;18772:15;18806:4;18803:1;18796:15;18822:125;18862:4;18890:1;18887;18884:8;18881:34;;;18895:18;;:::i;:::-;-1:-1:-1;18932:9:1;;18822:125::o;18952:128::-;18992:3;19023:1;19019:6;19016:1;19013:13;19010:39;;;19029:18;;:::i;:::-;-1:-1:-1;19065:9:1;;18952:128::o;20270:168::-;20310:7;20376:1;20372;20368:6;20364:14;20361:1;20358:21;20353:1;20346:9;20339:17;20335:45;20332:71;;;20383:18;;:::i;:::-;-1:-1:-1;20423:9:1;;20270:168::o;20443:136::-;20482:3;20510:5;20500:39;;20519:18;;:::i;:::-;-1:-1:-1;;;20555:18:1;;20443:136::o;20945:489::-;-1:-1:-1;;;;;21214:15:1;;;21196:34;;21266:15;;21261:2;21246:18;;21239:43;21313:2;21298:18;;21291:34;;;21361:3;21356:2;21341:18;;21334:31;;;21139:4;;21382:46;;21408:19;;21400:6;21382:46;:::i;:::-;21374:54;20945:489;-1:-1:-1;;;;;;20945:489:1:o;21439:249::-;21508:6;21561:2;21549:9;21540:7;21536:23;21532:32;21529:52;;;21577:1;21574;21567:12;21529:52;21609:9;21603:16;21628:30;21652:5;21628:30;:::i;21693:135::-;21732:3;-1:-1:-1;;21753:17:1;;21750:43;;;21773:18;;:::i;:::-;-1:-1:-1;21820:1:1;21809:13;;21693:135::o;21833:127::-;21894:10;21889:3;21885:20;21882:1;21875:31;21925:4;21922:1;21915:15;21949:4;21946:1;21939:15;21965:120;22005:1;22031;22021:35;;22036:18;;:::i;:::-;-1:-1:-1;22070:9:1;;21965:120::o;22090:112::-;22122:1;22148;22138:35;;22153:18;;:::i;:::-;-1:-1:-1;22187:9:1;;22090:112::o;22207:127::-;22268:10;22263:3;22259:20;22256:1;22249:31;22299:4;22296:1;22289:15;22323:4;22320:1;22313:15
Swarm Source
ipfs://d2c06bd94aa7f1a797e1c6858ba4db1c625bda3d4e5fab8aecb24d576b13c101
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.