Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,500 TrollJumpGame
Holders
688
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TrollJumpGameLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TrollJumpGame
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-28 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creator: Chiru Labs 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; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { 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 (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 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) 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; 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 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 {} } // File: contracts/ERC721AQueryable.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error InvalidQueryRange(); /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) public view returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _currentIndex) { return ownership; } ownership = _ownerships[tokenId]; if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _currentIndex; // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, _currentIndex)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: contracts/TrollJumpGame.sol pragma solidity ^0.8.4; contract TrollJumpGame is ERC721A, Ownable { string public baseURI = "https://gateway.pinata.cloud/ipfs/QmdMpogWmnkSkXc85FFzgErZcnuRb8gY72rW1StpEsbqkH/"; string public constant baseExtension = ".json"; uint256 public constant MAX_FREE = 1; uint256 public constant MAX_PER_TX = 10; uint256 public constant MAX_SUPPLY = 2500; uint256 public price = 0.005 ether; bool public paused = true; constructor() ERC721A("Troll Jump Game", "TrollJumpGame") {} function mint(uint256 _amount) external payable { address _caller = _msgSender(); require(!paused, "Paused"); require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply"); require(_amount > 0, "No 0 mints"); require(tx.origin == _caller, "No contracts"); require(MAX_PER_TX >= _amount , "Excess max per paid tx"); require(_amount * price == msg.value, "Invalid funds provided"); _safeMint(_caller, _amount); } function freeMint() external payable { address _caller = _msgSender(); require(!paused, "Paused"); require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply"); require(tx.origin == _caller, "No contracts"); require(MAX_FREE >= uint256(_getAux(_caller)) + 1, "Excess max per free wallet"); _setAux(_caller, 1); _safeMint(_caller, 1); } function _startTokenId() internal override view virtual returns (uint256) { return 1; } function minted(address _owner) public view returns (uint256) { return _numberMinted(_owner); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } function teamMint(uint256 _number) external onlyOwner { _safeMint(_msgSender(), _number); } function setPrice(uint256 _price) external onlyOwner { price = _price; } function pause(bool _state) external onlyOwner { paused = _state; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension ) ) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101006040526051608081815290620020b160a03980516200002a916009916020909101906200012e565b506611c37937e08000600a55600b805460ff191660011790553480156200005057600080fd5b50604080518082018252600f81526e54726f6c6c204a756d702047616d6560881b60208083019182528351808501909452600d84526c54726f6c6c4a756d7047616d6560981b908401528151919291620000ad916002916200012e565b508051620000c39060039060208401906200012e565b5050600160005550620000d633620000dc565b62000211565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013c90620001d4565b90600052602060002090601f016020900481019282620001605760008555620001ab565b82601f106200017b57805160ff1916838001178555620001ab565b82800160010185558215620001ab579182015b82811115620001ab5782518255916020019190600101906200018e565b50620001b9929150620001bd565b5090565b5b80821115620001b95760008155600101620001be565b600181811c90821680620001e957607f821691505b602082108114156200020b57634e487b7160e01b600052602260045260246000fd5b50919050565b611e9080620002216000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610544578063ed6661c21461058d578063f2fde38b146105a2578063f43a22dc146105c257600080fd5b8063a22cb465146104b3578063b88d4fde146104d3578063c6682862146104f3578063c87b56dd1461052457600080fd5b806391b7f5ed116100d157806391b7f5ed1461045557806395d89b4114610475578063a035b1fe1461048a578063a0712d68146104a057600080fd5b80636c0360eb146103ed57806370a0823114610402578063715018a6146104225780638da5cb5b1461043757600080fd5b80632fbba1151161017a57806355f804b31161014957806355f804b31461038b5780635b70ea9f146103ab5780635c975abb146103b35780636352211e146103cd57600080fd5b80632fbba1151461032057806332cb6b0c146103405780633ccfd60b1461035657806342842e0e1461036b57600080fd5b8063095ea7b3116101b6578063095ea7b31461029957806318160ddd146102b95780631e7269c5146102e057806323b872dd1461030057600080fd5b806301ffc9a7146101e857806302329a291461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b50610208610203366004611b01565b6105d7565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d610238366004611ae7565b610629565b005b34801561024b57600080fd5b5061025461066f565b6040516102149190611cc2565b34801561026d57600080fd5b5061028161027c366004611b7f565b610701565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b4366004611abe565b610745565b3480156102c557600080fd5b5060015460005403600019015b604051908152602001610214565b3480156102ec57600080fd5b506102d26102fb36600461198e565b6107d3565b34801561030c57600080fd5b5061023d61031b3660046119e1565b610802565b34801561032c57600080fd5b5061023d61033b366004611b7f565b61080d565b34801561034c57600080fd5b506102d26109c481565b34801561036257600080fd5b5061023d610844565b34801561037757600080fd5b5061023d6103863660046119e1565b6108fd565b34801561039757600080fd5b5061023d6103a6366004611b39565b610918565b61023d610955565b3480156103bf57600080fd5b50600b546102089060ff1681565b3480156103d957600080fd5b506102816103e8366004611b7f565b610af1565b3480156103f957600080fd5b50610254610b03565b34801561040e57600080fd5b506102d261041d36600461198e565b610b91565b34801561042e57600080fd5b5061023d610be0565b34801561044357600080fd5b506008546001600160a01b0316610281565b34801561046157600080fd5b5061023d610470366004611b7f565b610c16565b34801561048157600080fd5b50610254610c45565b34801561049657600080fd5b506102d2600a5481565b61023d6104ae366004611b7f565b610c54565b3480156104bf57600080fd5b5061023d6104ce366004611a95565b610e1d565b3480156104df57600080fd5b5061023d6104ee366004611a1c565b610eb3565b3480156104ff57600080fd5b5061025460405180604001604052806005815260200164173539b7b760d91b81525081565b34801561053057600080fd5b5061025461053f366004611b7f565b610f04565b34801561055057600080fd5b5061020861055f3660046119af565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059957600080fd5b506102d2600181565b3480156105ae57600080fd5b5061023d6105bd36600461198e565b610fce565b3480156105ce57600080fd5b506102d2600a81565b60006001600160e01b031982166380ac58cd60e01b148061060857506001600160e01b03198216635b5e139f60e01b145b8061062357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461065c5760405162461bcd60e51b815260040161065390611cd5565b60405180910390fd5b600b805460ff1916911515919091179055565b60606002805461067e90611d98565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa90611d98565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b5050505050905090565b600061070c82611066565b610729576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075082610af1565b9050806001600160a01b0316836001600160a01b031614156107855760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107a557506107a3813361055f565b155b156107c3576040516367d9dca160e11b815260040160405180910390fd5b6107ce83838361109f565b505050565b6001600160a01b038116600090815260056020526040812054600160401b900467ffffffffffffffff16610623565b6107ce8383836110fb565b6008546001600160a01b031633146108375760405162461bcd60e51b815260040161065390611cd5565b61084133826112ea565b50565b6008546001600160a01b0316331461086e5760405162461bcd60e51b815260040161065390611cd5565b6040514790600090339083908381818185875af1925050503d80600081146108b2576040519150601f19603f3d011682016040523d82523d6000602084013e6108b7565b606091505b50509050806108f95760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610653565b5050565b6107ce83838360405180602001604052806000815250610eb3565b6008546001600160a01b031633146109425760405162461bcd60e51b815260040161065390611cd5565b80516108f9906009906020840190611853565b600b54339060ff16156109935760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610653565b60015460005403600019016109a9906001611d0a565b6109c410156109ef5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610653565b326001600160a01b03821614610a365760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610653565b6001600160a01b038116600090815260056020526040902054610a6b90600160c01b900467ffffffffffffffff166001611d0a565b60011015610abb5760405162461bcd60e51b815260206004820152601a60248201527f457863657373206d61782070657220667265652077616c6c65740000000000006044820152606401610653565b6001600160a01b038116600090815260056020526040902080546001600160c01b0316600160c01b1790556108418160016112ea565b6000610afc82611304565b5192915050565b60098054610b1090611d98565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3c90611d98565b8015610b895780601f10610b5e57610100808354040283529160200191610b89565b820191906000526020600020905b815481529060010190602001808311610b6c57829003601f168201915b505050505081565b60006001600160a01b038216610bba576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c0a5760405162461bcd60e51b815260040161065390611cd5565b610c14600061142d565b565b6008546001600160a01b03163314610c405760405162461bcd60e51b815260040161065390611cd5565b600a55565b60606003805461067e90611d98565b600b54339060ff1615610c925760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610653565b6001546000548391900360001901610caa9190611d0a565b6109c41015610cf05760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610653565b60008211610d2d5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610653565b326001600160a01b03821614610d745760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610653565b81600a1015610dbe5760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610653565b34600a5483610dcd9190611d36565b14610e135760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610653565b6108f981836112ea565b6001600160a01b038216331415610e475760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ebe8484846110fb565b6001600160a01b0383163b15158015610ee05750610ede8484848461147f565b155b15610efe576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f0f82611066565b610f535760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610653565b600060098054610f6290611d98565b905011610f7e5760405180602001604052806000815250610623565b6009610f8983611577565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610fb993929190611bdf565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610ff85760405162461bcd60e51b815260040161065390611cd5565b6001600160a01b03811661105d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610653565b6108418161142d565b60008160011115801561107a575060005482105b8015610623575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061110682611304565b9050836001600160a01b031681600001516001600160a01b03161461113d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061115b575061115b853361055f565b8061117657503361116b84610701565b6001600160a01b0316145b90508061119657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111bd57604051633a954ecd60e21b815260040160405180910390fd5b6111c96000848761109f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661129f57600054821461129f578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6108f9828260405180602001604052806000815250611691565b60408051606081018252600080825260208201819052918101919091528180600111158015611334575060005481105b1561141457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114125780516001600160a01b0316156113a8579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561140d579392505050565b6113a8565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114b4903390899088908890600401611c8f565b602060405180830381600087803b1580156114ce57600080fd5b505af19250505080156114fe575060408051601f3d908101601f191682019092526114fb91810190611b1d565b60015b611559573d80801561152c576040519150601f19603f3d011682016040523d82523d6000602084013e611531565b606091505b508051611551576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161159b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115c557806115af81611dd3565b91506115be9050600a83611d22565b915061159f565b60008167ffffffffffffffff8111156115ee57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611618576020820181803683370190505b5090505b841561156f5761162d600183611d55565b915061163a600a86611dee565b611645906030611d0a565b60f81b81838151811061166857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061168a600a86611d22565b945061161c565b6000546001600160a01b0384166116ba57604051622e076360e81b815260040160405180910390fd5b826116d85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156117fd575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117c5600087848060010195508761147f565b6117e2576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561177a5782600054146117f857600080fd5b611843565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156117fe575b506000908155610efe9085838684565b82805461185f90611d98565b90600052602060002090601f01602090048101928261188157600085556118c7565b82601f1061189a57805160ff19168380011785556118c7565b828001600101855582156118c7579182015b828111156118c75782518255916020019190600101906118ac565b506118d39291506118d7565b5090565b5b808211156118d357600081556001016118d8565b600067ffffffffffffffff8084111561190757611907611e2e565b604051601f8501601f19908116603f0116810190828211818310171561192f5761192f611e2e565b8160405280935085815286868601111561194857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461197957600080fd5b919050565b8035801515811461197957600080fd5b60006020828403121561199f578081fd5b6119a882611962565b9392505050565b600080604083850312156119c1578081fd5b6119ca83611962565b91506119d860208401611962565b90509250929050565b6000806000606084860312156119f5578081fd5b6119fe84611962565b9250611a0c60208501611962565b9150604084013590509250925092565b60008060008060808587031215611a31578081fd5b611a3a85611962565b9350611a4860208601611962565b925060408501359150606085013567ffffffffffffffff811115611a6a578182fd5b8501601f81018713611a7a578182fd5b611a89878235602084016118ec565b91505092959194509250565b60008060408385031215611aa7578182fd5b611ab083611962565b91506119d86020840161197e565b60008060408385031215611ad0578182fd5b611ad983611962565b946020939093013593505050565b600060208284031215611af8578081fd5b6119a88261197e565b600060208284031215611b12578081fd5b81356119a881611e44565b600060208284031215611b2e578081fd5b81516119a881611e44565b600060208284031215611b4a578081fd5b813567ffffffffffffffff811115611b60578182fd5b8201601f81018413611b70578182fd5b61156f848235602084016118ec565b600060208284031215611b90578081fd5b5035919050565b60008151808452611baf816020860160208601611d6c565b601f01601f19169290920160200192915050565b60008151611bd5818560208601611d6c565b9290920192915050565b600080855482600182811c915080831680611bfb57607f831692505b6020808410821415611c1b57634e487b7160e01b87526022600452602487fd5b818015611c2f5760018114611c4057611c6c565b60ff19861689528489019650611c6c565b60008c815260209020885b86811015611c645781548b820152908501908301611c4b565b505084890196505b505050505050611c85611c7f8287611bc3565b85611bc3565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8590830184611b97565b6020815260006119a86020830184611b97565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611d1d57611d1d611e02565b500190565b600082611d3157611d31611e18565b500490565b6000816000190483118215151615611d5057611d50611e02565b500290565b600082821015611d6757611d67611e02565b500390565b60005b83811015611d87578181015183820152602001611d6f565b83811115610efe5750506000910152565b600181811c90821680611dac57607f821691505b60208210811415611dcd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611de757611de7611e02565b5060010190565b600082611dfd57611dfd611e18565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461084157600080fdfea2646970667358221220119c7c8601d83c60d01bbb9eb6ae6578943b258e470747a6bb64e0d6383cd66b64736f6c6343000804003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d644d706f67576d6e6b536b5863383546467a6745725a636e7552623867593732725731537470457362716b482f
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610544578063ed6661c21461058d578063f2fde38b146105a2578063f43a22dc146105c257600080fd5b8063a22cb465146104b3578063b88d4fde146104d3578063c6682862146104f3578063c87b56dd1461052457600080fd5b806391b7f5ed116100d157806391b7f5ed1461045557806395d89b4114610475578063a035b1fe1461048a578063a0712d68146104a057600080fd5b80636c0360eb146103ed57806370a0823114610402578063715018a6146104225780638da5cb5b1461043757600080fd5b80632fbba1151161017a57806355f804b31161014957806355f804b31461038b5780635b70ea9f146103ab5780635c975abb146103b35780636352211e146103cd57600080fd5b80632fbba1151461032057806332cb6b0c146103405780633ccfd60b1461035657806342842e0e1461036b57600080fd5b8063095ea7b3116101b6578063095ea7b31461029957806318160ddd146102b95780631e7269c5146102e057806323b872dd1461030057600080fd5b806301ffc9a7146101e857806302329a291461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b50610208610203366004611b01565b6105d7565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d610238366004611ae7565b610629565b005b34801561024b57600080fd5b5061025461066f565b6040516102149190611cc2565b34801561026d57600080fd5b5061028161027c366004611b7f565b610701565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b4366004611abe565b610745565b3480156102c557600080fd5b5060015460005403600019015b604051908152602001610214565b3480156102ec57600080fd5b506102d26102fb36600461198e565b6107d3565b34801561030c57600080fd5b5061023d61031b3660046119e1565b610802565b34801561032c57600080fd5b5061023d61033b366004611b7f565b61080d565b34801561034c57600080fd5b506102d26109c481565b34801561036257600080fd5b5061023d610844565b34801561037757600080fd5b5061023d6103863660046119e1565b6108fd565b34801561039757600080fd5b5061023d6103a6366004611b39565b610918565b61023d610955565b3480156103bf57600080fd5b50600b546102089060ff1681565b3480156103d957600080fd5b506102816103e8366004611b7f565b610af1565b3480156103f957600080fd5b50610254610b03565b34801561040e57600080fd5b506102d261041d36600461198e565b610b91565b34801561042e57600080fd5b5061023d610be0565b34801561044357600080fd5b506008546001600160a01b0316610281565b34801561046157600080fd5b5061023d610470366004611b7f565b610c16565b34801561048157600080fd5b50610254610c45565b34801561049657600080fd5b506102d2600a5481565b61023d6104ae366004611b7f565b610c54565b3480156104bf57600080fd5b5061023d6104ce366004611a95565b610e1d565b3480156104df57600080fd5b5061023d6104ee366004611a1c565b610eb3565b3480156104ff57600080fd5b5061025460405180604001604052806005815260200164173539b7b760d91b81525081565b34801561053057600080fd5b5061025461053f366004611b7f565b610f04565b34801561055057600080fd5b5061020861055f3660046119af565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059957600080fd5b506102d2600181565b3480156105ae57600080fd5b5061023d6105bd36600461198e565b610fce565b3480156105ce57600080fd5b506102d2600a81565b60006001600160e01b031982166380ac58cd60e01b148061060857506001600160e01b03198216635b5e139f60e01b145b8061062357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461065c5760405162461bcd60e51b815260040161065390611cd5565b60405180910390fd5b600b805460ff1916911515919091179055565b60606002805461067e90611d98565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa90611d98565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b5050505050905090565b600061070c82611066565b610729576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075082610af1565b9050806001600160a01b0316836001600160a01b031614156107855760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107a557506107a3813361055f565b155b156107c3576040516367d9dca160e11b815260040160405180910390fd5b6107ce83838361109f565b505050565b6001600160a01b038116600090815260056020526040812054600160401b900467ffffffffffffffff16610623565b6107ce8383836110fb565b6008546001600160a01b031633146108375760405162461bcd60e51b815260040161065390611cd5565b61084133826112ea565b50565b6008546001600160a01b0316331461086e5760405162461bcd60e51b815260040161065390611cd5565b6040514790600090339083908381818185875af1925050503d80600081146108b2576040519150601f19603f3d011682016040523d82523d6000602084013e6108b7565b606091505b50509050806108f95760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610653565b5050565b6107ce83838360405180602001604052806000815250610eb3565b6008546001600160a01b031633146109425760405162461bcd60e51b815260040161065390611cd5565b80516108f9906009906020840190611853565b600b54339060ff16156109935760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610653565b60015460005403600019016109a9906001611d0a565b6109c410156109ef5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610653565b326001600160a01b03821614610a365760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610653565b6001600160a01b038116600090815260056020526040902054610a6b90600160c01b900467ffffffffffffffff166001611d0a565b60011015610abb5760405162461bcd60e51b815260206004820152601a60248201527f457863657373206d61782070657220667265652077616c6c65740000000000006044820152606401610653565b6001600160a01b038116600090815260056020526040902080546001600160c01b0316600160c01b1790556108418160016112ea565b6000610afc82611304565b5192915050565b60098054610b1090611d98565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3c90611d98565b8015610b895780601f10610b5e57610100808354040283529160200191610b89565b820191906000526020600020905b815481529060010190602001808311610b6c57829003601f168201915b505050505081565b60006001600160a01b038216610bba576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c0a5760405162461bcd60e51b815260040161065390611cd5565b610c14600061142d565b565b6008546001600160a01b03163314610c405760405162461bcd60e51b815260040161065390611cd5565b600a55565b60606003805461067e90611d98565b600b54339060ff1615610c925760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610653565b6001546000548391900360001901610caa9190611d0a565b6109c41015610cf05760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610653565b60008211610d2d5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610653565b326001600160a01b03821614610d745760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610653565b81600a1015610dbe5760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610653565b34600a5483610dcd9190611d36565b14610e135760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610653565b6108f981836112ea565b6001600160a01b038216331415610e475760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ebe8484846110fb565b6001600160a01b0383163b15158015610ee05750610ede8484848461147f565b155b15610efe576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f0f82611066565b610f535760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610653565b600060098054610f6290611d98565b905011610f7e5760405180602001604052806000815250610623565b6009610f8983611577565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610fb993929190611bdf565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610ff85760405162461bcd60e51b815260040161065390611cd5565b6001600160a01b03811661105d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610653565b6108418161142d565b60008160011115801561107a575060005482105b8015610623575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061110682611304565b9050836001600160a01b031681600001516001600160a01b03161461113d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061115b575061115b853361055f565b8061117657503361116b84610701565b6001600160a01b0316145b90508061119657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111bd57604051633a954ecd60e21b815260040160405180910390fd5b6111c96000848761109f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661129f57600054821461129f578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6108f9828260405180602001604052806000815250611691565b60408051606081018252600080825260208201819052918101919091528180600111158015611334575060005481105b1561141457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114125780516001600160a01b0316156113a8579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561140d579392505050565b6113a8565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114b4903390899088908890600401611c8f565b602060405180830381600087803b1580156114ce57600080fd5b505af19250505080156114fe575060408051601f3d908101601f191682019092526114fb91810190611b1d565b60015b611559573d80801561152c576040519150601f19603f3d011682016040523d82523d6000602084013e611531565b606091505b508051611551576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161159b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115c557806115af81611dd3565b91506115be9050600a83611d22565b915061159f565b60008167ffffffffffffffff8111156115ee57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611618576020820181803683370190505b5090505b841561156f5761162d600183611d55565b915061163a600a86611dee565b611645906030611d0a565b60f81b81838151811061166857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061168a600a86611d22565b945061161c565b6000546001600160a01b0384166116ba57604051622e076360e81b815260040160405180910390fd5b826116d85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156117fd575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117c5600087848060010195508761147f565b6117e2576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561177a5782600054146117f857600080fd5b611843565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156117fe575b506000908155610efe9085838684565b82805461185f90611d98565b90600052602060002090601f01602090048101928261188157600085556118c7565b82601f1061189a57805160ff19168380011785556118c7565b828001600101855582156118c7579182015b828111156118c75782518255916020019190600101906118ac565b506118d39291506118d7565b5090565b5b808211156118d357600081556001016118d8565b600067ffffffffffffffff8084111561190757611907611e2e565b604051601f8501601f19908116603f0116810190828211818310171561192f5761192f611e2e565b8160405280935085815286868601111561194857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461197957600080fd5b919050565b8035801515811461197957600080fd5b60006020828403121561199f578081fd5b6119a882611962565b9392505050565b600080604083850312156119c1578081fd5b6119ca83611962565b91506119d860208401611962565b90509250929050565b6000806000606084860312156119f5578081fd5b6119fe84611962565b9250611a0c60208501611962565b9150604084013590509250925092565b60008060008060808587031215611a31578081fd5b611a3a85611962565b9350611a4860208601611962565b925060408501359150606085013567ffffffffffffffff811115611a6a578182fd5b8501601f81018713611a7a578182fd5b611a89878235602084016118ec565b91505092959194509250565b60008060408385031215611aa7578182fd5b611ab083611962565b91506119d86020840161197e565b60008060408385031215611ad0578182fd5b611ad983611962565b946020939093013593505050565b600060208284031215611af8578081fd5b6119a88261197e565b600060208284031215611b12578081fd5b81356119a881611e44565b600060208284031215611b2e578081fd5b81516119a881611e44565b600060208284031215611b4a578081fd5b813567ffffffffffffffff811115611b60578182fd5b8201601f81018413611b70578182fd5b61156f848235602084016118ec565b600060208284031215611b90578081fd5b5035919050565b60008151808452611baf816020860160208601611d6c565b601f01601f19169290920160200192915050565b60008151611bd5818560208601611d6c565b9290920192915050565b600080855482600182811c915080831680611bfb57607f831692505b6020808410821415611c1b57634e487b7160e01b87526022600452602487fd5b818015611c2f5760018114611c4057611c6c565b60ff19861689528489019650611c6c565b60008c815260209020885b86811015611c645781548b820152908501908301611c4b565b505084890196505b505050505050611c85611c7f8287611bc3565b85611bc3565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8590830184611b97565b6020815260006119a86020830184611b97565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611d1d57611d1d611e02565b500190565b600082611d3157611d31611e18565b500490565b6000816000190483118215151615611d5057611d50611e02565b500290565b600082821015611d6757611d67611e02565b500390565b60005b83811015611d87578181015183820152602001611d6f565b83811115610efe5750506000910152565b600181811c90821680611dac57607f821691505b60208210811415611dcd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611de757611de7611e02565b5060010190565b600082611dfd57611dfd611e18565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461084157600080fdfea2646970667358221220119c7c8601d83c60d01bbb9eb6ae6578943b258e470747a6bb64e0d6383cd66b64736f6c63430008040033
Deployed Bytecode Sourcemap
52079:2632:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27035:305;;;;;;;;;;-1:-1:-1;27035:305:0;;;;;:::i;:::-;;:::i;:::-;;;7236:14:1;;7229:22;7211:41;;7199:2;7184:18;27035:305:0;;;;;;;;54149:81;;;;;;;;;;-1:-1:-1;54149:81:0;;;;;:::i;:::-;;:::i;:::-;;30148:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31651:204::-;;;;;;;;;;-1:-1:-1;31651:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6534:32:1;;;6516:51;;6504:2;6489:18;31651:204:0;6471:102:1;31214:371:0;;;;;;;;;;-1:-1:-1;31214:371:0;;;;;:::i;:::-;;:::i;26284:303::-;;;;;;;;;;-1:-1:-1;53591:1:0;26538:12;26328:7;26522:13;:28;-1:-1:-1;;26522:46:0;26284:303;;;11512:25:1;;;11500:2;11485:18;26284:303:0;11467:76:1;53608:109:0;;;;;;;;;;-1:-1:-1;53608:109:0;;;;;:::i;:::-;;:::i;32516:170::-;;;;;;;;;;-1:-1:-1;32516:170:0;;;;;:::i;:::-;;:::i;53942:105::-;;;;;;;;;;-1:-1:-1;53942:105:0;;;;;:::i;:::-;;:::i;52387:41::-;;;;;;;;;;;;52424:4;52387:41;;53725:209;;;;;;;;;;;;;:::i;32757:185::-;;;;;;;;;;-1:-1:-1;32757:185:0;;;;;:::i;:::-;;:::i;54238:100::-;;;;;;;;;;-1:-1:-1;54238:100:0;;;;;:::i;:::-;;:::i;53084:407::-;;;:::i;52478:25::-;;;;;;;;;;-1:-1:-1;52478:25:0;;;;;;;;29956:125;;;;;;;;;;-1:-1:-1;29956:125:0;;;;;:::i;:::-;;:::i;52131:107::-;;;;;;;;;;;;;:::i;27404:206::-;;;;;;;;;;-1:-1:-1;27404:206:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;4112:87::-;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;54055:86;;;;;;;;;;-1:-1:-1;54055:86:0;;;;;:::i;:::-;;:::i;30317:104::-;;;;;;;;;;;;;:::i;52435:34::-;;;;;;;;;;;;;;;;52580:496;;;;;;:::i;:::-;;:::i;31927:287::-;;;;;;;;;;-1:-1:-1;31927:287:0;;;;;:::i;:::-;;:::i;33013:369::-;;;;;;;;;;-1:-1:-1;33013:369:0;;;;;:::i;:::-;;:::i;52245:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52245:46:0;;;;;54346:362;;;;;;;;;;-1:-1:-1;54346:362:0;;;;;:::i;:::-;;:::i;32285:164::-;;;;;;;;;;-1:-1:-1;32285:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32406:25:0;;;32382:4;32406:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32285:164;52298:36;;;;;;;;;;;;52333:1;52298:36;;5021:201;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;52341:39::-;;;;;;;;;;;;52378:2;52341:39;;27035:305;27137:4;-1:-1:-1;;;;;;27174:40:0;;-1:-1:-1;;;27174:40:0;;:105;;-1:-1:-1;;;;;;;27231:48:0;;-1:-1:-1;;;27231:48:0;27174:105;:158;;;-1:-1:-1;;;;;;;;;;17028:40:0;;;27296:36;27154:178;27035:305;-1:-1:-1;;27035:305:0:o;54149:81::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;;;;;;;;;54207:6:::1;:15:::0;;-1:-1:-1;;54207:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54149:81::o;30148:100::-;30202:13;30235:5;30228:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30148:100;:::o;31651:204::-;31719:7;31744:16;31752:7;31744;:16::i;:::-;31739:64;;31769:34;;-1:-1:-1;;;31769:34:0;;;;;;;;;;;31739:64;-1:-1:-1;31823:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31823:24:0;;31651:204::o;31214:371::-;31287:13;31303:24;31319:7;31303:15;:24::i;:::-;31287:40;;31348:5;-1:-1:-1;;;;;31342:11:0;:2;-1:-1:-1;;;;;31342:11:0;;31338:48;;;31362:24;;-1:-1:-1;;;31362:24:0;;;;;;;;;;;31338:48;2916:10;-1:-1:-1;;;;;31403:21:0;;;;;;:63;;-1:-1:-1;31429:37:0;31446:5;2916:10;32285:164;:::i;31429:37::-;31428:38;31403:63;31399:138;;;31490:35;;-1:-1:-1;;;31490:35:0;;;;;;;;;;;31399:138;31549:28;31558:2;31562:7;31571:5;31549:8;:28::i;:::-;31214:371;;;:::o;53608:109::-;-1:-1:-1;;;;;27788:19:0;;53661:7;27788:19;;;:12;:19;;;;;:32;-1:-1:-1;;;27788:32:0;;;;53688:21;27692:137;32516:170;32650:28;32660:4;32666:2;32670:7;32650:9;:28::i;53942:105::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;54007:32:::1;2916:10:::0;54031:7:::1;54007:9;:32::i;:::-;53942:105:::0;:::o;53725:209::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;53844:37:::1;::::0;53793:21:::1;::::0;53775:15:::1;::::0;2916:10;;53793:21;;53775:15;53844:37;53775:15;53844:37;53793:21;2916:10;53844:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53825:56;;;53900:7;53892:34;;;::::0;-1:-1:-1;;;53892:34:0;;10884:2:1;53892:34:0::1;::::0;::::1;10866:21:1::0;10923:2;10903:18;;;10896:30;-1:-1:-1;;;10942:18:1;;;10935:44;10996:18;;53892:34:0::1;10856:164:1::0;53892:34:0::1;4403:1;;53725:209::o:0;32757:185::-;32895:39;32912:4;32918:2;32922:7;32895:39;;;;;;;;;;;;:16;:39::i;54238:100::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;54312:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;53084:407::-:0;53182:6;;2916:10;;53182:6;;53181:7;53173:26;;;;-1:-1:-1;;;53173:26:0;;7689:2:1;53173:26:0;;;7671:21:1;7728:1;7708:18;;;7701:29;-1:-1:-1;;;7746:18:1;;;7739:36;7792:18;;53173:26:0;7661:155:1;53173:26:0;53591:1;26538:12;26328:7;26522:13;:28;-1:-1:-1;;26522:46:0;53232:17;;53248:1;53232:17;:::i;:::-;52424:4;53218:31;;53210:62;;;;-1:-1:-1;;;53210:62:0;;9475:2:1;53210:62:0;;;9457:21:1;9514:2;9494:18;;;9487:30;-1:-1:-1;;;9533:18:1;;;9526:48;9591:18;;53210:62:0;9447:168:1;53210:62:0;53291:9;-1:-1:-1;;;;;53291:20:0;;;53283:45;;;;-1:-1:-1;;;53283:45:0;;11227:2:1;53283:45:0;;;11209:21:1;11266:2;11246:18;;;11239:30;-1:-1:-1;;;11285:18:1;;;11278:42;11337:18;;53283:45:0;11199:162:1;53283:45:0;-1:-1:-1;;;;;28263:19:0;;28237:6;28263:19;;;:12;:19;;;;;:23;53359:29;;-1:-1:-1;;;28263:23:0;;;;53387:1;53359:29;:::i;:::-;52333:1;53347:41;;53339:80;;;;-1:-1:-1;;;53339:80:0;;9120:2:1;53339:80:0;;;9102:21:1;9159:2;9139:18;;;9132:30;9198:28;9178:18;;;9171:56;9244:18;;53339:80:0;9092:176:1;53339:80:0;-1:-1:-1;;;;;28546:19:0;;;;;;:12;:19;;;;;:29;;-1:-1:-1;;;;;28546:29:0;-1:-1:-1;;;28546:29:0;;;53462:21;53472:7;53481:1;53462:9;:21::i;29956:125::-;30020:7;30047:21;30060:7;30047:12;:21::i;:::-;:26;;29956:125;-1:-1:-1;;29956:125:0:o;52131:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27404:206::-;27468:7;-1:-1:-1;;;;;27492:19:0;;27488:60;;27520:28;;-1:-1:-1;;;27520:28:0;;;;;;;;;;;27488:60;-1:-1:-1;;;;;;27574:19:0;;;;;:12;:19;;;;;:27;;;;27404:206::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;54055:86::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;54119:5:::1;:14:::0;54055:86::o;30317:104::-;30373:13;30406:7;30399:14;;;;;:::i;52580:496::-;52689:6;;2916:10;;52689:6;;52688:7;52680:26;;;;-1:-1:-1;;;52680:26:0;;7689:2:1;52680:26:0;;;7671:21:1;7728:1;7708:18;;;7701:29;-1:-1:-1;;;7746:18:1;;;7739:36;7792:18;;52680:26:0;7661:155:1;52680:26:0;53591:1;26538:12;26328:7;26522:13;52755:7;;26522:28;;-1:-1:-1;;26522:46:0;52739:23;;;;:::i;:::-;52424:4;52725:37;;52717:68;;;;-1:-1:-1;;;52717:68:0;;9475:2:1;52717:68:0;;;9457:21:1;9514:2;9494:18;;;9487:30;-1:-1:-1;;;9533:18:1;;;9526:48;9591:18;;52717:68:0;9447:168:1;52717:68:0;52814:1;52804:7;:11;52796:34;;;;-1:-1:-1;;;52796:34:0;;8430:2:1;52796:34:0;;;8412:21:1;8469:2;8449:18;;;8442:30;-1:-1:-1;;;8488:18:1;;;8481:40;8538:18;;52796:34:0;8402:160:1;52796:34:0;52849:9;-1:-1:-1;;;;;52849:20:0;;;52841:45;;;;-1:-1:-1;;;52841:45:0;;11227:2:1;52841:45:0;;;11209:21:1;11266:2;11246:18;;;11239:30;-1:-1:-1;;;11285:18:1;;;11278:42;11337:18;;52841:45:0;11199:162:1;52841:45:0;52919:7;52378:2;52905:21;;52897:57;;;;-1:-1:-1;;;52897:57:0;;8769:2:1;52897:57:0;;;8751:21:1;8808:2;8788:18;;;8781:30;-1:-1:-1;;;8827:18:1;;;8820:52;8889:18;;52897:57:0;8741:172:1;52897:57:0;52992:9;52983:5;;52973:7;:15;;;;:::i;:::-;:28;52965:63;;;;-1:-1:-1;;;52965:63:0;;10533:2:1;52965:63:0;;;10515:21:1;10572:2;10552:18;;;10545:30;-1:-1:-1;;;10591:18:1;;;10584:52;10653:18;;52965:63:0;10505:172:1;52965:63:0;53041:27;53051:7;53060;53041:9;:27::i;31927:287::-;-1:-1:-1;;;;;32026:24:0;;2916:10;32026:24;32022:54;;;32059:17;;-1:-1:-1;;;32059:17:0;;;;;;;;;;;32022:54;2916:10;32089:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32089:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32089:53:0;;;;;;;;;;32158:48;;7211:41:1;;;32089:42:0;;2916:10;32158:48;;7184:18:1;32158:48:0;;;;;;;31927:287;;:::o;33013:369::-;33180:28;33190:4;33196:2;33200:7;33180:9;:28::i;:::-;-1:-1:-1;;;;;33223:13:0;;7108:19;:23;;33223:76;;;;;33243:56;33274:4;33280:2;33284:7;33293:5;33243:30;:56::i;:::-;33242:57;33223:76;33219:156;;;33323:40;;-1:-1:-1;;;33323:40:0;;;;;;;;;;;33219:156;33013:369;;;;:::o;54346:362::-;54412:13;54446:17;54454:8;54446:7;:17::i;:::-;54438:51;;;;-1:-1:-1;;;54438:51:0;;9822:2:1;54438:51:0;;;9804:21:1;9861:2;9841:18;;;9834:30;-1:-1:-1;;;9880:18:1;;;9873:51;9941:18;;54438:51:0;9794:171:1;54438:51:0;54531:1;54513:7;54507:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;54589:7;54613:26;54630:8;54613:16;:26::i;:::-;54656:13;;;;;;;;;;;;;-1:-1:-1;;;54656:13:0;;;54556:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54500:200;54346:362;-1:-1:-1;;54346:362:0:o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;8023:2:1;5102:73:0::1;::::0;::::1;8005:21:1::0;8062:2;8042:18;;;8035:30;8101:34;8081:18;;;8074:62;-1:-1:-1;;;8152:18:1;;;8145:36;8198:19;;5102:73:0::1;7995:228:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;33637:174::-:0;33694:4;33737:7;53591:1;33718:26;;:53;;;;;33758:13;;33748:7;:23;33718:53;:85;;;;-1:-1:-1;;33776:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33776:27:0;;;;33775:28;;33637:174::o;42863:196::-;42978:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42978:29:0;-1:-1:-1;;;;;42978:29:0;;;;;;;;;43023:28;;42978:24;;43023:28;;;;;;;42863:196;;;:::o;37811:2130::-;37926:35;37964:21;37977:7;37964:12;:21::i;:::-;37926:59;;38024:4;-1:-1:-1;;;;;38002:26:0;:13;:18;;;-1:-1:-1;;;;;38002:26:0;;37998:67;;38037:28;;-1:-1:-1;;;38037:28:0;;;;;;;;;;;37998:67;38078:22;2916:10;-1:-1:-1;;;;;38104:20:0;;;;:73;;-1:-1:-1;38141:36:0;38158:4;2916:10;32285:164;:::i;38141:36::-;38104:126;;;-1:-1:-1;2916:10:0;38194:20;38206:7;38194:11;:20::i;:::-;-1:-1:-1;;;;;38194:36:0;;38104:126;38078:153;;38249:17;38244:66;;38275:35;;-1:-1:-1;;;38275:35:0;;;;;;;;;;;38244:66;-1:-1:-1;;;;;38325:16:0;;38321:52;;38350:23;;-1:-1:-1;;;38350:23:0;;;;;;;;;;;38321:52;38494:35;38511:1;38515:7;38524:4;38494:8;:35::i;:::-;-1:-1:-1;;;;;38825:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38825:31:0;;;;;;;-1:-1:-1;;38825:31:0;;;;;;;38871:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38871:29:0;;;;;;;;;;;38951:20;;;:11;:20;;;;;;38986:18;;-1:-1:-1;;;;;;39019:49:0;;;;-1:-1:-1;;;39052:15:0;39019:49;;;;;;;;;;39342:11;;39402:24;;;;;39445:13;;38951:20;;39402:24;;39445:13;39441:384;;39655:13;;39640:11;:28;39636:174;;39693:20;;39762:28;;;;39736:54;;-1:-1:-1;;;39736:54:0;-1:-1:-1;;;;;;39736:54:0;;;-1:-1:-1;;;;;39693:20:0;;39736:54;;;;39636:174;37811:2130;;;39872:7;39868:2;-1:-1:-1;;;;;39853:27:0;39862:4;-1:-1:-1;;;;;39853:27:0;;;;;;;;;;;37811:2130;;;;;:::o;33895:104::-;33964:27;33974:2;33978:8;33964:27;;;;;;;;;;;;:9;:27::i;28785:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28896:7:0;;53591:1;28945:23;;:47;;;;;28979:13;;28972:4;:20;28945:47;28941:886;;;29013:31;29047:17;;;:11;:17;;;;;;;;;29013:51;;;;;;;;;-1:-1:-1;;;;;29013:51:0;;;;-1:-1:-1;;;29013:51:0;;;;;;;;;;;-1:-1:-1;;;29013:51:0;;;;;;;;;;;;;;29083:729;;29133:14;;-1:-1:-1;;;;;29133:28:0;;29129:101;;29197:9;28785:1109;-1:-1:-1;;;28785:1109:0:o;29129:101::-;-1:-1:-1;;;29572:6:0;29617:17;;;;:11;:17;;;;;;;;;29605:29;;;;;;;;;-1:-1:-1;;;;;29605:29:0;;;;;-1:-1:-1;;;29605:29:0;;;;;;;;;;;-1:-1:-1;;;29605:29:0;;;;;;;;;;;;;29665:28;29661:109;;29733:9;28785:1109;-1:-1:-1;;;28785:1109:0:o;29661:109::-;29532:261;;;28941:886;;29855:31;;-1:-1:-1;;;29855:31:0;;;;;;;;;;;5382:191;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5382:191;;:::o;43551:667::-;43735:72;;-1:-1:-1;;;43735:72:0;;43714:4;;-1:-1:-1;;;;;43735:36:0;;;;;:72;;2916:10;;43786:4;;43792:7;;43801:5;;43735:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43735:72:0;;;;;;;;-1:-1:-1;;43735:72:0;;;;;;;;;;;;:::i;:::-;;;43731:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43969:13:0;;43965:235;;44015:40;;-1:-1:-1;;;44015:40:0;;;;;;;;;;;43965:235;44158:6;44152:13;44143:6;44139:2;44135:15;44128:38;43731:480;-1:-1:-1;;;;;;43854:55:0;-1:-1:-1;;;43854:55:0;;-1:-1:-1;43731:480:0;43551:667;;;;;;:::o;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;-1:-1:-1;;;900:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;-1:-1:-1;;;988:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;34373:1751;34496:20;34519:13;-1:-1:-1;;;;;34547:16:0;;34543:48;;34572:19;;-1:-1:-1;;;34572:19:0;;;;;;;;;;;34543:48;34606:13;34602:44;;34628:18;;-1:-1:-1;;;34628:18:0;;;;;;;;;;;34602:44;-1:-1:-1;;;;;34997:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35056:49:0;;34997:44;;;;;;;;35056:49;;;-1:-1:-1;;;;;34997:44:0;;;;;;35056:49;;;;;;;;;;;;;;;;35122:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35172:66:0;;;-1:-1:-1;;;35222:15:0;35172:66;;;;;;;;;;;;;35122:25;;35319:23;;;;7108:19;:23;35359:633;;35399:314;35430:38;;35455:12;;-1:-1:-1;;;;;35430:38:0;;;35447:1;;35430:38;;35447:1;;35430:38;35496:69;35535:1;35539:2;35543:14;;;;;;35559:5;35496:30;:69::i;:::-;35491:174;;35601:40;;-1:-1:-1;;;35601:40:0;;;;;;;;;;;35491:174;35708:3;35692:12;:19;;35399:314;;35794:12;35777:13;;:29;35773:43;;35808:8;;;35773:43;35359:633;;;35857:120;35888:40;;35913:14;;;;;-1:-1:-1;;;;;35888:40:0;;;35905:1;;35888:40;;35905:1;;35888:40;35972:3;35956:12;:19;;35857:120;;35359:633;-1:-1:-1;36006:13:0;:28;;;36056:60;;36089:2;36093:12;36107:8;36056:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;:::-;1144:39;1063:126;-1:-1:-1;;;1063:126:1:o;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:190::-;3107:6;3160:2;3148:9;3139:7;3135:23;3131:32;3128:2;;;3181:6;3173;3166:22;3128:2;3209:26;3225:9;3209:26;:::i;3246:255::-;3304:6;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3422:9;3409:23;3441:30;3465:5;3441:30;:::i;3506:259::-;3575:6;3628:2;3616:9;3607:7;3603:23;3599:32;3596:2;;;3649:6;3641;3634:22;3596:2;3686:9;3680:16;3705:30;3729:5;3705:30;:::i;3770:480::-;3839:6;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;3913:6;3905;3898:22;3860:2;3958:9;3945:23;3991:18;3983:6;3980:30;3977:2;;;4028:6;4020;4013:22;3977:2;4056:22;;4109:4;4101:13;;4097:27;-1:-1:-1;4087:2:1;;4143:6;4135;4128:22;4087:2;4171:73;4236:7;4231:2;4218:16;4213:2;4209;4205:11;4171:73;:::i;4255:190::-;4314:6;4367:2;4355:9;4346:7;4342:23;4338:32;4335:2;;;4388:6;4380;4373:22;4335:2;-1:-1:-1;4416:23:1;;4325:120;-1:-1:-1;4325:120:1:o;4450:257::-;4491:3;4529:5;4523:12;4556:6;4551:3;4544:19;4572:63;4628:6;4621:4;4616:3;4612:14;4605:4;4598:5;4594:16;4572:63;:::i;:::-;4689:2;4668:15;-1:-1:-1;;4664:29:1;4655:39;;;;4696:4;4651:50;;4499:208;-1:-1:-1;;4499:208:1:o;4712:185::-;4754:3;4792:5;4786:12;4807:52;4852:6;4847:3;4840:4;4833:5;4829:16;4807:52;:::i;:::-;4875:16;;;;;4762:135;-1:-1:-1;;4762:135:1:o;4902:1253::-;5126:3;5155;5190:6;5184:13;5220:3;5242:1;5270:9;5266:2;5262:18;5252:28;;5330:2;5319:9;5315:18;5352;5342:2;;5396:4;5388:6;5384:17;5374:27;;5342:2;5422;5470;5462:6;5459:14;5439:18;5436:38;5433:2;;;-1:-1:-1;;;5497:33:1;;5553:4;5550:1;5543:15;5583:4;5504:3;5571:17;5433:2;5614:18;5641:104;;;;5759:1;5754:322;;;;5607:469;;5641:104;-1:-1:-1;;5674:24:1;;5662:37;;5719:16;;;;-1:-1:-1;5641:104:1;;5754:322;11595:4;11614:17;;;11664:4;11648:21;;5849:3;5865:165;5879:6;5876:1;5873:13;5865:165;;;5957:14;;5944:11;;;5937:35;6000:16;;;;5894:10;;5865:165;;;5869:3;;6059:6;6054:3;6050:16;6043:23;;5607:469;;;;;;;6092:57;6118:30;6144:3;6136:6;6118:30;:::i;:::-;6110:6;6092:57;:::i;:::-;6085:64;5134:1021;-1:-1:-1;;;;;;5134:1021:1:o;6578:488::-;-1:-1:-1;;;;;6847:15:1;;;6829:34;;6899:15;;6894:2;6879:18;;6872:43;6946:2;6931:18;;6924:34;;;6994:3;6989:2;6974:18;;6967:31;;;6772:4;;7015:45;;7040:19;;7032:6;7015:45;:::i;7263:219::-;7412:2;7401:9;7394:21;7375:4;7432:44;7472:2;7461:9;7457:18;7449:6;7432:44;:::i;9970:356::-;10172:2;10154:21;;;10191:18;;;10184:30;10250:34;10245:2;10230:18;;10223:62;10317:2;10302:18;;10144:182::o;11680:128::-;11720:3;11751:1;11747:6;11744:1;11741:13;11738:2;;;11757:18;;:::i;:::-;-1:-1:-1;11793:9:1;;11728:80::o;11813:120::-;11853:1;11879;11869:2;;11884:18;;:::i;:::-;-1:-1:-1;11918:9:1;;11859:74::o;11938:168::-;11978:7;12044:1;12040;12036:6;12032:14;12029:1;12026:21;12021:1;12014:9;12007:17;12003:45;12000:2;;;12051:18;;:::i;:::-;-1:-1:-1;12091:9:1;;11990:116::o;12111:125::-;12151:4;12179:1;12176;12173:8;12170:2;;;12184:18;;:::i;:::-;-1:-1:-1;12221:9:1;;12160:76::o;12241:258::-;12313:1;12323:113;12337:6;12334:1;12331:13;12323:113;;;12413:11;;;12407:18;12394:11;;;12387:39;12359:2;12352:10;12323:113;;;12454:6;12451:1;12448:13;12445:2;;;-1:-1:-1;;12489:1:1;12471:16;;12464:27;12294:205::o;12504:380::-;12583:1;12579:12;;;;12626;;;12647:2;;12701:4;12693:6;12689:17;12679:27;;12647:2;12754;12746:6;12743:14;12723:18;12720:38;12717:2;;;12800:10;12795:3;12791:20;12788:1;12781:31;12835:4;12832:1;12825:15;12863:4;12860:1;12853:15;12717:2;;12559:325;;;:::o;12889:135::-;12928:3;-1:-1:-1;;12949:17:1;;12946:2;;;12969:18;;:::i;:::-;-1:-1:-1;13016:1:1;13005:13;;12936:88::o;13029:112::-;13061:1;13087;13077:2;;13092:18;;:::i;:::-;-1:-1:-1;13126:9:1;;13067:74::o;13146:127::-;13207:10;13202:3;13198:20;13195:1;13188:31;13238:4;13235:1;13228:15;13262:4;13259:1;13252:15;13278:127;13339:10;13334:3;13330:20;13327:1;13320:31;13370:4;13367:1;13360:15;13394:4;13391:1;13384:15;13410:127;13471:10;13466:3;13462:20;13459:1;13452:31;13502:4;13499:1;13492:15;13526:4;13523:1;13516:15;13542:131;-1:-1:-1;;;;;;13616:32:1;;13606:43;;13596:2;;13663:1;13660;13653:12
Swarm Source
ipfs://119c7c8601d83c60d01bbb9eb6ae6578943b258e470747a6bb64e0d6383cd66b
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.