ERC-721
NFT
Overview
Max Total Supply
10,000 WAYC
Holders
2,165
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WAYCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WomenApeYachtClub
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-05 */ // File: @openzeppelin/contracts/utils/Context.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); 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; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @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: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @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 IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev 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 Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // 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. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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, _toString(tokenId))) : ''; } /** * @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 Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0) if (!_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 && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } 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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__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 {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // 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/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) 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. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ 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 Merkle 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) } } } // File: contracts/WomenApeYachtClub.sol pragma solidity >=0.7.0 <0.9.0; contract WomenApeYachtClub is Ownable, ERC721A { using Strings for uint256; string public uriPrefix = "ipfs://Qmcubn3XNXb4U9sdvM8sXucR45phxf1aWmYcs9n4JiGJR6/"; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.04 ether; uint256 public maxSupply = 10000; uint256 public wlSupply = 10000; uint256 public maxMintAmountPerTx = 15; uint256 public maxMintAmount = 1; bool public paused = false; bool public revealed = true; bool public onlyWhitelisted = true; bytes32 public merkleRoot = 0x9918a5a8c4f28f66bc247db90909af40ed48d69ff95f8a484f5a814330105d18; mapping(address => uint256) public allowlist; constructor() ERC721A("Women Ape Yacht Club", "WAYC") { setHiddenMetadataUri(""); } modifier mintCompliance(uint256 _mintAmount) { require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(!paused, "The contract is paused!"); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(msg.value >= cost * _mintAmount, "Insufficient funds!"); require(!onlyWhitelisted, "The presale ended!"); _safeMint(msg.sender, _mintAmount); } function mintWl(uint256 _mintAmount, bytes32[] memory _merkleProof) public payable mintCompliance(_mintAmount) { require(msg.value >= cost * _mintAmount, "Insufficient funds!"); require(onlyWhitelisted, "The presale ended!"); require(totalSupply() + _mintAmount <= wlSupply, "The presale ended!"); require(maxMintAmount >= allowlist[msg.sender] + _mintAmount, "not eligible for allowlist mint"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid Merkle Proof." ); allowlist[msg.sender] = allowlist[msg.sender] + _mintAmount; _safeMint(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address[] memory _receiver) public mintCompliance(_mintAmount) onlyOwner { for (uint256 i = 0; i < _receiver.length; i++) { _safeMint(_receiver[i], _mintAmount); } } function isAllowed(address _address) public view returns (uint256) { return allowlist[_address]; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId+1; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); _tokenId = _tokenId+1; return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner { maxMintAmount = _maxMintAmount; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setWlSupply(uint256 _wlSupply) public onlyOwner { wlSupply = _wlSupply; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _baseURI() internal view virtual 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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address[]","name":"_receiver","type":"address[]"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintWl","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlSupply","type":"uint256"}],"name":"setWlSupply","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e0604052603660808181529062002ac560a039600990620000229082620002cd565b50604080518082019091526005815264173539b7b760d91b6020820152600a906200004e9082620002cd565b50668e1bc9bf040000600c55612710600d819055600e55600f805560016010556011805462ffffff1916620101001790557f9918a5a8c4f28f66bc247db90909af40ed48d69ff95f8a484f5a814330105d18601255348015620000b057600080fd5b506040518060400160405280601481526020017f576f6d656e2041706520596163687420436c7562000000000000000000000000815250604051806040016040528060048152602001635741594360e01b8152506200011e620001186200016360201b60201c565b62000167565b60036200012c8382620002cd565b5060046200013b8282620002cd565b50600060015550506040805160208101909152600081526200015d90620001b7565b62000399565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620002165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600b620002248282620002cd565b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200025357607f821691505b6020821081036200027457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002c857600081815260208120601f850160051c81016020861015620002a35750805b601f850160051c820191505b81811015620002c457828155600101620002af565b5050505b505050565b81516001600160401b03811115620002e957620002e962000228565b6200030181620002fa84546200023e565b846200027a565b602080601f831160018114620003395760008415620003205750858301515b600019600386901b1c1916600185901b178555620002c4565b600085815260208120601f198616915b828110156200036a5788860151825594840194600190910190840162000349565b5085821015620003895787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61271c80620003a96000396000f3fe6080604052600436106102935760003560e01c80636352211e1161015a578063a22cb465116100c1578063babcc5391161007a578063babcc53914610793578063c87b56dd146107c9578063d5abeb01146107e9578063e0a80853146107ff578063e985e9c51461081f578063f2fde38b1461086857600080fd5b8063a22cb465146106de578063a45ba8e7146106fe578063a7cd52cb14610713578063b071401b14610740578063b45b35d714610760578063b88d4fde1461077357600080fd5b80638da5cb5b116101135780638da5cb5b1461064257806394354fd01461066057806395d89b4114610676578063962e0f5a1461068b5780639c70b512146106ab578063a0712d68146106cb57600080fd5b80636352211e1461058d5780636f8b44b0146105ad57806370a08231146105cd578063715018a6146105ed5780637cb64759146106025780637ec4a6591461062257600080fd5b80632eb4a7ab116101fe57806344a0d68a116101b757806344a0d68a146104ea5780634fdd43cb1461050a578063518302271461052a5780635503a0e8146105495780635c975abb1461055e57806362b99ad41461057857600080fd5b80632eb4a7ab146104325780633abe82ee146104485780633c952764146104685780633ccfd60b1461048857806342842e0e1461049d578063438b6300146104bd57600080fd5b806313faede61161025057806313faede61461038d57806316ba10e0146103a357806316c38b3c146103c357806318160ddd146103e3578063239c70ae146103fc57806323b872dd1461041257600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063088a4ed014610327578063095ea7b3146103495780630fe8418b14610369575b600080fd5b3480156102a457600080fd5b506102b86102b3366004611e16565b610888565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e26108da565b6040516102c49190611e8b565b3480156102fb57600080fd5b5061030f61030a366004611e9e565b61096c565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004611e9e565b6109b0565b005b34801561035557600080fd5b50610347610364366004611ed3565b6109e8565b34801561037557600080fd5b5061037f600e5481565b6040519081526020016102c4565b34801561039957600080fd5b5061037f600c5481565b3480156103af57600080fd5b506103476103be366004611f9c565b610aba565b3480156103cf57600080fd5b506103476103de366004611ff5565b610af4565b3480156103ef57600080fd5b506002546001540361037f565b34801561040857600080fd5b5061037f60105481565b34801561041e57600080fd5b5061034761042d366004612010565b610b31565b34801561043e57600080fd5b5061037f60125481565b34801561045457600080fd5b50610347610463366004611e9e565b610b41565b34801561047457600080fd5b50610347610483366004611ff5565b610b70565b34801561049457600080fd5b50610347610bb6565b3480156104a957600080fd5b506103476104b8366004612010565b610c43565b3480156104c957600080fd5b506104dd6104d836600461204c565b610c5e565b6040516102c49190612067565b3480156104f657600080fd5b50610347610505366004611e9e565b610d48565b34801561051657600080fd5b50610347610525366004611f9c565b610d77565b34801561053657600080fd5b506011546102b890610100900460ff1681565b34801561055557600080fd5b506102e2610dad565b34801561056a57600080fd5b506011546102b89060ff1681565b34801561058457600080fd5b506102e2610e3b565b34801561059957600080fd5b5061030f6105a8366004611e9e565b610e48565b3480156105b957600080fd5b506103476105c8366004611e9e565b610e53565b3480156105d957600080fd5b5061037f6105e836600461204c565b610e82565b3480156105f957600080fd5b50610347610ed1565b34801561060e57600080fd5b5061034761061d366004611e9e565b610f07565b34801561062e57600080fd5b5061034761063d366004611f9c565b610f36565b34801561064e57600080fd5b506000546001600160a01b031661030f565b34801561066c57600080fd5b5061037f600f5481565b34801561068257600080fd5b506102e2610f6c565b34801561069757600080fd5b506103476106a63660046120cf565b610f7b565b3480156106b757600080fd5b506011546102b89062010000900460ff1681565b6103476106d9366004611e9e565b611077565b3480156106ea57600080fd5b506103476106f9366004612178565b611188565b34801561070a57600080fd5b506102e261121d565b34801561071f57600080fd5b5061037f61072e36600461204c565b60136020526000908152604090205481565b34801561074c57600080fd5b5061034761075b366004611e9e565b61122a565b61034761076e3660046121ab565b611259565b34801561077f57600080fd5b5061034761078e366004612239565b6114c6565b34801561079f57600080fd5b5061037f6107ae36600461204c565b6001600160a01b031660009081526013602052604090205490565b3480156107d557600080fd5b506102e26107e4366004611e9e565b61150a565b3480156107f557600080fd5b5061037f600d5481565b34801561080b57600080fd5b5061034761081a366004611ff5565b61168b565b34801561082b57600080fd5b506102b861083a3660046122b5565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561087457600080fd5b5061034761088336600461204c565b6116cf565b60006301ffc9a760e01b6001600160e01b0319831614806108b957506380ac58cd60e01b6001600160e01b03198316145b806108d45750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546108e9906122df565b80601f0160208091040260200160405190810160405280929190818152602001828054610915906122df565b80156109625780601f1061093757610100808354040283529160200191610962565b820191906000526020600020905b81548152906001019060200180831161094557829003601f168201915b5050505050905090565b600061097782611767565b610994576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000546001600160a01b031633146109e35760405162461bcd60e51b81526004016109da90612319565b60405180910390fd5b601055565b60006109f38261178f565b9050806001600160a01b0316836001600160a01b031603610a275760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a5e57610a41813361083a565b610a5e576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610ae45760405162461bcd60e51b81526004016109da90612319565b600a610af0828261239c565b5050565b6000546001600160a01b03163314610b1e5760405162461bcd60e51b81526004016109da90612319565b6011805460ff1916911515919091179055565b610b3c8383836117f6565b505050565b6000546001600160a01b03163314610b6b5760405162461bcd60e51b81526004016109da90612319565b600e55565b6000546001600160a01b03163314610b9a5760405162461bcd60e51b81526004016109da90612319565b60118054911515620100000262ff000019909216919091179055565b6000546001600160a01b03163314610be05760405162461bcd60e51b81526004016109da90612319565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610c2d576040519150601f19603f3d011682016040523d82523d6000602084013e610c32565b606091505b5050905080610c4057600080fd5b50565b610b3c838383604051806020016040528060008152506114c6565b60606000610c6b83610e82565b905060008167ffffffffffffffff811115610c8857610c88611efd565b604051908082528060200260200182016040528015610cb1578160200160208202803683370190505b509050600160005b8381108015610cca5750600d548211155b15610d3e576000610cda83610e48565b9050866001600160a01b0316816001600160a01b031603610d2b57610d00836001612472565b848381518110610d1257610d1261248a565b602090810291909101015281610d27816124a0565b9250505b82610d35816124a0565b93505050610cb9565b5090949350505050565b6000546001600160a01b03163314610d725760405162461bcd60e51b81526004016109da90612319565b600c55565b6000546001600160a01b03163314610da15760405162461bcd60e51b81526004016109da90612319565b600b610af0828261239c565b600a8054610dba906122df565b80601f0160208091040260200160405190810160405280929190818152602001828054610de6906122df565b8015610e335780601f10610e0857610100808354040283529160200191610e33565b820191906000526020600020905b815481529060010190602001808311610e1657829003601f168201915b505050505081565b60098054610dba906122df565b60006108d48261178f565b6000546001600160a01b03163314610e7d5760405162461bcd60e51b81526004016109da90612319565b600d55565b60006001600160a01b038216610eab576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610efb5760405162461bcd60e51b81526004016109da90612319565b610f05600061199d565b565b6000546001600160a01b03163314610f315760405162461bcd60e51b81526004016109da90612319565b601255565b6000546001600160a01b03163314610f605760405162461bcd60e51b81526004016109da90612319565b6009610af0828261239c565b6060600480546108e9906122df565b81600d5481610f8d6002546001540390565b610f979190612472565b1115610fb55760405162461bcd60e51b81526004016109da906124b9565b600081118015610fc75750600f548111155b610fe35760405162461bcd60e51b81526004016109da906124e7565b60115460ff16156110065760405162461bcd60e51b81526004016109da90612515565b6000546001600160a01b031633146110305760405162461bcd60e51b81526004016109da90612319565b60005b82518110156110715761105f8382815181106110515761105161248a565b6020026020010151856119ed565b80611069816124a0565b915050611033565b50505050565b80600d54816110896002546001540390565b6110939190612472565b11156110b15760405162461bcd60e51b81526004016109da906124b9565b6000811180156110c35750600f548111155b6110df5760405162461bcd60e51b81526004016109da906124e7565b60115460ff16156111025760405162461bcd60e51b81526004016109da90612515565b81600c54611110919061254c565b3410156111555760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109da565b60115462010000900460ff161561117e5760405162461bcd60e51b81526004016109da9061256b565b610af033836119ed565b336001600160a01b038316036111b15760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610dba906122df565b6000546001600160a01b031633146112545760405162461bcd60e51b81526004016109da90612319565b600f55565b81600d548161126b6002546001540390565b6112759190612472565b11156112935760405162461bcd60e51b81526004016109da906124b9565b6000811180156112a55750600f548111155b6112c15760405162461bcd60e51b81526004016109da906124e7565b60115460ff16156112e45760405162461bcd60e51b81526004016109da90612515565b82600c546112f2919061254c565b3410156113375760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109da565b60115462010000900460ff1661135f5760405162461bcd60e51b81526004016109da9061256b565b600e54836113706002546001540390565b61137a9190612472565b11156113985760405162461bcd60e51b81526004016109da9061256b565b336000908152601360205260409020546113b3908490612472565b60105410156114045760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e740060448201526064016109da565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061144a8360125483611a07565b61148e5760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b21026b2b935b63290283937b7b31760591b60448201526064016109da565b336000908152601360205260409020546114a9908590612472565b3360008181526013602052604090209190915561107190856119ed565b6114d18484846117f6565b6001600160a01b0383163b15611071576114ed84848484611a1d565b611071576040516368d2bf6b60e11b815260040160405180910390fd5b606061151582611767565b6115795760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109da565b601154610100900460ff16151560000361161f57600b805461159a906122df565b80601f01602080910402602001604051908101604052809291908181526020018280546115c6906122df565b80156116135780601f106115e857610100808354040283529160200191611613565b820191906000526020600020905b8154815290600101906020018083116115f657829003601f168201915b50505050509050919050565b6000611629611b09565b9050611636836001612472565b925060008151116116565760405180602001604052806000815250611684565b8061166084611b18565b600a60405160200161167493929190612597565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146116b55760405162461bcd60e51b81526004016109da90612319565b601180549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146116f95760405162461bcd60e51b81526004016109da90612319565b6001600160a01b03811661175e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109da565b610c408161199d565b6000600154821080156108d4575050600090815260056020526040902054600160e01b161590565b6000816001548110156117dd5760008181526005602052604081205490600160e01b821690036117db575b806000036116845750600019016000818152600560205260409020546117ba565b505b604051636f96cda160e11b815260040160405180910390fd5b60006118018261178f565b9050836001600160a01b0316816001600160a01b0316146118345760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118525750611852853361083a565b8061186d5750336118628461096c565b6001600160a01b0316145b90508061188d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118b457604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b8717811790915583169003611955576001830160008181526005602052604081205490036119535760015481146119535760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610af0828260405180602001604052806000815250611c19565b600082611a148584611d8c565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a52903390899088908890600401612637565b6020604051808303816000875af1925050508015611a8d575060408051601f3d908101601f19168201909252611a8a91810190612674565b60015b611aeb573d808015611abb576040519150601f19603f3d011682016040523d82523d6000602084013e611ac0565b606091505b508051600003611ae3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546108e9906122df565b606081600003611b3f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b695780611b53816124a0565b9150611b629050600a836126a7565b9150611b43565b60008167ffffffffffffffff811115611b8457611b84611efd565b6040519080825280601f01601f191660200182016040528015611bae576020820181803683370190505b5090505b8415611b0157611bc36001836126bb565b9150611bd0600a866126d2565b611bdb906030612472565b60f81b818381518110611bf057611bf061248a565b60200101906001600160f81b031916908160001a905350611c12600a866126a7565b9450611bb2565b6001546001600160a01b038416611c4257604051622e076360e81b815260040160405180910390fd5b82600003611c635760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15611d38575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d016000878480600101955087611a1d565b611d1e576040516368d2bf6b60e11b815260040160405180910390fd5b808210611cb6578260015414611d3357600080fd5b611d7d565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d39575b50600155611071600085838684565b600081815b8451811015611df8576000858281518110611dae57611dae61248a565b60200260200101519050808311611dd45760008381526020829052604090209250611de5565b600081815260208490526040902092505b5080611df0816124a0565b915050611d91565b509392505050565b6001600160e01b031981168114610c4057600080fd5b600060208284031215611e2857600080fd5b813561168481611e00565b60005b83811015611e4e578181015183820152602001611e36565b838111156110715750506000910152565b60008151808452611e77816020860160208601611e33565b601f01601f19169290920160200192915050565b6020815260006116846020830184611e5f565b600060208284031215611eb057600080fd5b5035919050565b80356001600160a01b0381168114611ece57600080fd5b919050565b60008060408385031215611ee657600080fd5b611eef83611eb7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611f3c57611f3c611efd565b604052919050565b600067ffffffffffffffff831115611f5e57611f5e611efd565b611f71601f8401601f1916602001611f13565b9050828152838383011115611f8557600080fd5b828260208301376000602084830101529392505050565b600060208284031215611fae57600080fd5b813567ffffffffffffffff811115611fc557600080fd5b8201601f81018413611fd657600080fd5b611b0184823560208401611f44565b80358015158114611ece57600080fd5b60006020828403121561200757600080fd5b61168482611fe5565b60008060006060848603121561202557600080fd5b61202e84611eb7565b925061203c60208501611eb7565b9150604084013590509250925092565b60006020828403121561205e57600080fd5b61168482611eb7565b6020808252825182820181905260009190848201906040850190845b8181101561209f57835183529284019291840191600101612083565b50909695505050505050565b600067ffffffffffffffff8211156120c5576120c5611efd565b5060051b60200190565b600080604083850312156120e257600080fd5b8235915060208084013567ffffffffffffffff81111561210157600080fd5b8401601f8101861361211257600080fd5b8035612125612120826120ab565b611f13565b81815260059190911b8201830190838101908883111561214457600080fd5b928401925b828410156121695761215a84611eb7565b82529284019290840190612149565b80955050505050509250929050565b6000806040838503121561218b57600080fd5b61219483611eb7565b91506121a260208401611fe5565b90509250929050565b600080604083850312156121be57600080fd5b8235915060208084013567ffffffffffffffff8111156121dd57600080fd5b8401601f810186136121ee57600080fd5b80356121fc612120826120ab565b81815260059190911b8201830190838101908883111561221b57600080fd5b928401925b8284101561216957833582529284019290840190612220565b6000806000806080858703121561224f57600080fd5b61225885611eb7565b935061226660208601611eb7565b925060408501359150606085013567ffffffffffffffff81111561228957600080fd5b8501601f8101871361229a57600080fd5b6122a987823560208401611f44565b91505092959194509250565b600080604083850312156122c857600080fd5b6122d183611eb7565b91506121a260208401611eb7565b600181811c908216806122f357607f821691505b60208210810361231357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610b3c57600081815260208120601f850160051c810160208610156123755750805b601f850160051c820191505b8181101561239457828155600101612381565b505050505050565b815167ffffffffffffffff8111156123b6576123b6611efd565b6123ca816123c484546122df565b8461234e565b602080601f8311600181146123ff57600084156123e75750858301515b600019600386901b1c1916600185901b178555612394565b600085815260208120601f198616915b8281101561242e5788860151825594840194600190910190840161240f565b508582101561244c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600082198211156124855761248561245c565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600182016124b2576124b261245c565b5060010190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b60008160001904831182151516156125665761256661245c565b500290565b6020808252601290820152715468652070726573616c6520656e6465642160701b604082015260600190565b6000845160206125aa8285838a01611e33565b8551918401916125bd8184848a01611e33565b85549201916000906125ce816122df565b600182811680156125e657600181146125fb57612627565b60ff1984168752821515830287019450612627565b896000528560002060005b8481101561261f57815489820152908301908701612606565b505082870194505b50929a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061266a90830184611e5f565b9695505050505050565b60006020828403121561268657600080fd5b815161168481611e00565b634e487b7160e01b600052601260045260246000fd5b6000826126b6576126b6612691565b500490565b6000828210156126cd576126cd61245c565b500390565b6000826126e1576126e1612691565b50069056fea2646970667358221220ba0242e008a79b246cb6a202fe2a321b68164a7da81fe12ba346d85cadb3f52e64736f6c634300080f0033697066733a2f2f516d6375626e33584e58623455397364764d3873587563523435706878663161576d596373396e344a69474a52362f
Deployed Bytecode
0x6080604052600436106102935760003560e01c80636352211e1161015a578063a22cb465116100c1578063babcc5391161007a578063babcc53914610793578063c87b56dd146107c9578063d5abeb01146107e9578063e0a80853146107ff578063e985e9c51461081f578063f2fde38b1461086857600080fd5b8063a22cb465146106de578063a45ba8e7146106fe578063a7cd52cb14610713578063b071401b14610740578063b45b35d714610760578063b88d4fde1461077357600080fd5b80638da5cb5b116101135780638da5cb5b1461064257806394354fd01461066057806395d89b4114610676578063962e0f5a1461068b5780639c70b512146106ab578063a0712d68146106cb57600080fd5b80636352211e1461058d5780636f8b44b0146105ad57806370a08231146105cd578063715018a6146105ed5780637cb64759146106025780637ec4a6591461062257600080fd5b80632eb4a7ab116101fe57806344a0d68a116101b757806344a0d68a146104ea5780634fdd43cb1461050a578063518302271461052a5780635503a0e8146105495780635c975abb1461055e57806362b99ad41461057857600080fd5b80632eb4a7ab146104325780633abe82ee146104485780633c952764146104685780633ccfd60b1461048857806342842e0e1461049d578063438b6300146104bd57600080fd5b806313faede61161025057806313faede61461038d57806316ba10e0146103a357806316c38b3c146103c357806318160ddd146103e3578063239c70ae146103fc57806323b872dd1461041257600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063088a4ed014610327578063095ea7b3146103495780630fe8418b14610369575b600080fd5b3480156102a457600080fd5b506102b86102b3366004611e16565b610888565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e26108da565b6040516102c49190611e8b565b3480156102fb57600080fd5b5061030f61030a366004611e9e565b61096c565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004611e9e565b6109b0565b005b34801561035557600080fd5b50610347610364366004611ed3565b6109e8565b34801561037557600080fd5b5061037f600e5481565b6040519081526020016102c4565b34801561039957600080fd5b5061037f600c5481565b3480156103af57600080fd5b506103476103be366004611f9c565b610aba565b3480156103cf57600080fd5b506103476103de366004611ff5565b610af4565b3480156103ef57600080fd5b506002546001540361037f565b34801561040857600080fd5b5061037f60105481565b34801561041e57600080fd5b5061034761042d366004612010565b610b31565b34801561043e57600080fd5b5061037f60125481565b34801561045457600080fd5b50610347610463366004611e9e565b610b41565b34801561047457600080fd5b50610347610483366004611ff5565b610b70565b34801561049457600080fd5b50610347610bb6565b3480156104a957600080fd5b506103476104b8366004612010565b610c43565b3480156104c957600080fd5b506104dd6104d836600461204c565b610c5e565b6040516102c49190612067565b3480156104f657600080fd5b50610347610505366004611e9e565b610d48565b34801561051657600080fd5b50610347610525366004611f9c565b610d77565b34801561053657600080fd5b506011546102b890610100900460ff1681565b34801561055557600080fd5b506102e2610dad565b34801561056a57600080fd5b506011546102b89060ff1681565b34801561058457600080fd5b506102e2610e3b565b34801561059957600080fd5b5061030f6105a8366004611e9e565b610e48565b3480156105b957600080fd5b506103476105c8366004611e9e565b610e53565b3480156105d957600080fd5b5061037f6105e836600461204c565b610e82565b3480156105f957600080fd5b50610347610ed1565b34801561060e57600080fd5b5061034761061d366004611e9e565b610f07565b34801561062e57600080fd5b5061034761063d366004611f9c565b610f36565b34801561064e57600080fd5b506000546001600160a01b031661030f565b34801561066c57600080fd5b5061037f600f5481565b34801561068257600080fd5b506102e2610f6c565b34801561069757600080fd5b506103476106a63660046120cf565b610f7b565b3480156106b757600080fd5b506011546102b89062010000900460ff1681565b6103476106d9366004611e9e565b611077565b3480156106ea57600080fd5b506103476106f9366004612178565b611188565b34801561070a57600080fd5b506102e261121d565b34801561071f57600080fd5b5061037f61072e36600461204c565b60136020526000908152604090205481565b34801561074c57600080fd5b5061034761075b366004611e9e565b61122a565b61034761076e3660046121ab565b611259565b34801561077f57600080fd5b5061034761078e366004612239565b6114c6565b34801561079f57600080fd5b5061037f6107ae36600461204c565b6001600160a01b031660009081526013602052604090205490565b3480156107d557600080fd5b506102e26107e4366004611e9e565b61150a565b3480156107f557600080fd5b5061037f600d5481565b34801561080b57600080fd5b5061034761081a366004611ff5565b61168b565b34801561082b57600080fd5b506102b861083a3660046122b5565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561087457600080fd5b5061034761088336600461204c565b6116cf565b60006301ffc9a760e01b6001600160e01b0319831614806108b957506380ac58cd60e01b6001600160e01b03198316145b806108d45750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546108e9906122df565b80601f0160208091040260200160405190810160405280929190818152602001828054610915906122df565b80156109625780601f1061093757610100808354040283529160200191610962565b820191906000526020600020905b81548152906001019060200180831161094557829003601f168201915b5050505050905090565b600061097782611767565b610994576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000546001600160a01b031633146109e35760405162461bcd60e51b81526004016109da90612319565b60405180910390fd5b601055565b60006109f38261178f565b9050806001600160a01b0316836001600160a01b031603610a275760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a5e57610a41813361083a565b610a5e576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610ae45760405162461bcd60e51b81526004016109da90612319565b600a610af0828261239c565b5050565b6000546001600160a01b03163314610b1e5760405162461bcd60e51b81526004016109da90612319565b6011805460ff1916911515919091179055565b610b3c8383836117f6565b505050565b6000546001600160a01b03163314610b6b5760405162461bcd60e51b81526004016109da90612319565b600e55565b6000546001600160a01b03163314610b9a5760405162461bcd60e51b81526004016109da90612319565b60118054911515620100000262ff000019909216919091179055565b6000546001600160a01b03163314610be05760405162461bcd60e51b81526004016109da90612319565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610c2d576040519150601f19603f3d011682016040523d82523d6000602084013e610c32565b606091505b5050905080610c4057600080fd5b50565b610b3c838383604051806020016040528060008152506114c6565b60606000610c6b83610e82565b905060008167ffffffffffffffff811115610c8857610c88611efd565b604051908082528060200260200182016040528015610cb1578160200160208202803683370190505b509050600160005b8381108015610cca5750600d548211155b15610d3e576000610cda83610e48565b9050866001600160a01b0316816001600160a01b031603610d2b57610d00836001612472565b848381518110610d1257610d1261248a565b602090810291909101015281610d27816124a0565b9250505b82610d35816124a0565b93505050610cb9565b5090949350505050565b6000546001600160a01b03163314610d725760405162461bcd60e51b81526004016109da90612319565b600c55565b6000546001600160a01b03163314610da15760405162461bcd60e51b81526004016109da90612319565b600b610af0828261239c565b600a8054610dba906122df565b80601f0160208091040260200160405190810160405280929190818152602001828054610de6906122df565b8015610e335780601f10610e0857610100808354040283529160200191610e33565b820191906000526020600020905b815481529060010190602001808311610e1657829003601f168201915b505050505081565b60098054610dba906122df565b60006108d48261178f565b6000546001600160a01b03163314610e7d5760405162461bcd60e51b81526004016109da90612319565b600d55565b60006001600160a01b038216610eab576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610efb5760405162461bcd60e51b81526004016109da90612319565b610f05600061199d565b565b6000546001600160a01b03163314610f315760405162461bcd60e51b81526004016109da90612319565b601255565b6000546001600160a01b03163314610f605760405162461bcd60e51b81526004016109da90612319565b6009610af0828261239c565b6060600480546108e9906122df565b81600d5481610f8d6002546001540390565b610f979190612472565b1115610fb55760405162461bcd60e51b81526004016109da906124b9565b600081118015610fc75750600f548111155b610fe35760405162461bcd60e51b81526004016109da906124e7565b60115460ff16156110065760405162461bcd60e51b81526004016109da90612515565b6000546001600160a01b031633146110305760405162461bcd60e51b81526004016109da90612319565b60005b82518110156110715761105f8382815181106110515761105161248a565b6020026020010151856119ed565b80611069816124a0565b915050611033565b50505050565b80600d54816110896002546001540390565b6110939190612472565b11156110b15760405162461bcd60e51b81526004016109da906124b9565b6000811180156110c35750600f548111155b6110df5760405162461bcd60e51b81526004016109da906124e7565b60115460ff16156111025760405162461bcd60e51b81526004016109da90612515565b81600c54611110919061254c565b3410156111555760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109da565b60115462010000900460ff161561117e5760405162461bcd60e51b81526004016109da9061256b565b610af033836119ed565b336001600160a01b038316036111b15760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610dba906122df565b6000546001600160a01b031633146112545760405162461bcd60e51b81526004016109da90612319565b600f55565b81600d548161126b6002546001540390565b6112759190612472565b11156112935760405162461bcd60e51b81526004016109da906124b9565b6000811180156112a55750600f548111155b6112c15760405162461bcd60e51b81526004016109da906124e7565b60115460ff16156112e45760405162461bcd60e51b81526004016109da90612515565b82600c546112f2919061254c565b3410156113375760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109da565b60115462010000900460ff1661135f5760405162461bcd60e51b81526004016109da9061256b565b600e54836113706002546001540390565b61137a9190612472565b11156113985760405162461bcd60e51b81526004016109da9061256b565b336000908152601360205260409020546113b3908490612472565b60105410156114045760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e740060448201526064016109da565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061144a8360125483611a07565b61148e5760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b21026b2b935b63290283937b7b31760591b60448201526064016109da565b336000908152601360205260409020546114a9908590612472565b3360008181526013602052604090209190915561107190856119ed565b6114d18484846117f6565b6001600160a01b0383163b15611071576114ed84848484611a1d565b611071576040516368d2bf6b60e11b815260040160405180910390fd5b606061151582611767565b6115795760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109da565b601154610100900460ff16151560000361161f57600b805461159a906122df565b80601f01602080910402602001604051908101604052809291908181526020018280546115c6906122df565b80156116135780601f106115e857610100808354040283529160200191611613565b820191906000526020600020905b8154815290600101906020018083116115f657829003601f168201915b50505050509050919050565b6000611629611b09565b9050611636836001612472565b925060008151116116565760405180602001604052806000815250611684565b8061166084611b18565b600a60405160200161167493929190612597565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146116b55760405162461bcd60e51b81526004016109da90612319565b601180549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146116f95760405162461bcd60e51b81526004016109da90612319565b6001600160a01b03811661175e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109da565b610c408161199d565b6000600154821080156108d4575050600090815260056020526040902054600160e01b161590565b6000816001548110156117dd5760008181526005602052604081205490600160e01b821690036117db575b806000036116845750600019016000818152600560205260409020546117ba565b505b604051636f96cda160e11b815260040160405180910390fd5b60006118018261178f565b9050836001600160a01b0316816001600160a01b0316146118345760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118525750611852853361083a565b8061186d5750336118628461096c565b6001600160a01b0316145b90508061188d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118b457604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b8717811790915583169003611955576001830160008181526005602052604081205490036119535760015481146119535760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610af0828260405180602001604052806000815250611c19565b600082611a148584611d8c565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a52903390899088908890600401612637565b6020604051808303816000875af1925050508015611a8d575060408051601f3d908101601f19168201909252611a8a91810190612674565b60015b611aeb573d808015611abb576040519150601f19603f3d011682016040523d82523d6000602084013e611ac0565b606091505b508051600003611ae3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546108e9906122df565b606081600003611b3f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b695780611b53816124a0565b9150611b629050600a836126a7565b9150611b43565b60008167ffffffffffffffff811115611b8457611b84611efd565b6040519080825280601f01601f191660200182016040528015611bae576020820181803683370190505b5090505b8415611b0157611bc36001836126bb565b9150611bd0600a866126d2565b611bdb906030612472565b60f81b818381518110611bf057611bf061248a565b60200101906001600160f81b031916908160001a905350611c12600a866126a7565b9450611bb2565b6001546001600160a01b038416611c4257604051622e076360e81b815260040160405180910390fd5b82600003611c635760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15611d38575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d016000878480600101955087611a1d565b611d1e576040516368d2bf6b60e11b815260040160405180910390fd5b808210611cb6578260015414611d3357600080fd5b611d7d565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d39575b50600155611071600085838684565b600081815b8451811015611df8576000858281518110611dae57611dae61248a565b60200260200101519050808311611dd45760008381526020829052604090209250611de5565b600081815260208490526040902092505b5080611df0816124a0565b915050611d91565b509392505050565b6001600160e01b031981168114610c4057600080fd5b600060208284031215611e2857600080fd5b813561168481611e00565b60005b83811015611e4e578181015183820152602001611e36565b838111156110715750506000910152565b60008151808452611e77816020860160208601611e33565b601f01601f19169290920160200192915050565b6020815260006116846020830184611e5f565b600060208284031215611eb057600080fd5b5035919050565b80356001600160a01b0381168114611ece57600080fd5b919050565b60008060408385031215611ee657600080fd5b611eef83611eb7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611f3c57611f3c611efd565b604052919050565b600067ffffffffffffffff831115611f5e57611f5e611efd565b611f71601f8401601f1916602001611f13565b9050828152838383011115611f8557600080fd5b828260208301376000602084830101529392505050565b600060208284031215611fae57600080fd5b813567ffffffffffffffff811115611fc557600080fd5b8201601f81018413611fd657600080fd5b611b0184823560208401611f44565b80358015158114611ece57600080fd5b60006020828403121561200757600080fd5b61168482611fe5565b60008060006060848603121561202557600080fd5b61202e84611eb7565b925061203c60208501611eb7565b9150604084013590509250925092565b60006020828403121561205e57600080fd5b61168482611eb7565b6020808252825182820181905260009190848201906040850190845b8181101561209f57835183529284019291840191600101612083565b50909695505050505050565b600067ffffffffffffffff8211156120c5576120c5611efd565b5060051b60200190565b600080604083850312156120e257600080fd5b8235915060208084013567ffffffffffffffff81111561210157600080fd5b8401601f8101861361211257600080fd5b8035612125612120826120ab565b611f13565b81815260059190911b8201830190838101908883111561214457600080fd5b928401925b828410156121695761215a84611eb7565b82529284019290840190612149565b80955050505050509250929050565b6000806040838503121561218b57600080fd5b61219483611eb7565b91506121a260208401611fe5565b90509250929050565b600080604083850312156121be57600080fd5b8235915060208084013567ffffffffffffffff8111156121dd57600080fd5b8401601f810186136121ee57600080fd5b80356121fc612120826120ab565b81815260059190911b8201830190838101908883111561221b57600080fd5b928401925b8284101561216957833582529284019290840190612220565b6000806000806080858703121561224f57600080fd5b61225885611eb7565b935061226660208601611eb7565b925060408501359150606085013567ffffffffffffffff81111561228957600080fd5b8501601f8101871361229a57600080fd5b6122a987823560208401611f44565b91505092959194509250565b600080604083850312156122c857600080fd5b6122d183611eb7565b91506121a260208401611eb7565b600181811c908216806122f357607f821691505b60208210810361231357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610b3c57600081815260208120601f850160051c810160208610156123755750805b601f850160051c820191505b8181101561239457828155600101612381565b505050505050565b815167ffffffffffffffff8111156123b6576123b6611efd565b6123ca816123c484546122df565b8461234e565b602080601f8311600181146123ff57600084156123e75750858301515b600019600386901b1c1916600185901b178555612394565b600085815260208120601f198616915b8281101561242e5788860151825594840194600190910190840161240f565b508582101561244c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600082198211156124855761248561245c565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600182016124b2576124b261245c565b5060010190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b60008160001904831182151516156125665761256661245c565b500290565b6020808252601290820152715468652070726573616c6520656e6465642160701b604082015260600190565b6000845160206125aa8285838a01611e33565b8551918401916125bd8184848a01611e33565b85549201916000906125ce816122df565b600182811680156125e657600181146125fb57612627565b60ff1984168752821515830287019450612627565b896000528560002060005b8481101561261f57815489820152908301908701612606565b505082870194505b50929a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061266a90830184611e5f565b9695505050505050565b60006020828403121561268657600080fd5b815161168481611e00565b634e487b7160e01b600052601260045260246000fd5b6000826126b6576126b6612691565b500490565b6000828210156126cd576126cd61245c565b500390565b6000826126e1576126e1612691565b50069056fea2646970667358221220ba0242e008a79b246cb6a202fe2a321b68164a7da81fe12ba346d85cadb3f52e64736f6c634300080f0033
Deployed Bytecode Sourcemap
46683:5078:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16517:615;;;;;;;;;;-1:-1:-1;16517:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;16517:615:0;;;;;;;;21530:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23598:204::-;;;;;;;;;;-1:-1:-1;23598:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23598:204:0;1528:203:1;50766:110:0;;;;;;;;;;-1:-1:-1;50766:110:0;;;;;:::i;:::-;;:::i;:::-;;23058:474;;;;;;;;;;-1:-1:-1;23058:474:0;;;;;:::i;:::-;;:::i;47006:31::-;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;47006:31:0;2173:177:1;46932:32:0;;;;;;;;;;;;;;;;51126:100;;;;;;;;;;-1:-1:-1;51126:100:0;;;;;:::i;:::-;;:::i;51428:77::-;;;;;;;;;;-1:-1:-1;51428:77:0;;;;;:::i;:::-;;:::i;15571:315::-;;;;;;;;;;-1:-1:-1;15837:12:0;;15821:13;;:28;15571:315;;47085:32;;;;;;;;;;;;;;;;24484:170;;;;;;;;;;-1:-1:-1;24484:170:0;;;;;:::i;:::-;;:::i;47228:94::-;;;;;;;;;;;;;;;;51332:90;;;;;;;;;;-1:-1:-1;51332:90:0;;;;;:::i;:::-;;:::i;50258:95::-;;;;;;;;;;-1:-1:-1;50258:95:0;;;;;:::i;:::-;;:::i;51511:137::-;;;;;;;;;;;;;:::i;24725:185::-;;;;;;;;;;-1:-1:-1;24725:185:0;;;;;:::i;:::-;;:::i;49087:637::-;;;;;;;;;;-1:-1:-1;49087:637:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50550:74::-;;;;;;;;;;-1:-1:-1;50550:74:0;;;;;:::i;:::-;;:::i;50882:132::-;;;;;;;;;;-1:-1:-1;50882:132:0;;;;;:::i;:::-;;:::i;47155:27::-;;;;;;;;;;-1:-1:-1;47155:27:0;;;;;;;;;;;46854:33;;;;;;;;;;;;;:::i;47124:26::-;;;;;;;;;;-1:-1:-1;47124:26:0;;;;;;;;46767:82;;;;;;;;;;;;;:::i;21319:144::-;;;;;;;;;;-1:-1:-1;21319:144:0;;;;;:::i;:::-;;:::i;51232:94::-;;;;;;;;;;-1:-1:-1;51232:94:0;;;;;:::i;:::-;;:::i;17196:224::-;;;;;;;;;;-1:-1:-1;17196:224:0;;;;;:::i;:::-;;:::i;2633:103::-;;;;;;;;;;;;;:::i;50446:98::-;;;;;;;;;;-1:-1:-1;50446:98:0;;;;;:::i;:::-;;:::i;51020:100::-;;;;;;;;;;-1:-1:-1;51020:100:0;;;;;:::i;:::-;;:::i;1982:87::-;;;;;;;;;;-1:-1:-1;2028:7:0;2055:6;-1:-1:-1;;;;;2055:6:0;1982:87;;47042:38;;;;;;;;;;;;;;;;21699:104;;;;;;;;;;;;;:::i;48736:230::-;;;;;;;;;;-1:-1:-1;48736:230:0;;;;;:::i;:::-;;:::i;47187:34::-;;;;;;;;;;-1:-1:-1;47187:34:0;;;;;;;;;;;47765:251;;;;;;:::i;:::-;;:::i;23874:308::-;;;;;;;;;;-1:-1:-1;23874:308:0;;;;;:::i;:::-;;:::i;46892:31::-;;;;;;;;;;;;;:::i;47329:44::-;;;;;;;;;;-1:-1:-1;47329:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;50630:130;;;;;;;;;;-1:-1:-1;50630:130:0;;;;;:::i;:::-;;:::i;48022:706::-;;;;;;:::i;:::-;;:::i;24981:396::-;;;;;;;;;;-1:-1:-1;24981:396:0;;;;;:::i;:::-;;:::i;48972:109::-;;;;;;;;;;-1:-1:-1;48972:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;49056:19:0;49030:7;49056:19;;;:9;:19;;;;;;;48972:109;49730:522;;;;;;;;;;-1:-1:-1;49730:522:0;;;;;:::i;:::-;;:::i;46969:32::-;;;;;;;;;;;;;;;;50359:81;;;;;;;;;;-1:-1:-1;50359:81:0;;;;;:::i;:::-;;:::i;24253:164::-;;;;;;;;;;-1:-1:-1;24253:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24374:25:0;;;24350:4;24374:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24253:164;2891:201;;;;;;;;;;-1:-1:-1;2891:201:0;;;;;:::i;:::-;;:::i;16517:615::-;16602:4;-1:-1:-1;;;;;;;;;16902:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16979:25:0;;;16902:102;:179;;;-1:-1:-1;;;;;;;;;;17056:25:0;;;16902:179;16882:199;16517:615;-1:-1:-1;;16517:615:0:o;21530:100::-;21584:13;21617:5;21610:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21530:100;:::o;23598:204::-;23666:7;23691:16;23699:7;23691;:16::i;:::-;23686:64;;23716:34;;-1:-1:-1;;;23716:34:0;;;;;;;;;;;23686:64;-1:-1:-1;23770:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23770:24:0;;23598:204::o;50766:110::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;;;;;;;;;50840:13:::1;:30:::0;50766:110::o;23058:474::-;23131:13;23163:27;23182:7;23163:18;:27::i;:::-;23131:61;;23213:5;-1:-1:-1;;;;;23207:11:0;:2;-1:-1:-1;;;;;23207:11:0;;23203:48;;23227:24;;-1:-1:-1;;;23227:24:0;;;;;;;;;;;23203:48;790:10;-1:-1:-1;;;;;23268:28:0;;;23264:175;;23316:44;23333:5;790:10;24253:164;:::i;23316:44::-;23311:128;;23388:35;;-1:-1:-1;;;23388:35:0;;;;;;;;;;;23311:128;23451:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23451:29:0;-1:-1:-1;;;;;23451:29:0;;;;;;;;;23496:28;;23451:24;;23496:28;;;;;;;23120:412;23058:474;;:::o;51126:100::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;51198:9:::1;:22;51210:10:::0;51198:9;:22:::1;:::i;:::-;;51126:100:::0;:::o;51428:77::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;51484:6:::1;:15:::0;;-1:-1:-1;;51484:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51428:77::o;24484:170::-;24618:28;24628:4;24634:2;24638:7;24618:9;:28::i;:::-;24484:170;;;:::o;51332:90::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;51396:8:::1;:20:::0;51332:90::o;50258:95::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;50323:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;50323:24:0;;::::1;::::0;;;::::1;::::0;;50258:95::o;51511:137::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;51556:7:::1;2055:6:::0;;51569:55:::1;::::0;-1:-1:-1;;;;;2055:6:0;;;;51598:21:::1;::::0;51556:7;51569:55;51556:7;51569:55;51598:21;2055:6;51569:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51555:69;;;51639:2;51631:11;;;::::0;::::1;;51548:100;51511:137::o:0;24725:185::-;24863:39;24880:4;24886:2;24890:7;24863:39;;;;;;;;;;;;:16;:39::i;49087:637::-;49162:16;49190:23;49216:17;49226:6;49216:9;:17::i;:::-;49190:43;;49240:30;49287:15;49273:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49273:30:0;-1:-1:-1;49240:63:0;-1:-1:-1;49335:1:0;49310:22;49379:311;49404:15;49386;:33;:64;;;;;49441:9;;49423:14;:27;;49386:64;49379:311;;;49461:25;49489:23;49497:14;49489:7;:23::i;:::-;49461:51;;49548:6;-1:-1:-1;;;;;49527:27:0;:17;-1:-1:-1;;;;;49527:27:0;;49523:133;;49600:16;:14;49615:1;49600:16;:::i;:::-;49567:13;49581:15;49567:30;;;;;;;;:::i;:::-;;;;;;;;;;:49;49629:17;;;;:::i;:::-;;;;49523:133;49666:16;;;;:::i;:::-;;;;49452:238;49379:311;;;-1:-1:-1;49705:13:0;;49087:637;-1:-1:-1;;;;49087:637:0:o;50550:74::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;50606:4:::1;:12:::0;50550:74::o;50882:132::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;50970:17:::1;:38;50990:18:::0;50970:17;:38:::1;:::i;46854:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46767:82::-;;;;;;;:::i;21319:144::-;21383:7;21426:27;21445:7;21426:18;:27::i;51232:94::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;51298:9:::1;:22:::0;51232:94::o;17196:224::-;17260:7;-1:-1:-1;;;;;17284:19:0;;17280:60;;17312:28;;-1:-1:-1;;;17312:28:0;;;;;;;;;;;17280:60;-1:-1:-1;;;;;;17358:25:0;;;;;:18;:25;;;;;;12535:13;17358:54;;17196:224::o;2633:103::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;2698:30:::1;2725:1;2698:18;:30::i;:::-;2633:103::o:0;50446:98::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;50514:10:::1;:24:::0;50446:98::o;51020:100::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;51092:9:::1;:22;51104:10:::0;51092:9;:22:::1;:::i;21699:104::-:0;21755:13;21788:7;21781:14;;;;;:::i;48736:230::-;48831:11;47569:9;;47554:11;47538:13;15837:12;;15821:13;;:28;;15571:315;47538:13;:27;;;;:::i;:::-;:40;;47530:73;;;;-1:-1:-1;;;47530:73:0;;;;;;;:::i;:::-;47632:1;47618:11;:15;:52;;;;;47652:18;;47637:11;:33;;47618:52;47610:85;;;;-1:-1:-1;;;47610:85:0;;;;;;;:::i;:::-;47711:6;;;;47710:7;47702:43;;;;-1:-1:-1;;;47702:43:0;;;;;;;:::i;:::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23:::1;2194:68;;;;-1:-1:-1::0;;;2194:68:0::1;;;;;;;:::i;:::-;48866:9:::2;48861:100;48885:9;:16;48881:1;:20;48861:100;;;48917:36;48927:9;48937:1;48927:12;;;;;;;;:::i;:::-;;;;;;;48941:11;48917:9;:36::i;:::-;48903:3:::0;::::2;::::0;::::2;:::i;:::-;;;;48861:100;;;;48736:230:::0;;;:::o;47765:251::-;47830:11;47569:9;;47554:11;47538:13;15837:12;;15821:13;;:28;;15571:315;47538:13;:27;;;;:::i;:::-;:40;;47530:73;;;;-1:-1:-1;;;47530:73:0;;;;;;;:::i;:::-;47632:1;47618:11;:15;:52;;;;;47652:18;;47637:11;:33;;47618:52;47610:85;;;;-1:-1:-1;;;47610:85:0;;;;;;;:::i;:::-;47711:6;;;;47710:7;47702:43;;;;-1:-1:-1;;;47702:43:0;;;;;;;:::i;:::-;47878:11:::1;47871:4;;:18;;;;:::i;:::-;47858:9;:31;;47850:63;;;::::0;-1:-1:-1;;;47850:63:0;;13953:2:1;47850:63:0::1;::::0;::::1;13935:21:1::0;13992:2;13972:18;;;13965:30;-1:-1:-1;;;14011:18:1;;;14004:49;14070:18;;47850:63:0::1;13751:343:1::0;47850:63:0::1;47929:15;::::0;;;::::1;;;47928:16;47920:47;;;;-1:-1:-1::0;;;47920:47:0::1;;;;;;;:::i;:::-;47976:34;47986:10;47998:11;47976:9;:34::i;23874:308::-:0;790:10;-1:-1:-1;;;;;23973:31:0;;;23969:61;;24013:17;;-1:-1:-1;;;24013:17:0;;;;;;;;;;;23969:61;790:10;24043:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24043:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24043:60:0;;;;;;;;;;24119:55;;540:41:1;;;24043:49:0;;790:10;24119:55;;513:18:1;24119:55:0;;;;;;;23874:308;;:::o;46892:31::-;;;;;;;:::i;50630:130::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;50714:18:::1;:40:::0;50630:130::o;48022:706::-;48120:11;47569:9;;47554:11;47538:13;15837:12;;15821:13;;:28;;15571:315;47538:13;:27;;;;:::i;:::-;:40;;47530:73;;;;-1:-1:-1;;;47530:73:0;;;;;;;:::i;:::-;47632:1;47618:11;:15;:52;;;;;47652:18;;47637:11;:33;;47618:52;47610:85;;;;-1:-1:-1;;;47610:85:0;;;;;;;:::i;:::-;47711:6;;;;47710:7;47702:43;;;;-1:-1:-1;;;47702:43:0;;;;;;;:::i;:::-;48168:11:::1;48161:4;;:18;;;;:::i;:::-;48148:9;:31;;48140:63;;;::::0;-1:-1:-1;;;48140:63:0;;13953:2:1;48140:63:0::1;::::0;::::1;13935:21:1::0;13992:2;13972:18;;;13965:30;-1:-1:-1;;;14011:18:1;;;14004:49;14070:18;;48140:63:0::1;13751:343:1::0;48140:63:0::1;48218:15;::::0;;;::::1;;;48210:46;;;;-1:-1:-1::0;;;48210:46:0::1;;;;;;;:::i;:::-;48302:8;;48287:11;48271:13;15837:12:::0;;15821:13;;:28;;15571:315;48271:13:::1;:27;;;;:::i;:::-;:39;;48263:70;;;;-1:-1:-1::0;;;48263:70:0::1;;;;;;;:::i;:::-;48375:10;48365:21;::::0;;;:9:::1;:21;::::0;;;;;:35:::1;::::0;48389:11;;48365:35:::1;:::i;:::-;48348:13;;:52;;48340:96;;;::::0;-1:-1:-1;;;48340:96:0;;14648:2:1;48340:96:0::1;::::0;::::1;14630:21:1::0;14687:2;14667:18;;;14660:30;14726:33;14706:18;;;14699:61;14777:18;;48340:96:0::1;14446:355:1::0;48340:96:0::1;48468:28;::::0;-1:-1:-1;;48485:10:0::1;14955:2:1::0;14951:15;14947:53;48468:28:0::1;::::0;::::1;14935:66:1::0;48443:12:0::1;::::0;15017::1;;48468:28:0::1;;;;;;;;;;;;48458:39;;;;;;48443:54;;48522:50;48541:12;48555:10;;48567:4;48522:18;:50::i;:::-;48504:109;;;::::0;-1:-1:-1;;;48504:109:0;;15242:2:1;48504:109:0::1;::::0;::::1;15224:21:1::0;15281:2;15261:18;;;15254:30;-1:-1:-1;;;15300:18:1;;;15293:51;15361:18;;48504:109:0::1;15040:345:1::0;48504:109:0::1;48654:10;48644:21;::::0;;;:9:::1;:21;::::0;;;;;:35:::1;::::0;48668:11;;48644:35:::1;:::i;:::-;48630:10;48620:21;::::0;;;:9:::1;:21;::::0;;;;:59;;;;48688:34:::1;::::0;48710:11;48688:9:::1;:34::i;24981:396::-:0;25148:28;25158:4;25164:2;25168:7;25148:9;:28::i;:::-;-1:-1:-1;;;;;25191:14:0;;;:19;25187:183;;25230:56;25261:4;25267:2;25271:7;25280:5;25230:30;:56::i;:::-;25225:145;;25314:40;;-1:-1:-1;;;25314:40:0;;;;;;;;;;;49730:522;49829:13;49870:17;49878:8;49870:7;:17::i;:::-;49854:98;;;;-1:-1:-1;;;49854:98:0;;15592:2:1;49854:98:0;;;15574:21:1;15631:2;15611:18;;;15604:30;15670:34;15650:18;;;15643:62;-1:-1:-1;;;15721:18:1;;;15714:45;15776:19;;49854:98:0;15390:411:1;49854:98:0;49965:8;;;;;;;:17;;49977:5;49965:17;49961:64;;50000:17;49993:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49730:522;;;:::o;49961:64::-;50033:28;50064:10;:8;:10::i;:::-;50033:41;-1:-1:-1;50092:10:0;:8;50101:1;50092:10;:::i;:::-;50081:21;;50147:1;50122:14;50116:28;:32;:130;;;;;;;;;;;;;;;;;50184:14;50200:19;:8;:17;:19::i;:::-;50221:9;50167:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50116:130;50109:137;49730:522;-1:-1:-1;;;49730:522:0:o;50359:81::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;50417:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;50417:17:0;;::::1;::::0;;;::::1;::::0;;50359:81::o;2891:201::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2980:22:0;::::1;2972:73;;;::::0;-1:-1:-1;;;2972:73:0;;17243:2:1;2972:73:0::1;::::0;::::1;17225:21:1::0;17282:2;17262:18;;;17255:30;17321:34;17301:18;;;17294:62;-1:-1:-1;;;17372:18:1;;;17365:36;17418:19;;2972:73:0::1;17041:402:1::0;2972:73:0::1;3056:28;3075:8;3056:18;:28::i;25632:273::-:0;25689:4;25779:13;;25769:7;:23;25726:152;;;;-1:-1:-1;;25830:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25830:43:0;:48;;25632:273::o;18834:1129::-;18901:7;18936;19038:13;;19031:4;:20;19027:869;;;19076:14;19093:23;;;:17;:23;;;;;;;-1:-1:-1;;;19182:23:0;;:28;;19178:699;;19701:113;19708:6;19718:1;19708:11;19701:113;;-1:-1:-1;;;19779:6:0;19761:25;;;;:17;:25;;;;;;19701:113;;19178:699;19053:843;19027:869;19924:31;;-1:-1:-1;;;19924:31:0;;;;;;;;;;;30871:2515;30986:27;31016;31035:7;31016:18;:27::i;:::-;30986:57;;31101:4;-1:-1:-1;;;;;31060:45:0;31076:19;-1:-1:-1;;;;;31060:45:0;;31056:86;;31114:28;;-1:-1:-1;;;31114:28:0;;;;;;;;;;;31056:86;31155:22;790:10;-1:-1:-1;;;;;31181:27:0;;;;:87;;-1:-1:-1;31225:43:0;31242:4;790:10;24253:164;:::i;31225:43::-;31181:147;;;-1:-1:-1;790:10:0;31285:20;31297:7;31285:11;:20::i;:::-;-1:-1:-1;;;;;31285:43:0;;31181:147;31155:174;;31347:17;31342:66;;31373:35;;-1:-1:-1;;;31373:35:0;;;;;;;;;;;31342:66;-1:-1:-1;;;;;31423:16:0;;31419:52;;31448:23;;-1:-1:-1;;;31448:23:0;;;;;;;;;;;31419:52;31600:24;;;;:15;:24;;;;;;;;31593:31;;-1:-1:-1;;;;;;31593:31:0;;;-1:-1:-1;;;;;31992:24:0;;;;;:18;:24;;;;;31990:26;;-1:-1:-1;;31990:26:0;;;32061:22;;;;;;;32059:24;;-1:-1:-1;32059:24:0;;;32354:26;;;:17;:26;;;;;-1:-1:-1;;;32442:15:0;13189:3;32442:41;32400:84;;:128;;32354:174;;;32648:46;;:51;;32644:626;;32752:1;32742:11;;32720:19;32875:30;;;:17;:30;;;;;;:35;;32871:384;;33013:13;;32998:11;:28;32994:242;;33160:30;;;;:17;:30;;;;;:52;;;32994:242;32701:569;32644:626;33317:7;33313:2;-1:-1:-1;;;;;33298:27:0;33307:4;-1:-1:-1;;;;;33298:27:0;;;;;;;;;;;30975:2411;;30871:2515;;;:::o;3252:191::-;3326:16;3345:6;;-1:-1:-1;;;;;3362:17:0;;;-1:-1:-1;;;;;;3362:17:0;;;;;;3395:40;;3345:6;;;;;;;3395:40;;3326:16;3395:40;3315:128;3252:191;:::o;25989:104::-;26058:27;26068:2;26072:8;26058:27;;;;;;;;;;;;:9;:27::i;45131:190::-;45256:4;45309;45280:25;45293:5;45300:4;45280:12;:25::i;:::-;:33;;45131:190;-1:-1:-1;;;;45131:190:0:o;37083:716::-;37267:88;;-1:-1:-1;;;37267:88:0;;37246:4;;-1:-1:-1;;;;;37267:45:0;;;;;:88;;790:10;;37334:4;;37340:7;;37349:5;;37267:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37267:88:0;;;;;;;;-1:-1:-1;;37267:88:0;;;;;;;;;;;;:::i;:::-;;;37263:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37550:6;:13;37567:1;37550:18;37546:235;;37596:40;;-1:-1:-1;;;37596:40:0;;;;;;;;;;;37546:235;37739:6;37733:13;37724:6;37720:2;37716:15;37709:38;37263:529;-1:-1:-1;;;;;;37426:64:0;-1:-1:-1;;;37426:64:0;;-1:-1:-1;37263:529:0;37083:716;;;;;;:::o;51654:104::-;51714:13;51743:9;51736:16;;;;;:::i;42154:723::-;42210:13;42431:5;42440:1;42431:10;42427:53;;-1:-1:-1;;42458:10:0;;;;;;;;;;;;-1:-1:-1;;;42458:10:0;;;;;42154:723::o;42427:53::-;42505:5;42490:12;42546:78;42553:9;;42546:78;;42579:8;;;;:::i;:::-;;-1:-1:-1;42602:10:0;;-1:-1:-1;42610:2:0;42602:10;;:::i;:::-;;;42546:78;;;42634:19;42666:6;42656:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42656:17:0;;42634:39;;42684:154;42691:10;;42684:154;;42718:11;42728:1;42718:11;;:::i;:::-;;-1:-1:-1;42787:10:0;42795:2;42787:5;:10;:::i;:::-;42774:24;;:2;:24;:::i;:::-;42761:39;;42744:6;42751;42744:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;42744:56:0;;;;;;;;-1:-1:-1;42815:11:0;42824:2;42815:11;;:::i;:::-;;;42684:154;;26466:2236;26612:13;;-1:-1:-1;;;;;26640:16:0;;26636:48;;26665:19;;-1:-1:-1;;;26665:19:0;;;;;;;;;;;26636:48;26699:8;26711:1;26699:13;26695:44;;26721:18;;-1:-1:-1;;;26721:18:0;;;;;;;;;;;26695:44;-1:-1:-1;;;;;27288:22:0;;;;;;:18;:22;;;;12672:2;27288:22;;;:70;;27326:31;27314:44;;27288:70;;;27601:31;;;:17;:31;;;;;27694:15;13189:3;27694:41;27652:84;;-1:-1:-1;27772:13:0;;13452:3;27757:56;27652:162;27601:213;;:31;;27895:23;;;;27939:14;:19;27935:635;;27979:313;28010:38;;28035:12;;-1:-1:-1;;;;;28010:38:0;;;28027:1;;28010:38;;28027:1;;28010:38;28076:69;28115:1;28119:2;28123:14;;;;;;28139:5;28076:30;:69::i;:::-;28071:174;;28181:40;;-1:-1:-1;;;28181:40:0;;;;;;;;;;;28071:174;28287:3;28272:12;:18;27979:313;;28373:12;28356:13;;:29;28352:43;;28387:8;;;28352:43;27935:635;;;28436:119;28467:40;;28492:14;;;;;-1:-1:-1;;;;;28467:40:0;;;28484:1;;28467:40;;28484:1;;28467:40;28550:3;28535:12;:18;28436:119;;27935:635;-1:-1:-1;28584:13:0;:28;28634:60;28663:1;28667:2;28671:12;28685:8;28634:60;:::i;45682:675::-;45765:7;45808:4;45765:7;45823:497;45847:5;:12;45843:1;:16;45823:497;;;45881:20;45904:5;45910:1;45904:8;;;;;;;;:::i;:::-;;;;;;;45881:31;;45947:12;45931;:28;45927:382;;46433:13;46483:15;;;46519:4;46512:15;;;46566:4;46550:21;;46059:57;;45927:382;;;46433:13;46483:15;;;46519:4;46512:15;;;46566:4;46550:21;;46236:57;;45927:382;-1:-1:-1;45861:3:0;;;;:::i;:::-;;;;45823:497;;;-1:-1:-1;46337:12:0;45682:675;-1:-1:-1;;;45682:675:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:275;2558:2;2552:9;2623:2;2604:13;;-1:-1:-1;;2600:27:1;2588:40;;2658:18;2643:34;;2679:22;;;2640:62;2637:88;;;2705:18;;:::i;:::-;2741:2;2734:22;2487:275;;-1:-1:-1;2487:275:1:o;2767:407::-;2832:5;2866:18;2858:6;2855:30;2852:56;;;2888:18;;:::i;:::-;2926:57;2971:2;2950:15;;-1:-1:-1;;2946:29:1;2977:4;2942:40;2926:57;:::i;:::-;2917:66;;3006:6;2999:5;2992:21;3046:3;3037:6;3032:3;3028:16;3025:25;3022:45;;;3063:1;3060;3053:12;3022:45;3112:6;3107:3;3100:4;3093:5;3089:16;3076:43;3166:1;3159:4;3150:6;3143:5;3139:18;3135:29;3128:40;2767:407;;;;;:::o;3179:451::-;3248:6;3301:2;3289:9;3280:7;3276:23;3272:32;3269:52;;;3317:1;3314;3307:12;3269:52;3357:9;3344:23;3390:18;3382:6;3379:30;3376:50;;;3422:1;3419;3412:12;3376:50;3445:22;;3498:4;3490:13;;3486:27;-1:-1:-1;3476:55:1;;3527:1;3524;3517:12;3476:55;3550:74;3616:7;3611:2;3598:16;3593:2;3589;3585:11;3550:74;:::i;3635:160::-;3700:20;;3756:13;;3749:21;3739:32;;3729:60;;3785:1;3782;3775:12;3800:180;3856:6;3909:2;3897:9;3888:7;3884:23;3880:32;3877:52;;;3925:1;3922;3915:12;3877:52;3948:26;3964:9;3948:26;:::i;3985:328::-;4062:6;4070;4078;4131:2;4119:9;4110:7;4106:23;4102:32;4099:52;;;4147:1;4144;4137:12;4099:52;4170:29;4189:9;4170:29;:::i;:::-;4160:39;;4218:38;4252:2;4241:9;4237:18;4218:38;:::i;:::-;4208:48;;4303:2;4292:9;4288:18;4275:32;4265:42;;3985:328;;;;;:::o;4500:186::-;4559:6;4612:2;4600:9;4591:7;4587:23;4583:32;4580:52;;;4628:1;4625;4618:12;4580:52;4651:29;4670:9;4651:29;:::i;4691:632::-;4862:2;4914:21;;;4984:13;;4887:18;;;5006:22;;;4833:4;;4862:2;5085:15;;;;5059:2;5044:18;;;4833:4;5128:169;5142:6;5139:1;5136:13;5128:169;;;5203:13;;5191:26;;5272:15;;;;5237:12;;;;5164:1;5157:9;5128:169;;;-1:-1:-1;5314:3:1;;4691:632;-1:-1:-1;;;;;;4691:632:1:o;5513:183::-;5573:4;5606:18;5598:6;5595:30;5592:56;;;5628:18;;:::i;:::-;-1:-1:-1;5673:1:1;5669:14;5685:4;5665:25;;5513:183::o;5701:965::-;5794:6;5802;5855:2;5843:9;5834:7;5830:23;5826:32;5823:52;;;5871:1;5868;5861:12;5823:52;5907:9;5894:23;5884:33;;5936:2;5989;5978:9;5974:18;5961:32;6016:18;6008:6;6005:30;6002:50;;;6048:1;6045;6038:12;6002:50;6071:22;;6124:4;6116:13;;6112:27;-1:-1:-1;6102:55:1;;6153:1;6150;6143:12;6102:55;6189:2;6176:16;6212:60;6228:43;6268:2;6228:43;:::i;:::-;6212:60;:::i;:::-;6306:15;;;6388:1;6384:10;;;;6376:19;;6372:28;;;6337:12;;;;6412:19;;;6409:39;;;6444:1;6441;6434:12;6409:39;6468:11;;;;6488:148;6504:6;6499:3;6496:15;6488:148;;;6570:23;6589:3;6570:23;:::i;:::-;6558:36;;6521:12;;;;6614;;;;6488:148;;;6655:5;6645:15;;;;;;;5701:965;;;;;:::o;6671:254::-;6736:6;6744;6797:2;6785:9;6776:7;6772:23;6768:32;6765:52;;;6813:1;6810;6803:12;6765:52;6836:29;6855:9;6836:29;:::i;:::-;6826:39;;6884:35;6915:2;6904:9;6900:18;6884:35;:::i;:::-;6874:45;;6671:254;;;;;:::o;6930:959::-;7023:6;7031;7084:2;7072:9;7063:7;7059:23;7055:32;7052:52;;;7100:1;7097;7090:12;7052:52;7136:9;7123:23;7113:33;;7165:2;7218;7207:9;7203:18;7190:32;7245:18;7237:6;7234:30;7231:50;;;7277:1;7274;7267:12;7231:50;7300:22;;7353:4;7345:13;;7341:27;-1:-1:-1;7331:55:1;;7382:1;7379;7372:12;7331:55;7418:2;7405:16;7441:60;7457:43;7497:2;7457:43;:::i;7441:60::-;7535:15;;;7617:1;7613:10;;;;7605:19;;7601:28;;;7566:12;;;;7641:19;;;7638:39;;;7673:1;7670;7663:12;7638:39;7697:11;;;;7717:142;7733:6;7728:3;7725:15;7717:142;;;7799:17;;7787:30;;7750:12;;;;7837;;;;7717:142;;7894:667;7989:6;7997;8005;8013;8066:3;8054:9;8045:7;8041:23;8037:33;8034:53;;;8083:1;8080;8073:12;8034:53;8106:29;8125:9;8106:29;:::i;:::-;8096:39;;8154:38;8188:2;8177:9;8173:18;8154:38;:::i;:::-;8144:48;;8239:2;8228:9;8224:18;8211:32;8201:42;;8294:2;8283:9;8279:18;8266:32;8321:18;8313:6;8310:30;8307:50;;;8353:1;8350;8343:12;8307:50;8376:22;;8429:4;8421:13;;8417:27;-1:-1:-1;8407:55:1;;8458:1;8455;8448:12;8407:55;8481:74;8547:7;8542:2;8529:16;8524:2;8520;8516:11;8481:74;:::i;:::-;8471:84;;;7894:667;;;;;;;:::o;8566:260::-;8634:6;8642;8695:2;8683:9;8674:7;8670:23;8666:32;8663:52;;;8711:1;8708;8701:12;8663:52;8734:29;8753:9;8734:29;:::i;:::-;8724:39;;8782:38;8816:2;8805:9;8801:18;8782:38;:::i;8831:380::-;8910:1;8906:12;;;;8953;;;8974:61;;9028:4;9020:6;9016:17;9006:27;;8974:61;9081:2;9073:6;9070:14;9050:18;9047:38;9044:161;;9127:10;9122:3;9118:20;9115:1;9108:31;9162:4;9159:1;9152:15;9190:4;9187:1;9180:15;9044:161;;8831:380;;;:::o;9216:356::-;9418:2;9400:21;;;9437:18;;;9430:30;9496:34;9491:2;9476:18;;9469:62;9563:2;9548:18;;9216:356::o;9703:545::-;9805:2;9800:3;9797:11;9794:448;;;9841:1;9866:5;9862:2;9855:17;9911:4;9907:2;9897:19;9981:2;9969:10;9965:19;9962:1;9958:27;9952:4;9948:38;10017:4;10005:10;10002:20;9999:47;;;-1:-1:-1;10040:4:1;9999:47;10095:2;10090:3;10086:12;10083:1;10079:20;10073:4;10069:31;10059:41;;10150:82;10168:2;10161:5;10158:13;10150:82;;;10213:17;;;10194:1;10183:13;10150:82;;;10154:3;;;9703:545;;;:::o;10424:1352::-;10550:3;10544:10;10577:18;10569:6;10566:30;10563:56;;;10599:18;;:::i;:::-;10628:97;10718:6;10678:38;10710:4;10704:11;10678:38;:::i;:::-;10672:4;10628:97;:::i;:::-;10780:4;;10844:2;10833:14;;10861:1;10856:663;;;;11563:1;11580:6;11577:89;;;-1:-1:-1;11632:19:1;;;11626:26;11577:89;-1:-1:-1;;10381:1:1;10377:11;;;10373:24;10369:29;10359:40;10405:1;10401:11;;;10356:57;11679:81;;10826:944;;10856:663;9650:1;9643:14;;;9687:4;9674:18;;-1:-1:-1;;10892:20:1;;;11010:236;11024:7;11021:1;11018:14;11010:236;;;11113:19;;;11107:26;11092:42;;11205:27;;;;11173:1;11161:14;;;;11040:19;;11010:236;;;11014:3;11274:6;11265:7;11262:19;11259:201;;;11335:19;;;11329:26;-1:-1:-1;;11418:1:1;11414:14;;;11430:3;11410:24;11406:37;11402:42;11387:58;11372:74;;11259:201;-1:-1:-1;;;;;11506:1:1;11490:14;;;11486:22;11473:36;;-1:-1:-1;10424:1352:1:o;11991:127::-;12052:10;12047:3;12043:20;12040:1;12033:31;12083:4;12080:1;12073:15;12107:4;12104:1;12097:15;12123:128;12163:3;12194:1;12190:6;12187:1;12184:13;12181:39;;;12200:18;;:::i;:::-;-1:-1:-1;12236:9:1;;12123:128::o;12256:127::-;12317:10;12312:3;12308:20;12305:1;12298:31;12348:4;12345:1;12338:15;12372:4;12369:1;12362:15;12388:135;12427:3;12448:17;;;12445:43;;12468:18;;:::i;:::-;-1:-1:-1;12515:1:1;12504:13;;12388:135::o;12528:344::-;12730:2;12712:21;;;12769:2;12749:18;;;12742:30;-1:-1:-1;;;12803:2:1;12788:18;;12781:50;12863:2;12848:18;;12528:344::o;12877:::-;13079:2;13061:21;;;13118:2;13098:18;;;13091:30;-1:-1:-1;;;13152:2:1;13137:18;;13130:50;13212:2;13197:18;;12877:344::o;13226:347::-;13428:2;13410:21;;;13467:2;13447:18;;;13440:30;13506:25;13501:2;13486:18;;13479:53;13564:2;13549:18;;13226:347::o;13578:168::-;13618:7;13684:1;13680;13676:6;13672:14;13669:1;13666:21;13661:1;13654:9;13647:17;13643:45;13640:71;;;13691:18;;:::i;:::-;-1:-1:-1;13731:9:1;;13578:168::o;14099:342::-;14301:2;14283:21;;;14340:2;14320:18;;;14313:30;-1:-1:-1;;;14374:2:1;14359:18;;14352:48;14432:2;14417:18;;14099:342::o;15806:1230::-;16030:3;16068:6;16062:13;16094:4;16107:51;16151:6;16146:3;16141:2;16133:6;16129:15;16107:51;:::i;:::-;16221:13;;16180:16;;;;16243:55;16221:13;16180:16;16265:15;;;16243:55;:::i;:::-;16387:13;;16320:20;;;16360:1;;16425:36;16387:13;16425:36;:::i;:::-;16480:1;16497:18;;;16524:141;;;;16679:1;16674:337;;;;16490:521;;16524:141;-1:-1:-1;;16559:24:1;;16545:39;;16636:16;;16629:24;16615:39;;16604:51;;;-1:-1:-1;16524:141:1;;16674:337;16705:6;16702:1;16695:17;16753:2;16750:1;16740:16;16778:1;16792:169;16806:8;16803:1;16800:15;16792:169;;;16888:14;;16873:13;;;16866:37;16931:16;;;;16823:10;;16792:169;;;16796:3;;16992:8;16985:5;16981:20;16974:27;;16490:521;-1:-1:-1;17027:3:1;;15806:1230;-1:-1:-1;;;;;;;;;;15806:1230:1:o;17448:489::-;-1:-1:-1;;;;;17717:15:1;;;17699:34;;17769:15;;17764:2;17749:18;;17742:43;17816:2;17801:18;;17794:34;;;17864:3;17859:2;17844:18;;17837:31;;;17642:4;;17885:46;;17911:19;;17903:6;17885:46;:::i;:::-;17877:54;17448:489;-1:-1:-1;;;;;;17448:489:1:o;17942:249::-;18011:6;18064:2;18052:9;18043:7;18039:23;18035:32;18032:52;;;18080:1;18077;18070:12;18032:52;18112:9;18106:16;18131:30;18155:5;18131:30;:::i;18196:127::-;18257:10;18252:3;18248:20;18245:1;18238:31;18288:4;18285:1;18278:15;18312:4;18309:1;18302:15;18328:120;18368:1;18394;18384:35;;18399:18;;:::i;:::-;-1:-1:-1;18433:9:1;;18328:120::o;18453:125::-;18493:4;18521:1;18518;18515:8;18512:34;;;18526:18;;:::i;:::-;-1:-1:-1;18563:9:1;;18453:125::o;18583:112::-;18615:1;18641;18631:35;;18646:18;;:::i;:::-;-1:-1:-1;18680:9:1;;18583:112::o
Swarm Source
ipfs://ba0242e008a79b246cb6a202fe2a321b68164a7da81fe12ba346d85cadb3f52e
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.