ERC-721
Overview
Max Total Supply
333 GLCTM
Holders
138
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GLCTMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Galactium
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-15 */ // 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/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/new.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender() , "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.7; contract Galactium is ERC721A, Ownable { using Strings for uint256; string private uriPrefix ; string private uriSuffix = ".json"; string public hiddenURL = "ipfs://QmPnpDMyWUn7iMZuagFDr72kRgPcqkskFNXbYAn8VtnR53/hidden.json/"; uint256 public cost = 0.05 ether; uint256 public whiteListCost = 0.04 ether; uint16 public constant maxSupply = 3333; bool public WLpaused = true; bool public paused = true; bool public reveal =false; mapping (address => uint8) public NFTPerWLAddress; mapping (address => uint8) public NFTPerAddress; uint8 public maxMintAmountPerWLWallet = 2; uint8 public maxMintAmountPerWallet = 3; bytes32 public whitelistMerkleRoot = 0xa203006d37a2300a8563fb1b6661504831b17dab16f0c8ca12fc5d6fa22c568e; constructor() ERC721A("Galactium", "GLCTM") { } function mint(uint8 _mintAmount) external payable { uint16 totalSupply = uint16(totalSupply()); uint8 _txPerAddress = NFTPerAddress[msg.sender] ; require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require(_mintAmount + _txPerAddress <= maxMintAmountPerWallet, "Exceeds max Nfts allowed per wallet."); require(!paused, "Sale has not started yet"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _safeMint(msg.sender , _mintAmount); NFTPerAddress[msg.sender] = _mintAmount + _txPerAddress; delete totalSupply; delete _mintAmount; } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if ( reveal == false) { return hiddenURL; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setWLPaused() external onlyOwner { WLpaused = !WLpaused; } function setWLCost(uint256 _cost) external onlyOwner { whiteListCost = _cost; delete _cost; } function setMaxNftLimitPerAddress(uint8 _limit) external onlyOwner{ maxMintAmountPerWallet = _limit; delete _limit; } function setMaxNftLimitPerWLAddress(uint8 _limit) external onlyOwner{ maxMintAmountPerWLWallet = _limit; delete _limit; } function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner { whitelistMerkleRoot = _whitelistMerkleRoot; } function getLeafNode(address _leaf) internal pure returns (bytes32 temp) { return keccak256(abi.encodePacked(_leaf)); } function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) { return MerkleProof.verify(proof, whitelistMerkleRoot, leaf); } function whitelistMint(uint8 _mintAmount, bytes32[] calldata merkleProof) external payable { bytes32 leafnode = getLeafNode(msg.sender); uint8 _txPerAddress = NFTPerWLAddress[msg.sender]; uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require(_verify(leafnode , merkleProof ), "Invalid merkle proof"); require (_txPerAddress + _mintAmount <= maxMintAmountPerWLWallet, "Exceeds max Nfts allowed per wallet."); require(!WLpaused, "Sale has not started yet"); require(msg.value >= whiteListCost * _mintAmount, "Insufficient funds!"); _safeMint(msg.sender , _mintAmount); NFTPerWLAddress[msg.sender] =_txPerAddress + _mintAmount; delete _mintAmount; delete _txPerAddress; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setHiddenUri(string memory _uriPrefix) external onlyOwner { hiddenURL = _uriPrefix; } function setPaused() external onlyOwner { paused = !paused; WLpaused = true; } function setCost(uint _cost) external onlyOwner{ cost = _cost; } function setRevealed() external onlyOwner{ reveal = !reveal; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(0xA5659b98409786c3074F883d7befC0BA3c0220f2).transfer(_balance * 90 / 100 ); payable(0x2ebc30833264dEE042d123Aa99c20BA9A20D59e9).transfer(_balance * 10 / 100 ); } function _baseURI() internal view override returns (string memory) { return uriPrefix; } }
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":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerWLAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWLWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxNftLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxNftLimitPerWLAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000191565b50604051806080016040528060428152602001620027fa6042913980516200005991600b9160209091019062000191565b5066b1a2bc2ec50000600c55668e1bc9bf040000600d55600e805461010162ffffff199091161790556011805461ffff19166103021790557fa203006d37a2300a8563fb1b6661504831b17dab16f0c8ca12fc5d6fa22c568e601255348015620000c257600080fd5b50604080518082018252600981526847616c61637469756d60b81b602080830191825283518085019094526005845264474c43544d60d81b908401528151919291620001119160029162000191565b5080516200012790600390602084019062000191565b5050600080555062000139336200013f565b62000274565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019f9062000237565b90600052602060002090601f016020900481019282620001c357600085556200020e565b82601f10620001de57805160ff19168380011785556200020e565b828001600101855582156200020e579182015b828111156200020e578251825591602001919060010190620001f1565b506200021c92915062000220565b5090565b5b808211156200021c576000815560010162000221565b600181811c908216806200024c57607f821691505b602082108114156200026e57634e487b7160e01b600052602260045260246000fd5b50919050565b61257680620002846000396000f3fe60806040526004361061025c5760003560e01c80636352211e11610144578063aa98e0c6116100b6578063d1d192131161007a578063d1d19213146106d1578063d5abeb01146106f1578063dbd37cf41461071a578063e985e9c51461074a578063eef440af14610793578063f2fde38b146107a857600080fd5b8063aa98e0c61461063c578063b88d4fde14610652578063bc951b9114610672578063bd32fb6614610691578063c87b56dd146106b157600080fd5b80637f6e9093116101085780637f6e9093146105995780638da5cb5b146105b35780639257e044146105d157806395d89b41146105e7578063a22cb465146105fc578063a475b5dd1461061c57600080fd5b80636352211e146105115780636ecd23061461053157806370a0823114610544578063715018a6146105645780637ec4a6591461057957600080fd5b80633445e346116101dd5780634153d30d116101a15780634153d30d1461044357806342842e0e1461046f57806344a0d68a1461048f57806358381669146104af57806359bf5dbb146104c25780635c975abb146104f257600080fd5b80633445e346146103c457806337a66d85146103e45780633bd64968146103f95780633ccfd60b1461040e57806340e031b41461042357600080fd5b80631067fcc7116102245780631067fcc71461032757806313faede61461034757806318160ddd1461036b57806323b872dd146103845780632f6f98e1146103a457600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063093cfa63146102f0578063095ea7b314610307575b600080fd5b34801561026d57600080fd5b5061028161027c366004612060565b6107c8565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab61081a565b60405161028d91906122d6565b3480156102c457600080fd5b506102d86102d3366004612047565b6108ac565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b506103056108f0565b005b34801561031357600080fd5b5061030561032236600461201d565b610937565b34801561033357600080fd5b5061030561034236600461209a565b6109c5565b34801561035357600080fd5b5061035d600c5481565b60405190815260200161028d565b34801561037757600080fd5b506001546000540361035d565b34801561039057600080fd5b5061030561039f366004611f29565b610a06565b3480156103b057600080fd5b506103056103bf3660046120e3565b610a11565b3480156103d057600080fd5b506103056103df366004612108565b610a89565b3480156103f057600080fd5b50610305610acf565b34801561040557600080fd5b50610305610b1e565b34801561041a57600080fd5b50610305610b67565b34801561042f57600080fd5b5061030561043e366004612108565b610c41565b34801561044f57600080fd5b5060115461045d9060ff1681565b60405160ff909116815260200161028d565b34801561047b57600080fd5b5061030561048a366004611f29565b610c81565b34801561049b57600080fd5b506103056104aa366004612047565b610c9c565b6103056104bd366004612123565b610ccb565b3480156104ce57600080fd5b5061045d6104dd366004611edb565b600f6020526000908152604090205460ff1681565b3480156104fe57600080fd5b50600e5461028190610100900460ff1681565b34801561051d57600080fd5b506102d861052c366004612047565b610eed565b61030561053f366004612108565b610eff565b34801561055057600080fd5b5061035d61055f366004611edb565b611075565b34801561057057600080fd5b506103056110c4565b34801561058557600080fd5b5061030561059436600461209a565b6110fa565b3480156105a557600080fd5b50600e546102819060ff1681565b3480156105bf57600080fd5b506008546001600160a01b03166102d8565b3480156105dd57600080fd5b5061035d600d5481565b3480156105f357600080fd5b506102ab611137565b34801561060857600080fd5b50610305610617366004611fe1565b611146565b34801561062857600080fd5b50600e546102819062010000900460ff1681565b34801561064857600080fd5b5061035d60125481565b34801561065e57600080fd5b5061030561066d366004611f65565b6111dc565b34801561067e57600080fd5b5060115461045d90610100900460ff1681565b34801561069d57600080fd5b506103056106ac366004612047565b61122d565b3480156106bd57600080fd5b506102ab6106cc366004612047565b61125c565b3480156106dd57600080fd5b506103056106ec366004612047565b6113cc565b3480156106fd57600080fd5b50610707610d0581565b60405161ffff909116815260200161028d565b34801561072657600080fd5b5061045d610735366004611edb565b60106020526000908152604090205460ff1681565b34801561075657600080fd5b50610281610765366004611ef6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561079f57600080fd5b506102ab6113fb565b3480156107b457600080fd5b506103056107c3366004611edb565b611489565b60006001600160e01b031982166380ac58cd60e01b14806107f957506001600160e01b03198216635b5e139f60e01b145b8061081457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461082990612468565b80601f016020809104026020016040519081016040528092919081815260200182805461085590612468565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b5050505050905090565b60006108b782611524565b6108d4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146109235760405162461bcd60e51b815260040161091a9061232d565b60405180910390fd5b600e805460ff19811660ff90911615179055565b600061094282610eed565b9050806001600160a01b0316836001600160a01b031614156109775760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061099757506109958133610765565b155b156109b5576040516367d9dca160e11b815260040160405180910390fd5b6109c083838361154f565b505050565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161091a9061232d565b8051610a0290600b906020840190611d9f565b5050565b6109c08383836115ab565b6008546001600160a01b03163314610a3b5760405162461bcd60e51b815260040161091a9061232d565b6000610a4a6001546000540390565b9050610d05610a59848361238f565b61ffff161115610a7b5760405162461bcd60e51b815260040161091a90612362565b6109c0828461ffff1661179b565b6008546001600160a01b03163314610ab35760405162461bcd60e51b815260040161091a9061232d565b6011805460ff9092166101000261ff0019909216919091179055565b6008546001600160a01b03163314610af95760405162461bcd60e51b815260040161091a9061232d565b600e805460ff1960ff6101008084049190911615021661ffff19909116176001179055565b6008546001600160a01b03163314610b485760405162461bcd60e51b815260040161091a9061232d565b600e805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610b915760405162461bcd60e51b815260040161091a9061232d565b4773a5659b98409786c3074f883d7befc0ba3c0220f26108fc6064610bb784605a612406565b610bc191906123f2565b6040518115909202916000818181858888f19350505050158015610be9573d6000803e3d6000fd5b50732ebc30833264dee042d123aa99c20ba9a20d59e96108fc6064610c0f84600a612406565b610c1991906123f2565b6040518115909202916000818181858888f19350505050158015610a02573d6000803e3d6000fd5b6008546001600160a01b03163314610c6b5760405162461bcd60e51b815260040161091a9061232d565b6011805460ff191660ff92909216919091179055565b6109c0838383604051806020016040528060008152506111dc565b6008546001600160a01b03163314610cc65760405162461bcd60e51b815260040161091a9061232d565b600c55565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090336000908152600f6020526040812054600154825493945060ff90911692039050610d05610d3660ff88168361238f565b61ffff161115610d585760405162461bcd60e51b815260040161091a90612362565b610d95838686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506117b592505050565b610dd85760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161091a565b60115460ff16610de887846123cd565b60ff161115610e095760405162461bcd60e51b815260040161091a906122e9565b600e5460ff1615610e575760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b604482015260640161091a565b8560ff16600d54610e689190612406565b341015610ead5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161091a565b610eba338760ff1661179b565b610ec486836123cd565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050505050565b6000610ef8826117c4565b5192915050565b6000610f0e6001546000540390565b3360009081526010602052604090205490915060ff90811690610d0590610f379085168461238f565b61ffff161115610f595760405162461bcd60e51b815260040161091a90612362565b601154610100900460ff16610f6e82856123cd565b60ff161115610f8f5760405162461bcd60e51b815260040161091a906122e9565b600e54610100900460ff1615610fe25760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b604482015260640161091a565b8260ff16600c54610ff39190612406565b3410156110385760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161091a565b611045338460ff1661179b565b61104f81846123cd565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b03821661109e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146110ee5760405162461bcd60e51b815260040161091a9061232d565b6110f860006118e0565b565b6008546001600160a01b031633146111245760405162461bcd60e51b815260040161091a9061232d565b8051610a02906009906020840190611d9f565b60606003805461082990612468565b6001600160a01b0382163314156111705760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111e78484846115ab565b6001600160a01b0383163b15158015611209575061120784848484611932565b155b15611227576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112575760405162461bcd60e51b815260040161091a9061232d565b601255565b606061126782611524565b6112cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161091a565b600e5462010000900460ff1661136d57600b80546112e890612468565b80601f016020809104026020016040519081016040528092919081815260200182805461131490612468565b80156113615780601f1061133657610100808354040283529160200191611361565b820191906000526020600020905b81548152906001019060200180831161134457829003601f168201915b50505050509050919050565b6000611377611a2a565b9050600081511161139757604051806020016040528060008152506113c5565b806113a184611a39565b600a6040516020016113b5939291906121d5565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113f65760405162461bcd60e51b815260040161091a9061232d565b600d55565b600b805461140890612468565b80601f016020809104026020016040519081016040528092919081815260200182805461143490612468565b80156114815780601f1061145657610100808354040283529160200191611481565b820191906000526020600020905b81548152906001019060200180831161146457829003601f168201915b505050505081565b6008546001600160a01b031633146114b35760405162461bcd60e51b815260040161091a9061232d565b6001600160a01b0381166115185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091a565b611521816118e0565b50565b6000805482108015610814575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115b6826117c4565b9050836001600160a01b031681600001516001600160a01b0316146115ed5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061160b575061160b8533610765565b8061162657503361161b846108ac565b6001600160a01b0316145b90508061164657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661166d57604051633a954ecd60e21b815260040160405180910390fd5b6116796000848761154f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661174f57600054821461174f578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a02828260405180602001604052806000815250611b37565b60006113c58260125485611b44565b6040805160608101825260008082526020820181905291810191909152816000548110156118c757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118c55780516001600160a01b03161561185b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156118c0579392505050565b61185b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611967903390899088908890600401612299565b602060405180830381600087803b15801561198157600080fd5b505af19250505080156119b1575060408051601f3d908101601f191682019092526119ae9181019061207d565b60015b611a0c573d8080156119df576040519150601f19603f3d011682016040523d82523d6000602084013e6119e4565b606091505b508051611a04576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461082990612468565b606081611a5d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a875780611a71816124a3565b9150611a809050600a836123f2565b9150611a61565b60008167ffffffffffffffff811115611aa257611aa2612514565b6040519080825280601f01601f191660200182016040528015611acc576020820181803683370190505b5090505b8415611a2257611ae1600183612425565b9150611aee600a866124be565b611af99060306123b5565b60f81b818381518110611b0e57611b0e6124fe565b60200101906001600160f81b031916908160001a905350611b30600a866123f2565b9450611ad0565b6109c08383836001611b5a565b600082611b518584611d2b565b14949350505050565b6000546001600160a01b038516611b8357604051622e076360e81b815260040160405180910390fd5b83611ba15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c5357506001600160a01b0387163b15155b15611cdc575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ca46000888480600101955088611932565b611cc1576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c59578260005414611cd757600080fd5b611d22565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611cdd575b50600055611794565b600081815b8451811015611d97576000858281518110611d4d57611d4d6124fe565b60200260200101519050808311611d735760008381526020829052604090209250611d84565b600081815260208490526040902092505b5080611d8f816124a3565b915050611d30565b509392505050565b828054611dab90612468565b90600052602060002090601f016020900481019282611dcd5760008555611e13565b82601f10611de657805160ff1916838001178555611e13565b82800160010185558215611e13579182015b82811115611e13578251825591602001919060010190611df8565b50611e1f929150611e23565b5090565b5b80821115611e1f5760008155600101611e24565b600067ffffffffffffffff80841115611e5357611e53612514565b604051601f8501601f19908116603f01168101908282118183101715611e7b57611e7b612514565b81604052809350858152868686011115611e9457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ec557600080fd5b919050565b803560ff81168114611ec557600080fd5b600060208284031215611eed57600080fd5b6113c582611eae565b60008060408385031215611f0957600080fd5b611f1283611eae565b9150611f2060208401611eae565b90509250929050565b600080600060608486031215611f3e57600080fd5b611f4784611eae565b9250611f5560208501611eae565b9150604084013590509250925092565b60008060008060808587031215611f7b57600080fd5b611f8485611eae565b9350611f9260208601611eae565b925060408501359150606085013567ffffffffffffffff811115611fb557600080fd5b8501601f81018713611fc657600080fd5b611fd587823560208401611e38565b91505092959194509250565b60008060408385031215611ff457600080fd5b611ffd83611eae565b91506020830135801515811461201257600080fd5b809150509250929050565b6000806040838503121561203057600080fd5b61203983611eae565b946020939093013593505050565b60006020828403121561205957600080fd5b5035919050565b60006020828403121561207257600080fd5b81356113c58161252a565b60006020828403121561208f57600080fd5b81516113c58161252a565b6000602082840312156120ac57600080fd5b813567ffffffffffffffff8111156120c357600080fd5b8201601f810184136120d457600080fd5b611a2284823560208401611e38565b600080604083850312156120f657600080fd5b823561ffff81168114611f1257600080fd5b60006020828403121561211a57600080fd5b6113c582611eca565b60008060006040848603121561213857600080fd5b61214184611eca565b9250602084013567ffffffffffffffff8082111561215e57600080fd5b818601915086601f83011261217257600080fd5b81358181111561218157600080fd5b8760208260051b850101111561219657600080fd5b6020830194508093505050509250925092565b600081518084526121c181602086016020860161243c565b601f01601f19169290920160200192915050565b6000845160206121e88285838a0161243c565b8551918401916121fb8184848a0161243c565b8554920191600090600181811c908083168061221857607f831692505b85831081141561223657634e487b7160e01b85526022600452602485fd5b80801561224a576001811461225b57612288565b60ff19851688528388019550612288565b60008b81526020902060005b858110156122805781548a820152908401908801612267565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122cc908301846121a9565b9695505050505050565b6020815260006113c560208301846121a9565b60208082526024908201527f45786365656473206d6178204e66747320616c6c6f776564207065722077616c6040820152633632ba1760e11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600061ffff8083168185168083038211156123ac576123ac6124d2565b01949350505050565b600082198211156123c8576123c86124d2565b500190565b600060ff821660ff84168060ff038211156123ea576123ea6124d2565b019392505050565b600082612401576124016124e8565b500490565b6000816000190483118215151615612420576124206124d2565b500290565b600082821015612437576124376124d2565b500390565b60005b8381101561245757818101518382015260200161243f565b838111156112275750506000910152565b600181811c9082168061247c57607f821691505b6020821081141561249d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124b7576124b76124d2565b5060010190565b6000826124cd576124cd6124e8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461152157600080fdfea264697066735822122089af3324300a896861d96383a744e5eea4f5d218dfeb552a220d53ca6ea0a8f964736f6c63430008070033697066733a2f2f516d506e70444d7957556e37694d5a75616746447237326b52675063716b736b464e586259416e3856746e5235332f68696464656e2e6a736f6e2f
Deployed Bytecode
0x60806040526004361061025c5760003560e01c80636352211e11610144578063aa98e0c6116100b6578063d1d192131161007a578063d1d19213146106d1578063d5abeb01146106f1578063dbd37cf41461071a578063e985e9c51461074a578063eef440af14610793578063f2fde38b146107a857600080fd5b8063aa98e0c61461063c578063b88d4fde14610652578063bc951b9114610672578063bd32fb6614610691578063c87b56dd146106b157600080fd5b80637f6e9093116101085780637f6e9093146105995780638da5cb5b146105b35780639257e044146105d157806395d89b41146105e7578063a22cb465146105fc578063a475b5dd1461061c57600080fd5b80636352211e146105115780636ecd23061461053157806370a0823114610544578063715018a6146105645780637ec4a6591461057957600080fd5b80633445e346116101dd5780634153d30d116101a15780634153d30d1461044357806342842e0e1461046f57806344a0d68a1461048f57806358381669146104af57806359bf5dbb146104c25780635c975abb146104f257600080fd5b80633445e346146103c457806337a66d85146103e45780633bd64968146103f95780633ccfd60b1461040e57806340e031b41461042357600080fd5b80631067fcc7116102245780631067fcc71461032757806313faede61461034757806318160ddd1461036b57806323b872dd146103845780632f6f98e1146103a457600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063093cfa63146102f0578063095ea7b314610307575b600080fd5b34801561026d57600080fd5b5061028161027c366004612060565b6107c8565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab61081a565b60405161028d91906122d6565b3480156102c457600080fd5b506102d86102d3366004612047565b6108ac565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b506103056108f0565b005b34801561031357600080fd5b5061030561032236600461201d565b610937565b34801561033357600080fd5b5061030561034236600461209a565b6109c5565b34801561035357600080fd5b5061035d600c5481565b60405190815260200161028d565b34801561037757600080fd5b506001546000540361035d565b34801561039057600080fd5b5061030561039f366004611f29565b610a06565b3480156103b057600080fd5b506103056103bf3660046120e3565b610a11565b3480156103d057600080fd5b506103056103df366004612108565b610a89565b3480156103f057600080fd5b50610305610acf565b34801561040557600080fd5b50610305610b1e565b34801561041a57600080fd5b50610305610b67565b34801561042f57600080fd5b5061030561043e366004612108565b610c41565b34801561044f57600080fd5b5060115461045d9060ff1681565b60405160ff909116815260200161028d565b34801561047b57600080fd5b5061030561048a366004611f29565b610c81565b34801561049b57600080fd5b506103056104aa366004612047565b610c9c565b6103056104bd366004612123565b610ccb565b3480156104ce57600080fd5b5061045d6104dd366004611edb565b600f6020526000908152604090205460ff1681565b3480156104fe57600080fd5b50600e5461028190610100900460ff1681565b34801561051d57600080fd5b506102d861052c366004612047565b610eed565b61030561053f366004612108565b610eff565b34801561055057600080fd5b5061035d61055f366004611edb565b611075565b34801561057057600080fd5b506103056110c4565b34801561058557600080fd5b5061030561059436600461209a565b6110fa565b3480156105a557600080fd5b50600e546102819060ff1681565b3480156105bf57600080fd5b506008546001600160a01b03166102d8565b3480156105dd57600080fd5b5061035d600d5481565b3480156105f357600080fd5b506102ab611137565b34801561060857600080fd5b50610305610617366004611fe1565b611146565b34801561062857600080fd5b50600e546102819062010000900460ff1681565b34801561064857600080fd5b5061035d60125481565b34801561065e57600080fd5b5061030561066d366004611f65565b6111dc565b34801561067e57600080fd5b5060115461045d90610100900460ff1681565b34801561069d57600080fd5b506103056106ac366004612047565b61122d565b3480156106bd57600080fd5b506102ab6106cc366004612047565b61125c565b3480156106dd57600080fd5b506103056106ec366004612047565b6113cc565b3480156106fd57600080fd5b50610707610d0581565b60405161ffff909116815260200161028d565b34801561072657600080fd5b5061045d610735366004611edb565b60106020526000908152604090205460ff1681565b34801561075657600080fd5b50610281610765366004611ef6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561079f57600080fd5b506102ab6113fb565b3480156107b457600080fd5b506103056107c3366004611edb565b611489565b60006001600160e01b031982166380ac58cd60e01b14806107f957506001600160e01b03198216635b5e139f60e01b145b8061081457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461082990612468565b80601f016020809104026020016040519081016040528092919081815260200182805461085590612468565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b5050505050905090565b60006108b782611524565b6108d4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146109235760405162461bcd60e51b815260040161091a9061232d565b60405180910390fd5b600e805460ff19811660ff90911615179055565b600061094282610eed565b9050806001600160a01b0316836001600160a01b031614156109775760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061099757506109958133610765565b155b156109b5576040516367d9dca160e11b815260040160405180910390fd5b6109c083838361154f565b505050565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161091a9061232d565b8051610a0290600b906020840190611d9f565b5050565b6109c08383836115ab565b6008546001600160a01b03163314610a3b5760405162461bcd60e51b815260040161091a9061232d565b6000610a4a6001546000540390565b9050610d05610a59848361238f565b61ffff161115610a7b5760405162461bcd60e51b815260040161091a90612362565b6109c0828461ffff1661179b565b6008546001600160a01b03163314610ab35760405162461bcd60e51b815260040161091a9061232d565b6011805460ff9092166101000261ff0019909216919091179055565b6008546001600160a01b03163314610af95760405162461bcd60e51b815260040161091a9061232d565b600e805460ff1960ff6101008084049190911615021661ffff19909116176001179055565b6008546001600160a01b03163314610b485760405162461bcd60e51b815260040161091a9061232d565b600e805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610b915760405162461bcd60e51b815260040161091a9061232d565b4773a5659b98409786c3074f883d7befc0ba3c0220f26108fc6064610bb784605a612406565b610bc191906123f2565b6040518115909202916000818181858888f19350505050158015610be9573d6000803e3d6000fd5b50732ebc30833264dee042d123aa99c20ba9a20d59e96108fc6064610c0f84600a612406565b610c1991906123f2565b6040518115909202916000818181858888f19350505050158015610a02573d6000803e3d6000fd5b6008546001600160a01b03163314610c6b5760405162461bcd60e51b815260040161091a9061232d565b6011805460ff191660ff92909216919091179055565b6109c0838383604051806020016040528060008152506111dc565b6008546001600160a01b03163314610cc65760405162461bcd60e51b815260040161091a9061232d565b600c55565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090336000908152600f6020526040812054600154825493945060ff90911692039050610d05610d3660ff88168361238f565b61ffff161115610d585760405162461bcd60e51b815260040161091a90612362565b610d95838686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506117b592505050565b610dd85760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161091a565b60115460ff16610de887846123cd565b60ff161115610e095760405162461bcd60e51b815260040161091a906122e9565b600e5460ff1615610e575760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b604482015260640161091a565b8560ff16600d54610e689190612406565b341015610ead5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161091a565b610eba338760ff1661179b565b610ec486836123cd565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050505050565b6000610ef8826117c4565b5192915050565b6000610f0e6001546000540390565b3360009081526010602052604090205490915060ff90811690610d0590610f379085168461238f565b61ffff161115610f595760405162461bcd60e51b815260040161091a90612362565b601154610100900460ff16610f6e82856123cd565b60ff161115610f8f5760405162461bcd60e51b815260040161091a906122e9565b600e54610100900460ff1615610fe25760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b604482015260640161091a565b8260ff16600c54610ff39190612406565b3410156110385760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161091a565b611045338460ff1661179b565b61104f81846123cd565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b03821661109e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146110ee5760405162461bcd60e51b815260040161091a9061232d565b6110f860006118e0565b565b6008546001600160a01b031633146111245760405162461bcd60e51b815260040161091a9061232d565b8051610a02906009906020840190611d9f565b60606003805461082990612468565b6001600160a01b0382163314156111705760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111e78484846115ab565b6001600160a01b0383163b15158015611209575061120784848484611932565b155b15611227576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112575760405162461bcd60e51b815260040161091a9061232d565b601255565b606061126782611524565b6112cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161091a565b600e5462010000900460ff1661136d57600b80546112e890612468565b80601f016020809104026020016040519081016040528092919081815260200182805461131490612468565b80156113615780601f1061133657610100808354040283529160200191611361565b820191906000526020600020905b81548152906001019060200180831161134457829003601f168201915b50505050509050919050565b6000611377611a2a565b9050600081511161139757604051806020016040528060008152506113c5565b806113a184611a39565b600a6040516020016113b5939291906121d5565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113f65760405162461bcd60e51b815260040161091a9061232d565b600d55565b600b805461140890612468565b80601f016020809104026020016040519081016040528092919081815260200182805461143490612468565b80156114815780601f1061145657610100808354040283529160200191611481565b820191906000526020600020905b81548152906001019060200180831161146457829003601f168201915b505050505081565b6008546001600160a01b031633146114b35760405162461bcd60e51b815260040161091a9061232d565b6001600160a01b0381166115185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091a565b611521816118e0565b50565b6000805482108015610814575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115b6826117c4565b9050836001600160a01b031681600001516001600160a01b0316146115ed5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061160b575061160b8533610765565b8061162657503361161b846108ac565b6001600160a01b0316145b90508061164657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661166d57604051633a954ecd60e21b815260040160405180910390fd5b6116796000848761154f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661174f57600054821461174f578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a02828260405180602001604052806000815250611b37565b60006113c58260125485611b44565b6040805160608101825260008082526020820181905291810191909152816000548110156118c757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118c55780516001600160a01b03161561185b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156118c0579392505050565b61185b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611967903390899088908890600401612299565b602060405180830381600087803b15801561198157600080fd5b505af19250505080156119b1575060408051601f3d908101601f191682019092526119ae9181019061207d565b60015b611a0c573d8080156119df576040519150601f19603f3d011682016040523d82523d6000602084013e6119e4565b606091505b508051611a04576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461082990612468565b606081611a5d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a875780611a71816124a3565b9150611a809050600a836123f2565b9150611a61565b60008167ffffffffffffffff811115611aa257611aa2612514565b6040519080825280601f01601f191660200182016040528015611acc576020820181803683370190505b5090505b8415611a2257611ae1600183612425565b9150611aee600a866124be565b611af99060306123b5565b60f81b818381518110611b0e57611b0e6124fe565b60200101906001600160f81b031916908160001a905350611b30600a866123f2565b9450611ad0565b6109c08383836001611b5a565b600082611b518584611d2b565b14949350505050565b6000546001600160a01b038516611b8357604051622e076360e81b815260040160405180910390fd5b83611ba15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c5357506001600160a01b0387163b15155b15611cdc575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ca46000888480600101955088611932565b611cc1576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c59578260005414611cd757600080fd5b611d22565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611cdd575b50600055611794565b600081815b8451811015611d97576000858281518110611d4d57611d4d6124fe565b60200260200101519050808311611d735760008381526020829052604090209250611d84565b600081815260208490526040902092505b5080611d8f816124a3565b915050611d30565b509392505050565b828054611dab90612468565b90600052602060002090601f016020900481019282611dcd5760008555611e13565b82601f10611de657805160ff1916838001178555611e13565b82800160010185558215611e13579182015b82811115611e13578251825591602001919060010190611df8565b50611e1f929150611e23565b5090565b5b80821115611e1f5760008155600101611e24565b600067ffffffffffffffff80841115611e5357611e53612514565b604051601f8501601f19908116603f01168101908282118183101715611e7b57611e7b612514565b81604052809350858152868686011115611e9457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ec557600080fd5b919050565b803560ff81168114611ec557600080fd5b600060208284031215611eed57600080fd5b6113c582611eae565b60008060408385031215611f0957600080fd5b611f1283611eae565b9150611f2060208401611eae565b90509250929050565b600080600060608486031215611f3e57600080fd5b611f4784611eae565b9250611f5560208501611eae565b9150604084013590509250925092565b60008060008060808587031215611f7b57600080fd5b611f8485611eae565b9350611f9260208601611eae565b925060408501359150606085013567ffffffffffffffff811115611fb557600080fd5b8501601f81018713611fc657600080fd5b611fd587823560208401611e38565b91505092959194509250565b60008060408385031215611ff457600080fd5b611ffd83611eae565b91506020830135801515811461201257600080fd5b809150509250929050565b6000806040838503121561203057600080fd5b61203983611eae565b946020939093013593505050565b60006020828403121561205957600080fd5b5035919050565b60006020828403121561207257600080fd5b81356113c58161252a565b60006020828403121561208f57600080fd5b81516113c58161252a565b6000602082840312156120ac57600080fd5b813567ffffffffffffffff8111156120c357600080fd5b8201601f810184136120d457600080fd5b611a2284823560208401611e38565b600080604083850312156120f657600080fd5b823561ffff81168114611f1257600080fd5b60006020828403121561211a57600080fd5b6113c582611eca565b60008060006040848603121561213857600080fd5b61214184611eca565b9250602084013567ffffffffffffffff8082111561215e57600080fd5b818601915086601f83011261217257600080fd5b81358181111561218157600080fd5b8760208260051b850101111561219657600080fd5b6020830194508093505050509250925092565b600081518084526121c181602086016020860161243c565b601f01601f19169290920160200192915050565b6000845160206121e88285838a0161243c565b8551918401916121fb8184848a0161243c565b8554920191600090600181811c908083168061221857607f831692505b85831081141561223657634e487b7160e01b85526022600452602485fd5b80801561224a576001811461225b57612288565b60ff19851688528388019550612288565b60008b81526020902060005b858110156122805781548a820152908401908801612267565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122cc908301846121a9565b9695505050505050565b6020815260006113c560208301846121a9565b60208082526024908201527f45786365656473206d6178204e66747320616c6c6f776564207065722077616c6040820152633632ba1760e11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600061ffff8083168185168083038211156123ac576123ac6124d2565b01949350505050565b600082198211156123c8576123c86124d2565b500190565b600060ff821660ff84168060ff038211156123ea576123ea6124d2565b019392505050565b600082612401576124016124e8565b500490565b6000816000190483118215151615612420576124206124d2565b500290565b600082821015612437576124376124d2565b500390565b60005b8381101561245757818101518382015260200161243f565b838111156112275750506000910152565b600181811c9082168061247c57607f821691505b6020821081141561249d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124b7576124b76124d2565b5060010190565b6000826124cd576124cd6124e8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461152157600080fdfea264697066735822122089af3324300a896861d96383a744e5eea4f5d218dfeb552a220d53ca6ea0a8f964736f6c63430008070033
Deployed Bytecode Sourcemap
46341:5033:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24443:305;;;;;;;;;;-1:-1:-1;24443:305:0;;;;;:::i;:::-;;:::i;:::-;;;8511:14:1;;8504:22;8486:41;;8474:2;8459:18;24443:305:0;;;;;;;;27556:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29059:204::-;;;;;;;;;;-1:-1:-1;29059:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7809:32:1;;;7791:51;;7779:2;7764:18;29059:204:0;7645:203:1;48743:75:0;;;;;;;;;;;;;:::i;:::-;;28622:371;;;;;;;;;;-1:-1:-1;28622:371:0;;;;;:::i;:::-;;:::i;50619:102::-;;;;;;;;;;-1:-1:-1;50619:102:0;;;;;:::i;:::-;;:::i;46595:32::-;;;;;;;;;;;;;;;;;;;8684:25:1;;;8672:2;8657:18;46595:32:0;8538:177:1;23692:303:0;;;;;;;;;;-1:-1:-1;23946:12:0;;23736:7;23930:13;:28;23692:303;;29924:170;;;;;;;;;;-1:-1:-1;29924:170:0;;;;;:::i;:::-;;:::i;47913:326::-;;;;;;;;;;-1:-1:-1;47913:326:0;;;;;:::i;:::-;;:::i;48937:129::-;;;;;;;;;;-1:-1:-1;48937:129:0;;;;;:::i;:::-;;:::i;50729:91::-;;;;;;;;;;;;;:::i;50907:70::-;;;;;;;;;;;;;:::i;50987:279::-;;;;;;;;;;;;;:::i;49073:133::-;;;;;;;;;;-1:-1:-1;49073:133:0;;;;;:::i;:::-;;:::i;46987:41::-;;;;;;;;;;-1:-1:-1;46987:41:0;;;;;;;;;;;12478:4:1;12466:17;;;12448:36;;12436:2;12421:18;46987:41:0;12306:184:1;30165:185:0;;;;;;;;;;-1:-1:-1;30165:185:0;;;;;:::i;:::-;;:::i;50826:76::-;;;;;;;;;;-1:-1:-1;50826:76:0;;;;;:::i;:::-;;:::i;49674:832::-;;;;;;:::i;:::-;;:::i;46881:49::-;;;;;;;;;;-1:-1:-1;46881:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46821:25;;;;;;;;;;-1:-1:-1;46821:25:0;;;;;;;;;;;27364:125;;;;;;;;;;-1:-1:-1;27364:125:0;;;;;:::i;:::-;;:::i;47266:639::-;;;;;;:::i;:::-;;:::i;24812:206::-;;;;;;;;;;-1:-1:-1;24812:206:0;;;;;:::i;:::-;;:::i;45489:103::-;;;;;;;;;;;;;:::i;50512:102::-;;;;;;;;;;-1:-1:-1;50512:102:0;;;;;:::i;:::-;;:::i;46789:27::-;;;;;;;;;;-1:-1:-1;46789:27:0;;;;;;;;44837:87;;;;;;;;;;-1:-1:-1;44910:6:0;;-1:-1:-1;;;;;44910:6:0;44837:87;;46632:41;;;;;;;;;;;;;;;;27725:104;;;;;;;;;;;;;:::i;29335:287::-;;;;;;;;;;-1:-1:-1;29335:287:0;;;;;:::i;:::-;;:::i;46851:25::-;;;;;;;;;;-1:-1:-1;46851:25:0;;;;;;;;;;;47089:103;;;;;;;;;;;;;;;;30421:369;;;;;;;;;;-1:-1:-1;30421:369:0;;;;;:::i;:::-;;:::i;47036:39::-;;;;;;;;;;-1:-1:-1;47036:39:0;;;;;;;;;;;49208:142;;;;;;;;;;-1:-1:-1;49208:142:0;;;;;:::i;:::-;;:::i;48245:490::-;;;;;;;;;;-1:-1:-1;48245:490:0;;;;;:::i;:::-;;:::i;48822:106::-;;;;;;;;;;-1:-1:-1;48822:106:0;;;;;:::i;:::-;;:::i;46680:39::-;;;;;;;;;;;;46715:4;46680:39;;;;;12105:6:1;12093:19;;;12075:38;;12063:2;12048:18;46680:39:0;11931:188:1;46935:47:0;;;;;;;;;;-1:-1:-1;46935:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29693:164;;;;;;;;;;-1:-1:-1;29693:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29814:25:0;;;29790:4;29814:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29693:164;46492:94;;;;;;;;;;;;;:::i;45747:201::-;;;;;;;;;;-1:-1:-1;45747:201:0;;;;;:::i;:::-;;:::i;24443:305::-;24545:4;-1:-1:-1;;;;;;24582:40:0;;-1:-1:-1;;;24582:40:0;;:105;;-1:-1:-1;;;;;;;24639:48:0;;-1:-1:-1;;;24639:48:0;24582:105;:158;;;-1:-1:-1;;;;;;;;;;14477:40:0;;;24704:36;24562:178;24443:305;-1:-1:-1;;24443:305:0:o;27556:100::-;27610:13;27643:5;27636:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27556:100;:::o;29059:204::-;29127:7;29152:16;29160:7;29152;:16::i;:::-;29147:64;;29177:34;;-1:-1:-1;;;29177:34:0;;;;;;;;;;;29147:64;-1:-1:-1;29231:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29231:24:0;;29059:204::o;48743:75::-;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;;;;;;;;;48804:8:::1;::::0;;-1:-1:-1;;48792:20:0;::::1;48804:8;::::0;;::::1;48803:9;48792:20;::::0;;48743:75::o;28622:371::-;28695:13;28711:24;28727:7;28711:15;:24::i;:::-;28695:40;;28756:5;-1:-1:-1;;;;;28750:11:0;:2;-1:-1:-1;;;;;28750:11:0;;28746:48;;;28770:24;;-1:-1:-1;;;28770:24:0;;;;;;;;;;;28746:48;2918:10;-1:-1:-1;;;;;28811:21:0;;;;;;:63;;-1:-1:-1;28837:37:0;28854:5;2918:10;29693:164;:::i;28837:37::-;28836:38;28811:63;28807:138;;;28898:35;;-1:-1:-1;;;28898:35:0;;;;;;;;;;;28807:138;28957:28;28966:2;28970:7;28979:5;28957:8;:28::i;:::-;28684:309;28622:371;;:::o;50619:102::-;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;50693:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50619:102:::0;:::o;29924:170::-;30058:28;30068:4;30074:2;30078:7;30058:9;:28::i;47913:326::-;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;47996:18:::1;48024:13;23946:12:::0;;23736:7;23930:13;:28;;23692:303;48024:13:::1;47996:42:::0;-1:-1:-1;46715:4:0::1;48053:25;48067:11:::0;47996:42;48053:25:::1;:::i;:::-;:38;;;;48045:70;;;;-1:-1:-1::0;;;48045:70:0::1;;;;;;;:::i;:::-;48123:34;48133:9;48145:11;48123:34;;:9;:34::i;48937:129::-:0;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;49010:22:::1;:31:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;49010:31:0;;::::1;::::0;;;::::1;::::0;;48937:129::o;50729:91::-;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;50786:6:::1;::::0;;-1:-1:-1;;50786:6:0::1;;::::0;;::::1;::::0;;;::::1;50785:7;50776:16;50799:15:::0;-1:-1:-1;;50799:15:0;;;;50786:6:::1;50799:15;::::0;;50729:91::o;50907:70::-;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;50966:6:::1;::::0;;-1:-1:-1;;50956:16:0;::::1;50966:6:::0;;;;::::1;;;50965:7;50956:16:::0;;::::1;;::::0;;50907:70::o;50987:279::-;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;51047:21:::1;51084:42;51076:82;51153:3;51137:13;51047:21:::0;51148:2:::1;51137:13;:::i;:::-;:19;;;;:::i;:::-;51076:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;51176:42:0::1;51168:82;51245:3;51229:13;:8:::0;51240:2:::1;51229:13;:::i;:::-;:19;;;;:::i;:::-;51168:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;49073:133:::0;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;49148:24:::1;:33:::0;;-1:-1:-1;;49148:33:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;49073:133::o;30165:185::-;30303:39;30320:4;30326:2;30330:7;30303:39;;;;;;;;;;;;:16;:39::i;50826:76::-;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;50882:4:::1;:12:::0;50826:76::o;49674:832::-;49470:23;;;49814:10;6028:2:1;6024:15;-1:-1:-1;;6020:53:1;49470:23:0;;;;6008:66:1;;;;49470:23:0;;;;;;;;;6090:12:1;;;;49470:23:0;;;49460:34;;;;;49782:17;;49870:10;49832:19;49854:27;;;:15;:27;;;;;;23946:12;;23930:13;;49782:43;;-1:-1:-1;49854:27:0;;;;;23930:28;49888:42;-1:-1:-1;46715:4:0;49945:25;;;;49888:42;49945:25;:::i;:::-;:38;;;;49937:70;;;;-1:-1:-1;;;49937:70:0;;;;;;;:::i;:::-;50022:36;50030:8;50043:11;;50022:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50022:7:0;;-1:-1:-1;;;50022:36:0:i;:::-;50014:70;;;;-1:-1:-1;;;50014:70:0;;10672:2:1;50014:70:0;;;10654:21:1;10711:2;10691:18;;;10684:30;-1:-1:-1;;;10730:18:1;;;10723:50;10790:18;;50014:70:0;10470:344:1;50014:70:0;50131:24;;;;50100:27;50116:11;50100:13;:27;:::i;:::-;:55;;;;50091:105;;;;-1:-1:-1;;;50091:105:0;;;;;;;:::i;:::-;50212:8;;;;50211:9;50203:46;;;;-1:-1:-1;;;50203:46:0;;9146:2:1;50203:46:0;;;9128:21:1;9185:2;9165:18;;;9158:30;-1:-1:-1;;;9204:18:1;;;9197:54;9268:18;;50203:46:0;8944:348:1;50203:46:0;50293:11;50277:27;;:13;;:27;;;;:::i;:::-;50264:9;:40;;50256:72;;;;-1:-1:-1;;;50256:72:0;;11785:2:1;50256:72:0;;;11767:21:1;11824:2;11804:18;;;11797:30;-1:-1:-1;;;11843:18:1;;;11836:49;11902:18;;50256:72:0;11583:343:1;50256:72:0;50338:35;50348:10;50361:11;50338:35;;:9;:35::i;:::-;50411:27;50427:11;50411:13;:27;:::i;:::-;50398:10;50382:27;;;;:15;:27;;;;;:56;;-1:-1:-1;;50382:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;49674:832:0:o;27364:125::-;27428:7;27455:21;27468:7;27455:12;:21::i;:::-;:26;;27364:125;-1:-1:-1;;27364:125:0:o;47266:639::-;47324:18;47352:13;23946:12;;23736:7;23930:13;:28;;23692:303;47352:13;47409:10;47373:19;47395:25;;;:13;:25;;;;;;47324:42;;-1:-1:-1;47395:25:0;;;;;46715:4;;47440:25;;;;47324:42;47440:25;:::i;:::-;:38;;;;47432:70;;;;-1:-1:-1;;;47432:70:0;;;;;;;:::i;:::-;47550:22;;;;;;;47519:27;47533:13;47519:11;:27;:::i;:::-;:53;;;;47511:102;;;;-1:-1:-1;;;47511:102:0;;;;;;;:::i;:::-;47631:6;;;;;;;47630:7;47622:44;;;;-1:-1:-1;;;47622:44:0;;9146:2:1;47622:44:0;;;9128:21:1;9185:2;9165:18;;;9158:30;-1:-1:-1;;;9204:18:1;;;9197:54;9268:18;;47622:44:0;8944:348:1;47622:44:0;47701:11;47694:18;;:4;;:18;;;;:::i;:::-;47681:9;:31;;47673:63;;;;-1:-1:-1;;;47673:63:0;;11785:2:1;47673:63:0;;;11767:21:1;11824:2;11804:18;;;11797:30;-1:-1:-1;;;11843:18:1;;;11836:49;11902:18;;47673:63:0;11583:343:1;47673:63:0;47745:35;47755:10;47768:11;47745:35;;:9;:35::i;:::-;47815:27;47829:13;47815:11;:27;:::i;:::-;47801:10;47787:25;;;;:13;:25;;;;;:55;;-1:-1:-1;;47787:55:0;;;;;;;;;;;;-1:-1:-1;;;47266:639:0:o;24812:206::-;24876:7;-1:-1:-1;;;;;24900:19:0;;24896:60;;24928:28;;-1:-1:-1;;;24928:28:0;;;;;;;;;;;24896:60;-1:-1:-1;;;;;;24982:19:0;;;;;:12;:19;;;;;:27;;;;24812:206::o;45489:103::-;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;45554:30:::1;45581:1;45554:18;:30::i;:::-;45489:103::o:0;50512:102::-;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;50586:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27725:104::-:0;27781:13;27814:7;27807:14;;;;;:::i;29335:287::-;-1:-1:-1;;;;;29434:24:0;;2918:10;29434:24;29430:54;;;29467:17;;-1:-1:-1;;;29467:17:0;;;;;;;;;;;29430:54;2918:10;29497:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29497:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29497:53:0;;;;;;;;;;29566:48;;8486:41:1;;;29497:42:0;;2918:10;29566:48;;8459:18:1;29566:48:0;;;;;;;29335:287;;:::o;30421:369::-;30588:28;30598:4;30604:2;30608:7;30588:9;:28::i;:::-;-1:-1:-1;;;;;30631:13:0;;4580:19;:23;;30631:76;;;;;30651:56;30682:4;30688:2;30692:7;30701:5;30651:30;:56::i;:::-;30650:57;30631:76;30627:156;;;30731:40;;-1:-1:-1;;;30731:40:0;;;;;;;;;;;30627:156;30421:369;;;;:::o;49208:142::-;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;49300:19:::1;:42:::0;49208:142::o;48245:490::-;48344:13;48385:17;48393:8;48385:7;:17::i;:::-;48369:98;;;;-1:-1:-1;;;48369:98:0;;11021:2:1;48369:98:0;;;11003:21:1;11060:2;11040:18;;;11033:30;11099:34;11079:18;;;11072:62;-1:-1:-1;;;11150:18:1;;;11143:45;11205:19;;48369:98:0;10819:411:1;48369:98:0;48485:6;;;;;;;48480:50;;48517:9;48510:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48245:490;;;:::o;48480:50::-;48544:28;48575:10;:8;:10::i;:::-;48544:41;;48630:1;48605:14;48599:28;:32;:130;;;;;;;;;;;;;;;;;48667:14;48683:19;:8;:17;:19::i;:::-;48704:9;48650:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48599:130;48592:137;48245:490;-1:-1:-1;;;48245:490:0:o;48822:106::-;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;48882:13:::1;:21:::0;48822:106::o;46492:94::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45747:201::-;44910:6;;-1:-1:-1;;;;;44910:6:0;2918:10;45057:23;45049:69;;;;-1:-1:-1;;;45049:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45836:22:0;::::1;45828:73;;;::::0;-1:-1:-1;;;45828:73:0;;9499:2:1;45828:73:0::1;::::0;::::1;9481:21:1::0;9538:2;9518:18;;;9511:30;9577:34;9557:18;;;9550:62;-1:-1:-1;;;9628:18:1;;;9621:36;9674:19;;45828:73:0::1;9297:402:1::0;45828:73:0::1;45912:28;45931:8;45912:18;:28::i;:::-;45747:201:::0;:::o;31045:187::-;31102:4;31166:13;;31156:7;:23;31126:98;;;;-1:-1:-1;;31197:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31197:27:0;;;;31196:28;;31045:187::o;39215:196::-;39330:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39330:29:0;-1:-1:-1;;;;;39330:29:0;;;;;;;;;39375:28;;39330:24;;39375:28;;;;;;;39215:196;;;:::o;34158:2130::-;34273:35;34311:21;34324:7;34311:12;:21::i;:::-;34273:59;;34371:4;-1:-1:-1;;;;;34349:26:0;:13;:18;;;-1:-1:-1;;;;;34349:26:0;;34345:67;;34384:28;;-1:-1:-1;;;34384:28:0;;;;;;;;;;;34345:67;34425:22;2918:10;-1:-1:-1;;;;;34451:20:0;;;;:73;;-1:-1:-1;34488:36:0;34505:4;2918:10;29693:164;:::i;34488:36::-;34451:126;;;-1:-1:-1;2918:10:0;34541:20;34553:7;34541:11;:20::i;:::-;-1:-1:-1;;;;;34541:36:0;;34451:126;34425:153;;34596:17;34591:66;;34622:35;;-1:-1:-1;;;34622:35:0;;;;;;;;;;;34591:66;-1:-1:-1;;;;;34672:16:0;;34668:52;;34697:23;;-1:-1:-1;;;34697:23:0;;;;;;;;;;;34668:52;34841:35;34858:1;34862:7;34871:4;34841:8;:35::i;:::-;-1:-1:-1;;;;;35172:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35172:31:0;;;;;;;-1:-1:-1;;35172:31:0;;;;;;;35218:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35218:29:0;;;;;;;;;;;35298:20;;;:11;:20;;;;;;35333:18;;-1:-1:-1;;;;;;35366:49:0;;;;-1:-1:-1;;;35399:15:0;35366:49;;;;;;;;;;35689:11;;35749:24;;;;;35792:13;;35298:20;;35749:24;;35792:13;35788:384;;36002:13;;35987:11;:28;35983:174;;36040:20;;36109:28;;;;36083:54;;-1:-1:-1;;;36083:54:0;-1:-1:-1;;;;;;36083:54:0;;;-1:-1:-1;;;;;36040:20:0;;36083:54;;;;35983:174;35147:1036;;;36219:7;36215:2;-1:-1:-1;;;;;36200:27:0;36209:4;-1:-1:-1;;;;;36200:27:0;;;;;;;;;;;36238:42;34262:2026;;34158:2130;;;:::o;31240:104::-;31309:27;31319:2;31323:8;31309:27;;;;;;;;;;;;:9;:27::i;49508:162::-;49586:4;49610:52;49629:5;49636:19;;49657:4;49610:18;:52::i;26193:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26304:7:0;26387:13;;26380:4;:20;26349:886;;;26421:31;26455:17;;;:11;:17;;;;;;;;;26421:51;;;;;;;;;-1:-1:-1;;;;;26421:51:0;;;;-1:-1:-1;;;26421:51:0;;;;;;;;;;;-1:-1:-1;;;26421:51:0;;;;;;;;;;;;;;26491:729;;26541:14;;-1:-1:-1;;;;;26541:28:0;;26537:101;;26605:9;26193:1109;-1:-1:-1;;;26193:1109:0:o;26537:101::-;-1:-1:-1;;;26980:6:0;27025:17;;;;:11;:17;;;;;;;;;27013:29;;;;;;;;;-1:-1:-1;;;;;27013:29:0;;;;;-1:-1:-1;;;27013:29:0;;;;;;;;;;;-1:-1:-1;;;27013:29:0;;;;;;;;;;;;;27073:28;27069:109;;27141:9;26193:1109;-1:-1:-1;;;26193:1109:0:o;27069:109::-;26940:261;;;26402:833;26349:886;27263:31;;-1:-1:-1;;;27263:31:0;;;;;;;;;;;46108:191;46201:6;;;-1:-1:-1;;;;;46218:17:0;;;-1:-1:-1;;;;;;46218:17:0;;;;;;;46251:40;;46201:6;;;46218:17;46201:6;;46251:40;;46182:16;;46251:40;46171:128;46108:191;:::o;39903:667::-;40087:72;;-1:-1:-1;;;40087:72:0;;40066:4;;-1:-1:-1;;;;;40087:36:0;;;;;:72;;2918:10;;40138:4;;40144:7;;40153:5;;40087:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40087:72:0;;;;;;;;-1:-1:-1;;40087:72:0;;;;;;;;;;;;:::i;:::-;;;40083:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40321:13:0;;40317:235;;40367:40;;-1:-1:-1;;;40367:40:0;;;;;;;;;;;40317:235;40510:6;40504:13;40495:6;40491:2;40487:15;40480:38;40083:480;-1:-1:-1;;;;;;40206:55:0;-1:-1:-1;;;40206:55:0;;-1:-1:-1;40083:480:0;39903:667;;;;;;:::o;51274:97::-;51327:13;51356:9;51349:16;;;;;:::i;400:723::-;456:13;677:10;673:53;;-1:-1:-1;;704:10:0;;;;;;;;;;;;-1:-1:-1;;;704:10:0;;;;;400:723::o;673:53::-;751:5;736:12;792:78;799:9;;792:78;;825:8;;;;:::i;:::-;;-1:-1:-1;848:10:0;;-1:-1:-1;856:2:0;848:10;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;902:17:0;;880:39;;930:154;937:10;;930:154;;964:11;974:1;964:11;;:::i;:::-;;-1:-1:-1;1033:10:0;1041:2;1033:5;:10;:::i;:::-;1020:24;;:2;:24;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;990:56:0;;;;;;;;-1:-1:-1;1061:11:0;1070:2;1061:11;;:::i;:::-;;;930:154;;31707:163;31830:32;31836:2;31840:8;31850:5;31857:4;31830:5;:32::i;42961:190::-;43086:4;43139;43110:25;43123:5;43130:4;43110:12;:25::i;:::-;:33;;42961:190;-1:-1:-1;;;;42961:190:0:o;32129:1775::-;32268:20;32291:13;-1:-1:-1;;;;;32319:16:0;;32315:48;;32344:19;;-1:-1:-1;;;32344:19:0;;;;;;;;;;;32315:48;32378:13;32374:44;;32400:18;;-1:-1:-1;;;32400:18:0;;;;;;;;;;;32374:44;-1:-1:-1;;;;;32769:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32828:49:0;;32769:44;;;;;;;;32828:49;;;;-1:-1:-1;;32769:44:0;;;;;;32828:49;;;;;;;;;;;;;;;;32894:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32944:66:0;;;;-1:-1:-1;;;32994:15:0;32944:66;;;;;;;;;;32894:25;33091:23;;;33135:4;:23;;;;-1:-1:-1;;;;;;33143:13:0;;4580:19;:23;;33143:15;33131:641;;;33179:314;33210:38;;33235:12;;-1:-1:-1;;;;;33210:38:0;;;33227:1;;33210:38;;33227:1;;33210:38;33276:69;33315:1;33319:2;33323:14;;;;;;33339:5;33276:30;:69::i;:::-;33271:174;;33381:40;;-1:-1:-1;;;33381:40:0;;;;;;;;;;;33271:174;33488:3;33472:12;:19;;33179:314;;33574:12;33557:13;;:29;33553:43;;33588:8;;;33553:43;33131:641;;;33637:120;33668:40;;33693:14;;;;;-1:-1:-1;;;;;33668:40:0;;;33685:1;;33668:40;;33685:1;;33668:40;33752:3;33736:12;:19;;33637:120;;33131:641;-1:-1:-1;33786:13:0;:28;33836:60;30421:369;43513:675;43596:7;43639:4;43596:7;43654:497;43678:5;:12;43674:1;:16;43654:497;;;43712:20;43735:5;43741:1;43735:8;;;;;;;;:::i;:::-;;;;;;;43712:31;;43778:12;43762;:28;43758:382;;44264:13;44314:15;;;44350:4;44343:15;;;44397:4;44381:21;;43890:57;;43758:382;;;44264:13;44314:15;;;44350:4;44343:15;;;44397:4;44381:21;;44067:57;;43758:382;-1:-1:-1;43692:3:0;;;;:::i;:::-;;;;43654:497;;;-1:-1:-1;44168:12:0;43513:675;-1:-1:-1;;;43513:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:156::-;894:20;;954:4;943:16;;933:27;;923:55;;974:1;971;964:12;989:186;1048:6;1101:2;1089:9;1080:7;1076:23;1072:32;1069:52;;;1117:1;1114;1107:12;1069:52;1140:29;1159:9;1140:29;:::i;1180:260::-;1248:6;1256;1309:2;1297:9;1288:7;1284:23;1280:32;1277:52;;;1325:1;1322;1315:12;1277:52;1348:29;1367:9;1348:29;:::i;:::-;1338:39;;1396:38;1430:2;1419:9;1415:18;1396:38;:::i;:::-;1386:48;;1180:260;;;;;:::o;1445:328::-;1522:6;1530;1538;1591:2;1579:9;1570:7;1566:23;1562:32;1559:52;;;1607:1;1604;1597:12;1559:52;1630:29;1649:9;1630:29;:::i;:::-;1620:39;;1678:38;1712:2;1701:9;1697:18;1678:38;:::i;:::-;1668:48;;1763:2;1752:9;1748:18;1735:32;1725:42;;1445:328;;;;;:::o;1778:666::-;1873:6;1881;1889;1897;1950:3;1938:9;1929:7;1925:23;1921:33;1918:53;;;1967:1;1964;1957:12;1918:53;1990:29;2009:9;1990:29;:::i;:::-;1980:39;;2038:38;2072:2;2061:9;2057:18;2038:38;:::i;:::-;2028:48;;2123:2;2112:9;2108:18;2095:32;2085:42;;2178:2;2167:9;2163:18;2150:32;2205:18;2197:6;2194:30;2191:50;;;2237:1;2234;2227:12;2191:50;2260:22;;2313:4;2305:13;;2301:27;-1:-1:-1;2291:55:1;;2342:1;2339;2332:12;2291:55;2365:73;2430:7;2425:2;2412:16;2407:2;2403;2399:11;2365:73;:::i;:::-;2355:83;;;1778:666;;;;;;;:::o;2449:347::-;2514:6;2522;2575:2;2563:9;2554:7;2550:23;2546:32;2543:52;;;2591:1;2588;2581:12;2543:52;2614:29;2633:9;2614:29;:::i;:::-;2604:39;;2693:2;2682:9;2678:18;2665:32;2740:5;2733:13;2726:21;2719:5;2716:32;2706:60;;2762:1;2759;2752:12;2706:60;2785:5;2775:15;;;2449:347;;;;;:::o;2801:254::-;2869:6;2877;2930:2;2918:9;2909:7;2905:23;2901:32;2898:52;;;2946:1;2943;2936:12;2898:52;2969:29;2988:9;2969:29;:::i;:::-;2959:39;3045:2;3030:18;;;;3017:32;;-1:-1:-1;;;2801:254:1:o;3060:180::-;3119:6;3172:2;3160:9;3151:7;3147:23;3143:32;3140:52;;;3188:1;3185;3178:12;3140:52;-1:-1:-1;3211:23:1;;3060:180;-1:-1:-1;3060:180:1:o;3245:245::-;3303:6;3356:2;3344:9;3335:7;3331:23;3327:32;3324:52;;;3372:1;3369;3362:12;3324:52;3411:9;3398:23;3430:30;3454:5;3430:30;:::i;3495:249::-;3564:6;3617:2;3605:9;3596:7;3592:23;3588:32;3585:52;;;3633:1;3630;3623:12;3585:52;3665:9;3659:16;3684:30;3708:5;3684:30;:::i;3749:450::-;3818:6;3871:2;3859:9;3850:7;3846:23;3842:32;3839:52;;;3887:1;3884;3877:12;3839:52;3927:9;3914:23;3960:18;3952:6;3949:30;3946:50;;;3992:1;3989;3982:12;3946:50;4015:22;;4068:4;4060:13;;4056:27;-1:-1:-1;4046:55:1;;4097:1;4094;4087:12;4046:55;4120:73;4185:7;4180:2;4167:16;4162:2;4158;4154:11;4120:73;:::i;4204:346::-;4271:6;4279;4332:2;4320:9;4311:7;4307:23;4303:32;4300:52;;;4348:1;4345;4338:12;4300:52;4387:9;4374:23;4437:6;4430:5;4426:18;4419:5;4416:29;4406:57;;4459:1;4456;4449:12;4740:182;4797:6;4850:2;4838:9;4829:7;4825:23;4821:32;4818:52;;;4866:1;4863;4856:12;4818:52;4889:27;4906:9;4889:27;:::i;4927:685::-;5020:6;5028;5036;5089:2;5077:9;5068:7;5064:23;5060:32;5057:52;;;5105:1;5102;5095:12;5057:52;5128:27;5145:9;5128:27;:::i;:::-;5118:37;;5206:2;5195:9;5191:18;5178:32;5229:18;5270:2;5262:6;5259:14;5256:34;;;5286:1;5283;5276:12;5256:34;5324:6;5313:9;5309:22;5299:32;;5369:7;5362:4;5358:2;5354:13;5350:27;5340:55;;5391:1;5388;5381:12;5340:55;5431:2;5418:16;5457:2;5449:6;5446:14;5443:34;;;5473:1;5470;5463:12;5443:34;5526:7;5521:2;5511:6;5508:1;5504:14;5500:2;5496:23;5492:32;5489:45;5486:65;;;5547:1;5544;5537:12;5486:65;5578:2;5574;5570:11;5560:21;;5600:6;5590:16;;;;;4927:685;;;;;:::o;5617:257::-;5658:3;5696:5;5690:12;5723:6;5718:3;5711:19;5739:63;5795:6;5788:4;5783:3;5779:14;5772:4;5765:5;5761:16;5739:63;:::i;:::-;5856:2;5835:15;-1:-1:-1;;5831:29:1;5822:39;;;;5863:4;5818:50;;5617:257;-1:-1:-1;;5617:257:1:o;6113:1527::-;6337:3;6375:6;6369:13;6401:4;6414:51;6458:6;6453:3;6448:2;6440:6;6436:15;6414:51;:::i;:::-;6528:13;;6487:16;;;;6550:55;6528:13;6487:16;6572:15;;;6550:55;:::i;:::-;6694:13;;6627:20;;;6667:1;;6754;6776:18;;;;6829;;;;6856:93;;6934:4;6924:8;6920:19;6908:31;;6856:93;6997:2;6987:8;6984:16;6964:18;6961:40;6958:167;;;-1:-1:-1;;;7024:33:1;;7080:4;7077:1;7070:15;7110:4;7031:3;7098:17;6958:167;7141:18;7168:110;;;;7292:1;7287:328;;;;7134:481;;7168:110;-1:-1:-1;;7203:24:1;;7189:39;;7248:20;;;;-1:-1:-1;7168:110:1;;7287:328;12568:1;12561:14;;;12605:4;12592:18;;7382:1;7396:169;7410:8;7407:1;7404:15;7396:169;;;7492:14;;7477:13;;;7470:37;7535:16;;;;7427:10;;7396:169;;;7400:3;;7596:8;7589:5;7585:20;7578:27;;7134:481;-1:-1:-1;7631:3:1;;6113:1527;-1:-1:-1;;;;;;;;;;;6113:1527:1:o;7853:488::-;-1:-1:-1;;;;;8122:15:1;;;8104:34;;8174:15;;8169:2;8154:18;;8147:43;8221:2;8206:18;;8199:34;;;8269:3;8264:2;8249:18;;8242:31;;;8047:4;;8290:45;;8315:19;;8307:6;8290:45;:::i;:::-;8282:53;7853:488;-1:-1:-1;;;;;;7853:488:1:o;8720:219::-;8869:2;8858:9;8851:21;8832:4;8889:44;8929:2;8918:9;8914:18;8906:6;8889:44;:::i;9704:400::-;9906:2;9888:21;;;9945:2;9925:18;;;9918:30;9984:34;9979:2;9964:18;;9957:62;-1:-1:-1;;;10050:2:1;10035:18;;10028:34;10094:3;10079:19;;9704:400::o;10109:356::-;10311:2;10293:21;;;10330:18;;;10323:30;10389:34;10384:2;10369:18;;10362:62;10456:2;10441:18;;10109:356::o;11235:343::-;11437:2;11419:21;;;11476:2;11456:18;;;11449:30;-1:-1:-1;;;11510:2:1;11495:18;;11488:49;11569:2;11554:18;;11235:343::o;12621:224::-;12660:3;12688:6;12721:2;12718:1;12714:10;12751:2;12748:1;12744:10;12782:3;12778:2;12774:12;12769:3;12766:21;12763:47;;;12790:18;;:::i;:::-;12826:13;;12621:224;-1:-1:-1;;;;12621:224:1:o;12850:128::-;12890:3;12921:1;12917:6;12914:1;12911:13;12908:39;;;12927:18;;:::i;:::-;-1:-1:-1;12963:9:1;;12850:128::o;12983:204::-;13021:3;13057:4;13054:1;13050:12;13089:4;13086:1;13082:12;13124:3;13118:4;13114:14;13109:3;13106:23;13103:49;;;13132:18;;:::i;:::-;13168:13;;12983:204;-1:-1:-1;;;12983:204:1:o;13192:120::-;13232:1;13258;13248:35;;13263:18;;:::i;:::-;-1:-1:-1;13297:9:1;;13192:120::o;13317:168::-;13357:7;13423:1;13419;13415:6;13411:14;13408:1;13405:21;13400:1;13393:9;13386:17;13382:45;13379:71;;;13430:18;;:::i;:::-;-1:-1:-1;13470:9:1;;13317:168::o;13490:125::-;13530:4;13558:1;13555;13552:8;13549:34;;;13563:18;;:::i;:::-;-1:-1:-1;13600:9:1;;13490:125::o;13620:258::-;13692:1;13702:113;13716:6;13713:1;13710:13;13702:113;;;13792:11;;;13786:18;13773:11;;;13766:39;13738:2;13731:10;13702:113;;;13833:6;13830:1;13827:13;13824:48;;;-1:-1:-1;;13868:1:1;13850:16;;13843:27;13620:258::o;13883:380::-;13962:1;13958:12;;;;14005;;;14026:61;;14080:4;14072:6;14068:17;14058:27;;14026:61;14133:2;14125:6;14122:14;14102:18;14099:38;14096:161;;;14179:10;14174:3;14170:20;14167:1;14160:31;14214:4;14211:1;14204:15;14242:4;14239:1;14232:15;14096:161;;13883:380;;;:::o;14268:135::-;14307:3;-1:-1:-1;;14328:17:1;;14325:43;;;14348:18;;:::i;:::-;-1:-1:-1;14395:1:1;14384:13;;14268:135::o;14408:112::-;14440:1;14466;14456:35;;14471:18;;:::i;:::-;-1:-1:-1;14505:9:1;;14408:112::o;14525:127::-;14586:10;14581:3;14577:20;14574:1;14567:31;14617:4;14614:1;14607:15;14641:4;14638:1;14631:15;14657:127;14718:10;14713:3;14709:20;14706:1;14699:31;14749:4;14746:1;14739:15;14773:4;14770:1;14763:15;14789:127;14850:10;14845:3;14841:20;14838:1;14831:31;14881:4;14878:1;14871:15;14905:4;14902:1;14895:15;14921:127;14982:10;14977:3;14973:20;14970:1;14963:31;15013:4;15010:1;15003:15;15037:4;15034:1;15027:15;15053:131;-1:-1:-1;;;;;;15127:32:1;;15117:43;;15107:71;;15174:1;15171;15164:12
Swarm Source
ipfs://89af3324300a896861d96383a744e5eea4f5d218dfeb552a220d53ca6ea0a8f9
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.