ERC-721
Overview
Max Total Supply
3,000 WLB
Holders
125
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WENLAMBBROS
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-30 */ // 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 WENLAMBBROS is ERC721A, Ownable { using Strings for uint256; string private uriPrefix ; string private uriSuffix = ".json"; string public hiddenURL = "ipfs://QmYrX53SLRXiJ1hHkJGERaYsr4aKzkSLoeEzXeHZtdxch5/Reveal.json" ; uint256 public cost = 0.06 ether; uint256 public whiteListCost = 0.05 ether; uint16 public constant maxSupply = 3000; uint8 public maxMintAmountPerWallet = 10; bool public WLpaused = true; bool public paused = true; bool public reveal =false; mapping (address => uint8) public NFTPerWLAddress; mapping (address => uint8) public NFTPerAddress; uint8 public maxWLMintAmountPerWallet = 3; bytes32 public whitelistMerkleRoot = 0x0cc622db75575674b2bc8dfe29c3ac04df24f1567b769fa31f6d4ef384ea66d2; constructor() ERC721A("WEN LAMB BROS", "WLB") { } function mint(uint8 _mintAmount) external payable { uint totalSupply = totalSupply(); require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply."); uint8 _nftperaddress = NFTPerAddress[msg.sender]; require(_mintAmount + _nftperaddress <= maxMintAmountPerWallet, "Exceeds max per transaction."); require(!paused, "The contract is paused!"); require(msg.value == cost * _mintAmount, "Insufficient funds!"); _safeMint(msg.sender , _mintAmount); NFTPerAddress[msg.sender] = _mintAmount + _nftperaddress; delete totalSupply; delete _mintAmount; } function Reserve(uint8 _mintAmount, address _receiver) external onlyOwner { uint totalSupply = totalSupply(); require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function Airdrop(uint16 _mintAmount, address _receiver) external onlyOwner { uint totalSupply = totalSupply(); require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function burn(uint _tokenID) external onlyOwner { _burn(_tokenID); } 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 setMaxTxPerWlAddress(uint8 _limit) external onlyOwner{ maxWLMintAmountPerWallet = _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]; require(_verify(leafnode , merkleProof ), "Invalid merkle proof"); require (_txPerAddress + _mintAmount <= maxWLMintAmountPerWallet, "Exceeds max tx per address"); require(!WLpaused, "Whitelist minting is over!"); require(msg.value == whiteListCost * _mintAmount, "Insufficient funds!"); uint totalSupply = totalSupply(); _safeMint(msg.sender , _mintAmount); NFTPerWLAddress[msg.sender] =_txPerAddress + _mintAmount; delete totalSupply; 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 setMaxMintAmountPerWallet(uint8 _maxtx) external onlyOwner{ maxMintAmountPerWallet = _maxtx; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } 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":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"uint8","name":"_mintAmount","type":"uint8"},{"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":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"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":[],"name":"maxWLMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxTxPerWlAddress","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
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000191565b5060405180608001604052806041815260200162002a096041913980516200005991600b9160209091019062000191565b5066d529ae9e860000600c5566b1a2bc2ec50000600d55600e805463ffffffff19166201010a1790556011805460ff191660031790557f0cc622db75575674b2bc8dfe29c3ac04df24f1567b769fa31f6d4ef384ea66d2601255348015620000c057600080fd5b50604080518082018252600d81526c57454e204c414d422042524f5360981b6020808301918252835180850190945260038452622ba62160e91b908401528151919291620001119160029162000191565b5080516200012790600390602084019062000191565b5050600080555062000139336200013f565b62000274565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019f9062000237565b90600052602060002090601f016020900481019282620001c357600085556200020e565b82601f10620001de57805160ff19168380011785556200020e565b828001600101855582156200020e579182015b828111156200020e578251825591602001919060010190620001f1565b506200021c92915062000220565b5090565b5b808211156200021c576000815560010162000221565b600181811c908216806200024c57607f821691505b602082108114156200026e57634e487b7160e01b600052602260045260246000fd5b50919050565b61278580620002846000396000f3fe6080604052600436106102725760003560e01c806363937fe01161014f578063a475b5dd116100c1578063d1d192131161007a578063d1d1921314610729578063d5abeb0114610749578063dbd37cf414610772578063e985e9c5146107a2578063eef440af146107eb578063f2fde38b1461080057600080fd5b8063a475b5dd14610678578063aa98e0c614610699578063b88d4fde146106af578063bc951b91146106cf578063bd32fb66146106e9578063c87b56dd1461070957600080fd5b80637f6e9093116101135780637f6e9093146105d05780638da5cb5b146105ef5780639257e0441461060d57806395d89b411461062357806399f517c214610638578063a22cb4651461065857600080fd5b806363937fe0146105485780636ecd23061461056857806370a082311461057b578063715018a61461059b5780637ec4a659146105b057600080fd5b806337a66d85116101e857806344a0d68a116101ac57806344a0d68a14610479578063506c20301461049957806358381669146104c557806359bf5dbb146104d85780635c975abb146105085780636352211e1461052857600080fd5b806337a66d85146103fa5780633bd649681461040f5780633ccfd60b1461042457806342842e0e1461043957806342966c681461045957600080fd5b80631067fcc71161023a5780631067fcc71461033d57806313faede61461035d578063169e490d1461038157806318160ddd146103a157806323b872dd146103ba57806328b60d15146103da57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063093cfa6314610306578063095ea7b31461031d575b600080fd5b34801561028357600080fd5b5061029761029236600461229f565b610820565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610872565b6040516102a3919061252f565b3480156102da57600080fd5b506102ee6102e9366004612286565b610904565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061031b610948565b005b34801561032957600080fd5b5061031b61033836600461225c565b610998565b34801561034957600080fd5b5061031b6103583660046122d9565b610a26565b34801561036957600080fd5b50610373600c5481565b6040519081526020016102a3565b34801561038d57600080fd5b5061031b61039c366004612361565b610a67565b3480156103ad57600080fd5b5060015460005403610373565b3480156103c657600080fd5b5061031b6103d5366004612169565b610add565b3480156103e657600080fd5b5061031b6103f5366004612346565b610ae8565b34801561040657600080fd5b5061031b610b28565b34801561041b57600080fd5b5061031b610b7b565b34801561043057600080fd5b5061031b610bc6565b34801561044557600080fd5b5061031b610454366004612169565b610c1f565b34801561046557600080fd5b5061031b610474366004612286565b610c3a565b34801561048557600080fd5b5061031b610494366004612286565b610c70565b3480156104a557600080fd5b506011546104b39060ff1681565b60405160ff90911681526020016102a3565b61031b6104d336600461237d565b610c9f565b3480156104e457600080fd5b506104b36104f336600461211b565b600f6020526000908152604090205460ff1681565b34801561051457600080fd5b50600e546102979062010000900460ff1681565b34801561053457600080fd5b506102ee610543366004612286565b610ece565b34801561055457600080fd5b5061031b610563366004612346565b610ee0565b61031b610576366004612346565b610f20565b34801561058757600080fd5b5061037361059636600461211b565b6110bf565b3480156105a757600080fd5b5061031b61110d565b3480156105bc57600080fd5b5061031b6105cb3660046122d9565b611143565b3480156105dc57600080fd5b50600e5461029790610100900460ff1681565b3480156105fb57600080fd5b506008546001600160a01b03166102ee565b34801561061957600080fd5b50610373600d5481565b34801561062f57600080fd5b506102c1611180565b34801561064457600080fd5b5061031b610653366004612321565b61118f565b34801561066457600080fd5b5061031b610673366004612220565b611207565b34801561068457600080fd5b50600e54610297906301000000900460ff1681565b3480156106a557600080fd5b5061037360125481565b3480156106bb57600080fd5b5061031b6106ca3660046121a5565b61129d565b3480156106db57600080fd5b50600e546104b39060ff1681565b3480156106f557600080fd5b5061031b610704366004612286565b6112ee565b34801561071557600080fd5b506102c1610724366004612286565b61131d565b34801561073557600080fd5b5061031b610744366004612286565b61148e565b34801561075557600080fd5b5061075f610bb881565b60405161ffff90911681526020016102a3565b34801561077e57600080fd5b506104b361078d36600461211b565b60106020526000908152604090205460ff1681565b3480156107ae57600080fd5b506102976107bd366004612136565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107f757600080fd5b506102c16114bd565b34801561080c57600080fd5b5061031b61081b36600461211b565b61154b565b60006001600160e01b031982166380ac58cd60e01b148061085157506001600160e01b03198216635b5e139f60e01b145b8061086c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461088190612657565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad90612657565b80156108fa5780601f106108cf576101008083540402835291602001916108fa565b820191906000526020600020905b8154815290600101906020018083116108dd57829003601f168201915b5050505050905090565b600061090f826115e3565b61092c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b0316331461097b5760405162461bcd60e51b81526004016109729061256f565b60405180910390fd5b600e805461ff001981166101009182900460ff1615909102179055565b60006109a382610ece565b9050806001600160a01b0316836001600160a01b031614156109d85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109f857506109f681336107bd565b155b15610a16576040516367d9dca160e11b815260040160405180910390fd5b610a2183838361160e565b505050565b6008546001600160a01b03163314610a505760405162461bcd60e51b81526004016109729061256f565b8051610a6390600b906020840190611fe0565b5050565b6008546001600160a01b03163314610a915760405162461bcd60e51b81526004016109729061256f565b6000610aa06001546000540390565b9050610bb8610ab260ff8516836125a4565b1115610ad05760405162461bcd60e51b815260040161097290612542565b610a21828460ff1661166a565b610a21838383611684565b6008546001600160a01b03163314610b125760405162461bcd60e51b81526004016109729061256f565b600e805460ff191660ff92909216919091179055565b6008546001600160a01b03163314610b525760405162461bcd60e51b81526004016109729061256f565b600e805461ff001960ff620100008084049190911615021662ffff001990911617610100179055565b6008546001600160a01b03163314610ba55760405162461bcd60e51b81526004016109729061256f565b600e805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b03163314610bf05760405162461bcd60e51b81526004016109729061256f565b6040514790339082156108fc029083906000818181858888f19350505050158015610a63573d6000803e3d6000fd5b610a218383836040518060200160405280600081525061129d565b6008546001600160a01b03163314610c645760405162461bcd60e51b81526004016109729061256f565b610c6d81611860565b50565b6008546001600160a01b03163314610c9a5760405162461bcd60e51b81526004016109729061256f565b600c55565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090336000908152600f6020908152604091829020548251868302818101840190945286815293945060ff1692610d2c9285928891889182919085019084908082843760009201919091525061186b92505050565b610d6f5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610972565b60115460ff16610d7f86836125bc565b60ff161115610dd05760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d61782074782070657220616464726573730000000000006044820152606401610972565b600e54610100900460ff1615610e285760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f766572210000000000006044820152606401610972565b8460ff16600d54610e3991906125f5565b3414610e7d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610972565b6000610e8c6001546000540390565b9050610e9b338760ff1661166a565b610ea586836125bc565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050505050565b6000610ed98261187a565b5192915050565b6008546001600160a01b03163314610f0a5760405162461bcd60e51b81526004016109729061256f565b6011805460ff191660ff92909216919091179055565b6000610f2f6001546000540390565b9050610bb8610f4160ff8416836125a4565b1115610f5f5760405162461bcd60e51b815260040161097290612542565b33600090815260106020526040902054600e5460ff9182169116610f8382856125bc565b60ff161115610fd45760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610972565b600e5462010000900460ff161561102d5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610972565b8260ff16600c5461103e91906125f5565b34146110825760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610972565b61108f338460ff1661166a565b61109981846125bc565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b0382166110e8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146111375760405162461bcd60e51b81526004016109729061256f565b6111416000611994565b565b6008546001600160a01b0316331461116d5760405162461bcd60e51b81526004016109729061256f565b8051610a63906009906020840190611fe0565b60606003805461088190612657565b6008546001600160a01b031633146111b95760405162461bcd60e51b81526004016109729061256f565b60006111c86001546000540390565b9050610bb86111db61ffff8516836125a4565b11156111f95760405162461bcd60e51b815260040161097290612542565b610a21828461ffff1661166a565b6001600160a01b0382163314156112315760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112a8848484611684565b6001600160a01b0383163b151580156112ca57506112c8848484846119e6565b155b156112e8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146113185760405162461bcd60e51b81526004016109729061256f565b601255565b6060611328826115e3565b61138c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610972565b600e546301000000900460ff1661142f57600b80546113aa90612657565b80601f01602080910402602001604051908101604052809291908181526020018280546113d690612657565b80156114235780601f106113f857610100808354040283529160200191611423565b820191906000526020600020905b81548152906001019060200180831161140657829003601f168201915b50505050509050919050565b6000611439611ade565b905060008151116114595760405180602001604052806000815250611487565b8061146384611aed565b600a6040516020016114779392919061242e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114b85760405162461bcd60e51b81526004016109729061256f565b600d55565b600b80546114ca90612657565b80601f01602080910402602001604051908101604052809291908181526020018280546114f690612657565b80156115435780601f1061151857610100808354040283529160200191611543565b820191906000526020600020905b81548152906001019060200180831161152657829003601f168201915b505050505081565b6008546001600160a01b031633146115755760405162461bcd60e51b81526004016109729061256f565b6001600160a01b0381166115da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610972565b610c6d81611994565b600080548210801561086c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a63828260405180602001604052806000815250611bea565b600061168f8261187a565b9050836001600160a01b031681600001516001600160a01b0316146116c65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116e457506116e485336107bd565b806116ff5750336116f484610904565b6001600160a01b0316145b90508061171f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661174657604051633a954ecd60e21b815260040160405180910390fd5b6117526000848761160e565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661182657600054821461182657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061273083398151915260405160405180910390a45b5050505050565b610c6d816000611bf7565b60006114878260125485611daa565b60408051606081018252600080825260208201819052918101919091528160005481101561197b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119795780516001600160a01b031615611910579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611974579392505050565b611910565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a1b9033908990889088906004016124f2565b602060405180830381600087803b158015611a3557600080fd5b505af1925050508015611a65575060408051601f3d908101601f19168201909252611a62918101906122bc565b60015b611ac0573d808015611a93576040519150601f19603f3d011682016040523d82523d6000602084013e611a98565b606091505b508051611ab8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461088190612657565b606081611b115750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b3b5780611b2581612692565b9150611b349050600a836125e1565b9150611b15565b6000816001600160401b03811115611b5557611b55612703565b6040519080825280601f01601f191660200182016040528015611b7f576020820181803683370190505b5090505b8415611ad657611b94600183612614565b9150611ba1600a866126ad565b611bac9060306125a4565b60f81b818381518110611bc157611bc16126ed565b60200101906001600160f81b031916908160001a905350611be3600a866125e1565b9450611b83565b610a218383836001611dc0565b6000611c028361187a565b80519091508215611c68576000336001600160a01b0383161480611c2b5750611c2b82336107bd565b80611c46575033611c3b86610904565b6001600160a01b0316145b905080611c6657604051632ce44b5f60e11b815260040160405180910390fd5b505b611c746000858361160e565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611d72576000548214611d7257805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612730833981519152908390a4505060018054810190555050565b600082611db78584611f6c565b14949350505050565b6000546001600160a01b038516611de957604051622e076360e81b815260040160405180910390fd5b83611e075760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611eb857506001600160a01b0387163b15155b15611f2f575b60405182906001600160a01b03891690600090600080516020612730833981519152908290a4611ef760008884806001019550886119e6565b611f14576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ebe578260005414611f2a57600080fd5b611f63565b5b6040516001830192906001600160a01b03891690600090600080516020612730833981519152908290a480821415611f30575b50600055611859565b600081815b8451811015611fd8576000858281518110611f8e57611f8e6126ed565b60200260200101519050808311611fb45760008381526020829052604090209250611fc5565b600081815260208490526040902092505b5080611fd081612692565b915050611f71565b509392505050565b828054611fec90612657565b90600052602060002090601f01602090048101928261200e5760008555612054565b82601f1061202757805160ff1916838001178555612054565b82800160010185558215612054579182015b82811115612054578251825591602001919060010190612039565b50612060929150612064565b5090565b5b808211156120605760008155600101612065565b60006001600160401b038084111561209357612093612703565b604051601f8501601f19908116603f011681019082821181831017156120bb576120bb612703565b816040528093508581528686860111156120d457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461210557600080fd5b919050565b803560ff8116811461210557600080fd5b60006020828403121561212d57600080fd5b611487826120ee565b6000806040838503121561214957600080fd5b612152836120ee565b9150612160602084016120ee565b90509250929050565b60008060006060848603121561217e57600080fd5b612187846120ee565b9250612195602085016120ee565b9150604084013590509250925092565b600080600080608085870312156121bb57600080fd5b6121c4856120ee565b93506121d2602086016120ee565b92506040850135915060608501356001600160401b038111156121f457600080fd5b8501601f8101871361220557600080fd5b61221487823560208401612079565b91505092959194509250565b6000806040838503121561223357600080fd5b61223c836120ee565b91506020830135801515811461225157600080fd5b809150509250929050565b6000806040838503121561226f57600080fd5b612278836120ee565b946020939093013593505050565b60006020828403121561229857600080fd5b5035919050565b6000602082840312156122b157600080fd5b813561148781612719565b6000602082840312156122ce57600080fd5b815161148781612719565b6000602082840312156122eb57600080fd5b81356001600160401b0381111561230157600080fd5b8201601f8101841361231257600080fd5b611ad684823560208401612079565b6000806040838503121561233457600080fd5b823561ffff8116811461215257600080fd5b60006020828403121561235857600080fd5b6114878261210a565b6000806040838503121561237457600080fd5b6121528361210a565b60008060006040848603121561239257600080fd5b61239b8461210a565b925060208401356001600160401b03808211156123b757600080fd5b818601915086601f8301126123cb57600080fd5b8135818111156123da57600080fd5b8760208260051b85010111156123ef57600080fd5b6020830194508093505050509250925092565b6000815180845261241a81602086016020860161262b565b601f01601f19169290920160200192915050565b6000845160206124418285838a0161262b565b8551918401916124548184848a0161262b565b8554920191600090600181811c908083168061247157607f831692505b85831081141561248f57634e487b7160e01b85526022600452602485fd5b8080156124a357600181146124b4576124e1565b60ff198516885283880195506124e1565b60008b81526020902060005b858110156124d95781548a8201529084019088016124c0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061252590830184612402565b9695505050505050565b6020815260006114876020830184612402565b60208082526013908201527222bc31b2b232b99036b0bc1039bab838363c9760691b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156125b7576125b76126c1565b500190565b600060ff821660ff84168060ff038211156125d9576125d96126c1565b019392505050565b6000826125f0576125f06126d7565b500490565b600081600019048311821515161561260f5761260f6126c1565b500290565b600082821015612626576126266126c1565b500390565b60005b8381101561264657818101518382015260200161262e565b838111156112e85750506000910152565b600181811c9082168061266b57607f821691505b6020821081141561268c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126a6576126a66126c1565b5060010190565b6000826126bc576126bc6126d7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c6d57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220b872bbf27d8ce9365bd239fc45b16354748a083a2c02cbe391a7be46555e0b9864736f6c63430008070033697066733a2f2f516d5972583533534c5258694a3168486b4a4745526159737234614b7a6b534c6f65457a5865485a7464786368352f52657665616c2e6a736f6e
Deployed Bytecode
0x6080604052600436106102725760003560e01c806363937fe01161014f578063a475b5dd116100c1578063d1d192131161007a578063d1d1921314610729578063d5abeb0114610749578063dbd37cf414610772578063e985e9c5146107a2578063eef440af146107eb578063f2fde38b1461080057600080fd5b8063a475b5dd14610678578063aa98e0c614610699578063b88d4fde146106af578063bc951b91146106cf578063bd32fb66146106e9578063c87b56dd1461070957600080fd5b80637f6e9093116101135780637f6e9093146105d05780638da5cb5b146105ef5780639257e0441461060d57806395d89b411461062357806399f517c214610638578063a22cb4651461065857600080fd5b806363937fe0146105485780636ecd23061461056857806370a082311461057b578063715018a61461059b5780637ec4a659146105b057600080fd5b806337a66d85116101e857806344a0d68a116101ac57806344a0d68a14610479578063506c20301461049957806358381669146104c557806359bf5dbb146104d85780635c975abb146105085780636352211e1461052857600080fd5b806337a66d85146103fa5780633bd649681461040f5780633ccfd60b1461042457806342842e0e1461043957806342966c681461045957600080fd5b80631067fcc71161023a5780631067fcc71461033d57806313faede61461035d578063169e490d1461038157806318160ddd146103a157806323b872dd146103ba57806328b60d15146103da57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063093cfa6314610306578063095ea7b31461031d575b600080fd5b34801561028357600080fd5b5061029761029236600461229f565b610820565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610872565b6040516102a3919061252f565b3480156102da57600080fd5b506102ee6102e9366004612286565b610904565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061031b610948565b005b34801561032957600080fd5b5061031b61033836600461225c565b610998565b34801561034957600080fd5b5061031b6103583660046122d9565b610a26565b34801561036957600080fd5b50610373600c5481565b6040519081526020016102a3565b34801561038d57600080fd5b5061031b61039c366004612361565b610a67565b3480156103ad57600080fd5b5060015460005403610373565b3480156103c657600080fd5b5061031b6103d5366004612169565b610add565b3480156103e657600080fd5b5061031b6103f5366004612346565b610ae8565b34801561040657600080fd5b5061031b610b28565b34801561041b57600080fd5b5061031b610b7b565b34801561043057600080fd5b5061031b610bc6565b34801561044557600080fd5b5061031b610454366004612169565b610c1f565b34801561046557600080fd5b5061031b610474366004612286565b610c3a565b34801561048557600080fd5b5061031b610494366004612286565b610c70565b3480156104a557600080fd5b506011546104b39060ff1681565b60405160ff90911681526020016102a3565b61031b6104d336600461237d565b610c9f565b3480156104e457600080fd5b506104b36104f336600461211b565b600f6020526000908152604090205460ff1681565b34801561051457600080fd5b50600e546102979062010000900460ff1681565b34801561053457600080fd5b506102ee610543366004612286565b610ece565b34801561055457600080fd5b5061031b610563366004612346565b610ee0565b61031b610576366004612346565b610f20565b34801561058757600080fd5b5061037361059636600461211b565b6110bf565b3480156105a757600080fd5b5061031b61110d565b3480156105bc57600080fd5b5061031b6105cb3660046122d9565b611143565b3480156105dc57600080fd5b50600e5461029790610100900460ff1681565b3480156105fb57600080fd5b506008546001600160a01b03166102ee565b34801561061957600080fd5b50610373600d5481565b34801561062f57600080fd5b506102c1611180565b34801561064457600080fd5b5061031b610653366004612321565b61118f565b34801561066457600080fd5b5061031b610673366004612220565b611207565b34801561068457600080fd5b50600e54610297906301000000900460ff1681565b3480156106a557600080fd5b5061037360125481565b3480156106bb57600080fd5b5061031b6106ca3660046121a5565b61129d565b3480156106db57600080fd5b50600e546104b39060ff1681565b3480156106f557600080fd5b5061031b610704366004612286565b6112ee565b34801561071557600080fd5b506102c1610724366004612286565b61131d565b34801561073557600080fd5b5061031b610744366004612286565b61148e565b34801561075557600080fd5b5061075f610bb881565b60405161ffff90911681526020016102a3565b34801561077e57600080fd5b506104b361078d36600461211b565b60106020526000908152604090205460ff1681565b3480156107ae57600080fd5b506102976107bd366004612136565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107f757600080fd5b506102c16114bd565b34801561080c57600080fd5b5061031b61081b36600461211b565b61154b565b60006001600160e01b031982166380ac58cd60e01b148061085157506001600160e01b03198216635b5e139f60e01b145b8061086c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461088190612657565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad90612657565b80156108fa5780601f106108cf576101008083540402835291602001916108fa565b820191906000526020600020905b8154815290600101906020018083116108dd57829003601f168201915b5050505050905090565b600061090f826115e3565b61092c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b0316331461097b5760405162461bcd60e51b81526004016109729061256f565b60405180910390fd5b600e805461ff001981166101009182900460ff1615909102179055565b60006109a382610ece565b9050806001600160a01b0316836001600160a01b031614156109d85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109f857506109f681336107bd565b155b15610a16576040516367d9dca160e11b815260040160405180910390fd5b610a2183838361160e565b505050565b6008546001600160a01b03163314610a505760405162461bcd60e51b81526004016109729061256f565b8051610a6390600b906020840190611fe0565b5050565b6008546001600160a01b03163314610a915760405162461bcd60e51b81526004016109729061256f565b6000610aa06001546000540390565b9050610bb8610ab260ff8516836125a4565b1115610ad05760405162461bcd60e51b815260040161097290612542565b610a21828460ff1661166a565b610a21838383611684565b6008546001600160a01b03163314610b125760405162461bcd60e51b81526004016109729061256f565b600e805460ff191660ff92909216919091179055565b6008546001600160a01b03163314610b525760405162461bcd60e51b81526004016109729061256f565b600e805461ff001960ff620100008084049190911615021662ffff001990911617610100179055565b6008546001600160a01b03163314610ba55760405162461bcd60e51b81526004016109729061256f565b600e805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b03163314610bf05760405162461bcd60e51b81526004016109729061256f565b6040514790339082156108fc029083906000818181858888f19350505050158015610a63573d6000803e3d6000fd5b610a218383836040518060200160405280600081525061129d565b6008546001600160a01b03163314610c645760405162461bcd60e51b81526004016109729061256f565b610c6d81611860565b50565b6008546001600160a01b03163314610c9a5760405162461bcd60e51b81526004016109729061256f565b600c55565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090336000908152600f6020908152604091829020548251868302818101840190945286815293945060ff1692610d2c9285928891889182919085019084908082843760009201919091525061186b92505050565b610d6f5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610972565b60115460ff16610d7f86836125bc565b60ff161115610dd05760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d61782074782070657220616464726573730000000000006044820152606401610972565b600e54610100900460ff1615610e285760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f766572210000000000006044820152606401610972565b8460ff16600d54610e3991906125f5565b3414610e7d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610972565b6000610e8c6001546000540390565b9050610e9b338760ff1661166a565b610ea586836125bc565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050505050565b6000610ed98261187a565b5192915050565b6008546001600160a01b03163314610f0a5760405162461bcd60e51b81526004016109729061256f565b6011805460ff191660ff92909216919091179055565b6000610f2f6001546000540390565b9050610bb8610f4160ff8416836125a4565b1115610f5f5760405162461bcd60e51b815260040161097290612542565b33600090815260106020526040902054600e5460ff9182169116610f8382856125bc565b60ff161115610fd45760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610972565b600e5462010000900460ff161561102d5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610972565b8260ff16600c5461103e91906125f5565b34146110825760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610972565b61108f338460ff1661166a565b61109981846125bc565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b0382166110e8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146111375760405162461bcd60e51b81526004016109729061256f565b6111416000611994565b565b6008546001600160a01b0316331461116d5760405162461bcd60e51b81526004016109729061256f565b8051610a63906009906020840190611fe0565b60606003805461088190612657565b6008546001600160a01b031633146111b95760405162461bcd60e51b81526004016109729061256f565b60006111c86001546000540390565b9050610bb86111db61ffff8516836125a4565b11156111f95760405162461bcd60e51b815260040161097290612542565b610a21828461ffff1661166a565b6001600160a01b0382163314156112315760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112a8848484611684565b6001600160a01b0383163b151580156112ca57506112c8848484846119e6565b155b156112e8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146113185760405162461bcd60e51b81526004016109729061256f565b601255565b6060611328826115e3565b61138c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610972565b600e546301000000900460ff1661142f57600b80546113aa90612657565b80601f01602080910402602001604051908101604052809291908181526020018280546113d690612657565b80156114235780601f106113f857610100808354040283529160200191611423565b820191906000526020600020905b81548152906001019060200180831161140657829003601f168201915b50505050509050919050565b6000611439611ade565b905060008151116114595760405180602001604052806000815250611487565b8061146384611aed565b600a6040516020016114779392919061242e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114b85760405162461bcd60e51b81526004016109729061256f565b600d55565b600b80546114ca90612657565b80601f01602080910402602001604051908101604052809291908181526020018280546114f690612657565b80156115435780601f1061151857610100808354040283529160200191611543565b820191906000526020600020905b81548152906001019060200180831161152657829003601f168201915b505050505081565b6008546001600160a01b031633146115755760405162461bcd60e51b81526004016109729061256f565b6001600160a01b0381166115da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610972565b610c6d81611994565b600080548210801561086c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a63828260405180602001604052806000815250611bea565b600061168f8261187a565b9050836001600160a01b031681600001516001600160a01b0316146116c65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116e457506116e485336107bd565b806116ff5750336116f484610904565b6001600160a01b0316145b90508061171f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661174657604051633a954ecd60e21b815260040160405180910390fd5b6117526000848761160e565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661182657600054821461182657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061273083398151915260405160405180910390a45b5050505050565b610c6d816000611bf7565b60006114878260125485611daa565b60408051606081018252600080825260208201819052918101919091528160005481101561197b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119795780516001600160a01b031615611910579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611974579392505050565b611910565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a1b9033908990889088906004016124f2565b602060405180830381600087803b158015611a3557600080fd5b505af1925050508015611a65575060408051601f3d908101601f19168201909252611a62918101906122bc565b60015b611ac0573d808015611a93576040519150601f19603f3d011682016040523d82523d6000602084013e611a98565b606091505b508051611ab8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461088190612657565b606081611b115750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b3b5780611b2581612692565b9150611b349050600a836125e1565b9150611b15565b6000816001600160401b03811115611b5557611b55612703565b6040519080825280601f01601f191660200182016040528015611b7f576020820181803683370190505b5090505b8415611ad657611b94600183612614565b9150611ba1600a866126ad565b611bac9060306125a4565b60f81b818381518110611bc157611bc16126ed565b60200101906001600160f81b031916908160001a905350611be3600a866125e1565b9450611b83565b610a218383836001611dc0565b6000611c028361187a565b80519091508215611c68576000336001600160a01b0383161480611c2b5750611c2b82336107bd565b80611c46575033611c3b86610904565b6001600160a01b0316145b905080611c6657604051632ce44b5f60e11b815260040160405180910390fd5b505b611c746000858361160e565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611d72576000548214611d7257805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612730833981519152908390a4505060018054810190555050565b600082611db78584611f6c565b14949350505050565b6000546001600160a01b038516611de957604051622e076360e81b815260040160405180910390fd5b83611e075760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611eb857506001600160a01b0387163b15155b15611f2f575b60405182906001600160a01b03891690600090600080516020612730833981519152908290a4611ef760008884806001019550886119e6565b611f14576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ebe578260005414611f2a57600080fd5b611f63565b5b6040516001830192906001600160a01b03891690600090600080516020612730833981519152908290a480821415611f30575b50600055611859565b600081815b8451811015611fd8576000858281518110611f8e57611f8e6126ed565b60200260200101519050808311611fb45760008381526020829052604090209250611fc5565b600081815260208490526040902092505b5080611fd081612692565b915050611f71565b509392505050565b828054611fec90612657565b90600052602060002090601f01602090048101928261200e5760008555612054565b82601f1061202757805160ff1916838001178555612054565b82800160010185558215612054579182015b82811115612054578251825591602001919060010190612039565b50612060929150612064565b5090565b5b808211156120605760008155600101612065565b60006001600160401b038084111561209357612093612703565b604051601f8501601f19908116603f011681019082821181831017156120bb576120bb612703565b816040528093508581528686860111156120d457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461210557600080fd5b919050565b803560ff8116811461210557600080fd5b60006020828403121561212d57600080fd5b611487826120ee565b6000806040838503121561214957600080fd5b612152836120ee565b9150612160602084016120ee565b90509250929050565b60008060006060848603121561217e57600080fd5b612187846120ee565b9250612195602085016120ee565b9150604084013590509250925092565b600080600080608085870312156121bb57600080fd5b6121c4856120ee565b93506121d2602086016120ee565b92506040850135915060608501356001600160401b038111156121f457600080fd5b8501601f8101871361220557600080fd5b61221487823560208401612079565b91505092959194509250565b6000806040838503121561223357600080fd5b61223c836120ee565b91506020830135801515811461225157600080fd5b809150509250929050565b6000806040838503121561226f57600080fd5b612278836120ee565b946020939093013593505050565b60006020828403121561229857600080fd5b5035919050565b6000602082840312156122b157600080fd5b813561148781612719565b6000602082840312156122ce57600080fd5b815161148781612719565b6000602082840312156122eb57600080fd5b81356001600160401b0381111561230157600080fd5b8201601f8101841361231257600080fd5b611ad684823560208401612079565b6000806040838503121561233457600080fd5b823561ffff8116811461215257600080fd5b60006020828403121561235857600080fd5b6114878261210a565b6000806040838503121561237457600080fd5b6121528361210a565b60008060006040848603121561239257600080fd5b61239b8461210a565b925060208401356001600160401b03808211156123b757600080fd5b818601915086601f8301126123cb57600080fd5b8135818111156123da57600080fd5b8760208260051b85010111156123ef57600080fd5b6020830194508093505050509250925092565b6000815180845261241a81602086016020860161262b565b601f01601f19169290920160200192915050565b6000845160206124418285838a0161262b565b8551918401916124548184848a0161262b565b8554920191600090600181811c908083168061247157607f831692505b85831081141561248f57634e487b7160e01b85526022600452602485fd5b8080156124a357600181146124b4576124e1565b60ff198516885283880195506124e1565b60008b81526020902060005b858110156124d95781548a8201529084019088016124c0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061252590830184612402565b9695505050505050565b6020815260006114876020830184612402565b60208082526013908201527222bc31b2b232b99036b0bc1039bab838363c9760691b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156125b7576125b76126c1565b500190565b600060ff821660ff84168060ff038211156125d9576125d96126c1565b019392505050565b6000826125f0576125f06126d7565b500490565b600081600019048311821515161561260f5761260f6126c1565b500290565b600082821015612626576126266126c1565b500390565b60005b8381101561264657818101518382015260200161262e565b838111156112e85750506000910152565b600181811c9082168061266b57607f821691505b6020821081141561268c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126a6576126a66126c1565b5060010190565b6000826126bc576126bc6126d7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c6d57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220b872bbf27d8ce9365bd239fc45b16354748a083a2c02cbe391a7be46555e0b9864736f6c63430008070033
Deployed Bytecode Sourcemap
46340:5209:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24441:305;;;;;;;;;;-1:-1:-1;24441:305:0;;;;;:::i;:::-;;:::i;:::-;;;8772:14:1;;8765:22;8747:41;;8735:2;8720:18;24441:305:0;;;;;;;;27554:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29057:204::-;;;;;;;;;;-1:-1:-1;29057:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8070:32:1;;;8052:51;;8040:2;8025:18;29057:204:0;7906:203:1;49111:75:0;;;;;;;;;;;;;:::i;:::-;;28620:371;;;;;;;;;;-1:-1:-1;28620:371:0;;;;;:::i;:::-;;:::i;50807:102::-;;;;;;;;;;-1:-1:-1;50807:102:0;;;;;:::i;:::-;;:::i;46602:32::-;;;;;;;;;;;;;;;;;;;8945:25:1;;;8933:2;8918:18;46602:32:0;8799:177:1;47882:314:0;;;;;;;;;;-1:-1:-1;47882:314:0;;;;;:::i;:::-;;:::i;23690:303::-;;;;;;;;;;-1:-1:-1;23944:12:0;;23734:7;23928:13;:28;23690:303;;29922:170;;;;;;;;;;-1:-1:-1;29922:170:0;;;;;:::i;:::-;;:::i;51171:115::-;;;;;;;;;;-1:-1:-1;51171:115:0;;;;;:::i;:::-;;:::i;50917:91::-;;;;;;;;;;;;;:::i;51095:70::-;;;;;;;;;;;;;:::i;51297:144::-;;;;;;;;;;;;;:::i;30163:185::-;;;;;;;;;;-1:-1:-1;30163:185:0;;;;;:::i;:::-;;:::i;48522:78::-;;;;;;;;;;-1:-1:-1;48522:78:0;;;;;:::i;:::-;;:::i;51014:76::-;;;;;;;;;;-1:-1:-1;51014:76:0;;;;;:::i;:::-;;:::i;47031:41::-;;;;;;;;;;-1:-1:-1;47031:41:0;;;;;;;;;;;13400:4:1;13388:17;;;13370:36;;13358:2;13343:18;47031:41:0;13228:184:1;49900:794:0;;;;;;:::i;:::-;;:::i;46929:49::-;;;;;;;;;;-1:-1:-1;46929:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46871:25;;;;;;;;;;-1:-1:-1;46871:25:0;;;;;;;;;;;27362:125;;;;;;;;;;-1:-1:-1;27362:125:0;;;;;:::i;:::-;;:::i;49305:127::-;;;;;;;;;;-1:-1:-1;49305:127:0;;;;;:::i;:::-;;:::i;47262:612::-;;;;;;:::i;:::-;;:::i;24810:206::-;;;;;;;;;;-1:-1:-1;24810:206:0;;;;;:::i;:::-;;:::i;45486:103::-;;;;;;;;;;;;;:::i;50700:102::-;;;;;;;;;;-1:-1:-1;50700:102:0;;;;;:::i;:::-;;:::i;46839:27::-;;;;;;;;;;-1:-1:-1;46839:27:0;;;;;;;;;;;44835:87;;;;;;;;;;-1:-1:-1;44908:6:0;;-1:-1:-1;;;;;44908:6:0;44835:87;;46639:41;;;;;;;;;;;;;;;;27723:104;;;;;;;;;;;;;:::i;48199:315::-;;;;;;;;;;-1:-1:-1;48199:315:0;;;;;:::i;:::-;;:::i;29333:287::-;;;;;;;;;;-1:-1:-1;29333:287:0;;;;;:::i;:::-;;:::i;46901:25::-;;;;;;;;;;-1:-1:-1;46901:25:0;;;;;;;;;;;47089:103;;;;;;;;;;;;;;;;30419:369;;;;;;;;;;-1:-1:-1;30419:369:0;;;;;:::i;:::-;;:::i;46731:40::-;;;;;;;;;;-1:-1:-1;46731:40:0;;;;;;;;49434:142;;;;;;;;;;-1:-1:-1;49434:142:0;;;;;:::i;:::-;;:::i;48613:490::-;;;;;;;;;;-1:-1:-1;48613:490:0;;;;;:::i;:::-;;:::i;49190:106::-;;;;;;;;;;-1:-1:-1;49190:106:0;;;;;:::i;:::-;;:::i;46687:39::-;;;;;;;;;;;;46722:4;46687:39;;;;;13027:6:1;13015:19;;;12997:38;;12985:2;12970:18;46687:39:0;12853:188:1;46981:47:0;;;;;;;;;;-1:-1:-1;46981:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29691:164;;;;;;;;;;-1:-1:-1;29691:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29812:25:0;;;29788:4;29812:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29691:164;46491:93;;;;;;;;;;;;;:::i;45744:201::-;;;;;;;;;;-1:-1:-1;45744:201:0;;;;;:::i;:::-;;:::i;24441:305::-;24543:4;-1:-1:-1;;;;;;24580:40:0;;-1:-1:-1;;;24580:40:0;;:105;;-1:-1:-1;;;;;;;24637:48:0;;-1:-1:-1;;;24637:48:0;24580:105;:158;;;-1:-1:-1;;;;;;;;;;14475:40:0;;;24702:36;24560:178;24441:305;-1:-1:-1;;24441:305:0:o;27554:100::-;27608:13;27641:5;27634:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27554:100;:::o;29057:204::-;29125:7;29150:16;29158:7;29150;:16::i;:::-;29145:64;;29175:34;;-1:-1:-1;;;29175:34:0;;;;;;;;;;;29145:64;-1:-1:-1;29229:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29229:24:0;;29057:204::o;49111:75::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;;;;;;;;;49172:8:::1;::::0;;-1:-1:-1;;49160:20:0;::::1;49172:8;::::0;;;::::1;;;49171:9;49160:20:::0;;::::1;;::::0;;49111:75::o;28620:371::-;28693:13;28709:24;28725:7;28709:15;:24::i;:::-;28693:40;;28754:5;-1:-1:-1;;;;;28748:11:0;:2;-1:-1:-1;;;;;28748:11:0;;28744:48;;;28768:24;;-1:-1:-1;;;28768:24:0;;;;;;;;;;;28744:48;2916:10;-1:-1:-1;;;;;28809:21:0;;;;;;:63;;-1:-1:-1;28835:37:0;28852:5;2916:10;29691:164;:::i;28835:37::-;28834:38;28809:63;28805:138;;;28896:35;;-1:-1:-1;;;28896:35:0;;;;;;;;;;;28805:138;28955:28;28964:2;28968:7;28977:5;28955:8;:28::i;:::-;28682:309;28620:371;;:::o;50807:102::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;50881:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50807:102:::0;:::o;47882:314::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;47963:16:::1;47982:13;23944:12:::0;;23734:7;23928:13;:28;;23690:303;47982:13:::1;47963:32:::0;-1:-1:-1;46722:4:0::1;48010:25;;::::0;::::1;47963:32:::0;48010:25:::1;:::i;:::-;:38;;48002:70;;;;-1:-1:-1::0;;;48002:70:0::1;;;;;;;:::i;:::-;48080:34;48090:9;48102:11;48080:34;;:9;:34::i;29922:170::-:0;30056:28;30066:4;30072:2;30076:7;30056:9;:28::i;51171:115::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;51247:22:::1;:31:::0;;-1:-1:-1;;51247:31:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;51171:115::o;50917:91::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;50974:6:::1;::::0;;-1:-1:-1;;50974:6:0::1;::::0;;;::::1;::::0;;;::::1;50973:7;50964:16;50987:15:::0;-1:-1:-1;;50987:15:0;;;;50974:6:::1;50987:15;::::0;;50917:91::o;51095:70::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;51154:6:::1;::::0;;-1:-1:-1;;51144:16:0;::::1;51154:6:::0;;;;::::1;;;51153:7;51144:16:::0;;::::1;;::::0;;51095:70::o;51297:144::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;51386:39:::1;::::0;51357:21:::1;::::0;51394:10:::1;::::0;51386:39;::::1;;;::::0;51357:21;;51341:13:::1;51386:39:::0;51341:13;51386:39;51357:21;51394:10;51386:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;30163:185:::0;30301:39;30318:4;30324:2;30328:7;30301:39;;;;;;;;;;;;:16;:39::i;48522:78::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;48579:15:::1;48585:8;48579:5;:15::i;:::-;48522:78:::0;:::o;51014:76::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;51070:4:::1;:12:::0;51014:76::o;49900:794::-;49696:23;;;50043:10;6289:2:1;6285:15;-1:-1:-1;;6281:53:1;49696:23:0;;;;6269:66:1;;;;49696:23:0;;;;;;;;;6351:12:1;;;;49696:23:0;;;49686:34;;;;;50011:17;;50103:10;50065:19;50087:27;;;:15;:27;;;;;;;;;;50132:36;;;;;;;;;;;;;;;;50011:43;;-1:-1:-1;50087:27:0;;;50132:36;;50011:43;;50153:11;;;;;;50132:36;;;;50153:11;;50132:36;50153:11;50132:36;;;;;;;;;-1:-1:-1;50132:7:0;;-1:-1:-1;;;50132:36:0:i;:::-;50124:70;;;;-1:-1:-1;;;50124:70:0;;11233:2:1;50124:70:0;;;11215:21:1;11272:2;11252:18;;;11245:30;-1:-1:-1;;;11291:18:1;;;11284:50;11351:18;;50124:70:0;11031:344:1;50124:70:0;50244:24;;;;50213:27;50229:11;50213:13;:27;:::i;:::-;:55;;;;50204:95;;;;-1:-1:-1;;;50204:95:0;;10517:2:1;50204:95:0;;;10499:21:1;10556:2;10536:18;;;10529:30;10595:28;10575:18;;;10568:56;10641:18;;50204:95:0;10315:350:1;50204:95:0;50327:8;;;;;;;50326:9;50318:48;;;;-1:-1:-1;;;50318:48:0;;10162:2:1;50318:48:0;;;10144:21:1;10201:2;10181:18;;;10174:30;10240:28;10220:18;;;10213:56;10286:18;;50318:48:0;9960:350:1;50318:48:0;50410:11;50394:27;;:13;;:27;;;;:::i;:::-;50381:9;:40;50373:72;;;;-1:-1:-1;;;50373:72:0;;12707:2:1;50373:72:0;;;12689:21:1;12746:2;12726:18;;;12719:30;-1:-1:-1;;;12765:18:1;;;12758:49;12824:18;;50373:72:0;12505:343:1;50373:72:0;50456:16;50475:13;23944:12;;23734:7;23928:13;:28;;23690:303;50475:13;50456:32;;50496:35;50506:10;50519:11;50496:35;;:9;:35::i;:::-;50569:27;50585:11;50569:13;:27;:::i;:::-;50556:10;50540:27;;;;:15;:27;;;;;:56;;-1:-1:-1;;50540:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;49900:794:0:o;27362:125::-;27426:7;27453:21;27466:7;27453:12;:21::i;:::-;:26;;27362:125;-1:-1:-1;;27362:125:0:o;49305:127::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;49374:24:::1;:33:::0;;-1:-1:-1;;49374:33:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;49305:127::o;47262:612::-;47320:16;47339:13;23944:12;;23734:7;23928:13;:28;;23690:303;47339:13;47320:32;-1:-1:-1;46722:4:0;47367:25;;;;47320:32;47367:25;:::i;:::-;:38;;47359:70;;;;-1:-1:-1;;;47359:70:0;;;;;;;:::i;:::-;47473:10;47436:20;47459:25;;;:13;:25;;;;;;47531:22;;47459:25;;;;;47531:22;47499:28;47459:25;47499:11;:28;:::i;:::-;:54;;;;47491:95;;;;-1:-1:-1;;;47491:95:0;;12350:2:1;47491:95:0;;;12332:21:1;12389:2;12369:18;;;12362:30;12428;12408:18;;;12401:58;12476:18;;47491:95:0;12148:352:1;47491:95:0;47604:6;;;;;;;47603:7;47595:43;;;;-1:-1:-1;;;47595:43:0;;11582:2:1;47595:43:0;;;11564:21:1;11621:2;11601:18;;;11594:30;11660:25;11640:18;;;11633:53;11703:18;;47595:43:0;11380:347:1;47595:43:0;47673:11;47666:18;;:4;;:18;;;;:::i;:::-;47653:9;:31;47645:63;;;;-1:-1:-1;;;47645:63:0;;12707:2:1;47645:63:0;;;12689:21:1;12746:2;12726:18;;;12719:30;-1:-1:-1;;;12765:18:1;;;12758:49;12824:18;;47645:63:0;12505:343:1;47645:63:0;47717:35;47727:10;47740:11;47717:35;;:9;:35::i;:::-;47788:28;47802:14;47788:11;:28;:::i;:::-;47774:10;47760:25;;;;:13;:25;;;;;:56;;-1:-1:-1;;47760:56:0;;;;;;;;;;;;-1:-1:-1;;;47262:612:0:o;24810:206::-;24874:7;-1:-1:-1;;;;;24898:19:0;;24894:60;;24926:28;;-1:-1:-1;;;24926:28:0;;;;;;;;;;;24894:60;-1:-1:-1;;;;;;24980:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24980:27:0;;24810:206::o;45486:103::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;45551:30:::1;45578:1;45551:18;:30::i;:::-;45486:103::o:0;50700:102::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;50774:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27723:104::-:0;27779:13;27812:7;27805:14;;;;;:::i;48199:315::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;48281:16:::1;48300:13;23944:12:::0;;23734:7;23928:13;:28;;23690:303;48300:13:::1;48281:32:::0;-1:-1:-1;46722:4:0::1;48328:25;:38;:25:::0;::::1;48281:32:::0;48328:25:::1;:::i;:::-;:38;;48320:70;;;;-1:-1:-1::0;;;48320:70:0::1;;;;;;;:::i;:::-;48398:34;48408:9;48420:11;48398:34;;:9;:34::i;29333:287::-:0;-1:-1:-1;;;;;29432:24:0;;2916:10;29432:24;29428:54;;;29465:17;;-1:-1:-1;;;29465:17:0;;;;;;;;;;;29428:54;2916:10;29495:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29495:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29495:53:0;;;;;;;;;;29564:48;;8747:41:1;;;29495:42:0;;2916:10;29564:48;;8720:18:1;29564:48:0;;;;;;;29333:287;;:::o;30419:369::-;30586:28;30596:4;30602:2;30606:7;30586:9;:28::i;:::-;-1:-1:-1;;;;;30629:13:0;;4578:19;:23;;30629:76;;;;;30649:56;30680:4;30686:2;30690:7;30699:5;30649:30;:56::i;:::-;30648:57;30629:76;30625:156;;;30729:40;;-1:-1:-1;;;30729:40:0;;;;;;;;;;;30625:156;30419:369;;;;:::o;49434:142::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;49526:19:::1;:42:::0;49434:142::o;48613:490::-;48712:13;48753:17;48761:8;48753:7;:17::i;:::-;48737:98;;;;-1:-1:-1;;;48737:98:0;;11934:2:1;48737:98:0;;;11916:21:1;11973:2;11953:18;;;11946:30;12012:34;11992:18;;;11985:62;-1:-1:-1;;;12063:18:1;;;12056:45;12118:19;;48737:98:0;11732:411:1;48737:98:0;48853:6;;;;;;;48848:50;;48885:9;48878:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48613:490;;;:::o;48848:50::-;48912:28;48943:10;:8;:10::i;:::-;48912:41;;48998:1;48973:14;48967:28;:32;:130;;;;;;;;;;;;;;;;;49035:14;49051:19;:8;:17;:19::i;:::-;49072:9;49018:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48967:130;48960:137;48613:490;-1:-1:-1;;;48613:490:0:o;49190:106::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;49250:13:::1;:21:::0;49190:106::o;46491:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45744:201::-;44908:6;;-1:-1:-1;;;;;44908:6:0;2916:10;45055:23;45047:68;;;;-1:-1:-1;;;45047:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45833:22:0;::::1;45825:73;;;::::0;-1:-1:-1;;;45825:73:0;;9755:2:1;45825:73:0::1;::::0;::::1;9737:21:1::0;9794:2;9774:18;;;9767:30;9833:34;9813:18;;;9806:62;-1:-1:-1;;;9884:18:1;;;9877:36;9930:19;;45825:73:0::1;9553:402:1::0;45825:73:0::1;45909:28;45928:8;45909:18;:28::i;31043:187::-:0;31100:4;31164:13;;31154:7;:23;31124:98;;;;-1:-1:-1;;31195:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31195:27:0;;;;31194:28;;31043:187::o;39213:196::-;39328:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39328:29:0;-1:-1:-1;;;;;39328:29:0;;;;;;;;;39373:28;;39328:24;;39373:28;;;;;;;39213:196;;;:::o;31238:104::-;31307:27;31317:2;31321:8;31307:27;;;;;;;;;;;;:9;:27::i;34156:2130::-;34271:35;34309:21;34322:7;34309:12;:21::i;:::-;34271:59;;34369:4;-1:-1:-1;;;;;34347:26:0;:13;:18;;;-1:-1:-1;;;;;34347:26:0;;34343:67;;34382:28;;-1:-1:-1;;;34382:28:0;;;;;;;;;;;34343:67;34423:22;2916:10;-1:-1:-1;;;;;34449:20:0;;;;:73;;-1:-1:-1;34486:36:0;34503:4;2916:10;29691:164;:::i;34486:36::-;34449:126;;;-1:-1:-1;2916:10:0;34539:20;34551:7;34539:11;:20::i;:::-;-1:-1:-1;;;;;34539:36:0;;34449:126;34423:153;;34594:17;34589:66;;34620:35;;-1:-1:-1;;;34620:35:0;;;;;;;;;;;34589:66;-1:-1:-1;;;;;34670:16:0;;34666:52;;34695:23;;-1:-1:-1;;;34695:23:0;;;;;;;;;;;34666:52;34839:35;34856:1;34860:7;34869:4;34839:8;:35::i;:::-;-1:-1:-1;;;;;35170:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35170:31:0;;;-1:-1:-1;;;;;35170:31:0;;;-1:-1:-1;;35170:31:0;;;;;;;35216:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35216:29:0;;;;;;;;;;;35296:20;;;:11;:20;;;;;;35331:18;;-1:-1:-1;;;;;;35364:49:0;;;;-1:-1:-1;;;35397:15:0;35364:49;;;;;;;;;;35687:11;;35747:24;;;;;35790:13;;35296:20;;35747:24;;35790:13;35786:384;;36000:13;;35985:11;:28;35981:174;;36038:20;;36107:28;;;;-1:-1:-1;;;;;36081:54:0;-1:-1:-1;;;36081:54:0;-1:-1:-1;;;;;;36081:54:0;;;-1:-1:-1;;;;;36038:20:0;;36081:54;;;;35981:174;35145:1036;;;36217:7;36213:2;-1:-1:-1;;;;;36198:27:0;36207:4;-1:-1:-1;;;;;36198:27:0;-1:-1:-1;;;;;;;;;;;36198:27:0;;;;;;;;;36236:42;34260:2026;;34156:2130;;;:::o;36369:89::-;36429:21;36435:7;36444:5;36429;:21::i;49734:162::-;49812:4;49836:52;49855:5;49862:19;;49883:4;49836:18;:52::i;26191:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26302:7:0;26385:13;;26378:4;:20;26347:886;;;26419:31;26453:17;;;:11;:17;;;;;;;;;26419:51;;;;;;;;;-1:-1:-1;;;;;26419:51:0;;;;-1:-1:-1;;;26419:51:0;;-1:-1:-1;;;;;26419:51:0;;;;;;;;-1:-1:-1;;;26419:51:0;;;;;;;;;;;;;;26489:729;;26539:14;;-1:-1:-1;;;;;26539:28:0;;26535:101;;26603:9;26191:1109;-1:-1:-1;;;26191:1109:0:o;26535:101::-;-1:-1:-1;;;26978:6:0;27023:17;;;;:11;:17;;;;;;;;;27011:29;;;;;;;;;-1:-1:-1;;;;;27011:29:0;;;;;-1:-1:-1;;;27011:29:0;;-1:-1:-1;;;;;27011:29:0;;;;;;;;-1:-1:-1;;;27011:29:0;;;;;;;;;;;;;27071:28;27067:109;;27139:9;26191:1109;-1:-1:-1;;;26191:1109:0:o;27067:109::-;26938:261;;;26400:833;26347:886;27261:31;;-1:-1:-1;;;27261:31:0;;;;;;;;;;;46105:191;46198:6;;;-1:-1:-1;;;;;46215:17:0;;;-1:-1:-1;;;;;;46215:17:0;;;;;;;46248:40;;46198:6;;;46215:17;46198:6;;46248:40;;46179:16;;46248:40;46168:128;46105:191;:::o;39901:667::-;40085:72;;-1:-1:-1;;;40085:72:0;;40064:4;;-1:-1:-1;;;;;40085:36:0;;;;;:72;;2916:10;;40136:4;;40142:7;;40151:5;;40085:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40085:72:0;;;;;;;;-1:-1:-1;;40085:72:0;;;;;;;;;;;;:::i;:::-;;;40081:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40319:13:0;;40315:235;;40365:40;;-1:-1:-1;;;40365:40:0;;;;;;;;;;;40315:235;40508:6;40502:13;40493:6;40489:2;40485:15;40478:38;40081:480;-1:-1:-1;;;;;;40204:55:0;-1:-1:-1;;;40204:55:0;;-1:-1:-1;40081:480:0;39901:667;;;;;;:::o;51449:97::-;51502:13;51531:9;51524:16;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;-1:-1:-1;;;;;900:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;31705:163;31828:32;31834:2;31838:8;31848:5;31855:4;31828:5;:32::i;36687:2408::-;36767:35;36805:21;36818:7;36805:12;:21::i;:::-;36854:18;;36767:59;;-1:-1:-1;36885:290:0;;;;36919:22;2916:10;-1:-1:-1;;;;;36945:20:0;;;;:77;;-1:-1:-1;36986:36:0;37003:4;2916:10;29691:164;:::i;36986:36::-;36945:134;;;-1:-1:-1;2916:10:0;37043:20;37055:7;37043:11;:20::i;:::-;-1:-1:-1;;;;;37043:36:0;;36945:134;36919:161;;37102:17;37097:66;;37128:35;;-1:-1:-1;;;37128:35:0;;;;;;;;;;;37097:66;36904:271;36885:290;37303:35;37320:1;37324:7;37333:4;37303:8;:35::i;:::-;-1:-1:-1;;;;;37668:18:0;;;37634:31;37668:18;;;:12;:18;;;;;;;;37701:24;;-1:-1:-1;;;;;;;;;;37701:24:0;;;;;;;;;-1:-1:-1;;37701:24:0;;;;37740:29;;;;;37724:1;37740:29;;;;;;;;-1:-1:-1;;37740:29:0;;;;;;;;;;37902:20;;;:11;:20;;;;;;37937;;-1:-1:-1;;;;38005:15:0;37972:49;;;-1:-1:-1;;;37972:49:0;-1:-1:-1;;;;;;37972:49:0;;;;;;;;;;38036:22;-1:-1:-1;;;38036:22:0;;;38328:11;;;38388:24;;;;;38431:13;;37668:18;;38388:24;;38431:13;38427:384;;38641:13;;38626:11;:28;38622:174;;38679:20;;38748:28;;;;-1:-1:-1;;;;;38722:54:0;-1:-1:-1;;;38722:54:0;-1:-1:-1;;;;;;38722:54:0;;;-1:-1:-1;;;;;38679:20:0;;38722:54;;;;38622:174;-1:-1:-1;;38839:35:0;;38866:7;;-1:-1:-1;38862:1:0;;-1:-1:-1;;;;;;38839:35:0;;;-1:-1:-1;;;;;;;;;;;38839:35:0;38862:1;;38839:35;-1:-1:-1;;39062:12:0;:14;;;;;;-1:-1:-1;;36687:2408:0:o;42959:190::-;43084:4;43137;43108:25;43121:5;43128:4;43108:12;:25::i;:::-;:33;;42959:190;-1:-1:-1;;;;42959:190:0:o;32127:1775::-;32266:20;32289:13;-1:-1:-1;;;;;32317:16:0;;32313:48;;32342:19;;-1:-1:-1;;;32342:19:0;;;;;;;;;;;32313:48;32376:13;32372:44;;32398:18;;-1:-1:-1;;;32398:18:0;;;;;;;;;;;32372:44;-1:-1:-1;;;;;32767:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32826:49:0;;-1:-1:-1;;;;;32767:44:0;;;;;;;32826:49;;;;-1:-1:-1;;32767:44:0;;;;;;32826:49;;;;;;;;;;;;;;;;32892:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32942:66:0;;;;-1:-1:-1;;;32992:15:0;32942:66;;;;;;;;;;32892:25;33089:23;;;33133:4;:23;;;;-1:-1:-1;;;;;;33141:13:0;;4578:19;:23;;33141:15;33129:641;;;33177:314;33208:38;;33233:12;;-1:-1:-1;;;;;33208:38:0;;;33225:1;;-1:-1:-1;;;;;;;;;;;33208:38:0;33225:1;;33208:38;33274:69;33313:1;33317:2;33321:14;;;;;;33337:5;33274:30;:69::i;:::-;33269:174;;33379:40;;-1:-1:-1;;;33379:40:0;;;;;;;;;;;33269:174;33486:3;33470:12;:19;;33177:314;;33572:12;33555:13;;:29;33551:43;;33586:8;;;33551:43;33129:641;;;33635:120;33666:40;;33691:14;;;;;-1:-1:-1;;;;;33666:40:0;;;33683:1;;-1:-1:-1;;;;;;;;;;;33666:40:0;33683:1;;33666:40;33750:3;33734:12;:19;;33635:120;;33129:641;-1:-1:-1;33784:13:0;:28;33834:60;30419:369;43511:675;43594:7;43637:4;43594:7;43652:497;43676:5;:12;43672:1;:16;43652:497;;;43710:20;43733:5;43739:1;43733:8;;;;;;;;:::i;:::-;;;;;;;43710:31;;43776:12;43760;:28;43756:382;;44262:13;44312:15;;;44348:4;44341:15;;;44395:4;44379:21;;43888:57;;43756:382;;;44262:13;44312:15;;;44348:4;44341:15;;;44395:4;44379:21;;44065:57;;43756:382;-1:-1:-1;43690:3:0;;;;:::i;:::-;;;;43652:497;;;-1:-1:-1;44166:12:0;43511:675;-1:-1:-1;;;43511:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;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;-1:-1:-1;;;;;2197:6:1;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;-1:-1:-1;;;;;3952:6:1;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:256::-;4993:6;5001;5054:2;5042:9;5033:7;5029:23;5025:32;5022:52;;;5070:1;5067;5060:12;5022:52;5093:27;5110:9;5093:27;:::i;5188:685::-;5281:6;5289;5297;5350:2;5338:9;5329:7;5325:23;5321:32;5318:52;;;5366:1;5363;5356:12;5318:52;5389:27;5406:9;5389:27;:::i;:::-;5379:37;;5467:2;5456:9;5452:18;5439:32;-1:-1:-1;;;;;5531:2:1;5523:6;5520:14;5517:34;;;5547:1;5544;5537:12;5517:34;5585:6;5574:9;5570:22;5560:32;;5630:7;5623:4;5619:2;5615:13;5611:27;5601:55;;5652:1;5649;5642:12;5601:55;5692:2;5679:16;5718:2;5710:6;5707:14;5704:34;;;5734:1;5731;5724:12;5704:34;5787:7;5782:2;5772:6;5769:1;5765:14;5761:2;5757:23;5753:32;5750:45;5747:65;;;5808:1;5805;5798:12;5747:65;5839:2;5835;5831:11;5821:21;;5861:6;5851:16;;;;;5188:685;;;;;:::o;5878:257::-;5919:3;5957:5;5951:12;5984:6;5979:3;5972:19;6000:63;6056:6;6049:4;6044:3;6040:14;6033:4;6026:5;6022:16;6000:63;:::i;:::-;6117:2;6096:15;-1:-1:-1;;6092:29:1;6083:39;;;;6124:4;6079:50;;5878:257;-1:-1:-1;;5878:257:1:o;6374:1527::-;6598:3;6636:6;6630:13;6662:4;6675:51;6719:6;6714:3;6709:2;6701:6;6697:15;6675:51;:::i;:::-;6789:13;;6748:16;;;;6811:55;6789:13;6748:16;6833:15;;;6811:55;:::i;:::-;6955:13;;6888:20;;;6928:1;;7015;7037:18;;;;7090;;;;7117:93;;7195:4;7185:8;7181:19;7169:31;;7117:93;7258:2;7248:8;7245:16;7225:18;7222:40;7219:167;;;-1:-1:-1;;;7285:33:1;;7341:4;7338:1;7331:15;7371:4;7292:3;7359:17;7219:167;7402:18;7429:110;;;;7553:1;7548:328;;;;7395:481;;7429:110;-1:-1:-1;;7464:24:1;;7450:39;;7509:20;;;;-1:-1:-1;7429:110:1;;7548:328;13490:1;13483:14;;;13527:4;13514:18;;7643:1;7657:169;7671:8;7668:1;7665:15;7657:169;;;7753:14;;7738:13;;;7731:37;7796:16;;;;7688:10;;7657:169;;;7661:3;;7857:8;7850:5;7846:20;7839:27;;7395:481;-1:-1:-1;7892:3:1;;6374:1527;-1:-1:-1;;;;;;;;;;;6374:1527:1:o;8114:488::-;-1:-1:-1;;;;;8383:15:1;;;8365:34;;8435:15;;8430:2;8415:18;;8408:43;8482:2;8467:18;;8460:34;;;8530:3;8525:2;8510:18;;8503:31;;;8308:4;;8551:45;;8576:19;;8568:6;8551:45;:::i;:::-;8543:53;8114:488;-1:-1:-1;;;;;;8114:488:1:o;8981:219::-;9130:2;9119:9;9112:21;9093:4;9150:44;9190:2;9179:9;9175:18;9167:6;9150:44;:::i;9205:343::-;9407:2;9389:21;;;9446:2;9426:18;;;9419:30;-1:-1:-1;;;9480:2:1;9465:18;;9458:49;9539:2;9524:18;;9205:343::o;10670:356::-;10872:2;10854:21;;;10891:18;;;10884:30;10950:34;10945:2;10930:18;;10923:62;11017:2;11002:18;;10670:356::o;13543:128::-;13583:3;13614:1;13610:6;13607:1;13604:13;13601:39;;;13620:18;;:::i;:::-;-1:-1:-1;13656:9:1;;13543:128::o;13676:204::-;13714:3;13750:4;13747:1;13743:12;13782:4;13779:1;13775:12;13817:3;13811:4;13807:14;13802:3;13799:23;13796:49;;;13825:18;;:::i;:::-;13861:13;;13676:204;-1:-1:-1;;;13676:204:1:o;13885:120::-;13925:1;13951;13941:35;;13956:18;;:::i;:::-;-1:-1:-1;13990:9:1;;13885:120::o;14010:168::-;14050:7;14116:1;14112;14108:6;14104:14;14101:1;14098:21;14093:1;14086:9;14079:17;14075:45;14072:71;;;14123:18;;:::i;:::-;-1:-1:-1;14163:9:1;;14010:168::o;14183:125::-;14223:4;14251:1;14248;14245:8;14242:34;;;14256:18;;:::i;:::-;-1:-1:-1;14293:9:1;;14183:125::o;14313:258::-;14385:1;14395:113;14409:6;14406:1;14403:13;14395:113;;;14485:11;;;14479:18;14466:11;;;14459:39;14431:2;14424:10;14395:113;;;14526:6;14523:1;14520:13;14517:48;;;-1:-1:-1;;14561:1:1;14543:16;;14536:27;14313:258::o;14576:380::-;14655:1;14651:12;;;;14698;;;14719:61;;14773:4;14765:6;14761:17;14751:27;;14719:61;14826:2;14818:6;14815:14;14795:18;14792:38;14789:161;;;14872:10;14867:3;14863:20;14860:1;14853:31;14907:4;14904:1;14897:15;14935:4;14932:1;14925:15;14789:161;;14576:380;;;:::o;14961:135::-;15000:3;-1:-1:-1;;15021:17:1;;15018:43;;;15041:18;;:::i;:::-;-1:-1:-1;15088:1:1;15077:13;;14961:135::o;15101:112::-;15133:1;15159;15149:35;;15164:18;;:::i;:::-;-1:-1:-1;15198:9:1;;15101:112::o;15218:127::-;15279:10;15274:3;15270:20;15267:1;15260:31;15310:4;15307:1;15300:15;15334:4;15331:1;15324:15;15350:127;15411:10;15406:3;15402:20;15399:1;15392:31;15442:4;15439:1;15432:15;15466:4;15463:1;15456:15;15482:127;15543:10;15538:3;15534:20;15531:1;15524:31;15574:4;15571:1;15564:15;15598:4;15595:1;15588:15;15614:127;15675:10;15670:3;15666:20;15663:1;15656:31;15706:4;15703:1;15696:15;15730:4;15727:1;15720:15;15746:131;-1:-1:-1;;;;;;15820:32:1;;15810:43;;15800:71;;15867:1;15864;15857:12
Swarm Source
ipfs://b872bbf27d8ce9365bd239fc45b16354748a083a2c02cbe391a7be46555e0b98
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.