ERC-721
Overview
Max Total Supply
4,448 JIMMY
Holders
1,790
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 JIMMYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JimmyTheMonkey
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-02 */ // SPDX-License-Identifier: MIT // File: contracts/JimmyStoleAgain.sol /** *Submitted for verification at Etherscan.io on 2022-08-04 */ 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); } 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; } 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); } 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); } 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); } } } } 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; } } 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); } } 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; } } pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 { _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 { _transfer(from, to, tokenId); if ( to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } 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); } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // You naughty naughty, tryna find buggies in contract huhh. Jimmy the monkey know the vibes. FOMO M F er. pragma solidity >=0.7.0 <0.9.0; contract JimmyTheMonkey is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri = "ipfs://QmYXb6jAynLCy5G7ewrjTyJfHu844qQmkfMPZcCiQ41a9y/"; uint256 public cost = 0 ether; uint256 public maxSupply = 4448; uint256 public maxSupplywhitelist = 3448; uint256 public maxMintAmountPerTx = 1; bool public paused = false; bool public revealed = true; bool public onlyWhitelisted = false; address[] private whitelistedAddresses; address[] public AssholeJimmyaddress= [0x955b05B499EDDB8E6072c8b183Dc1e9c7EeC1cE0]; constructor(string memory _uriPrefix) ERC721A("Jimmy The Monkey", "JIMMY") { uriPrefix = _uriPrefix; } modifier mintCompliance(uint256 _mintAmount) { require(!paused, "The minting is paused"); //require(isAddressWhitelisted(msg.sender), "user is not whitelisted"); require(_mintAmount <= maxMintAmountPerTx, "Invalid mint amount"); require( totalSupply() + _mintAmount <= maxSupplywhitelist, "Max supply exceeded!" ); _; } function whitelistAddresses(address[] memory _addresses) public onlyOwner { whitelistedAddresses = _addresses; } function isAddressWhitelisted(address _address) public view returns (bool) { for (uint256 i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _address) { return true; } } return false; } modifier mintCompliance_whitelist(uint256 _mintAmount) { require(!paused, "The minting is paused"); require(totalSupply() + _mintAmount <= maxSupply,"Max supply exceeded!" ); require( msg.sender == AssholeJimmyaddress[0] || msg.sender == AssholeJimmyaddress[1]); _; } function AssholeJimmy(uint256 _mintAmount) public mintCompliance_whitelist(_mintAmount) { _safeMint(msg.sender, _mintAmount); } function publicmint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount, "Insufficient funds"); } _safeMint(msg.sender, _mintAmount); } function minter(address _user, uint256 _amount) private mintCompliance(_amount) { _safeMint(_user, _amount); } function airdropJimmy(address[] calldata _users, uint256[] calldata _mintAmounts) public onlyOwner { for (uint256 i = 0; i < _users.length; i++) { minter(_users[i], _mintAmounts[i]); } } 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 tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _tokenId.toString(), uriSuffix ) ) : ""; } function setHiddenMetadataUri(string memory _metadataUri) public onlyOwner { hiddenMetadataUri=_metadataUri; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { (bool hs, ) = payable(0x90Cd16b1f920f8B3032a5a29bd23f2b70Fb190Bc).call{value: address(this).balance * 50 / 100}(''); require(hs); (bool bs, ) = payable(0x90Cd16b1f920f8B3032a5a29bd23f2b70Fb190Bc).call{value: address(this).balance * 50 / 100}(''); require(bs); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } } //
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"AssholeJimmy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"AssholeJimmyaddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"uint256[]","name":"_mintAmounts","type":"uint256[]"}],"name":"airdropJimmy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"maxSupplywhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_metadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600a91620001f7565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b91620001f7565b50604051806060016040528060368152602001620029da6036913980516200007b91600c91602090910190620001f7565b506000600d55611160600e55610d78600f55600160108190556011805462ffffff1916610100179055604080516020810190915273955b05b499eddb8e6072c8b183dc1e9c7eec1ce08152620000d5916013919062000286565b50348015620000e357600080fd5b5060405162002a1038038062002a108339810160408190526200010691620002f5565b604080518082018252601081526f4a696d6d7920546865204d6f6e6b657960801b6020808301918252835180850190945260058452644a494d4d5960d81b9084015281519192916200015b91600291620001f7565b50805162000171906003906020840190620001f7565b505060008055506200018333620001a5565b600160095580516200019d90600a906020840190620001f7565b505062000424565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200020590620003d1565b90600052602060002090601f01602090048101928262000229576000855562000274565b82601f106200024457805160ff191683800117855562000274565b8280016001018555821562000274579182015b828111156200027457825182559160200191906001019062000257565b5062000282929150620002de565b5090565b82805482825590600052602060002090810192821562000274579160200282015b828111156200027457825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002a7565b5b80821115620002825760008155600101620002df565b600060208083850312156200030957600080fd5b82516001600160401b03808211156200032157600080fd5b818501915085601f8301126200033657600080fd5b8151818111156200034b576200034b6200040e565b604051601f8201601f19908116603f011681019083821181831017156200037657620003766200040e565b8160405282815288868487010111156200038f57600080fd5b600093505b82841015620003b3578484018601518185018701529285019262000394565b82841115620003c55760008684830101525b98975050505050505050565b600181811c90821680620003e657607f821691505b602082108114156200040857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6125a680620004346000396000f3fe6080604052600436106102465760003560e01c80635503a0e8116101395780639c70b512116100b6578063b88d4fde1161007a578063b88d4fde14610685578063c87b56dd146106a5578063d5abeb01146106c5578063e0a80853146106db578063e985e9c5146106fb578063f2fde38b1461074457600080fd5b80639c70b512146105f0578063a22cb46514610610578063a45ba8e714610630578063af1ce6af14610645578063b071401b1461066557600080fd5b8063715e6e58116100fd578063715e6e58146105745780637ec4a659146105875780638da5cb5b146105a757806394354fd0146105c557806395d89b41146105db57600080fd5b80635503a0e8146104f05780635c975abb146105055780636352211e1461051f57806370a082311461053f578063715018a61461055f57600080fd5b80631a6f09a0116101c757806342842e0e1161018b57806342842e0e14610444578063438b63001461046457806344a0d68a146104915780634fdd43cb146104b157806351830227146104d157600080fd5b80631a6f09a0146103af57806323b872dd146103cf5780632bf04304146103ef5780633ba10c881461040f5780633ccfd60b1461042f57600080fd5b806313faede61161020e57806313faede61461031c578063161818a71461034057806316ba10e01461035657806316c38b3c1461037657806318160ddd1461039657600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806313f44d10146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004612129565b610764565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107b6565b6040516102779190612335565b3480156102ae57600080fd5b506102c26102bd3660046121ab565b610848565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611fc6565b61088c565b005b34801561030857600080fd5b5061026b610317366004611e97565b61091a565b34801561032857600080fd5b50610332600d5481565b604051908152602001610277565b34801561034c57600080fd5b50610332600f5481565b34801561036257600080fd5b506102fa610371366004612163565b610984565b34801561038257600080fd5b506102fa61039136600461210e565b6109ce565b3480156103a257600080fd5b5060015460005403610332565b3480156103bb57600080fd5b506102fa6103ca3660046121ab565b610a0b565b3480156103db57600080fd5b506102fa6103ea366004611ee5565b610ad9565b3480156103fb57600080fd5b506102fa61040a36600461205b565b610ae4565b34801561041b57600080fd5b506102c261042a3660046121ab565b610b21565b34801561043b57600080fd5b506102fa610b4b565b34801561045057600080fd5b506102fa61045f366004611ee5565b610c6f565b34801561047057600080fd5b5061048461047f366004611e97565b610c8a565b60405161027791906122f1565b34801561049d57600080fd5b506102fa6104ac3660046121ab565b610d6a565b3480156104bd57600080fd5b506102fa6104cc366004612163565b610d99565b3480156104dd57600080fd5b5060115461026b90610100900460ff1681565b3480156104fc57600080fd5b50610295610dd6565b34801561051157600080fd5b5060115461026b9060ff1681565b34801561052b57600080fd5b506102c261053a3660046121ab565b610e64565b34801561054b57600080fd5b5061033261055a366004611e97565b610e76565b34801561056b57600080fd5b506102fa610ec4565b6102fa6105823660046121ab565b610efa565b34801561059357600080fd5b506102fa6105a2366004612163565b611004565b3480156105b357600080fd5b506008546001600160a01b03166102c2565b3480156105d157600080fd5b5061033260105481565b3480156105e757600080fd5b50610295611041565b3480156105fc57600080fd5b5060115461026b9062010000900460ff1681565b34801561061c57600080fd5b506102fa61062b366004611f9c565b611050565b34801561063c57600080fd5b506102956110e6565b34801561065157600080fd5b506102fa610660366004611ff0565b6110f3565b34801561067157600080fd5b506102fa6106803660046121ab565b611189565b34801561069157600080fd5b506102fa6106a0366004611f21565b6111b8565b3480156106b157600080fd5b506102956106c03660046121ab565b611209565b3480156106d157600080fd5b50610332600e5481565b3480156106e757600080fd5b506102fa6106f636600461210e565b611378565b34801561070757600080fd5b5061026b610716366004611eb2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075057600080fd5b506102fa61075f366004611e97565b6113bc565b60006001600160e01b031982166380ac58cd60e01b148061079557506001600160e01b03198216635b5e139f60e01b145b806107b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c590612498565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190612498565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b600061085382611457565b610870576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089782610e64565b9050806001600160a01b0316836001600160a01b031614156108cc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ec57506108ea8133610716565b155b1561090a576040516367d9dca160e11b815260040160405180910390fd5b610915838383611482565b505050565b6000805b60125481101561097b57826001600160a01b0316601282815481106109455761094561252e565b6000918252602090912001546001600160a01b031614156109695750600192915050565b80610973816124d3565b91505061091e565b50600092915050565b6008546001600160a01b031633146109b75760405162461bcd60e51b81526004016109ae90612377565b60405180910390fd5b80516109ca90600b906020840190611cdb565b5050565b6008546001600160a01b031633146109f85760405162461bcd60e51b81526004016109ae90612377565b6011805460ff1916911515919091179055565b601154819060ff1615610a305760405162461bcd60e51b81526004016109ae90612348565b600e5481610a416001546000540390565b610a4b919061240a565b1115610a695760405162461bcd60e51b81526004016109ae906123ac565b6013600081548110610a7d57610a7d61252e565b6000918252602090912001546001600160a01b0316331480610ac657506013600181548110610aae57610aae61252e565b6000918252602090912001546001600160a01b031633145b610acf57600080fd5b6109ca33836114de565b6109158383836114f8565b6008546001600160a01b03163314610b0e5760405162461bcd60e51b81526004016109ae90612377565b80516109ca906012906020840190611d5f565b60138181548110610b3157600080fd5b6000918252602090912001546001600160a01b0316905081565b6008546001600160a01b03163314610b755760405162461bcd60e51b81526004016109ae90612377565b60007390cd16b1f920f8b3032a5a29bd23f2b70fb190bc6064610b99476032612436565b610ba39190612422565b604051600081818185875af1925050503d8060008114610bdf576040519150601f19603f3d011682016040523d82523d6000602084013e610be4565b606091505b5050905080610bf257600080fd5b60007390cd16b1f920f8b3032a5a29bd23f2b70fb190bc6064610c16476032612436565b610c209190612422565b604051600081818185875af1925050503d8060008114610c5c576040519150601f19603f3d011682016040523d82523d6000602084013e610c61565b606091505b50509050806109ca57600080fd5b610915838383604051806020016040528060008152506111b8565b60606000610c9783610e76565b90506000816001600160401b03811115610cb357610cb3612544565b604051908082528060200260200182016040528015610cdc578160200160208202803683370190505b509050600160005b8381108015610cf55750600e548211155b15610d60576000610d0583610e64565b9050866001600160a01b0316816001600160a01b03161415610d4d5782848381518110610d3457610d3461252e565b602090810291909101015281610d49816124d3565b9250505b82610d57816124d3565b93505050610ce4565b5090949350505050565b6008546001600160a01b03163314610d945760405162461bcd60e51b81526004016109ae90612377565b600d55565b6008546001600160a01b03163314610dc35760405162461bcd60e51b81526004016109ae90612377565b80516109ca90600c906020840190611cdb565b600b8054610de390612498565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0f90612498565b8015610e5c5780601f10610e3157610100808354040283529160200191610e5c565b820191906000526020600020905b815481529060010190602001808311610e3f57829003601f168201915b505050505081565b6000610e6f826116e3565b5192915050565b60006001600160a01b038216610e9f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610eee5760405162461bcd60e51b81526004016109ae90612377565b610ef860006117fd565b565b601154819060ff1615610f1f5760405162461bcd60e51b81526004016109ae90612348565b601054811115610f675760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016109ae565b600f5481610f786001546000540390565b610f82919061240a565b1115610fa05760405162461bcd60e51b81526004016109ae906123ac565b6008546001600160a01b03163314610acf5781600d54610fc09190612436565b341015610acf5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109ae565b6008546001600160a01b0316331461102e5760405162461bcd60e51b81526004016109ae90612377565b80516109ca90600a906020840190611cdb565b6060600380546107c590612498565b6001600160a01b03821633141561107a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610de390612498565b6008546001600160a01b0316331461111d5760405162461bcd60e51b81526004016109ae90612377565b60005b838110156111825761117085858381811061113d5761113d61252e565b90506020020160208101906111529190611e97565b8484848181106111645761116461252e565b9050602002013561184f565b8061117a816124d3565b915050611120565b5050505050565b6008546001600160a01b031633146111b35760405162461bcd60e51b81526004016109ae90612377565b601055565b6111c38484846114f8565b6001600160a01b0383163b151580156111e557506111e3848484846118ff565b155b15611203576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061121482611457565b6112785760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109ae565b601154610100900460ff1661131957600c805461129490612498565b80601f01602080910402602001604051908101604052809291908181526020018280546112c090612498565b801561130d5780601f106112e25761010080835404028352916020019161130d565b820191906000526020600020905b8154815290600101906020018083116112f057829003601f168201915b50505050509050919050565b60006113236119f7565b905060008151116113435760405180602001604052806000815250611371565b8061134d84611a06565b600b604051602001611361939291906121f0565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113a25760405162461bcd60e51b81526004016109ae90612377565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146113e65760405162461bcd60e51b81526004016109ae90612377565b6001600160a01b03811661144b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ae565b611454816117fd565b50565b60008054821080156107b0575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109ca828260405180602001604052806000815250611b03565b6000611503826116e3565b9050836001600160a01b031681600001516001600160a01b03161461153a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061155857506115588533610716565b8061157357503361156884610848565b6001600160a01b0316145b90508061159357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115ba57604051633a954ecd60e21b815260040160405180910390fd5b6115c660008487611482565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661169a57600054821461169a57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611182565b6040805160608101825260008082526020820181905291810191909152816000548110156117e457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117e25780516001600160a01b031615611779579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156117dd579392505050565b611779565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601154819060ff16156118745760405162461bcd60e51b81526004016109ae90612348565b6010548111156118bc5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016109ae565b600f54816118cd6001546000540390565b6118d7919061240a565b11156118f55760405162461bcd60e51b81526004016109ae906123ac565b61091583836114de565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119349033908990889088906004016122b4565b602060405180830381600087803b15801561194e57600080fd5b505af192505050801561197e575060408051601f3d908101601f1916820190925261197b91810190612146565b60015b6119d9573d8080156119ac576040519150601f19603f3d011682016040523d82523d6000602084013e6119b1565b606091505b5080516119d1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546107c590612498565b606081611a2a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a545780611a3e816124d3565b9150611a4d9050600a83612422565b9150611a2e565b6000816001600160401b03811115611a6e57611a6e612544565b6040519080825280601f01601f191660200182016040528015611a98576020820181803683370190505b5090505b84156119ef57611aad600183612455565b9150611aba600a866124ee565b611ac590603061240a565b60f81b818381518110611ada57611ada61252e565b60200101906001600160f81b031916908160001a905350611afc600a86612422565b9450611a9c565b61091583838360016000546001600160a01b038516611b3457604051622e076360e81b815260040160405180910390fd5b83611b525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c0357506001600160a01b0387163b15155b15611c8c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c5460008884806001019550886118ff565b611c71576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c09578260005414611c8757600080fd5b611cd2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c8d575b50600055611182565b828054611ce790612498565b90600052602060002090601f016020900481019282611d095760008555611d4f565b82601f10611d2257805160ff1916838001178555611d4f565b82800160010185558215611d4f579182015b82811115611d4f578251825591602001919060010190611d34565b50611d5b929150611db4565b5090565b828054828255906000526020600020908101928215611d4f579160200282015b82811115611d4f57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190611d7f565b5b80821115611d5b5760008155600101611db5565b60006001600160401b03831115611de257611de2612544565b611df5601f8401601f19166020016123da565b9050828152838383011115611e0957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611e3757600080fd5b919050565b60008083601f840112611e4e57600080fd5b5081356001600160401b03811115611e6557600080fd5b6020830191508360208260051b8501011115611e8057600080fd5b9250929050565b80358015158114611e3757600080fd5b600060208284031215611ea957600080fd5b61137182611e20565b60008060408385031215611ec557600080fd5b611ece83611e20565b9150611edc60208401611e20565b90509250929050565b600080600060608486031215611efa57600080fd5b611f0384611e20565b9250611f1160208501611e20565b9150604084013590509250925092565b60008060008060808587031215611f3757600080fd5b611f4085611e20565b9350611f4e60208601611e20565b92506040850135915060608501356001600160401b03811115611f7057600080fd5b8501601f81018713611f8157600080fd5b611f9087823560208401611dc9565b91505092959194509250565b60008060408385031215611faf57600080fd5b611fb883611e20565b9150611edc60208401611e87565b60008060408385031215611fd957600080fd5b611fe283611e20565b946020939093013593505050565b6000806000806040858703121561200657600080fd5b84356001600160401b038082111561201d57600080fd5b61202988838901611e3c565b9096509450602087013591508082111561204257600080fd5b5061204f87828801611e3c565b95989497509550505050565b6000602080838503121561206e57600080fd5b82356001600160401b038082111561208557600080fd5b818501915085601f83011261209957600080fd5b8135818111156120ab576120ab612544565b8060051b91506120bc8483016123da565b8181528481019084860184860187018a10156120d757600080fd5b600095505b83861015612101576120ed81611e20565b8352600195909501949186019186016120dc565b5098975050505050505050565b60006020828403121561212057600080fd5b61137182611e87565b60006020828403121561213b57600080fd5b81356113718161255a565b60006020828403121561215857600080fd5b81516113718161255a565b60006020828403121561217557600080fd5b81356001600160401b0381111561218b57600080fd5b8201601f8101841361219c57600080fd5b6119ef84823560208401611dc9565b6000602082840312156121bd57600080fd5b5035919050565b600081518084526121dc81602086016020860161246c565b601f01601f19169290920160200192915050565b6000845160206122038285838a0161246c565b8551918401916122168184848a0161246c565b8554920191600090600181811c908083168061223357607f831692505b85831081141561225157634e487b7160e01b85526022600452602485fd5b8080156122655760018114612276576122a3565b60ff198516885283880195506122a3565b60008b81526020902060005b8581101561229b5781548a820152908401908801612282565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122e7908301846121c4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123295783518352928401929184019160010161230d565b50909695505050505050565b60208152600061137160208301846121c4565b602080825260159082015274151a19481b5a5b9d1a5b99c81a5cc81c185d5cd959605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561240257612402612544565b604052919050565b6000821982111561241d5761241d612502565b500190565b60008261243157612431612518565b500490565b600081600019048311821515161561245057612450612502565b500290565b60008282101561246757612467612502565b500390565b60005b8381101561248757818101518382015260200161246f565b838111156112035750506000910152565b600181811c908216806124ac57607f821691505b602082108114156124cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124e7576124e7612502565b5060010190565b6000826124fd576124fd612518565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461145457600080fdfea2646970667358221220bbbec7a86e118f7dba4a18d6f7944b0c4828b7277072f59d056ca8d1420a50ba64736f6c63430008070033697066733a2f2f516d595862366a41796e4c43793547376577726a54794a66487538343471516d6b664d505a6343695134316139792f00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d544a4d4843416e6f35545a596f674a6d35455a5a76353137566b416d4175576a3668725032536769746579622f00000000000000000000
Deployed Bytecode
0x6080604052600436106102465760003560e01c80635503a0e8116101395780639c70b512116100b6578063b88d4fde1161007a578063b88d4fde14610685578063c87b56dd146106a5578063d5abeb01146106c5578063e0a80853146106db578063e985e9c5146106fb578063f2fde38b1461074457600080fd5b80639c70b512146105f0578063a22cb46514610610578063a45ba8e714610630578063af1ce6af14610645578063b071401b1461066557600080fd5b8063715e6e58116100fd578063715e6e58146105745780637ec4a659146105875780638da5cb5b146105a757806394354fd0146105c557806395d89b41146105db57600080fd5b80635503a0e8146104f05780635c975abb146105055780636352211e1461051f57806370a082311461053f578063715018a61461055f57600080fd5b80631a6f09a0116101c757806342842e0e1161018b57806342842e0e14610444578063438b63001461046457806344a0d68a146104915780634fdd43cb146104b157806351830227146104d157600080fd5b80631a6f09a0146103af57806323b872dd146103cf5780632bf04304146103ef5780633ba10c881461040f5780633ccfd60b1461042f57600080fd5b806313faede61161020e57806313faede61461031c578063161818a71461034057806316ba10e01461035657806316c38b3c1461037657806318160ddd1461039657600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806313f44d10146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004612129565b610764565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107b6565b6040516102779190612335565b3480156102ae57600080fd5b506102c26102bd3660046121ab565b610848565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611fc6565b61088c565b005b34801561030857600080fd5b5061026b610317366004611e97565b61091a565b34801561032857600080fd5b50610332600d5481565b604051908152602001610277565b34801561034c57600080fd5b50610332600f5481565b34801561036257600080fd5b506102fa610371366004612163565b610984565b34801561038257600080fd5b506102fa61039136600461210e565b6109ce565b3480156103a257600080fd5b5060015460005403610332565b3480156103bb57600080fd5b506102fa6103ca3660046121ab565b610a0b565b3480156103db57600080fd5b506102fa6103ea366004611ee5565b610ad9565b3480156103fb57600080fd5b506102fa61040a36600461205b565b610ae4565b34801561041b57600080fd5b506102c261042a3660046121ab565b610b21565b34801561043b57600080fd5b506102fa610b4b565b34801561045057600080fd5b506102fa61045f366004611ee5565b610c6f565b34801561047057600080fd5b5061048461047f366004611e97565b610c8a565b60405161027791906122f1565b34801561049d57600080fd5b506102fa6104ac3660046121ab565b610d6a565b3480156104bd57600080fd5b506102fa6104cc366004612163565b610d99565b3480156104dd57600080fd5b5060115461026b90610100900460ff1681565b3480156104fc57600080fd5b50610295610dd6565b34801561051157600080fd5b5060115461026b9060ff1681565b34801561052b57600080fd5b506102c261053a3660046121ab565b610e64565b34801561054b57600080fd5b5061033261055a366004611e97565b610e76565b34801561056b57600080fd5b506102fa610ec4565b6102fa6105823660046121ab565b610efa565b34801561059357600080fd5b506102fa6105a2366004612163565b611004565b3480156105b357600080fd5b506008546001600160a01b03166102c2565b3480156105d157600080fd5b5061033260105481565b3480156105e757600080fd5b50610295611041565b3480156105fc57600080fd5b5060115461026b9062010000900460ff1681565b34801561061c57600080fd5b506102fa61062b366004611f9c565b611050565b34801561063c57600080fd5b506102956110e6565b34801561065157600080fd5b506102fa610660366004611ff0565b6110f3565b34801561067157600080fd5b506102fa6106803660046121ab565b611189565b34801561069157600080fd5b506102fa6106a0366004611f21565b6111b8565b3480156106b157600080fd5b506102956106c03660046121ab565b611209565b3480156106d157600080fd5b50610332600e5481565b3480156106e757600080fd5b506102fa6106f636600461210e565b611378565b34801561070757600080fd5b5061026b610716366004611eb2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075057600080fd5b506102fa61075f366004611e97565b6113bc565b60006001600160e01b031982166380ac58cd60e01b148061079557506001600160e01b03198216635b5e139f60e01b145b806107b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c590612498565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190612498565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b600061085382611457565b610870576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089782610e64565b9050806001600160a01b0316836001600160a01b031614156108cc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ec57506108ea8133610716565b155b1561090a576040516367d9dca160e11b815260040160405180910390fd5b610915838383611482565b505050565b6000805b60125481101561097b57826001600160a01b0316601282815481106109455761094561252e565b6000918252602090912001546001600160a01b031614156109695750600192915050565b80610973816124d3565b91505061091e565b50600092915050565b6008546001600160a01b031633146109b75760405162461bcd60e51b81526004016109ae90612377565b60405180910390fd5b80516109ca90600b906020840190611cdb565b5050565b6008546001600160a01b031633146109f85760405162461bcd60e51b81526004016109ae90612377565b6011805460ff1916911515919091179055565b601154819060ff1615610a305760405162461bcd60e51b81526004016109ae90612348565b600e5481610a416001546000540390565b610a4b919061240a565b1115610a695760405162461bcd60e51b81526004016109ae906123ac565b6013600081548110610a7d57610a7d61252e565b6000918252602090912001546001600160a01b0316331480610ac657506013600181548110610aae57610aae61252e565b6000918252602090912001546001600160a01b031633145b610acf57600080fd5b6109ca33836114de565b6109158383836114f8565b6008546001600160a01b03163314610b0e5760405162461bcd60e51b81526004016109ae90612377565b80516109ca906012906020840190611d5f565b60138181548110610b3157600080fd5b6000918252602090912001546001600160a01b0316905081565b6008546001600160a01b03163314610b755760405162461bcd60e51b81526004016109ae90612377565b60007390cd16b1f920f8b3032a5a29bd23f2b70fb190bc6064610b99476032612436565b610ba39190612422565b604051600081818185875af1925050503d8060008114610bdf576040519150601f19603f3d011682016040523d82523d6000602084013e610be4565b606091505b5050905080610bf257600080fd5b60007390cd16b1f920f8b3032a5a29bd23f2b70fb190bc6064610c16476032612436565b610c209190612422565b604051600081818185875af1925050503d8060008114610c5c576040519150601f19603f3d011682016040523d82523d6000602084013e610c61565b606091505b50509050806109ca57600080fd5b610915838383604051806020016040528060008152506111b8565b60606000610c9783610e76565b90506000816001600160401b03811115610cb357610cb3612544565b604051908082528060200260200182016040528015610cdc578160200160208202803683370190505b509050600160005b8381108015610cf55750600e548211155b15610d60576000610d0583610e64565b9050866001600160a01b0316816001600160a01b03161415610d4d5782848381518110610d3457610d3461252e565b602090810291909101015281610d49816124d3565b9250505b82610d57816124d3565b93505050610ce4565b5090949350505050565b6008546001600160a01b03163314610d945760405162461bcd60e51b81526004016109ae90612377565b600d55565b6008546001600160a01b03163314610dc35760405162461bcd60e51b81526004016109ae90612377565b80516109ca90600c906020840190611cdb565b600b8054610de390612498565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0f90612498565b8015610e5c5780601f10610e3157610100808354040283529160200191610e5c565b820191906000526020600020905b815481529060010190602001808311610e3f57829003601f168201915b505050505081565b6000610e6f826116e3565b5192915050565b60006001600160a01b038216610e9f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610eee5760405162461bcd60e51b81526004016109ae90612377565b610ef860006117fd565b565b601154819060ff1615610f1f5760405162461bcd60e51b81526004016109ae90612348565b601054811115610f675760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016109ae565b600f5481610f786001546000540390565b610f82919061240a565b1115610fa05760405162461bcd60e51b81526004016109ae906123ac565b6008546001600160a01b03163314610acf5781600d54610fc09190612436565b341015610acf5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109ae565b6008546001600160a01b0316331461102e5760405162461bcd60e51b81526004016109ae90612377565b80516109ca90600a906020840190611cdb565b6060600380546107c590612498565b6001600160a01b03821633141561107a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610de390612498565b6008546001600160a01b0316331461111d5760405162461bcd60e51b81526004016109ae90612377565b60005b838110156111825761117085858381811061113d5761113d61252e565b90506020020160208101906111529190611e97565b8484848181106111645761116461252e565b9050602002013561184f565b8061117a816124d3565b915050611120565b5050505050565b6008546001600160a01b031633146111b35760405162461bcd60e51b81526004016109ae90612377565b601055565b6111c38484846114f8565b6001600160a01b0383163b151580156111e557506111e3848484846118ff565b155b15611203576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061121482611457565b6112785760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109ae565b601154610100900460ff1661131957600c805461129490612498565b80601f01602080910402602001604051908101604052809291908181526020018280546112c090612498565b801561130d5780601f106112e25761010080835404028352916020019161130d565b820191906000526020600020905b8154815290600101906020018083116112f057829003601f168201915b50505050509050919050565b60006113236119f7565b905060008151116113435760405180602001604052806000815250611371565b8061134d84611a06565b600b604051602001611361939291906121f0565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113a25760405162461bcd60e51b81526004016109ae90612377565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146113e65760405162461bcd60e51b81526004016109ae90612377565b6001600160a01b03811661144b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ae565b611454816117fd565b50565b60008054821080156107b0575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109ca828260405180602001604052806000815250611b03565b6000611503826116e3565b9050836001600160a01b031681600001516001600160a01b03161461153a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061155857506115588533610716565b8061157357503361156884610848565b6001600160a01b0316145b90508061159357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115ba57604051633a954ecd60e21b815260040160405180910390fd5b6115c660008487611482565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661169a57600054821461169a57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611182565b6040805160608101825260008082526020820181905291810191909152816000548110156117e457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117e25780516001600160a01b031615611779579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156117dd579392505050565b611779565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601154819060ff16156118745760405162461bcd60e51b81526004016109ae90612348565b6010548111156118bc5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016109ae565b600f54816118cd6001546000540390565b6118d7919061240a565b11156118f55760405162461bcd60e51b81526004016109ae906123ac565b61091583836114de565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119349033908990889088906004016122b4565b602060405180830381600087803b15801561194e57600080fd5b505af192505050801561197e575060408051601f3d908101601f1916820190925261197b91810190612146565b60015b6119d9573d8080156119ac576040519150601f19603f3d011682016040523d82523d6000602084013e6119b1565b606091505b5080516119d1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546107c590612498565b606081611a2a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a545780611a3e816124d3565b9150611a4d9050600a83612422565b9150611a2e565b6000816001600160401b03811115611a6e57611a6e612544565b6040519080825280601f01601f191660200182016040528015611a98576020820181803683370190505b5090505b84156119ef57611aad600183612455565b9150611aba600a866124ee565b611ac590603061240a565b60f81b818381518110611ada57611ada61252e565b60200101906001600160f81b031916908160001a905350611afc600a86612422565b9450611a9c565b61091583838360016000546001600160a01b038516611b3457604051622e076360e81b815260040160405180910390fd5b83611b525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c0357506001600160a01b0387163b15155b15611c8c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c5460008884806001019550886118ff565b611c71576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c09578260005414611c8757600080fd5b611cd2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c8d575b50600055611182565b828054611ce790612498565b90600052602060002090601f016020900481019282611d095760008555611d4f565b82601f10611d2257805160ff1916838001178555611d4f565b82800160010185558215611d4f579182015b82811115611d4f578251825591602001919060010190611d34565b50611d5b929150611db4565b5090565b828054828255906000526020600020908101928215611d4f579160200282015b82811115611d4f57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190611d7f565b5b80821115611d5b5760008155600101611db5565b60006001600160401b03831115611de257611de2612544565b611df5601f8401601f19166020016123da565b9050828152838383011115611e0957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611e3757600080fd5b919050565b60008083601f840112611e4e57600080fd5b5081356001600160401b03811115611e6557600080fd5b6020830191508360208260051b8501011115611e8057600080fd5b9250929050565b80358015158114611e3757600080fd5b600060208284031215611ea957600080fd5b61137182611e20565b60008060408385031215611ec557600080fd5b611ece83611e20565b9150611edc60208401611e20565b90509250929050565b600080600060608486031215611efa57600080fd5b611f0384611e20565b9250611f1160208501611e20565b9150604084013590509250925092565b60008060008060808587031215611f3757600080fd5b611f4085611e20565b9350611f4e60208601611e20565b92506040850135915060608501356001600160401b03811115611f7057600080fd5b8501601f81018713611f8157600080fd5b611f9087823560208401611dc9565b91505092959194509250565b60008060408385031215611faf57600080fd5b611fb883611e20565b9150611edc60208401611e87565b60008060408385031215611fd957600080fd5b611fe283611e20565b946020939093013593505050565b6000806000806040858703121561200657600080fd5b84356001600160401b038082111561201d57600080fd5b61202988838901611e3c565b9096509450602087013591508082111561204257600080fd5b5061204f87828801611e3c565b95989497509550505050565b6000602080838503121561206e57600080fd5b82356001600160401b038082111561208557600080fd5b818501915085601f83011261209957600080fd5b8135818111156120ab576120ab612544565b8060051b91506120bc8483016123da565b8181528481019084860184860187018a10156120d757600080fd5b600095505b83861015612101576120ed81611e20565b8352600195909501949186019186016120dc565b5098975050505050505050565b60006020828403121561212057600080fd5b61137182611e87565b60006020828403121561213b57600080fd5b81356113718161255a565b60006020828403121561215857600080fd5b81516113718161255a565b60006020828403121561217557600080fd5b81356001600160401b0381111561218b57600080fd5b8201601f8101841361219c57600080fd5b6119ef84823560208401611dc9565b6000602082840312156121bd57600080fd5b5035919050565b600081518084526121dc81602086016020860161246c565b601f01601f19169290920160200192915050565b6000845160206122038285838a0161246c565b8551918401916122168184848a0161246c565b8554920191600090600181811c908083168061223357607f831692505b85831081141561225157634e487b7160e01b85526022600452602485fd5b8080156122655760018114612276576122a3565b60ff198516885283880195506122a3565b60008b81526020902060005b8581101561229b5781548a820152908401908801612282565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122e7908301846121c4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123295783518352928401929184019160010161230d565b50909695505050505050565b60208152600061137160208301846121c4565b602080825260159082015274151a19481b5a5b9d1a5b99c81a5cc81c185d5cd959605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561240257612402612544565b604052919050565b6000821982111561241d5761241d612502565b500190565b60008261243157612431612518565b500490565b600081600019048311821515161561245057612450612502565b500290565b60008282101561246757612467612502565b500390565b60005b8381101561248757818101518382015260200161246f565b838111156112035750506000910152565b600181811c908216806124ac57607f821691505b602082108114156124cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124e7576124e7612502565b5060010190565b6000826124fd576124fd612518565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461145457600080fdfea2646970667358221220bbbec7a86e118f7dba4a18d6f7944b0c4828b7277072f59d056ca8d1420a50ba64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d544a4d4843416e6f35545a596f674a6d35455a5a76353137566b416d4175576a3668725032536769746579622f00000000000000000000
-----Decoded View---------------
Arg [0] : _uriPrefix (string): ipfs://QmTJMHCAno5TZYogJm5EZZv517VkAmAuWj6hrP2Sgiteyb/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d544a4d4843416e6f35545a596f674a6d35455a5a763531
Arg [3] : 37566b416d4175576a3668725032536769746579622f00000000000000000000
Deployed Bytecode Sourcemap
47813:5586:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24144:355;;;;;;;;;;-1:-1:-1;24144:355:0;;;;;:::i;:::-;;:::i;:::-;;;9700:14:1;;9693:22;9675:41;;9663:2;9648:18;24144:355:0;;;;;;;;27339:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28939:245::-;;;;;;;;;;-1:-1:-1;28939:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8361:32:1;;;8343:51;;8331:2;8316:18;28939:245:0;8197:203:1;28502:371:0;;;;;;;;;;-1:-1:-1;28502:371:0;;;;;:::i;:::-;;:::i;:::-;;49173:287;;;;;;;;;;-1:-1:-1;49173:287:0;;;;;:::i;:::-;;:::i;48080:29::-;;;;;;;;;;;;;;;;;;;12675:25:1;;;12663:2;12648:18;48080:29:0;12529:177:1;48154:40:0;;;;;;;;;;;;;;;;52722:106;;;;;;;;;;-1:-1:-1;52722:106:0;;;;;:::i;:::-;;:::i;52836:83::-;;;;;;;;;;-1:-1:-1;52836:83:0;;;;;:::i;:::-;;:::i;23393:303::-;;;;;;;;;;-1:-1:-1;23647:12:0;;23437:7;23631:13;:28;23393:303;;49802:163;;;;;;;;;;-1:-1:-1;49802:163:0;;;;;:::i;:::-;;:::i;29927:170::-;;;;;;;;;;-1:-1:-1;29927:170:0;;;;;:::i;:::-;;:::i;49042:126::-;;;;;;;;;;-1:-1:-1;49042:126:0;;;;;:::i;:::-;;:::i;48405:82::-;;;;;;;;;;-1:-1:-1;48405:82:0;;;;;:::i;:::-;;:::i;52927:351::-;;;;;;;;;;;;;:::i;30168:185::-;;;;;;;;;;-1:-1:-1;30168:185:0;;;;;:::i;:::-;;:::i;50638:743::-;;;;;;;;;;-1:-1:-1;50638:743:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52351:80::-;;;;;;;;;;-1:-1:-1;52351:80:0;;;;;:::i;:::-;;:::i;52124:124::-;;;;;;;;;;-1:-1:-1;52124:124:0;;;;;:::i;:::-;;:::i;48278:27::-;;;;;;;;;;-1:-1:-1;48278:27:0;;;;;;;;;;;47943:33;;;;;;;;;;;;;:::i;48245:26::-;;;;;;;;;;-1:-1:-1;48245:26:0;;;;;;;;27147:125;;;;;;;;;;-1:-1:-1;27147:125:0;;;;;:::i;:::-;;:::i;24563:206::-;;;;;;;;;;-1:-1:-1;24563:206:0;;;;;:::i;:::-;;:::i;44185:103::-;;;;;;;;;;;;;:::i;49973:295::-;;;;;;:::i;:::-;;:::i;52608:106::-;;;;;;;;;;-1:-1:-1;52608:106:0;;;;;:::i;:::-;;:::i;43534:87::-;;;;;;;;;;-1:-1:-1;43607:6:0;;-1:-1:-1;;;;;43607:6:0;43534:87;;48201:37;;;;;;;;;;;;;;;;27508:104;;;;;;;;;;;;;:::i;48312:35::-;;;;;;;;;;-1:-1:-1;48312:35:0;;;;;;;;;;;29256:319;;;;;;;;;;-1:-1:-1;29256:319:0;;;;;:::i;:::-;;:::i;47983:90::-;;;;;;;;;;;;;:::i;50408:222::-;;;;;;;;;;-1:-1:-1;50408:222:0;;;;;:::i;:::-;;:::i;52441:159::-;;;;;;;;;;-1:-1:-1;52441:159:0;;;;;:::i;:::-;;:::i;30424:406::-;;;;;;;;;;-1:-1:-1;30424:406:0;;;;;:::i;:::-;;:::i;51389:727::-;;;;;;;;;;-1:-1:-1;51389:727:0;;;;;:::i;:::-;;:::i;48116:31::-;;;;;;;;;;;;;;;;52256:87;;;;;;;;;;-1:-1:-1;52256:87:0;;;;;:::i;:::-;;:::i;29646:214::-;;;;;;;;;;-1:-1:-1;29646:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;29817:25:0;;;29788:4;29817:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29646:214;44443:238;;;;;;;;;;-1:-1:-1;44443:238:0;;;;;:::i;:::-;;:::i;24144:355::-;24291:4;-1:-1:-1;;;;;;24333:40:0;;-1:-1:-1;;;24333:40:0;;:105;;-1:-1:-1;;;;;;;24390:48:0;;-1:-1:-1;;;24390:48:0;24333:105;:158;;;-1:-1:-1;;;;;;;;;;19903:40:0;;;24455:36;24313:178;24144:355;-1:-1:-1;;24144:355:0:o;27339:100::-;27393:13;27426:5;27419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27339:100;:::o;28939:245::-;29043:7;29073:16;29081:7;29073;:16::i;:::-;29068:64;;29098:34;;-1:-1:-1;;;29098:34:0;;;;;;;;;;;29068:64;-1:-1:-1;29152:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29152:24:0;;28939:245::o;28502:371::-;28575:13;28591:24;28607:7;28591:15;:24::i;:::-;28575:40;;28636:5;-1:-1:-1;;;;;28630:11:0;:2;-1:-1:-1;;;;;28630:11:0;;28626:48;;;28650:24;;-1:-1:-1;;;28650:24:0;;;;;;;;;;;28626:48;16841:10;-1:-1:-1;;;;;28691:21:0;;;;;;:63;;-1:-1:-1;28717:37:0;28734:5;16841:10;29646:214;:::i;28717:37::-;28716:38;28691:63;28687:138;;;28778:35;;-1:-1:-1;;;28778:35:0;;;;;;;;;;;28687:138;28837:28;28846:2;28850:7;28859:5;28837:8;:28::i;:::-;28564:309;28502:371;;:::o;49173:287::-;49242:4;;49259:171;49283:20;:27;49279:31;;49259:171;;;49363:8;-1:-1:-1;;;;;49336:35:0;:20;49357:1;49336:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;49336:23:0;:35;49332:87;;;-1:-1:-1;49399:4:0;;49173:287;-1:-1:-1;;49173:287:0:o;49332:87::-;49312:3;;;;:::i;:::-;;;;49259:171;;;-1:-1:-1;49447:5:0;;49173:287;-1:-1:-1;;49173:287:0:o;52722:106::-;43607:6;;-1:-1:-1;;;;;43607:6:0;16841:10;43754:23;43746:68;;;;-1:-1:-1;;;43746:68:0;;;;;;;:::i;:::-;;;;;;;;;52798:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52722:106:::0;:::o;52836:83::-;43607:6;;-1:-1:-1;;;;;43607:6:0;16841:10;43754:23;43746:68;;;;-1:-1:-1;;;43746:68:0;;;;;;;:::i;:::-;52896:6:::1;:15:::0;;-1:-1:-1;;52896:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52836:83::o;49802:163::-;49543:6;;49894:11;;49543:6;;49542:7;49534:41;;;;-1:-1:-1;;;49534:41:0;;;;;;;:::i;:::-;49637:9;;49622:11;49606:13;23647:12;;23437:7;23631:13;:28;;23393:303;49606:13;:27;;;;:::i;:::-;:40;;49598:73;;;;-1:-1:-1;;;49598:73:0;;;;;;;:::i;:::-;49705:19;49725:1;49705:22;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;49705:22:0;49691:10;:36;;:76;;;49745:19;49765:1;49745:22;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;49745:22:0;49731:10;:36;49691:76;49682:86;;;;;;49923:34:::1;49933:10;49945:11;49923:9;:34::i;29927:170::-:0;30061:28;30071:4;30077:2;30081:7;30061:9;:28::i;49042:126::-;43607:6;;-1:-1:-1;;;;;43607:6:0;16841:10;43754:23;43746:68;;;;-1:-1:-1;;;43746:68:0;;;;;;;:::i;:::-;49127:33;;::::1;::::0;:20:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;48405:82::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48405:82:0;;-1:-1:-1;48405:82:0;:::o;52927:351::-;43607:6;;-1:-1:-1;;;;;43607:6:0;16841:10;43754:23;43746:68;;;;-1:-1:-1;;;43746:68:0;;;;;;;:::i;:::-;52980:7:::1;53001:42;53086:3;53057:26;:21;53081:2;53057:26;:::i;:::-;:32;;;;:::i;:::-;52993:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52979:115;;;53115:2;53107:11;;;::::0;::::1;;53132:7;53153:42;53238:3;53209:26;:21;53233:2;53209:26;:::i;:::-;:32;;;;:::i;:::-;53145:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53131:115;;;53267:2;53259:11;;;::::0;::::1;30168:185:::0;30306:39;30323:4;30329:2;30333:7;30306:39;;;;;;;;;;;;:16;:39::i;50638:743::-;50725:16;50759:23;50785:17;50795:6;50785:9;:17::i;:::-;50759:43;;50813:30;50860:15;-1:-1:-1;;;;;50846:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50846:30:0;-1:-1:-1;50813:63:0;-1:-1:-1;50912:1:0;50887:22;50964:377;51003:15;50985;:33;:64;;;;;51040:9;;51022:14;:27;;50985:64;50964:377;;;51076:25;51104:23;51112:14;51104:7;:23::i;:::-;51076:51;;51169:6;-1:-1:-1;;;;;51148:27:0;:17;-1:-1:-1;;;;;51148:27:0;;51144:153;;;51229:14;51196:13;51210:15;51196:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;51264:17;;;;:::i;:::-;;;;51144:153;51313:16;;;;:::i;:::-;;;;51061:280;50964:377;;;-1:-1:-1;51360:13:0;;50638:743;-1:-1:-1;;;;50638:743:0:o;52351:80::-;43607:6;;-1:-1:-1;;;;;43607:6:0;16841:10;43754:23;43746:68;;;;-1:-1:-1;;;43746:68:0;;;;;;;:::i;:::-;52411:4:::1;:12:::0;52351:80::o;52124:124::-;43607:6;;-1:-1:-1;;;;;43607:6:0;16841:10;43754:23;43746:68;;;;-1:-1:-1;;;43746:68:0;;;;;;;:::i;:::-;52210:30;;::::1;::::0;:17:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;47943:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27147:125::-;27211:7;27238:21;27251:7;27238:12;:21::i;:::-;:26;;27147:125;-1:-1:-1;;27147:125:0:o;24563:206::-;24627:7;-1:-1:-1;;;;;24651:19:0;;24647:60;;24679:28;;-1:-1:-1;;;24679:28:0;;;;;;;;;;;24647:60;-1:-1:-1;;;;;;24733:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24733:27:0;;24563:206::o;44185:103::-;43607:6;;-1:-1:-1;;;;;43607:6:0;16841:10;43754:23;43746:68;;;;-1:-1:-1;;;43746:68:0;;;;;;;:::i;:::-;44250:30:::1;44277:1;44250:18;:30::i;:::-;44185:103::o:0;49973:295::-;48685:6;;50071:11;;48685:6;;48684:7;48676:41;;;;-1:-1:-1;;;48676:41:0;;;;;;;:::i;:::-;48838:18;;48823:11;:33;;48815:65;;;;-1:-1:-1;;;48815:65:0;;12383:2:1;48815:65:0;;;12365:21:1;12422:2;12402:18;;;12395:30;-1:-1:-1;;;12441:18:1;;;12434:49;12500:18;;48815:65:0;12181:343:1;48815:65:0;48944:18;;48929:11;48913:13;23647:12;;23437:7;23631:13;:28;;23393:303;48913:13;:27;;;;:::i;:::-;:49;;48891:119;;;;-1:-1:-1;;;48891:119:0;;;;;;;:::i;:::-;43607:6;;-1:-1:-1;;;;;43607:6:0;50104:10:::1;:21;50100:116;;50170:11;50163:4;;:18;;;;:::i;:::-;50150:9;:31;;50142:62;;;::::0;-1:-1:-1;;;50142:62:0;;10560:2:1;50142:62:0::1;::::0;::::1;10542:21:1::0;10599:2;10579:18;;;10572:30;-1:-1:-1;;;10618:18:1;;;10611:48;10676:18;;50142:62:0::1;10358:342:1::0;52608:106:0;43607:6;;-1:-1:-1;;;;;43607:6:0;16841:10;43754:23;43746:68;;;;-1:-1:-1;;;43746:68:0;;;;;;;:::i;:::-;52684:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27508:104::-:0;27564:13;27597:7;27590:14;;;;;:::i;29256:319::-;-1:-1:-1;;;;;29387:24:0;;16841:10;29387:24;29383:54;;;29420:17;;-1:-1:-1;;;29420:17:0;;;;;;;;;;;29383:54;16841:10;29450:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29450:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29450:53:0;;;;;;;;;;29519:48;;9675:41:1;;;29450:42:0;;16841:10;29519:48;;9648:18:1;29519:48:0;;;;;;;29256:319;;:::o;47983:90::-;;;;;;;:::i;50408:222::-;43607:6;;-1:-1:-1;;;;;43607:6:0;16841:10;43754:23;43746:68;;;;-1:-1:-1;;;43746:68:0;;;;;;;:::i;:::-;50523:9:::1;50518:105;50538:17:::0;;::::1;50518:105;;;50577:34;50584:6;;50591:1;50584:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50595:12;;50608:1;50595:15;;;;;;;:::i;:::-;;;;;;;50577:6;:34::i;:::-;50557:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50518:105;;;;50408:222:::0;;;;:::o;52441:159::-;43607:6;;-1:-1:-1;;;;;43607:6:0;16841:10;43754:23;43746:68;;;;-1:-1:-1;;;43746:68:0;;;;;;;:::i;:::-;52552:18:::1;:40:::0;52441:159::o;30424:406::-;30591:28;30601:4;30607:2;30611:7;30591:9;:28::i;:::-;-1:-1:-1;;;;;30648:13:0;;8752:19;:23;;30648:89;;;;;30681:56;30712:4;30718:2;30722:7;30731:5;30681:30;:56::i;:::-;30680:57;30648:89;30630:193;;;30771:40;;-1:-1:-1;;;30771:40:0;;;;;;;;;;;30630:193;30424:406;;;;:::o;51389:727::-;51508:13;51561:17;51569:8;51561:7;:17::i;:::-;51539:114;;;;-1:-1:-1;;;51539:114:0;;11618:2:1;51539:114:0;;;11600:21:1;11657:2;11637:18;;;11630:30;11696:34;11676:18;;;11669:62;-1:-1:-1;;;11747:18:1;;;11740:45;11802:19;;51539:114:0;11416:411:1;51539:114:0;51670:8;;;;;;;51666:74;;51711:17;51704:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51389:727;;;:::o;51666:74::-;51752:28;51783:10;:8;:10::i;:::-;51752:41;;51855:1;51830:14;51824:28;:32;:284;;;;;;;;;;;;;;;;;51948:14;51989:19;:8;:17;:19::i;:::-;52035:9;51905:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51824:284;51804:304;51389:727;-1:-1:-1;;;51389:727:0:o;52256:87::-;43607:6;;-1:-1:-1;;;;;43607:6:0;16841:10;43754:23;43746:68;;;;-1:-1:-1;;;43746:68:0;;;;;;;:::i;:::-;52318:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;52318:17:0;;::::1;::::0;;;::::1;::::0;;52256:87::o;44443:238::-;43607:6;;-1:-1:-1;;;;;43607:6:0;16841:10;43754:23;43746:68;;;;-1:-1:-1;;;43746:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44546:22:0;::::1;44524:110;;;::::0;-1:-1:-1;;;44524:110:0;;10153:2:1;44524:110:0::1;::::0;::::1;10135:21:1::0;10192:2;10172:18;;;10165:30;10231:34;10211:18;;;10204:62;-1:-1:-1;;;10282:18:1;;;10275:36;10328:19;;44524:110:0::1;9951:402:1::0;44524:110:0::1;44645:28;44664:8;44645:18;:28::i;:::-;44443:238:::0;:::o;31085:213::-;31142:4;31232:13;;31222:7;:23;31179:111;;;;-1:-1:-1;;31263:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31263:27:0;;;;31262:28;;31085:213::o;39472:196::-;39587:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39587:29:0;-1:-1:-1;;;;;39587:29:0;;;;;;;;;39632:28;;39587:24;;39632:28;;;;;;;39472:196;;;:::o;31306:104::-;31375:27;31385:2;31389:8;31375:27;;;;;;;;;;;;:9;:27::i;34415:2130::-;34530:35;34568:21;34581:7;34568:12;:21::i;:::-;34530:59;;34628:4;-1:-1:-1;;;;;34606:26:0;:13;:18;;;-1:-1:-1;;;;;34606:26:0;;34602:67;;34641:28;;-1:-1:-1;;;34641:28:0;;;;;;;;;;;34602:67;34682:22;16841:10;-1:-1:-1;;;;;34708:20:0;;;;:73;;-1:-1:-1;34745:36:0;34762:4;16841:10;29646:214;:::i;34745:36::-;34708:126;;;-1:-1:-1;16841:10:0;34798:20;34810:7;34798:11;:20::i;:::-;-1:-1:-1;;;;;34798:36:0;;34708:126;34682:153;;34853:17;34848:66;;34879:35;;-1:-1:-1;;;34879:35:0;;;;;;;;;;;34848:66;-1:-1:-1;;;;;34929:16:0;;34925:52;;34954:23;;-1:-1:-1;;;34954:23:0;;;;;;;;;;;34925:52;35098:35;35115:1;35119:7;35128:4;35098:8;:35::i;:::-;-1:-1:-1;;;;;35429:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35429:31:0;;;-1:-1:-1;;;;;35429:31:0;;;-1:-1:-1;;35429:31:0;;;;;;;35475:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35475:29:0;;;;;;;;;;;35555:20;;;:11;:20;;;;;;35590:18;;-1:-1:-1;;;;;;35623:49:0;;;;-1:-1:-1;;;35656:15:0;35623:49;;;;;;;;;;35946:11;;36006:24;;;;;36049:13;;35555:20;;36006:24;;36049:13;36045:384;;36259:13;;36244:11;:28;36240:174;;36297:20;;36366:28;;;;-1:-1:-1;;;;;36340:54:0;-1:-1:-1;;;36340:54:0;-1:-1:-1;;;;;;36340:54:0;;;-1:-1:-1;;;;;36297:20:0;;36340:54;;;;36240:174;35404:1036;;;36476:7;36472:2;-1:-1:-1;;;;;36457:27:0;36466:4;-1:-1:-1;;;;;36457:27:0;;;;;;;;;;;36495:42;30424:406;25944:1141;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26087:7:0;26170:13;;26163:4;:20;26132:886;;;26204:31;26238:17;;;:11;:17;;;;;;;;;26204:51;;;;;;;;;-1:-1:-1;;;;;26204:51:0;;;;-1:-1:-1;;;26204:51:0;;-1:-1:-1;;;;;26204:51:0;;;;;;;;-1:-1:-1;;;26204:51:0;;;;;;;;;;;;;;26274:729;;26324:14;;-1:-1:-1;;;;;26324:28:0;;26320:101;;26388:9;25944:1141;-1:-1:-1;;;25944:1141:0:o;26320:101::-;-1:-1:-1;;;26763:6:0;26808:17;;;;:11;:17;;;;;;;;;26796:29;;;;;;;;;-1:-1:-1;;;;;26796:29:0;;;;;-1:-1:-1;;;26796:29:0;;-1:-1:-1;;;;;26796:29:0;;;;;;;;-1:-1:-1;;;26796:29:0;;;;;;;;;;;;;26856:28;26852:109;;26924:9;25944:1141;-1:-1:-1;;;25944:1141:0:o;26852:109::-;26723:261;;;26185:833;26132:886;27046:31;;-1:-1:-1;;;27046:31:0;;;;;;;;;;;44841:191;44934:6;;;-1:-1:-1;;;;;44951:17:0;;;-1:-1:-1;;;;;;44951:17:0;;;;;;;44984:40;;44934:6;;;44951:17;44934:6;;44984:40;;44915:16;;44984:40;44904:128;44841:191;:::o;50276:124::-;48685:6;;50347:7;;48685:6;;48684:7;48676:41;;;;-1:-1:-1;;;48676:41:0;;;;;;;:::i;:::-;48838:18;;48823:11;:33;;48815:65;;;;-1:-1:-1;;;48815:65:0;;12383:2:1;48815:65:0;;;12365:21:1;12422:2;12402:18;;;12395:30;-1:-1:-1;;;12441:18:1;;;12434:49;12500:18;;48815:65:0;12181:343:1;48815:65:0;48944:18;;48929:11;48913:13;23647:12;;23437:7;23631:13;:28;;23393:303;48913:13;:27;;;;:::i;:::-;:49;;48891:119;;;;-1:-1:-1;;;48891:119:0;;;;;;;:::i;:::-;50367:25:::1;50377:5;50384:7;50367:9;:25::i;40160:772::-:0;40357:155;;-1:-1:-1;;;40357:155:0;;40323:4;;-1:-1:-1;;;;;40357:36:0;;;;;:155;;16841:10;;40443:4;;40466:7;;40492:5;;40357:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40357:155:0;;;;;;;;-1:-1:-1;;40357:155:0;;;;;;;;;;;;:::i;:::-;;;40340:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40683:13:0;;40679:235;;40729:40;;-1:-1:-1;;;40729:40:0;;;;;;;;;;;40679:235;40872:6;40866:13;40857:6;40853:2;40849:15;40842:38;40340:585;-1:-1:-1;;;;;;40568:55:0;-1:-1:-1;;;40568:55:0;;-1:-1:-1;40340:585:0;40160:772;;;;;;:::o;53286:110::-;53346:13;53379:9;53372:16;;;;;:::i;17228:723::-;17284:13;17505:10;17501:53;;-1:-1:-1;;17532:10:0;;;;;;;;;;;;-1:-1:-1;;;17532:10:0;;;;;17228:723::o;17501:53::-;17579:5;17564:12;17620:78;17627:9;;17620:78;;17653:8;;;;:::i;:::-;;-1:-1:-1;17676:10:0;;-1:-1:-1;17684:2:0;17676:10;;:::i;:::-;;;17620:78;;;17708:19;17740:6;-1:-1:-1;;;;;17730:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17730:17:0;;17708:39;;17758:154;17765:10;;17758:154;;17792:11;17802:1;17792:11;;:::i;:::-;;-1:-1:-1;17861:10:0;17869:2;17861:5;:10;:::i;:::-;17848:24;;:2;:24;:::i;:::-;17835:39;;17818:6;17825;17818:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17818:56:0;;;;;;;;-1:-1:-1;17889:11:0;17898:2;17889:11;;:::i;:::-;;;17758:154;;31773:163;31896:32;31902:2;31906:8;31916:5;31923:4;32334:20;32357:13;-1:-1:-1;;;;;32385:16:0;;32381:48;;32410:19;;-1:-1:-1;;;32410:19:0;;;;;;;;;;;32381:48;32444:13;32440:44;;32466:18;;-1:-1:-1;;;32466:18:0;;;;;;;;;;;32440:44;-1:-1:-1;;;;;32835:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32894:49:0;;-1:-1:-1;;;;;32835:44:0;;;;;;;32894:49;;;;-1:-1:-1;;32835:44:0;;;;;;32894:49;;;;;;;;;;;;;;;;32960:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33010:66:0;;;;-1:-1:-1;;;33060:15:0;33010:66;;;;;;;;;;32960:25;33157:23;;;33201:4;:23;;;;-1:-1:-1;;;;;;33209:13:0;;8752:19;:23;;33209:15;33197:832;;;33245:505;33276:38;;33301:12;;-1:-1:-1;;;;;33276:38:0;;;33293:1;;33276:38;;33293:1;;33276:38;33368:212;33437:1;33470:2;33503:14;;;;;;33548:5;33368:30;:212::i;:::-;33337:365;;33638:40;;-1:-1:-1;;;33638:40:0;;;;;;;;;;;33337:365;33745:3;33729:12;:19;;33245:505;;33831:12;33814:13;;:29;33810:43;;33845:8;;;33810:43;33197:832;;;33894:120;33925:40;;33950:14;;;;;-1:-1:-1;;;;;33925:40:0;;;33942:1;;33925:40;;33942:1;;33925:40;34009:3;33993:12;:19;;33894:120;;33197:832;-1:-1:-1;34043:13:0;:28;34093:60;30424:406;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:367::-;666:8;676:6;730:3;723:4;715:6;711:17;707:27;697:55;;748:1;745;738:12;697:55;-1:-1:-1;771:20:1;;-1:-1:-1;;;;;803:30:1;;800:50;;;846:1;843;836:12;800:50;883:4;875:6;871:17;859:29;;943:3;936:4;926:6;923:1;919:14;911:6;907:27;903:38;900:47;897:67;;;960:1;957;950:12;897:67;603:367;;;;;:::o;975:160::-;1040:20;;1096:13;;1089:21;1079:32;;1069:60;;1125:1;1122;1115:12;1140:186;1199:6;1252:2;1240:9;1231:7;1227:23;1223:32;1220:52;;;1268:1;1265;1258:12;1220:52;1291:29;1310:9;1291:29;:::i;1331:260::-;1399:6;1407;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1331:260;;;;;:::o;1596:328::-;1673:6;1681;1689;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;:::-;1771:39;;1829:38;1863:2;1852:9;1848:18;1829:38;:::i;:::-;1819:48;;1914:2;1903:9;1899:18;1886:32;1876:42;;1596:328;;;;;:::o;1929:666::-;2024:6;2032;2040;2048;2101:3;2089:9;2080:7;2076:23;2072:33;2069:53;;;2118:1;2115;2108:12;2069:53;2141:29;2160:9;2141:29;:::i;:::-;2131:39;;2189:38;2223:2;2212:9;2208:18;2189:38;:::i;:::-;2179:48;;2274:2;2263:9;2259:18;2246:32;2236:42;;2329:2;2318:9;2314:18;2301:32;-1:-1:-1;;;;;2348:6:1;2345:30;2342:50;;;2388:1;2385;2378:12;2342:50;2411:22;;2464:4;2456:13;;2452:27;-1:-1:-1;2442:55:1;;2493:1;2490;2483:12;2442:55;2516:73;2581:7;2576:2;2563:16;2558:2;2554;2550:11;2516:73;:::i;:::-;2506:83;;;1929:666;;;;;;;:::o;2600:254::-;2665:6;2673;2726:2;2714:9;2705:7;2701:23;2697:32;2694:52;;;2742:1;2739;2732:12;2694:52;2765:29;2784:9;2765:29;:::i;:::-;2755:39;;2813:35;2844:2;2833:9;2829:18;2813:35;:::i;2859:254::-;2927:6;2935;2988:2;2976:9;2967:7;2963:23;2959:32;2956:52;;;3004:1;3001;2994:12;2956:52;3027:29;3046:9;3027:29;:::i;:::-;3017:39;3103:2;3088:18;;;;3075:32;;-1:-1:-1;;;2859:254:1:o;3118:773::-;3240:6;3248;3256;3264;3317:2;3305:9;3296:7;3292:23;3288:32;3285:52;;;3333:1;3330;3323:12;3285:52;3373:9;3360:23;-1:-1:-1;;;;;3443:2:1;3435:6;3432:14;3429:34;;;3459:1;3456;3449:12;3429:34;3498:70;3560:7;3551:6;3540:9;3536:22;3498:70;:::i;:::-;3587:8;;-1:-1:-1;3472:96:1;-1:-1:-1;3675:2:1;3660:18;;3647:32;;-1:-1:-1;3691:16:1;;;3688:36;;;3720:1;3717;3710:12;3688:36;;3759:72;3823:7;3812:8;3801:9;3797:24;3759:72;:::i;:::-;3118:773;;;;-1:-1:-1;3850:8:1;-1:-1:-1;;;;3118:773:1:o;3896:963::-;3980:6;4011:2;4054;4042:9;4033:7;4029:23;4025:32;4022:52;;;4070:1;4067;4060:12;4022:52;4110:9;4097:23;-1:-1:-1;;;;;4180:2:1;4172:6;4169:14;4166:34;;;4196:1;4193;4186:12;4166:34;4234:6;4223:9;4219:22;4209:32;;4279:7;4272:4;4268:2;4264:13;4260:27;4250:55;;4301:1;4298;4291:12;4250:55;4337:2;4324:16;4359:2;4355;4352:10;4349:36;;;4365:18;;:::i;:::-;4411:2;4408:1;4404:10;4394:20;;4434:28;4458:2;4454;4450:11;4434:28;:::i;:::-;4496:15;;;4527:12;;;;4559:11;;;4589;;;4585:20;;4582:33;-1:-1:-1;4579:53:1;;;4628:1;4625;4618:12;4579:53;4650:1;4641:10;;4660:169;4674:2;4671:1;4668:9;4660:169;;;4731:23;4750:3;4731:23;:::i;:::-;4719:36;;4692:1;4685:9;;;;;4775:12;;;;4807;;4660:169;;;-1:-1:-1;4848:5:1;3896:963;-1:-1:-1;;;;;;;;3896:963:1:o;4864:180::-;4920:6;4973:2;4961:9;4952:7;4948:23;4944:32;4941:52;;;4989:1;4986;4979:12;4941:52;5012:26;5028:9;5012:26;:::i;5049:245::-;5107:6;5160:2;5148:9;5139:7;5135:23;5131:32;5128:52;;;5176:1;5173;5166:12;5128:52;5215:9;5202:23;5234:30;5258:5;5234:30;:::i;5299:249::-;5368:6;5421:2;5409:9;5400:7;5396:23;5392:32;5389:52;;;5437:1;5434;5427:12;5389:52;5469:9;5463:16;5488:30;5512:5;5488:30;:::i;5553:450::-;5622:6;5675:2;5663:9;5654:7;5650:23;5646:32;5643:52;;;5691:1;5688;5681:12;5643:52;5731:9;5718:23;-1:-1:-1;;;;;5756:6:1;5753:30;5750:50;;;5796:1;5793;5786:12;5750:50;5819:22;;5872:4;5864:13;;5860:27;-1:-1:-1;5850:55:1;;5901:1;5898;5891:12;5850:55;5924:73;5989:7;5984:2;5971:16;5966:2;5962;5958:11;5924:73;:::i;6008:180::-;6067:6;6120:2;6108:9;6099:7;6095:23;6091:32;6088:52;;;6136:1;6133;6126:12;6088:52;-1:-1:-1;6159:23:1;;6008:180;-1:-1:-1;6008:180:1:o;6193:257::-;6234:3;6272:5;6266:12;6299:6;6294:3;6287:19;6315:63;6371:6;6364:4;6359:3;6355:14;6348:4;6341:5;6337:16;6315:63;:::i;:::-;6432:2;6411:15;-1:-1:-1;;6407:29:1;6398:39;;;;6439:4;6394:50;;6193:257;-1:-1:-1;;6193:257:1:o;6455:1527::-;6679:3;6717:6;6711:13;6743:4;6756:51;6800:6;6795:3;6790:2;6782:6;6778:15;6756:51;:::i;:::-;6870:13;;6829:16;;;;6892:55;6870:13;6829:16;6914:15;;;6892:55;:::i;:::-;7036:13;;6969:20;;;7009:1;;7096;7118:18;;;;7171;;;;7198:93;;7276:4;7266:8;7262:19;7250:31;;7198:93;7339:2;7329:8;7326:16;7306:18;7303:40;7300:167;;;-1:-1:-1;;;7366:33:1;;7422:4;7419:1;7412:15;7452:4;7373:3;7440:17;7300:167;7483:18;7510:110;;;;7634:1;7629:328;;;;7476:481;;7510:110;-1:-1:-1;;7545:24:1;;7531:39;;7590:20;;;;-1:-1:-1;7510:110:1;;7629:328;13064:1;13057:14;;;13101:4;13088:18;;7724:1;7738:169;7752:8;7749:1;7746:15;7738:169;;;7834:14;;7819:13;;;7812:37;7877:16;;;;7769:10;;7738:169;;;7742:3;;7938:8;7931:5;7927:20;7920:27;;7476:481;-1:-1:-1;7973:3:1;;6455:1527;-1:-1:-1;;;;;;;;;;;6455:1527:1:o;8405:488::-;-1:-1:-1;;;;;8674:15:1;;;8656:34;;8726:15;;8721:2;8706:18;;8699:43;8773:2;8758:18;;8751:34;;;8821:3;8816:2;8801:18;;8794:31;;;8599:4;;8842:45;;8867:19;;8859:6;8842:45;:::i;:::-;8834:53;8405:488;-1:-1:-1;;;;;;8405:488:1:o;8898:632::-;9069:2;9121:21;;;9191:13;;9094:18;;;9213:22;;;9040:4;;9069:2;9292:15;;;;9266:2;9251:18;;;9040:4;9335:169;9349:6;9346:1;9343:13;9335:169;;;9410:13;;9398:26;;9479:15;;;;9444:12;;;;9371:1;9364:9;9335:169;;;-1:-1:-1;9521:3:1;;8898:632;-1:-1:-1;;;;;;8898:632:1:o;9727:219::-;9876:2;9865:9;9858:21;9839:4;9896:44;9936:2;9925:9;9921:18;9913:6;9896:44;:::i;10705:345::-;10907:2;10889:21;;;10946:2;10926:18;;;10919:30;-1:-1:-1;;;10980:2:1;10965:18;;10958:51;11041:2;11026:18;;10705:345::o;11055:356::-;11257:2;11239:21;;;11276:18;;;11269:30;11335:34;11330:2;11315:18;;11308:62;11402:2;11387:18;;11055:356::o;11832:344::-;12034:2;12016:21;;;12073:2;12053:18;;;12046:30;-1:-1:-1;;;12107:2:1;12092:18;;12085:50;12167:2;12152:18;;11832:344::o;12711:275::-;12782:2;12776:9;12847:2;12828:13;;-1:-1:-1;;12824:27:1;12812:40;;-1:-1:-1;;;;;12867:34:1;;12903:22;;;12864:62;12861:88;;;12929:18;;:::i;:::-;12965:2;12958:22;12711:275;;-1:-1:-1;12711:275:1:o;13117:128::-;13157:3;13188:1;13184:6;13181:1;13178:13;13175:39;;;13194:18;;:::i;:::-;-1:-1:-1;13230:9:1;;13117:128::o;13250:120::-;13290:1;13316;13306:35;;13321:18;;:::i;:::-;-1:-1:-1;13355:9:1;;13250:120::o;13375:168::-;13415:7;13481:1;13477;13473:6;13469:14;13466:1;13463:21;13458:1;13451:9;13444:17;13440:45;13437:71;;;13488:18;;:::i;:::-;-1:-1:-1;13528:9:1;;13375:168::o;13548:125::-;13588:4;13616:1;13613;13610:8;13607:34;;;13621:18;;:::i;:::-;-1:-1:-1;13658:9:1;;13548:125::o;13678:258::-;13750:1;13760:113;13774:6;13771:1;13768:13;13760:113;;;13850:11;;;13844:18;13831:11;;;13824:39;13796:2;13789:10;13760:113;;;13891:6;13888:1;13885:13;13882:48;;;-1:-1:-1;;13926:1:1;13908:16;;13901:27;13678:258::o;13941:380::-;14020:1;14016:12;;;;14063;;;14084:61;;14138:4;14130:6;14126:17;14116:27;;14084:61;14191:2;14183:6;14180:14;14160:18;14157:38;14154:161;;;14237:10;14232:3;14228:20;14225:1;14218:31;14272:4;14269:1;14262:15;14300:4;14297:1;14290:15;14154:161;;13941:380;;;:::o;14326:135::-;14365:3;-1:-1:-1;;14386:17:1;;14383:43;;;14406:18;;:::i;:::-;-1:-1:-1;14453:1:1;14442:13;;14326:135::o;14466:112::-;14498:1;14524;14514:35;;14529:18;;:::i;:::-;-1:-1:-1;14563:9:1;;14466:112::o;14583:127::-;14644:10;14639:3;14635:20;14632:1;14625:31;14675:4;14672:1;14665:15;14699:4;14696:1;14689:15;14715:127;14776:10;14771:3;14767:20;14764:1;14757:31;14807:4;14804:1;14797:15;14831:4;14828:1;14821:15;14847:127;14908:10;14903:3;14899:20;14896:1;14889:31;14939:4;14936:1;14929:15;14963:4;14960:1;14953:15;14979:127;15040:10;15035:3;15031:20;15028:1;15021:31;15071:4;15068:1;15061:15;15095:4;15092:1;15085:15;15111:131;-1:-1:-1;;;;;;15185:32:1;;15175:43;;15165:71;;15232:1;15229;15222:12
Swarm Source
ipfs://bbbec7a86e118f7dba4a18d6f7944b0c4828b7277072f59d056ca8d1420a50ba
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.