ERC-721
Overview
Max Total Supply
1,974 FKNB
Holders
273
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 FKNBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FuckNotBanksy
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-11 */ // SPDX-License-Identifier: MIT /* ███████╗██╗░░░██╗░█████╗░██╗░░██╗ ███╗░░██╗░█████╗░████████╗██████╗░░█████╗░███╗░░██╗██╗░░██╗░██████╗██╗░░░██╗ ██╔════╝██║░░░██║██╔══██╗██║░██╔╝ ████╗░██║██╔══██╗╚══██╔══╝██╔══██╗██╔══██╗████╗░██║██║░██╔╝██╔════╝╚██╗░██╔╝ █████╗░░██║░░░██║██║░░╚═╝█████═╝░ ██╔██╗██║██║░░██║░░░██║░░░██████╦╝███████║██╔██╗██║█████═╝░╚█████╗░░╚████╔╝░ ██╔══╝░░██║░░░██║██║░░██╗██╔═██╗░ ██║╚████║██║░░██║░░░██║░░░██╔══██╗██╔══██║██║╚████║██╔═██╗░░╚═══██╗░░╚██╔╝░░ ██║░░░░░╚██████╔╝╚█████╔╝██║░╚██╗ ██║░╚███║╚█████╔╝░░░██║░░░██████╦╝██║░░██║██║░╚███║██║░╚██╗██████╔╝░░░██║░░░ ╚═╝░░░░░░╚═════╝░░╚════╝░╚═╝░░╚═╝ ╚═╝░░╚══╝░╚════╝░░░░╚═╝░░░╚═════╝░╚═╝░░╚═╝╚═╝░░╚══╝╚═╝░░╚═╝╚═════╝░░░░╚═╝░░░ */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @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 {} } // File: contracts/fuckNotBanksy.sol /* ███████╗██╗░░░██╗░█████╗░██╗░░██╗ ███╗░░██╗░█████╗░████████╗██████╗░░█████╗░███╗░░██╗██╗░░██╗░██████╗██╗░░░██╗ ██╔════╝██║░░░██║██╔══██╗██║░██╔╝ ████╗░██║██╔══██╗╚══██╔══╝██╔══██╗██╔══██╗████╗░██║██║░██╔╝██╔════╝╚██╗░██╔╝ █████╗░░██║░░░██║██║░░╚═╝█████═╝░ ██╔██╗██║██║░░██║░░░██║░░░██████╦╝███████║██╔██╗██║█████═╝░╚█████╗░░╚████╔╝░ ██╔══╝░░██║░░░██║██║░░██╗██╔═██╗░ ██║╚████║██║░░██║░░░██║░░░██╔══██╗██╔══██║██║╚████║██╔═██╗░░╚═══██╗░░╚██╔╝░░ ██║░░░░░╚██████╔╝╚█████╔╝██║░╚██╗ ██║░╚███║╚█████╔╝░░░██║░░░██████╦╝██║░░██║██║░╚███║██║░╚██╗██████╔╝░░░██║░░░ ╚═╝░░░░░░╚═════╝░░╚════╝░╚═╝░░╚═╝ ╚═╝░░╚══╝░╚════╝░░░░╚═╝░░░╚═════╝░╚═╝░░╚═╝╚═╝░░╚══╝╚═╝░░╚═╝╚═════╝░░░░╚═╝░░░ */ pragma solidity ^0.8.0; contract FuckNotBanksy is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string private baseTokenURI; string public contractURI; uint256 public maxSupply = 1974; uint256 public maxMintAmountPerTx = 5; bool public paused = true; constructor() ERC721("fuckNotBanksy", "FKNB") { baseTokenURI = "ipfs://QmTGiqraRfU5pqMe8M3DQpRd7VYWRzfszu3xjvZUEW3RhT"; contractURI = "ipfs://QmZVyk4vYn4Xad6PoMh4jadccSUe1Ybm5L8LeqQVPRAf8a"; } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function totalSupply() public view returns (uint256) { return supply.current(); } function mint(uint256 _mintAmount) external mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); _mintLoop(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) external mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function setContractURI(string memory _contractURI) external onlyOwner { contractURI = _contractURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return _baseURI(); } function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner { baseTokenURI = _baseTokenURI; } function setPaused(bool _state) external onlyOwner { paused = _state; } function withdraw() external onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } }
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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","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":"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"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526107b6600a556005600b55600c805460ff191660011790553480156200002957600080fd5b50604080518082018252600d81526c6675636b4e6f7442616e6b737960981b6020808301918252835180850190945260048452632325a72160e11b9084015281519192916200007b916000916200016c565b508051620000919060019060208401906200016c565b505050620000ae620000a86200011660201b60201c565b6200011a565b60405180606001604052806035815260200162001e2f603591398051620000de916008916020909101906200016c565b5060405180606001604052806035815260200162001e646035913980516200010f916009916020909101906200016c565b506200024f565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017a9062000212565b90600052602060002090601f0160209004810192826200019e5760008555620001e9565b82601f10620001b957805160ff1916838001178555620001e9565b82800160010185558215620001e9579182015b82811115620001e9578251825591602001919060010190620001cc565b50620001f7929150620001fb565b5090565b5b80821115620001f75760008155600101620001fc565b600181811c908216806200022757607f821691505b602082108114156200024957634e487b7160e01b600052602260045260246000fd5b50919050565b611bd0806200025f6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063b88d4fde11610097578063e8a3d48511610071578063e8a3d48514610395578063e985e9c51461039d578063efbd73f4146103d9578063f2fde38b146103ec57600080fd5b8063b88d4fde14610366578063c87b56dd14610379578063d5abeb011461038c57600080fd5b806394354fd0116100d357806394354fd01461032f57806395d89b4114610338578063a0712d6814610340578063a22cb4651461035357600080fd5b8063715018a6146103035780638da5cb5b1461030b578063938e3d7b1461031c57600080fd5b806330176e1311610166578063438b630011610140578063438b6300146102b05780635c975abb146102d05780636352211e146102dd57806370a08231146102f057600080fd5b806330176e13146102825780633ccfd60b1461029557806342842e0e1461029d57600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806316c38b3c1461024657806318160ddd1461025957806323b872dd1461026f57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611845565b6103ff565b60405190151581526020015b60405180910390f35b6101f9610451565b6040516101e891906119d2565b6102196102143660046118c8565b6104e3565b6040516001600160a01b0390911681526020016101e8565b61024461023f366004611800565b61057d565b005b61024461025436600461182a565b610693565b6102616106d0565b6040519081526020016101e8565b61024461027d36600461171e565b6106e0565b61024461029036600461187f565b610711565b610244610752565b6102446102ab36600461171e565b6107f0565b6102c36102be3660046116c9565b61080b565b6040516101e8919061198e565b600c546101dc9060ff1681565b6102196102eb3660046118c8565b6108ec565b6102616102fe3660046116c9565b610963565b6102446109ea565b6006546001600160a01b0316610219565b61024461032a36600461187f565b610a20565b610261600b5481565b6101f9610a5d565b61024461034e3660046118c8565b610a6c565b6102446103613660046117d6565b610b7b565b61024461037436600461175a565b610b86565b6101f96103873660046118c8565b610bbe565b610261600a5481565b6101f9610c45565b6101dc6103ab3660046116eb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102446103e73660046118e1565b610cd3565b6102446103fa3660046116c9565b610db9565b60006001600160e01b031982166380ac58cd60e01b148061043057506001600160e01b03198216635b5e139f60e01b145b8061044b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461046090611aec565b80601f016020809104026020016040519081016040528092919081815260200182805461048c90611aec565b80156104d95780601f106104ae576101008083540402835291602001916104d9565b820191906000526020600020905b8154815290600101906020018083116104bc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610588826108ec565b9050806001600160a01b0316836001600160a01b031614156105f65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610558565b336001600160a01b0382161480610612575061061281336103ab565b6106845760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610558565b61068e8383610e51565b505050565b6006546001600160a01b031633146106bd5760405162461bcd60e51b815260040161055890611a37565b600c805460ff1916911515919091179055565b60006106db60075490565b905090565b6106ea3382610ebf565b6107065760405162461bcd60e51b815260040161055890611a6c565b61068e838383610fb6565b6006546001600160a01b0316331461073b5760405162461bcd60e51b815260040161055890611a37565b805161074e90600890602084019061158e565b5050565b6006546001600160a01b0316331461077c5760405162461bcd60e51b815260040161055890611a37565b60006107906006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146107da576040519150601f19603f3d011682016040523d82523d6000602084013e6107df565b606091505b50509050806107ed57600080fd5b50565b61068e83838360405180602001604052806000815250610b86565b6060600061081883610963565b905060008167ffffffffffffffff81111561083557610835611b6e565b60405190808252806020026020018201604052801561085e578160200160208202803683370190505b509050600160005b83811080156108775750600a548211155b156108e2576000610887836108ec565b9050866001600160a01b0316816001600160a01b031614156108cf57828483815181106108b6576108b6611b58565b6020908102919091010152816108cb81611b27565b9250505b826108d981611b27565b93505050610866565b5090949350505050565b6000818152600260205260408120546001600160a01b03168061044b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610558565b60006001600160a01b0382166109ce5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610558565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a145760405162461bcd60e51b815260040161055890611a37565b610a1e6000611152565b565b6006546001600160a01b03163314610a4a5760405162461bcd60e51b815260040161055890611a37565b805161074e90600990602084019061158e565b60606001805461046090611aec565b80600081118015610a7f5750600b548111155b610ac25760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610558565b600a5481610acf60075490565b610ad99190611abd565b1115610b1e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610558565b600c5460ff1615610b715760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610558565b61074e33836111a4565b61074e3383836111e1565b610b903383610ebf565b610bac5760405162461bcd60e51b815260040161055890611a6c565b610bb8848484846112b0565b50505050565b6000818152600260205260409020546060906001600160a01b0316610c3d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610558565b61044b6112e3565b60098054610c5290611aec565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e90611aec565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b505050505081565b81600081118015610ce65750600b548111155b610d295760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610558565b600a5481610d3660075490565b610d409190611abd565b1115610d855760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610558565b6006546001600160a01b03163314610daf5760405162461bcd60e51b815260040161055890611a37565b61068e82846111a4565b6006546001600160a01b03163314610de35760405162461bcd60e51b815260040161055890611a37565b6001600160a01b038116610e485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610558565b6107ed81611152565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e86826108ec565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610558565b6000610f43836108ec565b9050806001600160a01b0316846001600160a01b03161480610f7e5750836001600160a01b0316610f73846104e3565b6001600160a01b0316145b80610fae57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fc9826108ec565b6001600160a01b03161461102d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610558565b6001600160a01b03821661108f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610558565b61109a600082610e51565b6001600160a01b03831660009081526003602052604081208054600192906110c3908490611ad5565b90915550506001600160a01b03821660009081526003602052604081208054600192906110f1908490611abd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561068e576111bd600780546001019055565b6111cf836111ca60075490565b6112f2565b806111d981611b27565b9150506111a7565b816001600160a01b0316836001600160a01b031614156112435760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610558565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112bb848484610fb6565b6112c78484848461130c565b610bb85760405162461bcd60e51b8152600401610558906119e5565b60606008805461046090611aec565b61074e828260405180602001604052806000815250611419565b60006001600160a01b0384163b1561140e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611350903390899088908890600401611951565b602060405180830381600087803b15801561136a57600080fd5b505af192505050801561139a575060408051601f3d908101601f1916820190925261139791810190611862565b60015b6113f4573d8080156113c8576040519150601f19603f3d011682016040523d82523d6000602084013e6113cd565b606091505b5080516113ec5760405162461bcd60e51b8152600401610558906119e5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fae565b506001949350505050565b611423838361144c565b611430600084848461130c565b61068e5760405162461bcd60e51b8152600401610558906119e5565b6001600160a01b0382166114a25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610558565b6000818152600260205260409020546001600160a01b0316156115075760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610558565b6001600160a01b0382166000908152600360205260408120805460019290611530908490611abd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461159a90611aec565b90600052602060002090601f0160209004810192826115bc5760008555611602565b82601f106115d557805160ff1916838001178555611602565b82800160010185558215611602579182015b828111156116025782518255916020019190600101906115e7565b5061160e929150611612565b5090565b5b8082111561160e5760008155600101611613565b600067ffffffffffffffff8084111561164257611642611b6e565b604051601f8501601f19908116603f0116810190828211818310171561166a5761166a611b6e565b8160405280935085815286868601111561168357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146116b457600080fd5b919050565b803580151581146116b457600080fd5b6000602082840312156116db57600080fd5b6116e48261169d565b9392505050565b600080604083850312156116fe57600080fd5b6117078361169d565b91506117156020840161169d565b90509250929050565b60008060006060848603121561173357600080fd5b61173c8461169d565b925061174a6020850161169d565b9150604084013590509250925092565b6000806000806080858703121561177057600080fd5b6117798561169d565b93506117876020860161169d565b925060408501359150606085013567ffffffffffffffff8111156117aa57600080fd5b8501601f810187136117bb57600080fd5b6117ca87823560208401611627565b91505092959194509250565b600080604083850312156117e957600080fd5b6117f28361169d565b9150611715602084016116b9565b6000806040838503121561181357600080fd5b61181c8361169d565b946020939093013593505050565b60006020828403121561183c57600080fd5b6116e4826116b9565b60006020828403121561185757600080fd5b81356116e481611b84565b60006020828403121561187457600080fd5b81516116e481611b84565b60006020828403121561189157600080fd5b813567ffffffffffffffff8111156118a857600080fd5b8201601f810184136118b957600080fd5b610fae84823560208401611627565b6000602082840312156118da57600080fd5b5035919050565b600080604083850312156118f457600080fd5b823591506117156020840161169d565b6000815180845260005b8181101561192a5760208185018101518683018201520161190e565b8181111561193c576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061198490830184611904565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156119c6578351835292840192918401916001016119aa565b50909695505050505050565b6020815260006116e46020830184611904565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611ad057611ad0611b42565b500190565b600082821015611ae757611ae7611b42565b500390565b600181811c90821680611b0057607f821691505b60208210811415611b2157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b3b57611b3b611b42565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107ed57600080fdfea264697066735822122005edde383a8e4439134c65606aa49080d437f2bff0c8855981a11ce63137d06b64736f6c63430008070033697066733a2f2f516d5447697172615266553570714d65384d33445170526437565957527a66737a7533786a765a55455733526854697066733a2f2f516d5a56796b3476596e3458616436506f4d68346a616463635355653159626d354c384c65715156505241663861
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063b88d4fde11610097578063e8a3d48511610071578063e8a3d48514610395578063e985e9c51461039d578063efbd73f4146103d9578063f2fde38b146103ec57600080fd5b8063b88d4fde14610366578063c87b56dd14610379578063d5abeb011461038c57600080fd5b806394354fd0116100d357806394354fd01461032f57806395d89b4114610338578063a0712d6814610340578063a22cb4651461035357600080fd5b8063715018a6146103035780638da5cb5b1461030b578063938e3d7b1461031c57600080fd5b806330176e1311610166578063438b630011610140578063438b6300146102b05780635c975abb146102d05780636352211e146102dd57806370a08231146102f057600080fd5b806330176e13146102825780633ccfd60b1461029557806342842e0e1461029d57600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806316c38b3c1461024657806318160ddd1461025957806323b872dd1461026f57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611845565b6103ff565b60405190151581526020015b60405180910390f35b6101f9610451565b6040516101e891906119d2565b6102196102143660046118c8565b6104e3565b6040516001600160a01b0390911681526020016101e8565b61024461023f366004611800565b61057d565b005b61024461025436600461182a565b610693565b6102616106d0565b6040519081526020016101e8565b61024461027d36600461171e565b6106e0565b61024461029036600461187f565b610711565b610244610752565b6102446102ab36600461171e565b6107f0565b6102c36102be3660046116c9565b61080b565b6040516101e8919061198e565b600c546101dc9060ff1681565b6102196102eb3660046118c8565b6108ec565b6102616102fe3660046116c9565b610963565b6102446109ea565b6006546001600160a01b0316610219565b61024461032a36600461187f565b610a20565b610261600b5481565b6101f9610a5d565b61024461034e3660046118c8565b610a6c565b6102446103613660046117d6565b610b7b565b61024461037436600461175a565b610b86565b6101f96103873660046118c8565b610bbe565b610261600a5481565b6101f9610c45565b6101dc6103ab3660046116eb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102446103e73660046118e1565b610cd3565b6102446103fa3660046116c9565b610db9565b60006001600160e01b031982166380ac58cd60e01b148061043057506001600160e01b03198216635b5e139f60e01b145b8061044b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461046090611aec565b80601f016020809104026020016040519081016040528092919081815260200182805461048c90611aec565b80156104d95780601f106104ae576101008083540402835291602001916104d9565b820191906000526020600020905b8154815290600101906020018083116104bc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610588826108ec565b9050806001600160a01b0316836001600160a01b031614156105f65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610558565b336001600160a01b0382161480610612575061061281336103ab565b6106845760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610558565b61068e8383610e51565b505050565b6006546001600160a01b031633146106bd5760405162461bcd60e51b815260040161055890611a37565b600c805460ff1916911515919091179055565b60006106db60075490565b905090565b6106ea3382610ebf565b6107065760405162461bcd60e51b815260040161055890611a6c565b61068e838383610fb6565b6006546001600160a01b0316331461073b5760405162461bcd60e51b815260040161055890611a37565b805161074e90600890602084019061158e565b5050565b6006546001600160a01b0316331461077c5760405162461bcd60e51b815260040161055890611a37565b60006107906006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146107da576040519150601f19603f3d011682016040523d82523d6000602084013e6107df565b606091505b50509050806107ed57600080fd5b50565b61068e83838360405180602001604052806000815250610b86565b6060600061081883610963565b905060008167ffffffffffffffff81111561083557610835611b6e565b60405190808252806020026020018201604052801561085e578160200160208202803683370190505b509050600160005b83811080156108775750600a548211155b156108e2576000610887836108ec565b9050866001600160a01b0316816001600160a01b031614156108cf57828483815181106108b6576108b6611b58565b6020908102919091010152816108cb81611b27565b9250505b826108d981611b27565b93505050610866565b5090949350505050565b6000818152600260205260408120546001600160a01b03168061044b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610558565b60006001600160a01b0382166109ce5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610558565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a145760405162461bcd60e51b815260040161055890611a37565b610a1e6000611152565b565b6006546001600160a01b03163314610a4a5760405162461bcd60e51b815260040161055890611a37565b805161074e90600990602084019061158e565b60606001805461046090611aec565b80600081118015610a7f5750600b548111155b610ac25760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610558565b600a5481610acf60075490565b610ad99190611abd565b1115610b1e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610558565b600c5460ff1615610b715760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610558565b61074e33836111a4565b61074e3383836111e1565b610b903383610ebf565b610bac5760405162461bcd60e51b815260040161055890611a6c565b610bb8848484846112b0565b50505050565b6000818152600260205260409020546060906001600160a01b0316610c3d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610558565b61044b6112e3565b60098054610c5290611aec565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e90611aec565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b505050505081565b81600081118015610ce65750600b548111155b610d295760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610558565b600a5481610d3660075490565b610d409190611abd565b1115610d855760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610558565b6006546001600160a01b03163314610daf5760405162461bcd60e51b815260040161055890611a37565b61068e82846111a4565b6006546001600160a01b03163314610de35760405162461bcd60e51b815260040161055890611a37565b6001600160a01b038116610e485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610558565b6107ed81611152565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e86826108ec565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610558565b6000610f43836108ec565b9050806001600160a01b0316846001600160a01b03161480610f7e5750836001600160a01b0316610f73846104e3565b6001600160a01b0316145b80610fae57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fc9826108ec565b6001600160a01b03161461102d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610558565b6001600160a01b03821661108f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610558565b61109a600082610e51565b6001600160a01b03831660009081526003602052604081208054600192906110c3908490611ad5565b90915550506001600160a01b03821660009081526003602052604081208054600192906110f1908490611abd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561068e576111bd600780546001019055565b6111cf836111ca60075490565b6112f2565b806111d981611b27565b9150506111a7565b816001600160a01b0316836001600160a01b031614156112435760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610558565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112bb848484610fb6565b6112c78484848461130c565b610bb85760405162461bcd60e51b8152600401610558906119e5565b60606008805461046090611aec565b61074e828260405180602001604052806000815250611419565b60006001600160a01b0384163b1561140e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611350903390899088908890600401611951565b602060405180830381600087803b15801561136a57600080fd5b505af192505050801561139a575060408051601f3d908101601f1916820190925261139791810190611862565b60015b6113f4573d8080156113c8576040519150601f19603f3d011682016040523d82523d6000602084013e6113cd565b606091505b5080516113ec5760405162461bcd60e51b8152600401610558906119e5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fae565b506001949350505050565b611423838361144c565b611430600084848461130c565b61068e5760405162461bcd60e51b8152600401610558906119e5565b6001600160a01b0382166114a25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610558565b6000818152600260205260409020546001600160a01b0316156115075760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610558565b6001600160a01b0382166000908152600360205260408120805460019290611530908490611abd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461159a90611aec565b90600052602060002090601f0160209004810192826115bc5760008555611602565b82601f106115d557805160ff1916838001178555611602565b82800160010185558215611602579182015b828111156116025782518255916020019190600101906115e7565b5061160e929150611612565b5090565b5b8082111561160e5760008155600101611613565b600067ffffffffffffffff8084111561164257611642611b6e565b604051601f8501601f19908116603f0116810190828211818310171561166a5761166a611b6e565b8160405280935085815286868601111561168357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146116b457600080fd5b919050565b803580151581146116b457600080fd5b6000602082840312156116db57600080fd5b6116e48261169d565b9392505050565b600080604083850312156116fe57600080fd5b6117078361169d565b91506117156020840161169d565b90509250929050565b60008060006060848603121561173357600080fd5b61173c8461169d565b925061174a6020850161169d565b9150604084013590509250925092565b6000806000806080858703121561177057600080fd5b6117798561169d565b93506117876020860161169d565b925060408501359150606085013567ffffffffffffffff8111156117aa57600080fd5b8501601f810187136117bb57600080fd5b6117ca87823560208401611627565b91505092959194509250565b600080604083850312156117e957600080fd5b6117f28361169d565b9150611715602084016116b9565b6000806040838503121561181357600080fd5b61181c8361169d565b946020939093013593505050565b60006020828403121561183c57600080fd5b6116e4826116b9565b60006020828403121561185757600080fd5b81356116e481611b84565b60006020828403121561187457600080fd5b81516116e481611b84565b60006020828403121561189157600080fd5b813567ffffffffffffffff8111156118a857600080fd5b8201601f810184136118b957600080fd5b610fae84823560208401611627565b6000602082840312156118da57600080fd5b5035919050565b600080604083850312156118f457600080fd5b823591506117156020840161169d565b6000815180845260005b8181101561192a5760208185018101518683018201520161190e565b8181111561193c576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061198490830184611904565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156119c6578351835292840192918401916001016119aa565b50909695505050505050565b6020815260006116e46020830184611904565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611ad057611ad0611b42565b500190565b600082821015611ae757611ae7611b42565b500390565b600181811c90821680611b0057607f821691505b60208210811415611b2157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b3b57611b3b611b42565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107ed57600080fdfea264697066735822122005edde383a8e4439134c65606aa49080d437f2bff0c8855981a11ce63137d06b64736f6c63430008070033
Deployed Bytecode Sourcemap
42844:3052:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27631:305;;;;;;:::i;:::-;;:::i;:::-;;;6748:14:1;;6741:22;6723:41;;6711:2;6696:18;27631:305:0;;;;;;;;28576:100;;;:::i;:::-;;;;;;;:::i;30135:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5409:32:1;;;5391:51;;5379:2;5364:18;30135:221:0;5245:203:1;29658:411:0;;;;;;:::i;:::-;;:::i;:::-;;45295:85;;;;;;:::i;:::-;;:::i;43676:95::-;;;:::i;:::-;;;14573:25:1;;;14561:2;14546:18;43676:95:0;14427:177:1;30885:339:0;;;;;;:::i;:::-;;:::i;45167:120::-;;;;;;:::i;:::-;;:::i;45388:149::-;;;:::i;31295:185::-;;;;;;:::i;:::-;;:::i;44141:675::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43163:25::-;;;;;;;;;28270:239;;;;;;:::i;:::-;;:::i;28000:208::-;;;;;;:::i;:::-;;:::i;8252:103::-;;;:::i;7601:87::-;7674:6;;-1:-1:-1;;;;;7674:6:0;7601:87;;44824:116;;;;;;:::i;:::-;;:::i;43117:37::-;;;;;;28745:104;;;:::i;43779:181::-;;;;;;:::i;:::-;;:::i;30428:155::-;;;;;;:::i;:::-;;:::i;31551:328::-;;;;;;:::i;:::-;;:::i;44948:211::-;;;;;;:::i;:::-;;:::i;43079:31::-;;;;;;43043:25;;;:::i;30654:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;30775:25:0;;;30751:4;30775:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30654:164;43970:163;;;;;;:::i;:::-;;:::i;8510:201::-;;;;;;:::i;:::-;;:::i;27631:305::-;27733:4;-1:-1:-1;;;;;;27770:40:0;;-1:-1:-1;;;27770:40:0;;:105;;-1:-1:-1;;;;;;;27827:48:0;;-1:-1:-1;;;27827:48:0;27770:105;:158;;;-1:-1:-1;;;;;;;;;;20494:40:0;;;27892:36;27750:178;27631:305;-1:-1:-1;;27631:305:0:o;28576:100::-;28630:13;28663:5;28656:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28576:100;:::o;30135:221::-;30211:7;33478:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33478:16:0;30231:73;;;;-1:-1:-1;;;30231:73:0;;11918:2:1;30231:73:0;;;11900:21:1;11957:2;11937:18;;;11930:30;11996:34;11976:18;;;11969:62;-1:-1:-1;;;12047:18:1;;;12040:42;12099:19;;30231:73:0;;;;;;;;;-1:-1:-1;30324:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30324:24:0;;30135:221::o;29658:411::-;29739:13;29755:23;29770:7;29755:14;:23::i;:::-;29739:39;;29803:5;-1:-1:-1;;;;;29797:11:0;:2;-1:-1:-1;;;;;29797:11:0;;;29789:57;;;;-1:-1:-1;;;29789:57:0;;13460:2:1;29789:57:0;;;13442:21:1;13499:2;13479:18;;;13472:30;13538:34;13518:18;;;13511:62;-1:-1:-1;;;13589:18:1;;;13582:31;13630:19;;29789:57:0;13258:397:1;29789:57:0;6405:10;-1:-1:-1;;;;;29881:21:0;;;;:62;;-1:-1:-1;29906:37:0;29923:5;6405:10;30654:164;:::i;29906:37::-;29859:168;;;;-1:-1:-1;;;29859:168:0;;10311:2:1;29859:168:0;;;10293:21:1;10350:2;10330:18;;;10323:30;10389:34;10369:18;;;10362:62;10460:26;10440:18;;;10433:54;10504:19;;29859:168:0;10109:420:1;29859:168:0;30040:21;30049:2;30053:7;30040:8;:21::i;:::-;29728:341;29658:411;;:::o;45295:85::-;7674:6;;-1:-1:-1;;;;;7674:6:0;6405:10;7821:23;7813:68;;;;-1:-1:-1;;;7813:68:0;;;;;;;:::i;:::-;45357:6:::1;:15:::0;;-1:-1:-1;;45357:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45295:85::o;43676:95::-;43720:7;43747:16;:6;3021:14;;2929:114;43747:16;43740:23;;43676:95;:::o;30885:339::-;31080:41;6405:10;31113:7;31080:18;:41::i;:::-;31072:103;;;;-1:-1:-1;;;31072:103:0;;;;;;;:::i;:::-;31188:28;31198:4;31204:2;31208:7;31188:9;:28::i;45167:120::-;7674:6;;-1:-1:-1;;;;;7674:6:0;6405:10;7821:23;7813:68;;;;-1:-1:-1;;;7813:68:0;;;;;;;:::i;:::-;45251:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45167:120:::0;:::o;45388:149::-;7674:6;;-1:-1:-1;;;;;7674:6:0;6405:10;7821:23;7813:68;;;;-1:-1:-1;;;7813:68:0;;;;;;;:::i;:::-;45439:7:::1;45460;7674:6:::0;;-1:-1:-1;;;;;7674:6:0;;7601:87;45460:7:::1;-1:-1:-1::0;;;;;45452:21:0::1;45481;45452:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45438:69;;;45526:2;45518:11;;;::::0;::::1;;45427:110;45388:149::o:0;31295:185::-;31433:39;31450:4;31456:2;31460:7;31433:39;;;;;;;;;;;;:16;:39::i;44141:675::-;44201:16;44230:23;44256:17;44266:6;44256:9;:17::i;:::-;44230:43;;44284:30;44331:15;44317:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44317:30:0;-1:-1:-1;44284:63:0;-1:-1:-1;44383:1:0;44358:22;44435:343;44460:15;44442;:33;:64;;;;;44497:9;;44479:14;:27;;44442:64;44435:343;;;44523:25;44551:23;44559:14;44551:7;:23::i;:::-;44523:51;;44614:6;-1:-1:-1;;;;;44593:27:0;:17;-1:-1:-1;;;;;44593:27:0;;44589:151;;;44674:14;44641:13;44655:15;44641:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;44707:17;;;;:::i;:::-;;;;44589:151;44750:16;;;;:::i;:::-;;;;44508:270;44435:343;;;-1:-1:-1;44795:13:0;;44141:675;-1:-1:-1;;;;44141:675:0:o;28270:239::-;28342:7;28378:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28378:16:0;28413:19;28405:73;;;;-1:-1:-1;;;28405:73:0;;11147:2:1;28405:73:0;;;11129:21:1;11186:2;11166:18;;;11159:30;11225:34;11205:18;;;11198:62;-1:-1:-1;;;11276:18:1;;;11269:39;11325:19;;28405:73:0;10945:405:1;28000:208:0;28072:7;-1:-1:-1;;;;;28100:19:0;;28092:74;;;;-1:-1:-1;;;28092:74:0;;10736:2:1;28092:74:0;;;10718:21:1;10775:2;10755:18;;;10748:30;10814:34;10794:18;;;10787:62;-1:-1:-1;;;10865:18:1;;;10858:40;10915:19;;28092:74:0;10534:406:1;28092:74:0;-1:-1:-1;;;;;;28184:16:0;;;;;:9;:16;;;;;;;28000:208::o;8252:103::-;7674:6;;-1:-1:-1;;;;;7674:6:0;6405:10;7821:23;7813:68;;;;-1:-1:-1;;;7813:68:0;;;;;;;:::i;:::-;8317:30:::1;8344:1;8317:18;:30::i;:::-;8252:103::o:0;44824:116::-;7674:6;;-1:-1:-1;;;;;7674:6:0;6405:10;7821:23;7813:68;;;;-1:-1:-1;;;7813:68:0;;;;;;;:::i;:::-;44906:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;28745:104::-:0;28801:13;28834:7;28827:14;;;;;:::i;43779:181::-;43838:11;43498:1;43484:11;:15;:52;;;;;43518:18;;43503:11;:33;;43484:52;43476:85;;;;-1:-1:-1;;;43476:85:0;;8790:2:1;43476:85:0;;;8772:21:1;8829:2;8809:18;;;8802:30;-1:-1:-1;;;8848:18:1;;;8841:50;8908:18;;43476:85:0;8588:344:1;43476:85:0;43614:9;;43599:11;43580:16;:6;3021:14;;2929:114;43580:16;:30;;;;:::i;:::-;:43;;43572:76;;;;-1:-1:-1;;;43572:76:0;;13862:2:1;43572:76:0;;;13844:21:1;13901:2;13881:18;;;13874:30;-1:-1:-1;;;13920:18:1;;;13913:50;13980:18;;43572:76:0;13660:344:1;43572:76:0;43871:6:::1;::::0;::::1;;43870:7;43862:43;;;::::0;-1:-1:-1;;;43862:43:0;;12692:2:1;43862:43:0::1;::::0;::::1;12674:21:1::0;12731:2;12711:18;;;12704:30;12770:25;12750:18;;;12743:53;12813:18;;43862:43:0::1;12490:347:1::0;43862:43:0::1;43918:34;43928:10;43940:11;43918:9;:34::i;30428:155::-:0;30523:52;6405:10;30556:8;30566;30523:18;:52::i;31551:328::-;31726:41;6405:10;31759:7;31726:18;:41::i;:::-;31718:103;;;;-1:-1:-1;;;31718:103:0;;;;;;;:::i;:::-;31832:39;31846:4;31852:2;31856:7;31865:5;31832:13;:39::i;:::-;31551:328;;;;:::o;44948:211::-;33454:4;33478:16;;;:7;:16;;;;;;45021:13;;-1:-1:-1;;;;;33478:16:0;45047:76;;;;-1:-1:-1;;;45047:76:0;;13044:2:1;45047:76:0;;;13026:21:1;13083:2;13063:18;;;13056:30;13122:34;13102:18;;;13095:62;-1:-1:-1;;;13173:18:1;;;13166:45;13228:19;;45047:76:0;12842:411:1;45047:76:0;45141:10;:8;:10::i;43043:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43970:163::-;44058:11;43498:1;43484:11;:15;:52;;;;;43518:18;;43503:11;:33;;43484:52;43476:85;;;;-1:-1:-1;;;43476:85:0;;8790:2:1;43476:85:0;;;8772:21:1;8829:2;8809:18;;;8802:30;-1:-1:-1;;;8848:18:1;;;8841:50;8908:18;;43476:85:0;8588:344:1;43476:85:0;43614:9;;43599:11;43580:16;:6;3021:14;;2929:114;43580:16;:30;;;;:::i;:::-;:43;;43572:76;;;;-1:-1:-1;;;43572:76:0;;13862:2:1;43572:76:0;;;13844:21:1;13901:2;13881:18;;;13874:30;-1:-1:-1;;;13920:18:1;;;13913:50;13980:18;;43572:76:0;13660:344:1;43572:76:0;7674:6;;-1:-1:-1;;;;;7674:6:0;6405:10;7821:23:::1;7813:68;;;;-1:-1:-1::0;;;7813:68:0::1;;;;;;;:::i;:::-;44092:33:::2;44102:9;44113:11;44092:9;:33::i;8510:201::-:0;7674:6;;-1:-1:-1;;;;;7674:6:0;6405:10;7821:23;7813:68;;;;-1:-1:-1;;;7813:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8599:22:0;::::1;8591:73;;;::::0;-1:-1:-1;;;8591:73:0;;7620:2:1;8591:73:0::1;::::0;::::1;7602:21:1::0;7659:2;7639:18;;;7632:30;7698:34;7678:18;;;7671:62;-1:-1:-1;;;7749:18:1;;;7742:36;7795:19;;8591:73:0::1;7418:402:1::0;8591:73:0::1;8675:28;8694:8;8675:18;:28::i;37535:174::-:0;37610:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37610:29:0;-1:-1:-1;;;;;37610:29:0;;;;;;;;:24;;37664:23;37610:24;37664:14;:23::i;:::-;-1:-1:-1;;;;;37655:46:0;;;;;;;;;;;37535:174;;:::o;33683:348::-;33776:4;33478:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33478:16:0;33793:73;;;;-1:-1:-1;;;33793:73:0;;9898:2:1;33793:73:0;;;9880:21:1;9937:2;9917:18;;;9910:30;9976:34;9956:18;;;9949:62;-1:-1:-1;;;10027:18:1;;;10020:42;10079:19;;33793:73:0;9696:408:1;33793:73:0;33877:13;33893:23;33908:7;33893:14;:23::i;:::-;33877:39;;33946:5;-1:-1:-1;;;;;33935:16:0;:7;-1:-1:-1;;;;;33935:16:0;;:51;;;;33979:7;-1:-1:-1;;;;;33955:31:0;:20;33967:7;33955:11;:20::i;:::-;-1:-1:-1;;;;;33955:31:0;;33935:51;:87;;;-1:-1:-1;;;;;;30775:25:0;;;30751:4;30775:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33990:32;33927:96;33683:348;-1:-1:-1;;;;33683:348:0:o;36792:625::-;36951:4;-1:-1:-1;;;;;36924:31:0;:23;36939:7;36924:14;:23::i;:::-;-1:-1:-1;;;;;36924:31:0;;36916:81;;;;-1:-1:-1;;;36916:81:0;;8027:2:1;36916:81:0;;;8009:21:1;8066:2;8046:18;;;8039:30;8105:34;8085:18;;;8078:62;-1:-1:-1;;;8156:18:1;;;8149:35;8201:19;;36916:81:0;7825:401:1;36916:81:0;-1:-1:-1;;;;;37016:16:0;;37008:65;;;;-1:-1:-1;;;37008:65:0;;9139:2:1;37008:65:0;;;9121:21:1;9178:2;9158:18;;;9151:30;9217:34;9197:18;;;9190:62;-1:-1:-1;;;9268:18:1;;;9261:34;9312:19;;37008:65:0;8937:400:1;37008:65:0;37190:29;37207:1;37211:7;37190:8;:29::i;:::-;-1:-1:-1;;;;;37232:15:0;;;;;;:9;:15;;;;;:20;;37251:1;;37232:15;:20;;37251:1;;37232:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37263:13:0;;;;;;:9;:13;;;;;:18;;37280:1;;37263:13;:18;;37280:1;;37263:18;:::i;:::-;;;;-1:-1:-1;;37292:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37292:21:0;-1:-1:-1;;;;;37292:21:0;;;;;;;;;37331:27;;37292:16;;37331:27;;;;;;;29728:341;29658:411;;:::o;8871:191::-;8964:6;;;-1:-1:-1;;;;;8981:17:0;;;-1:-1:-1;;;;;;8981:17:0;;;;;;;9014:40;;8964:6;;;8981:17;8964:6;;9014:40;;8945:16;;9014:40;8934:128;8871:191;:::o;45545:227::-;45629:9;45624:141;45648:11;45644:1;:15;45624:141;;;45681:18;:6;3140:19;;3158:1;3140:19;;;3051:127;45681:18;45714:39;45724:9;45736:16;:6;3021:14;;2929:114;45736:16;45714:9;:39::i;:::-;45661:3;;;;:::i;:::-;;;;45624:141;;37851:315;38006:8;-1:-1:-1;;;;;37997:17:0;:5;-1:-1:-1;;;;;37997:17:0;;;37989:55;;;;-1:-1:-1;;;37989:55:0;;9544:2:1;37989:55:0;;;9526:21:1;9583:2;9563:18;;;9556:30;9622:27;9602:18;;;9595:55;9667:18;;37989:55:0;9342:349:1;37989:55:0;-1:-1:-1;;;;;38055:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38055:46:0;;;;;;;;;;38117:41;;6723::1;;;38117::0;;6696:18:1;38117:41:0;;;;;;;37851:315;;;:::o;32761:::-;32918:28;32928:4;32934:2;32938:7;32918:9;:28::i;:::-;32965:48;32988:4;32994:2;32998:7;33007:5;32965:22;:48::i;:::-;32957:111;;;;-1:-1:-1;;;32957:111:0;;;;;;;:::i;45780:113::-;45840:13;45873:12;45866:19;;;;;:::i;34373:110::-;34449:26;34459:2;34463:7;34449:26;;;;;;;;;;;;:9;:26::i;38731:799::-;38886:4;-1:-1:-1;;;;;38907:13:0;;10597:19;:23;38903:620;;38943:72;;-1:-1:-1;;;38943:72:0;;-1:-1:-1;;;;;38943:36:0;;;;;:72;;6405:10;;38994:4;;39000:7;;39009:5;;38943:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38943:72:0;;;;;;;;-1:-1:-1;;38943:72:0;;;;;;;;;;;;:::i;:::-;;;38939:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39185:13:0;;39181:272;;39228:60;;-1:-1:-1;;;39228:60:0;;;;;;;:::i;39181:272::-;39403:6;39397:13;39388:6;39384:2;39380:15;39373:38;38939:529;-1:-1:-1;;;;;;39066:51:0;-1:-1:-1;;;39066:51:0;;-1:-1:-1;39059:58:0;;38903:620;-1:-1:-1;39507:4:0;38731:799;;;;;;:::o;34710:321::-;34840:18;34846:2;34850:7;34840:5;:18::i;:::-;34891:54;34922:1;34926:2;34930:7;34939:5;34891:22;:54::i;:::-;34869:154;;;;-1:-1:-1;;;34869:154:0;;;;;;;:::i;35367:439::-;-1:-1:-1;;;;;35447:16:0;;35439:61;;;;-1:-1:-1;;;35439:61:0;;11557:2:1;35439:61:0;;;11539:21:1;;;11576:18;;;11569:30;11635:34;11615:18;;;11608:62;11687:18;;35439:61:0;11355:356:1;35439:61:0;33454:4;33478:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33478:16:0;:30;35511:58;;;;-1:-1:-1;;;35511:58:0;;8433:2:1;35511:58:0;;;8415:21:1;8472:2;8452:18;;;8445:30;8511;8491:18;;;8484:58;8559:18;;35511:58:0;8231:352:1;35511:58:0;-1:-1:-1;;;;;35640:13:0;;;;;;:9;:13;;;;;:18;;35657:1;;35640:13;:18;;35657:1;;35640:18;:::i;:::-;;;;-1:-1:-1;;35669:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35669:21:0;-1:-1:-1;;;;;35669:21:0;;;;;;;;35708:33;;35669:16;;;35708:33;;35669:16;;35708:33;45251:28:::1;45167:120:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:471::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4690:1;4700:162;4714:6;4711:1;4708:13;4700:162;;;4776:4;4832:13;;;4828:22;;4822:29;4804:11;;;4800:20;;4793:59;4729:12;4700:162;;;4880:6;4877:1;4874:13;4871:87;;;4946:1;4939:4;4930:6;4925:3;4921:16;4917:27;4910:38;4871:87;-1:-1:-1;5012:2:1;4991:15;-1:-1:-1;;4987:29:1;4978:39;;;;5019:4;4974:50;;4559:471;-1:-1:-1;;4559:471:1:o;5453:488::-;-1:-1:-1;;;;;5722:15:1;;;5704:34;;5774:15;;5769:2;5754:18;;5747:43;5821:2;5806:18;;5799:34;;;5869:3;5864:2;5849:18;;5842:31;;;5647:4;;5890:45;;5915:19;;5907:6;5890:45;:::i;:::-;5882:53;5453:488;-1:-1:-1;;;;;;5453:488:1:o;5946:632::-;6117:2;6169:21;;;6239:13;;6142:18;;;6261:22;;;6088:4;;6117:2;6340:15;;;;6314:2;6299:18;;;6088:4;6383:169;6397:6;6394:1;6391:13;6383:169;;;6458:13;;6446:26;;6527:15;;;;6492:12;;;;6419:1;6412:9;6383:169;;;-1:-1:-1;6569:3:1;;5946:632;-1:-1:-1;;;;;;5946:632:1:o;6775:219::-;6924:2;6913:9;6906:21;6887:4;6944:44;6984:2;6973:9;6969:18;6961:6;6944:44;:::i;6999:414::-;7201:2;7183:21;;;7240:2;7220:18;;;7213:30;7279:34;7274:2;7259:18;;7252:62;-1:-1:-1;;;7345:2:1;7330:18;;7323:48;7403:3;7388:19;;6999:414::o;12129:356::-;12331:2;12313:21;;;12350:18;;;12343:30;12409:34;12404:2;12389:18;;12382:62;12476:2;12461:18;;12129:356::o;14009:413::-;14211:2;14193:21;;;14250:2;14230:18;;;14223:30;14289:34;14284:2;14269:18;;14262:62;-1:-1:-1;;;14355:2:1;14340:18;;14333:47;14412:3;14397:19;;14009:413::o;14609:128::-;14649:3;14680:1;14676:6;14673:1;14670:13;14667:39;;;14686:18;;:::i;:::-;-1:-1:-1;14722:9:1;;14609:128::o;14742:125::-;14782:4;14810:1;14807;14804:8;14801:34;;;14815:18;;:::i;:::-;-1:-1:-1;14852:9:1;;14742:125::o;14872:380::-;14951:1;14947:12;;;;14994;;;15015:61;;15069:4;15061:6;15057:17;15047:27;;15015:61;15122:2;15114:6;15111:14;15091:18;15088:38;15085:161;;;15168:10;15163:3;15159:20;15156:1;15149:31;15203:4;15200:1;15193:15;15231:4;15228:1;15221:15;15085:161;;14872:380;;;:::o;15257:135::-;15296:3;-1:-1:-1;;15317:17:1;;15314:43;;;15337:18;;:::i;:::-;-1:-1:-1;15384:1:1;15373:13;;15257:135::o;15397:127::-;15458:10;15453:3;15449:20;15446:1;15439:31;15489:4;15486:1;15479:15;15513:4;15510:1;15503:15;15529:127;15590:10;15585:3;15581:20;15578:1;15571:31;15621:4;15618:1;15611:15;15645:4;15642:1;15635:15;15661:127;15722:10;15717:3;15713:20;15710:1;15703:31;15753:4;15750:1;15743:15;15777:4;15774:1;15767:15;15793:131;-1:-1:-1;;;;;;15867:32:1;;15857:43;;15847:71;;15914:1;15911;15904:12
Swarm Source
ipfs://05edde383a8e4439134c65606aa49080d437f2bff0c8855981a11ce63137d06b
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.