ERC-721
Overview
Max Total Supply
971 BFA
Holders
258
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 BFALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BasedFishMafiaAgent
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-23 */ // 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/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; } } // agent.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) // OpenZeppelin Contracts v4.4.1 (token/ERC721/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 (last updated v4.5.0) (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be 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); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface WireContract { function balanceOf(address owner, uint id) external view returns (uint balance); function burn(address user, uint count) external; } contract BasedFishMafiaAgent is ERC721Enumerable, Ownable { WireContract private constant m_wire = WireContract(address(0x805EA79E3c0C7837cFE8f84EC09eA67d43465Da1)); string private m_baseURI; uint private m_token_count; uint public constant maxSupply = 1870; string public PROVENANCE = "085231d6beb8d8ffe237d13d9f92cdc3bdf6808d79a4faecaf7e8dce3ff18c23"; function setProvenanceHash(string memory provenanceHash) public onlyOwner { PROVENANCE = provenanceHash; } constructor() ERC721("Based Fish Agents", "BFA") { } function mint(uint count) external { require(m_wire.balanceOf(msg.sender, 0) >= count, "not enough wires in this wallet"); for (uint i = 0; i < count; i++) { _safeMint(msg.sender, m_token_count++); } m_wire.burn(msg.sender, count); } function setBaseURI(string memory baseURI) external onlyOwner { m_baseURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return m_baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"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":[],"name":"renounceOwnership","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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040908152608081815290620025a560a03980516200002991600d916020909101906200011b565b503480156200003757600080fd5b50604080518082018252601181527042617365642046697368204167656e747360781b60208083019182528351808501909452600384526242464160e81b9084015281519192916200008c916000916200011b565b508051620000a29060019060208401906200011b565b505050620000bf620000b9620000c560201b60201c565b620000c9565b620001fe565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012990620001c1565b90600052602060002090601f0160209004810192826200014d576000855562000198565b82601f106200016857805160ff191683800117855562000198565b8280016001018555821562000198579182015b82811115620001985782518255916020019190600101906200017b565b50620001a6929150620001aa565b5090565b5b80821115620001a65760008155600101620001ab565b600181811c90821680620001d657607f821691505b60208210811415620001f857634e487b7160e01b600052602260045260246000fd5b50919050565b612397806200020e6000396000f3fe608060405234801561001057600080fd5b50600436106101985760003560e01c80636373a6b1116100e3578063a22cb4651161008c578063d5abeb0111610066578063d5abeb0114610339578063e985e9c514610342578063f2fde38b1461037e57600080fd5b8063a22cb46514610300578063b88d4fde14610313578063c87b56dd1461032657600080fd5b80638da5cb5b116100bd5780638da5cb5b146102d457806395d89b41146102e5578063a0712d68146102ed57600080fd5b80636373a6b1146102b157806370a08231146102b9578063715018a6146102cc57600080fd5b806323b872dd116101455780634f6ccce71161011f5780634f6ccce71461027857806355f804b31461028b5780636352211e1461029e57600080fd5b806323b872dd1461023f5780632f745c591461025257806342842e0e1461026557600080fd5b8063095ea7b311610176578063095ea7b314610205578063109695231461021a57806318160ddd1461022d57600080fd5b806301ffc9a71461019d57806306fdde03146101c5578063081812fc146101da575b600080fd5b6101b06101ab366004611fbb565b610391565b60405190151581526020015b60405180910390f35b6101cd6103ed565b6040516101bc9190612125565b6101ed6101e836600461203e565b61047f565b6040516001600160a01b0390911681526020016101bc565b610218610213366004611f91565b61052a565b005b610218610228366004611ff5565b61065c565b6008545b6040519081526020016101bc565b61021861024d366004611e9d565b6106cd565b610231610260366004611f91565b610754565b610218610273366004611e9d565b6107fc565b61023161028636600461203e565b610817565b610218610299366004611ff5565b6108bb565b6101ed6102ac36600461203e565b610928565b6101cd6109b3565b6102316102c7366004611e4f565b610a41565b610218610adb565b600a546001600160a01b03166101ed565b6101cd610b41565b6102186102fb36600461203e565b610b50565b61021861030e366004611f55565b610d04565b610218610321366004611ed9565b610d0f565b6101cd61033436600461203e565b610d9d565b61023161074e81565b6101b0610350366004611e6a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61021861038c366004611e4f565b610e86565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806103e757506103e782610f68565b92915050565b6060600080546103fc906121a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610428906121a7565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661050e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061053582610928565b9050806001600160a01b0316836001600160a01b031614156105bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610505565b336001600160a01b03821614806105db57506105db8133610350565b61064d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610505565b610657838361104b565b505050565b600a546001600160a01b031633146106b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610505565b80516106c990600d906020840190611d06565b5050565b6106d733826110d1565b6107495760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610505565b6106578383836111d9565b600061075f83610a41565b82106107d35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610505565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61065783838360405180602001604052806000815250610d0f565b600061082260085490565b82106108965760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610505565b600882815481106108a9576108a96122d5565b90600052602060002001549050919050565b600a546001600160a01b031633146109155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610505565b80516106c990600b906020840190611d06565b6000818152600260205260408120546001600160a01b0316806103e75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610505565b600d80546109c0906121a7565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec906121a7565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b505050505081565b60006001600160a01b038216610abf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610505565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610505565b610b3f60006113c9565b565b6060600180546103fc906121a7565b6040517efdd58e00000000000000000000000000000000000000000000000000000000815233600482015260006024820152819073805ea79e3c0c7837cfe8f84ec09ea67d43465da19062fdd58e9060440160206040518083038186803b158015610bba57600080fd5b505afa158015610bce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf29190612057565b1015610c405760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656e6f75676820776972657320696e20746869732077616c6c6574006044820152606401610505565b60005b81811015610c7c57600c8054610c6a913391906000610c61836121fb565b91905055611433565b80610c74816121fb565b915050610c43565b506040517f9dc29fac0000000000000000000000000000000000000000000000000000000081523360048201526024810182905273805ea79e3c0c7837cfe8f84ec09ea67d43465da190639dc29fac90604401600060405180830381600087803b158015610ce957600080fd5b505af1158015610cfd573d6000803e3d6000fd5b5050505050565b6106c933838361144d565b610d1933836110d1565b610d8b5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610505565b610d978484848461153a565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e2a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610505565b6000610e346115c3565b90506000815111610e545760405180602001604052806000815250610e7f565b80610e5e846115d2565b604051602001610e6f9291906120ba565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610ee05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610505565b6001600160a01b038116610f5c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610505565b610f65816113c9565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610ffb57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806103e757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146103e7565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061109882610928565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661115b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610505565b600061116683610928565b9050806001600160a01b0316846001600160a01b031614806111a15750836001600160a01b03166111968461047f565b6001600160a01b0316145b806111d157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111ec82610928565b6001600160a01b0316146112685760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610505565b6001600160a01b0382166112e35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610505565b6112ee838383611704565b6112f960008261104b565b6001600160a01b0383166000908152600360205260408120805460019290611322908490612164565b90915550506001600160a01b0382166000908152600360205260408120805460019290611350908490612138565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106c98282604051806020016040528060008152506117bc565b816001600160a01b0316836001600160a01b031614156114af5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610505565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115458484846111d9565b61155184848484611845565b610d975760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610505565b6060600b80546103fc906121a7565b60608161161257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561163c5780611626816121fb565b91506116359050600a83612150565b9150611616565b60008167ffffffffffffffff81111561165757611657612304565b6040519080825280601f01601f191660200182016040528015611681576020820181803683370190505b5090505b84156111d157611696600183612164565b91506116a3600a86612234565b6116ae906030612138565b60f81b8183815181106116c3576116c36122d5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506116fd600a86612150565b9450611685565b6001600160a01b03831661175f5761175a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611782565b816001600160a01b0316836001600160a01b031614611782576117828382611a10565b6001600160a01b0382166117995761065781611aad565b826001600160a01b0316826001600160a01b031614610657576106578282611b5c565b6117c68383611ba0565b6117d36000848484611845565b6106575760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610505565b60006001600160a01b0384163b15611a05576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906118a29033908990889088906004016120e9565b602060405180830381600087803b1580156118bc57600080fd5b505af192505050801561190a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261190791810190611fd8565b60015b6119ba573d808015611938576040519150601f19603f3d011682016040523d82523d6000602084013e61193d565b606091505b5080516119b25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610505565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506111d1565b506001949350505050565b60006001611a1d84610a41565b611a279190612164565b600083815260076020526040902054909150808214611a7a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611abf90600190612164565b60008381526009602052604081205460088054939450909284908110611ae757611ae76122d5565b906000526020600020015490508060088381548110611b0857611b086122d5565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b4057611b406122a6565b6001900381819060005260206000200160009055905550505050565b6000611b6783610a41565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bf65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610505565b6000818152600260205260409020546001600160a01b031615611c5b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610505565b611c6760008383611704565b6001600160a01b0382166000908152600360205260408120805460019290611c90908490612138565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d12906121a7565b90600052602060002090601f016020900481019282611d345760008555611d7a565b82601f10611d4d57805160ff1916838001178555611d7a565b82800160010185558215611d7a579182015b82811115611d7a578251825591602001919060010190611d5f565b50611d86929150611d8a565b5090565b5b80821115611d865760008155600101611d8b565b600067ffffffffffffffff80841115611dba57611dba612304565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715611e0057611e00612304565b81604052809350858152868686011115611e1957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e4a57600080fd5b919050565b600060208284031215611e6157600080fd5b610e7f82611e33565b60008060408385031215611e7d57600080fd5b611e8683611e33565b9150611e9460208401611e33565b90509250929050565b600080600060608486031215611eb257600080fd5b611ebb84611e33565b9250611ec960208501611e33565b9150604084013590509250925092565b60008060008060808587031215611eef57600080fd5b611ef885611e33565b9350611f0660208601611e33565b925060408501359150606085013567ffffffffffffffff811115611f2957600080fd5b8501601f81018713611f3a57600080fd5b611f4987823560208401611d9f565b91505092959194509250565b60008060408385031215611f6857600080fd5b611f7183611e33565b915060208301358015158114611f8657600080fd5b809150509250929050565b60008060408385031215611fa457600080fd5b611fad83611e33565b946020939093013593505050565b600060208284031215611fcd57600080fd5b8135610e7f81612333565b600060208284031215611fea57600080fd5b8151610e7f81612333565b60006020828403121561200757600080fd5b813567ffffffffffffffff81111561201e57600080fd5b8201601f8101841361202f57600080fd5b6111d184823560208401611d9f565b60006020828403121561205057600080fd5b5035919050565b60006020828403121561206957600080fd5b5051919050565b6000815180845261208881602086016020860161217b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516120cc81846020880161217b565b8351908301906120e081836020880161217b565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261211b6080830184612070565b9695505050505050565b602081526000610e7f6020830184612070565b6000821982111561214b5761214b612248565b500190565b60008261215f5761215f612277565b500490565b60008282101561217657612176612248565b500390565b60005b8381101561219657818101518382015260200161217e565b83811115610d975750506000910152565b600181811c908216806121bb57607f821691505b602082108114156121f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561222d5761222d612248565b5060010190565b60008261224357612243612277565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610f6557600080fdfea264697066735822122037df37408a04f4ffd5f1fb3ab42ce640a721bec3d55cb89a6821f7b920fc78e564736f6c6343000807003330383532333164366265623864386666653233376431336439663932636463336264663638303864373961346661656361663765386463653366663138633233
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101985760003560e01c80636373a6b1116100e3578063a22cb4651161008c578063d5abeb0111610066578063d5abeb0114610339578063e985e9c514610342578063f2fde38b1461037e57600080fd5b8063a22cb46514610300578063b88d4fde14610313578063c87b56dd1461032657600080fd5b80638da5cb5b116100bd5780638da5cb5b146102d457806395d89b41146102e5578063a0712d68146102ed57600080fd5b80636373a6b1146102b157806370a08231146102b9578063715018a6146102cc57600080fd5b806323b872dd116101455780634f6ccce71161011f5780634f6ccce71461027857806355f804b31461028b5780636352211e1461029e57600080fd5b806323b872dd1461023f5780632f745c591461025257806342842e0e1461026557600080fd5b8063095ea7b311610176578063095ea7b314610205578063109695231461021a57806318160ddd1461022d57600080fd5b806301ffc9a71461019d57806306fdde03146101c5578063081812fc146101da575b600080fd5b6101b06101ab366004611fbb565b610391565b60405190151581526020015b60405180910390f35b6101cd6103ed565b6040516101bc9190612125565b6101ed6101e836600461203e565b61047f565b6040516001600160a01b0390911681526020016101bc565b610218610213366004611f91565b61052a565b005b610218610228366004611ff5565b61065c565b6008545b6040519081526020016101bc565b61021861024d366004611e9d565b6106cd565b610231610260366004611f91565b610754565b610218610273366004611e9d565b6107fc565b61023161028636600461203e565b610817565b610218610299366004611ff5565b6108bb565b6101ed6102ac36600461203e565b610928565b6101cd6109b3565b6102316102c7366004611e4f565b610a41565b610218610adb565b600a546001600160a01b03166101ed565b6101cd610b41565b6102186102fb36600461203e565b610b50565b61021861030e366004611f55565b610d04565b610218610321366004611ed9565b610d0f565b6101cd61033436600461203e565b610d9d565b61023161074e81565b6101b0610350366004611e6a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61021861038c366004611e4f565b610e86565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806103e757506103e782610f68565b92915050565b6060600080546103fc906121a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610428906121a7565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661050e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061053582610928565b9050806001600160a01b0316836001600160a01b031614156105bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610505565b336001600160a01b03821614806105db57506105db8133610350565b61064d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610505565b610657838361104b565b505050565b600a546001600160a01b031633146106b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610505565b80516106c990600d906020840190611d06565b5050565b6106d733826110d1565b6107495760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610505565b6106578383836111d9565b600061075f83610a41565b82106107d35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610505565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61065783838360405180602001604052806000815250610d0f565b600061082260085490565b82106108965760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610505565b600882815481106108a9576108a96122d5565b90600052602060002001549050919050565b600a546001600160a01b031633146109155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610505565b80516106c990600b906020840190611d06565b6000818152600260205260408120546001600160a01b0316806103e75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610505565b600d80546109c0906121a7565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec906121a7565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b505050505081565b60006001600160a01b038216610abf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610505565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610505565b610b3f60006113c9565b565b6060600180546103fc906121a7565b6040517efdd58e00000000000000000000000000000000000000000000000000000000815233600482015260006024820152819073805ea79e3c0c7837cfe8f84ec09ea67d43465da19062fdd58e9060440160206040518083038186803b158015610bba57600080fd5b505afa158015610bce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf29190612057565b1015610c405760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656e6f75676820776972657320696e20746869732077616c6c6574006044820152606401610505565b60005b81811015610c7c57600c8054610c6a913391906000610c61836121fb565b91905055611433565b80610c74816121fb565b915050610c43565b506040517f9dc29fac0000000000000000000000000000000000000000000000000000000081523360048201526024810182905273805ea79e3c0c7837cfe8f84ec09ea67d43465da190639dc29fac90604401600060405180830381600087803b158015610ce957600080fd5b505af1158015610cfd573d6000803e3d6000fd5b5050505050565b6106c933838361144d565b610d1933836110d1565b610d8b5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610505565b610d978484848461153a565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e2a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610505565b6000610e346115c3565b90506000815111610e545760405180602001604052806000815250610e7f565b80610e5e846115d2565b604051602001610e6f9291906120ba565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610ee05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610505565b6001600160a01b038116610f5c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610505565b610f65816113c9565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610ffb57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806103e757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146103e7565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061109882610928565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661115b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610505565b600061116683610928565b9050806001600160a01b0316846001600160a01b031614806111a15750836001600160a01b03166111968461047f565b6001600160a01b0316145b806111d157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111ec82610928565b6001600160a01b0316146112685760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610505565b6001600160a01b0382166112e35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610505565b6112ee838383611704565b6112f960008261104b565b6001600160a01b0383166000908152600360205260408120805460019290611322908490612164565b90915550506001600160a01b0382166000908152600360205260408120805460019290611350908490612138565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106c98282604051806020016040528060008152506117bc565b816001600160a01b0316836001600160a01b031614156114af5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610505565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115458484846111d9565b61155184848484611845565b610d975760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610505565b6060600b80546103fc906121a7565b60608161161257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561163c5780611626816121fb565b91506116359050600a83612150565b9150611616565b60008167ffffffffffffffff81111561165757611657612304565b6040519080825280601f01601f191660200182016040528015611681576020820181803683370190505b5090505b84156111d157611696600183612164565b91506116a3600a86612234565b6116ae906030612138565b60f81b8183815181106116c3576116c36122d5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506116fd600a86612150565b9450611685565b6001600160a01b03831661175f5761175a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611782565b816001600160a01b0316836001600160a01b031614611782576117828382611a10565b6001600160a01b0382166117995761065781611aad565b826001600160a01b0316826001600160a01b031614610657576106578282611b5c565b6117c68383611ba0565b6117d36000848484611845565b6106575760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610505565b60006001600160a01b0384163b15611a05576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906118a29033908990889088906004016120e9565b602060405180830381600087803b1580156118bc57600080fd5b505af192505050801561190a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261190791810190611fd8565b60015b6119ba573d808015611938576040519150601f19603f3d011682016040523d82523d6000602084013e61193d565b606091505b5080516119b25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610505565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506111d1565b506001949350505050565b60006001611a1d84610a41565b611a279190612164565b600083815260076020526040902054909150808214611a7a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611abf90600190612164565b60008381526009602052604081205460088054939450909284908110611ae757611ae76122d5565b906000526020600020015490508060088381548110611b0857611b086122d5565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b4057611b406122a6565b6001900381819060005260206000200160009055905550505050565b6000611b6783610a41565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bf65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610505565b6000818152600260205260409020546001600160a01b031615611c5b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610505565b611c6760008383611704565b6001600160a01b0382166000908152600360205260408120805460019290611c90908490612138565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d12906121a7565b90600052602060002090601f016020900481019282611d345760008555611d7a565b82601f10611d4d57805160ff1916838001178555611d7a565b82800160010185558215611d7a579182015b82811115611d7a578251825591602001919060010190611d5f565b50611d86929150611d8a565b5090565b5b80821115611d865760008155600101611d8b565b600067ffffffffffffffff80841115611dba57611dba612304565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715611e0057611e00612304565b81604052809350858152868686011115611e1957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e4a57600080fd5b919050565b600060208284031215611e6157600080fd5b610e7f82611e33565b60008060408385031215611e7d57600080fd5b611e8683611e33565b9150611e9460208401611e33565b90509250929050565b600080600060608486031215611eb257600080fd5b611ebb84611e33565b9250611ec960208501611e33565b9150604084013590509250925092565b60008060008060808587031215611eef57600080fd5b611ef885611e33565b9350611f0660208601611e33565b925060408501359150606085013567ffffffffffffffff811115611f2957600080fd5b8501601f81018713611f3a57600080fd5b611f4987823560208401611d9f565b91505092959194509250565b60008060408385031215611f6857600080fd5b611f7183611e33565b915060208301358015158114611f8657600080fd5b809150509250929050565b60008060408385031215611fa457600080fd5b611fad83611e33565b946020939093013593505050565b600060208284031215611fcd57600080fd5b8135610e7f81612333565b600060208284031215611fea57600080fd5b8151610e7f81612333565b60006020828403121561200757600080fd5b813567ffffffffffffffff81111561201e57600080fd5b8201601f8101841361202f57600080fd5b6111d184823560208401611d9f565b60006020828403121561205057600080fd5b5035919050565b60006020828403121561206957600080fd5b5051919050565b6000815180845261208881602086016020860161217b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516120cc81846020880161217b565b8351908301906120e081836020880161217b565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261211b6080830184612070565b9695505050505050565b602081526000610e7f6020830184612070565b6000821982111561214b5761214b612248565b500190565b60008261215f5761215f612277565b500490565b60008282101561217657612176612248565b500390565b60005b8381101561219657818101518382015260200161217e565b83811115610d975750506000910152565b600181811c908216806121bb57607f821691505b602082108114156121f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561222d5761222d612248565b5060010190565b60008261224357612243612277565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610f6557600080fdfea264697066735822122037df37408a04f4ffd5f1fb3ab42ce640a721bec3d55cb89a6821f7b920fc78e564736f6c63430008070033
Deployed Bytecode Sourcemap
44645:1097:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35869:224;;;;;;:::i;:::-;;:::i;:::-;;;6634:14:1;;6627:22;6609:41;;6597:2;6582:18;35869:224:0;;;;;;;;21907:100;;;:::i;:::-;;;;;;;:::i;23466:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5274:55:1;;;5256:74;;5244:2;5229:18;23466:221:0;5110:226:1;22989:411:0;;;;;;:::i;:::-;;:::i;:::-;;45033:120;;;;;;:::i;:::-;;:::i;36509:113::-;36597:10;:17;36509:113;;;14594:25:1;;;14582:2;14567:18;36509:113:0;14448:177:1;24216:339:0;;;;;;:::i;:::-;;:::i;36177:256::-;;;;;;:::i;:::-;;:::i;24626:185::-;;;;;;:::i;:::-;;:::i;36699:233::-;;;;;;:::i;:::-;;:::i;45521:100::-;;;;;;:::i;:::-;;:::i;21601:239::-;;;;;;:::i;:::-;;:::i;44931:93::-;;;:::i;21331:208::-;;;;;;:::i;:::-;;:::i;43654:103::-;;;:::i;43003:87::-;43076:6;;-1:-1:-1;;;;;43076:6:0;43003:87;;22076:104;;;:::i;45226:287::-;;;;;;:::i;:::-;;:::i;23759:155::-;;;;;;:::i;:::-;;:::i;24882:328::-;;;;;;:::i;:::-;;:::i;22251:334::-;;;;;;:::i;:::-;;:::i;44887:37::-;;44920:4;44887:37;;23985:164;;;;;;:::i;:::-;-1:-1:-1;;;;;24106:25:0;;;24082:4;24106:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23985:164;43912:201;;;;;;:::i;:::-;;:::i;35869:224::-;35971:4;35995:50;;;36010:35;35995:50;;:90;;;36049:36;36073:11;36049:23;:36::i;:::-;35988:97;35869:224;-1:-1:-1;;35869:224:0:o;21907:100::-;21961:13;21994:5;21987:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21907:100;:::o;23466:221::-;23542:7;26809:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26809:16:0;23562:73;;;;-1:-1:-1;;;23562:73:0;;11867:2:1;23562:73:0;;;11849:21:1;11906:2;11886:18;;;11879:30;11945:34;11925:18;;;11918:62;12016:14;11996:18;;;11989:42;12048:19;;23562:73:0;;;;;;;;;-1:-1:-1;23655:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23655:24:0;;23466:221::o;22989:411::-;23070:13;23086:23;23101:7;23086:14;:23::i;:::-;23070:39;;23134:5;-1:-1:-1;;;;;23128:11:0;:2;-1:-1:-1;;;;;23128:11:0;;;23120:57;;;;-1:-1:-1;;;23120:57:0;;13057:2:1;23120:57:0;;;13039:21:1;13096:2;13076:18;;;13069:30;13135:34;13115:18;;;13108:62;13206:3;13186:18;;;13179:31;13227:19;;23120:57:0;12855:397:1;23120:57:0;8383:10;-1:-1:-1;;;;;23212:21:0;;;;:62;;-1:-1:-1;23237:37:0;23254:5;8383:10;23985:164;:::i;23237:37::-;23190:168;;;;-1:-1:-1;;;23190:168:0;;10260:2:1;23190:168:0;;;10242:21:1;10299:2;10279:18;;;10272:30;10338:34;10318:18;;;10311:62;10409:26;10389:18;;;10382:54;10453:19;;23190:168:0;10058:420:1;23190:168:0;23371:21;23380:2;23384:7;23371:8;:21::i;:::-;23059:341;22989:411;;:::o;45033:120::-;43076:6;;-1:-1:-1;;;;;43076:6:0;8383:10;43223:23;43215:68;;;;-1:-1:-1;;;43215:68:0;;12280:2:1;43215:68:0;;;12262:21:1;;;12299:18;;;12292:30;12358:34;12338:18;;;12331:62;12410:18;;43215:68:0;12078:356:1;43215:68:0;45118:27;;::::1;::::0;:10:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45033:120:::0;:::o;24216:339::-;24411:41;8383:10;24444:7;24411:18;:41::i;:::-;24403:103;;;;-1:-1:-1;;;24403:103:0;;13459:2:1;24403:103:0;;;13441:21:1;13498:2;13478:18;;;13471:30;13537:34;13517:18;;;13510:62;13608:19;13588:18;;;13581:47;13645:19;;24403:103:0;13257:413:1;24403:103:0;24519:28;24529:4;24535:2;24539:7;24519:9;:28::i;36177:256::-;36274:7;36310:23;36327:5;36310:16;:23::i;:::-;36302:5;:31;36294:87;;;;-1:-1:-1;;;36294:87:0;;7087:2:1;36294:87:0;;;7069:21:1;7126:2;7106:18;;;7099:30;7165:34;7145:18;;;7138:62;7236:13;7216:18;;;7209:41;7267:19;;36294:87:0;6885:407:1;36294:87:0;-1:-1:-1;;;;;;36399:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36177:256::o;24626:185::-;24764:39;24781:4;24787:2;24791:7;24764:39;;;;;;;;;;;;:16;:39::i;36699:233::-;36774:7;36810:30;36597:10;:17;;36509:113;36810:30;36802:5;:38;36794:95;;;;-1:-1:-1;;;36794:95:0;;13877:2:1;36794:95:0;;;13859:21:1;13916:2;13896:18;;;13889:30;13955:34;13935:18;;;13928:62;14026:14;14006:18;;;13999:42;14058:19;;36794:95:0;13675:408:1;36794:95:0;36907:10;36918:5;36907:17;;;;;;;;:::i;:::-;;;;;;;;;36900:24;;36699:233;;;:::o;45521:100::-;43076:6;;-1:-1:-1;;;;;43076:6:0;8383:10;43223:23;43215:68;;;;-1:-1:-1;;;43215:68:0;;12280:2:1;43215:68:0;;;12262:21:1;;;12299:18;;;12292:30;12358:34;12338:18;;;12331:62;12410:18;;43215:68:0;12078:356:1;43215:68:0;45594:19;;::::1;::::0;:9:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;21601:239::-:0;21673:7;21709:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21709:16:0;21744:19;21736:73;;;;-1:-1:-1;;;21736:73:0;;11096:2:1;21736:73:0;;;11078:21:1;11135:2;11115:18;;;11108:30;11174:34;11154:18;;;11147:62;11245:11;11225:18;;;11218:39;11274:19;;21736:73:0;10894:405:1;44931:93:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21331:208::-;21403:7;-1:-1:-1;;;;;21431:19:0;;21423:74;;;;-1:-1:-1;;;21423:74:0;;10685:2:1;21423:74:0;;;10667:21:1;10724:2;10704:18;;;10697:30;10763:34;10743:18;;;10736:62;10834:12;10814:18;;;10807:40;10864:19;;21423:74:0;10483:406:1;21423:74:0;-1:-1:-1;;;;;;21515:16:0;;;;;:9;:16;;;;;;;21331:208::o;43654:103::-;43076:6;;-1:-1:-1;;;;;43076:6:0;8383:10;43223:23;43215:68;;;;-1:-1:-1;;;43215:68:0;;12280:2:1;43215:68:0;;;12262:21:1;;;12299:18;;;12292:30;12358:34;12338:18;;;12331:62;12410:18;;43215:68:0;12078:356:1;43215:68:0;43719:30:::1;43746:1;43719:18;:30::i;:::-;43654:103::o:0;22076:104::-;22132:13;22165:7;22158:14;;;;;:::i;45226:287::-;45280:31;;;;;45297:10;45280:31;;;6039:74:1;45309:1:0;6129:18:1;;;6122:34;45315:5:0;;44770:42;;45280:16;;6012:18:1;;45280:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;;45272:84;;;;-1:-1:-1;;;45272:84:0;;14290:2:1;45272:84:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:33;14348:18;;;14341:61;14419:18;;45272:84:0;14088:355:1;45272:84:0;45372:6;45367:98;45388:5;45384:1;:9;45367:98;;;45437:13;:15;;45415:38;;45425:10;;45437:15;:13;:15;;;:::i;:::-;;;;;45415:9;:38::i;:::-;45395:3;;;;:::i;:::-;;;;45367:98;;;-1:-1:-1;45475:30:0;;;;;45487:10;45475:30;;;6039:74:1;6129:18;;;6122:34;;;44770:42:0;;45475:11;;6012:18:1;;45475:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45226:287;:::o;23759:155::-;23854:52;8383:10;23887:8;23897;23854:18;:52::i;24882:328::-;25057:41;8383:10;25090:7;25057:18;:41::i;:::-;25049:103;;;;-1:-1:-1;;;25049:103:0;;13459:2:1;25049:103:0;;;13441:21:1;13498:2;13478:18;;;13471:30;13537:34;13517:18;;;13510:62;13608:19;13588:18;;;13581:47;13645:19;;25049:103:0;13257:413:1;25049:103:0;25163:39;25177:4;25183:2;25187:7;25196:5;25163:13;:39::i;:::-;24882:328;;;;:::o;22251:334::-;26785:4;26809:16;;;:7;:16;;;;;;22324:13;;-1:-1:-1;;;;;26809:16:0;22350:76;;;;-1:-1:-1;;;22350:76:0;;12641:2:1;22350:76:0;;;12623:21:1;12680:2;12660:18;;;12653:30;12719:34;12699:18;;;12692:62;12790:17;12770:18;;;12763:45;12825:19;;22350:76:0;12439:411:1;22350:76:0;22439:21;22463:10;:8;:10::i;:::-;22439:34;;22515:1;22497:7;22491:21;:25;:86;;;;;;;;;;;;;;;;;22543:7;22552:18;:7;:16;:18::i;:::-;22526:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22491:86;22484:93;22251:334;-1:-1:-1;;;22251:334:0:o;43912:201::-;43076:6;;-1:-1:-1;;;;;43076:6:0;8383:10;43223:23;43215:68;;;;-1:-1:-1;;;43215:68:0;;12280:2:1;43215:68:0;;;12262:21:1;;;12299:18;;;12292:30;12358:34;12338:18;;;12331:62;12410:18;;43215:68:0;12078:356:1;43215:68:0;-1:-1:-1;;;;;44001:22:0;::::1;43993:73;;;::::0;-1:-1:-1;;;43993:73:0;;7918:2:1;43993:73:0::1;::::0;::::1;7900:21:1::0;7957:2;7937:18;;;7930:30;7996:34;7976:18;;;7969:62;8067:8;8047:18;;;8040:36;8093:19;;43993:73:0::1;7716:402:1::0;43993:73:0::1;44077:28;44096:8;44077:18;:28::i;:::-;43912:201:::0;:::o;20962:305::-;21064:4;21101:40;;;21116:25;21101:40;;:105;;-1:-1:-1;21158:48:0;;;21173:33;21158:48;21101:105;:158;;;-1:-1:-1;19693:25:0;19678:40;;;;21223:36;19569:157;30866:174;30941:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;30941:29:0;;;;;;;;:24;;30995:23;30941:24;30995:14;:23::i;:::-;-1:-1:-1;;;;;30986:46:0;;;;;;;;;;;30866:174;;:::o;27014:348::-;27107:4;26809:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26809:16:0;27124:73;;;;-1:-1:-1;;;27124:73:0;;9847:2:1;27124:73:0;;;9829:21:1;9886:2;9866:18;;;9859:30;9925:34;9905:18;;;9898:62;9996:14;9976:18;;;9969:42;10028:19;;27124:73:0;9645:408:1;27124:73:0;27208:13;27224:23;27239:7;27224:14;:23::i;:::-;27208:39;;27277:5;-1:-1:-1;;;;;27266:16:0;:7;-1:-1:-1;;;;;27266:16:0;;:51;;;;27310:7;-1:-1:-1;;;;;27286:31:0;:20;27298:7;27286:11;:20::i;:::-;-1:-1:-1;;;;;27286:31:0;;27266:51;:87;;;-1:-1:-1;;;;;;24106:25:0;;;24082:4;24106:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27321:32;27258:96;27014:348;-1:-1:-1;;;;27014:348:0:o;30123:625::-;30282:4;-1:-1:-1;;;;;30255:31:0;:23;30270:7;30255:14;:23::i;:::-;-1:-1:-1;;;;;30255:31:0;;30247:81;;;;-1:-1:-1;;;30247:81:0;;8325:2:1;30247:81:0;;;8307:21:1;8364:2;8344:18;;;8337:30;8403:34;8383:18;;;8376:62;8474:7;8454:18;;;8447:35;8499:19;;30247:81:0;8123:401:1;30247:81:0;-1:-1:-1;;;;;30347:16:0;;30339:65;;;;-1:-1:-1;;;30339:65:0;;9088:2:1;30339:65:0;;;9070:21:1;9127:2;9107:18;;;9100:30;9166:34;9146:18;;;9139:62;9237:6;9217:18;;;9210:34;9261:19;;30339:65:0;8886:400:1;30339:65:0;30417:39;30438:4;30444:2;30448:7;30417:20;:39::i;:::-;30521:29;30538:1;30542:7;30521:8;:29::i;:::-;-1:-1:-1;;;;;30563:15:0;;;;;;:9;:15;;;;;:20;;30582:1;;30563:15;:20;;30582:1;;30563:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30594:13:0;;;;;;:9;:13;;;;;:18;;30611:1;;30594:13;:18;;30611:1;;30594:18;:::i;:::-;;;;-1:-1:-1;;30623:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;30623:21:0;;;;;;;;;30662:27;;30623:16;;30662:27;;;;;;;23059:341;22989:411;;:::o;44273:191::-;44366:6;;;-1:-1:-1;;;;;44383:17:0;;;;;;;;;;;44416:40;;44366:6;;;44383:17;44366:6;;44416:40;;44347:16;;44416:40;44336:128;44273:191;:::o;27704:110::-;27780:26;27790:2;27794:7;27780:26;;;;;;;;;;;;:9;:26::i;31182:315::-;31337:8;-1:-1:-1;;;;;31328:17:0;:5;-1:-1:-1;;;;;31328:17:0;;;31320:55;;;;-1:-1:-1;;;31320:55:0;;9493:2:1;31320:55:0;;;9475:21:1;9532:2;9512:18;;;9505:30;9571:27;9551:18;;;9544:55;9616:18;;31320:55:0;9291:349:1;31320:55:0;-1:-1:-1;;;;;31386:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;31448:41;;6609::1;;;31448::0;;6582:18:1;31448:41:0;;;;;;;31182:315;;;:::o;26092:::-;26249:28;26259:4;26265:2;26269:7;26249:9;:28::i;:::-;26296:48;26319:4;26325:2;26329:7;26338:5;26296:22;:48::i;:::-;26288:111;;;;-1:-1:-1;;;26288:111:0;;7499:2:1;26288:111:0;;;7481:21:1;7538:2;7518:18;;;7511:30;7577:34;7557:18;;;7550:62;7648:20;7628:18;;;7621:48;7686:19;;26288:111:0;7297:414:1;45629:110:0;45689:13;45722:9;45715:16;;;;;:::i;5944:723::-;6000:13;6221:10;6217:53;;-1:-1:-1;;6248:10:0;;;;;;;;;;;;;;;;;;5944:723::o;6217:53::-;6295:5;6280:12;6336:78;6343:9;;6336:78;;6369:8;;;;:::i;:::-;;-1:-1:-1;6392:10:0;;-1:-1:-1;6400:2:0;6392:10;;:::i;:::-;;;6336:78;;;6424:19;6456:6;6446:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6446:17:0;;6424:39;;6474:154;6481:10;;6474:154;;6508:11;6518:1;6508:11;;:::i;:::-;;-1:-1:-1;6577:10:0;6585:2;6577:5;:10;:::i;:::-;6564:24;;:2;:24;:::i;:::-;6551:39;;6534:6;6541;6534:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;6605:11:0;6614:2;6605:11;;:::i;:::-;;;6474:154;;37545:589;-1:-1:-1;;;;;37751:18:0;;37747:187;;37786:40;37818:7;38961:10;:17;;38934:24;;;;:15;:24;;;;;:44;;;38989:24;;;;;;;;;;;;38857:164;37786:40;37747:187;;;37856:2;-1:-1:-1;;;;;37848:10:0;:4;-1:-1:-1;;;;;37848:10:0;;37844:90;;37875:47;37908:4;37914:7;37875:32;:47::i;:::-;-1:-1:-1;;;;;37948:16:0;;37944:183;;37981:45;38018:7;37981:36;:45::i;37944:183::-;38054:4;-1:-1:-1;;;;;38048:10:0;:2;-1:-1:-1;;;;;38048:10:0;;38044:83;;38075:40;38103:2;38107:7;38075:27;:40::i;28041:321::-;28171:18;28177:2;28181:7;28171:5;:18::i;:::-;28222:54;28253:1;28257:2;28261:7;28270:5;28222:22;:54::i;:::-;28200:154;;;;-1:-1:-1;;;28200:154:0;;7499:2:1;28200:154:0;;;7481:21:1;7538:2;7518:18;;;7511:30;7577:34;7557:18;;;7550:62;7648:20;7628:18;;;7621:48;7686:19;;28200:154:0;7297:414:1;32062:799:0;32217:4;-1:-1:-1;;;;;32238:13:0;;11813:19;:23;32234:620;;32274:72;;;;;-1:-1:-1;;;;;32274:36:0;;;;;:72;;8383:10;;32325:4;;32331:7;;32340:5;;32274:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32274:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32270:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32516:13:0;;32512:272;;32559:60;;-1:-1:-1;;;32559:60:0;;7499:2:1;32559:60:0;;;7481:21:1;7538:2;7518:18;;;7511:30;7577:34;7557:18;;;7550:62;7648:20;7628:18;;;7621:48;7686:19;;32559:60:0;7297:414:1;32512:272:0;32734:6;32728:13;32719:6;32715:2;32711:15;32704:38;32270:529;32397:51;;32407:41;32397:51;;-1:-1:-1;32390:58:0;;32234:620;-1:-1:-1;32838:4:0;32062:799;;;;;;:::o;39648:988::-;39914:22;39964:1;39939:22;39956:4;39939:16;:22::i;:::-;:26;;;;:::i;:::-;39976:18;39997:26;;;:17;:26;;;;;;39914:51;;-1:-1:-1;40130:28:0;;;40126:328;;-1:-1:-1;;;;;40197:18:0;;40175:19;40197:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40248:30;;;;;;:44;;;40365:30;;:17;:30;;;;;:43;;;40126:328;-1:-1:-1;40550:26:0;;;;:17;:26;;;;;;;;40543:33;;;-1:-1:-1;;;;;40594:18:0;;;;;:12;:18;;;;;:34;;;;;;;40587:41;39648:988::o;40931:1079::-;41209:10;:17;41184:22;;41209:21;;41229:1;;41209:21;:::i;:::-;41241:18;41262:24;;;:15;:24;;;;;;41635:10;:26;;41184:46;;-1:-1:-1;41262:24:0;;41184:46;;41635:26;;;;;;:::i;:::-;;;;;;;;;41613:48;;41699:11;41674:10;41685;41674:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41779:28;;;:15;:28;;;;;;;:41;;;41951:24;;;;;41944:31;41986:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41002:1008;;;40931:1079;:::o;38435:221::-;38520:14;38537:20;38554:2;38537:16;:20::i;:::-;-1:-1:-1;;;;;38568:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38613:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38435:221:0:o;28698:439::-;-1:-1:-1;;;;;28778:16:0;;28770:61;;;;-1:-1:-1;;;28770:61:0;;11506:2:1;28770:61:0;;;11488:21:1;;;11525:18;;;11518:30;11584:34;11564:18;;;11557:62;11636:18;;28770:61:0;11304:356:1;28770:61:0;26785:4;26809:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26809:16:0;:30;28842:58;;;;-1:-1:-1;;;28842:58:0;;8731:2:1;28842:58:0;;;8713:21:1;8770:2;8750:18;;;8743:30;8809;8789:18;;;8782:58;8857:18;;28842:58:0;8529:352:1;28842:58:0;28913:45;28942:1;28946:2;28950:7;28913:20;:45::i;:::-;-1:-1:-1;;;;;28971:13:0;;;;;;:9;:13;;;;;:18;;28988:1;;28971:13;:18;;28988:1;;28971:18;:::i;:::-;;;;-1:-1:-1;;29000:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;29000:21:0;;;;;;;;29039:33;;29000:16;;;29039:33;;29000:16;;29039:33;45118:27:::1;45033:120:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:690:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;194:66;339:24;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:72;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:45;;;591:1;588;581:12;550:45;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;14:690;;;;;:::o;709:196::-;777:20;;-1:-1:-1;;;;;826:54:1;;816:65;;806:93;;895:1;892;885:12;806:93;709:196;;;:::o;910:186::-;969:6;1022:2;1010:9;1001:7;997:23;993:32;990:52;;;1038:1;1035;1028:12;990:52;1061:29;1080:9;1061:29;:::i;1101:260::-;1169:6;1177;1230:2;1218:9;1209:7;1205:23;1201:32;1198:52;;;1246:1;1243;1236:12;1198:52;1269:29;1288:9;1269:29;:::i;:::-;1259:39;;1317:38;1351:2;1340:9;1336:18;1317:38;:::i;:::-;1307:48;;1101:260;;;;;:::o;1366:328::-;1443:6;1451;1459;1512:2;1500:9;1491:7;1487:23;1483:32;1480:52;;;1528:1;1525;1518:12;1480:52;1551:29;1570:9;1551:29;:::i;:::-;1541:39;;1599:38;1633:2;1622:9;1618:18;1599:38;:::i;:::-;1589:48;;1684:2;1673:9;1669:18;1656:32;1646:42;;1366:328;;;;;:::o;1699:666::-;1794:6;1802;1810;1818;1871:3;1859:9;1850:7;1846:23;1842:33;1839:53;;;1888:1;1885;1878:12;1839:53;1911:29;1930:9;1911:29;:::i;:::-;1901:39;;1959:38;1993:2;1982:9;1978:18;1959:38;:::i;:::-;1949:48;;2044:2;2033:9;2029:18;2016:32;2006:42;;2099:2;2088:9;2084:18;2071:32;2126:18;2118:6;2115:30;2112:50;;;2158:1;2155;2148:12;2112:50;2181:22;;2234:4;2226:13;;2222:27;-1:-1:-1;2212:55:1;;2263:1;2260;2253:12;2212:55;2286:73;2351:7;2346:2;2333:16;2328:2;2324;2320:11;2286:73;:::i;:::-;2276:83;;;1699:666;;;;;;;:::o;2370:347::-;2435:6;2443;2496:2;2484:9;2475:7;2471:23;2467:32;2464:52;;;2512:1;2509;2502:12;2464:52;2535:29;2554:9;2535:29;:::i;:::-;2525:39;;2614:2;2603:9;2599:18;2586:32;2661:5;2654:13;2647:21;2640:5;2637:32;2627:60;;2683:1;2680;2673:12;2627:60;2706:5;2696:15;;;2370:347;;;;;:::o;2722:254::-;2790:6;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;2966:2;2951:18;;;;2938:32;;-1:-1:-1;;;2722:254:1:o;2981:245::-;3039:6;3092:2;3080:9;3071:7;3067:23;3063:32;3060:52;;;3108:1;3105;3098:12;3060:52;3147:9;3134:23;3166:30;3190:5;3166:30;:::i;3231:249::-;3300:6;3353:2;3341:9;3332:7;3328:23;3324:32;3321:52;;;3369:1;3366;3359:12;3321:52;3401:9;3395:16;3420:30;3444:5;3420:30;:::i;3485:450::-;3554:6;3607:2;3595:9;3586:7;3582:23;3578:32;3575:52;;;3623:1;3620;3613:12;3575:52;3663:9;3650:23;3696:18;3688:6;3685:30;3682:50;;;3728:1;3725;3718:12;3682:50;3751:22;;3804:4;3796:13;;3792:27;-1:-1:-1;3782:55:1;;3833:1;3830;3823:12;3782:55;3856:73;3921:7;3916:2;3903:16;3898:2;3894;3890:11;3856:73;:::i;3940:180::-;3999:6;4052:2;4040:9;4031:7;4027:23;4023:32;4020:52;;;4068:1;4065;4058:12;4020:52;-1:-1:-1;4091:23:1;;3940:180;-1:-1:-1;3940:180:1:o;4125:184::-;4195:6;4248:2;4236:9;4227:7;4223:23;4219:32;4216:52;;;4264:1;4261;4254:12;4216:52;-1:-1:-1;4287:16:1;;4125:184;-1:-1:-1;4125:184:1:o;4314:316::-;4355:3;4393:5;4387:12;4420:6;4415:3;4408:19;4436:63;4492:6;4485:4;4480:3;4476:14;4469:4;4462:5;4458:16;4436:63;:::i;:::-;4544:2;4532:15;4549:66;4528:88;4519:98;;;;4619:4;4515:109;;4314:316;-1:-1:-1;;4314:316:1:o;4635:470::-;4814:3;4852:6;4846:13;4868:53;4914:6;4909:3;4902:4;4894:6;4890:17;4868:53;:::i;:::-;4984:13;;4943:16;;;;5006:57;4984:13;4943:16;5040:4;5028:17;;5006:57;:::i;:::-;5079:20;;4635:470;-1:-1:-1;;;;4635:470:1:o;5341:511::-;5535:4;-1:-1:-1;;;;;5645:2:1;5637:6;5633:15;5622:9;5615:34;5697:2;5689:6;5685:15;5680:2;5669:9;5665:18;5658:43;;5737:6;5732:2;5721:9;5717:18;5710:34;5780:3;5775:2;5764:9;5760:18;5753:31;5801:45;5841:3;5830:9;5826:19;5818:6;5801:45;:::i;:::-;5793:53;5341:511;-1:-1:-1;;;;;;5341:511:1:o;6661:219::-;6810:2;6799:9;6792:21;6773:4;6830:44;6870:2;6859:9;6855:18;6847:6;6830:44;:::i;14630:128::-;14670:3;14701:1;14697:6;14694:1;14691:13;14688:39;;;14707:18;;:::i;:::-;-1:-1:-1;14743:9:1;;14630:128::o;14763:120::-;14803:1;14829;14819:35;;14834:18;;:::i;:::-;-1:-1:-1;14868:9:1;;14763:120::o;14888:125::-;14928:4;14956:1;14953;14950:8;14947:34;;;14961:18;;:::i;:::-;-1:-1:-1;14998:9:1;;14888:125::o;15018:258::-;15090:1;15100:113;15114:6;15111:1;15108:13;15100:113;;;15190:11;;;15184:18;15171:11;;;15164:39;15136:2;15129:10;15100:113;;;15231:6;15228:1;15225:13;15222:48;;;-1:-1:-1;;15266:1:1;15248:16;;15241:27;15018:258::o;15281:437::-;15360:1;15356:12;;;;15403;;;15424:61;;15478:4;15470:6;15466:17;15456:27;;15424:61;15531:2;15523:6;15520:14;15500:18;15497:38;15494:218;;;15568:77;15565:1;15558:88;15669:4;15666:1;15659:15;15697:4;15694:1;15687:15;15494:218;;15281:437;;;:::o;15723:195::-;15762:3;15793:66;15786:5;15783:77;15780:103;;;15863:18;;:::i;:::-;-1:-1:-1;15910:1:1;15899:13;;15723:195::o;15923:112::-;15955:1;15981;15971:35;;15986:18;;:::i;:::-;-1:-1:-1;16020:9:1;;15923:112::o;16040:184::-;16092:77;16089:1;16082:88;16189:4;16186:1;16179:15;16213:4;16210:1;16203:15;16229:184;16281:77;16278:1;16271:88;16378:4;16375:1;16368:15;16402:4;16399:1;16392:15;16418:184;16470:77;16467:1;16460:88;16567:4;16564:1;16557:15;16591:4;16588:1;16581:15;16607:184;16659:77;16656:1;16649:88;16756:4;16753:1;16746:15;16780:4;16777:1;16770:15;16796:184;16848:77;16845:1;16838:88;16945:4;16942:1;16935:15;16969:4;16966:1;16959:15;16985:177;17070:66;17063:5;17059:78;17052:5;17049:89;17039:117;;17152:1;17149;17142:12
Swarm Source
ipfs://37df37408a04f4ffd5f1fb3ab42ce640a721bec3d55cb89a6821f7b920fc78e5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.