ERC-721
Overview
Max Total Supply
2,166 TAW
Holders
925
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TAWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TAW
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
// File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ 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(); /** * 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(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 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`, * 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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID 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` // - [232..255] `extraData` 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // 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 `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // 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++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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: contracts/TAW.sol pragma solidity ^0.8.4; contract TAW is Ownable, ReentrancyGuard, ERC721A { using Strings for uint256; // The next token ID to be minted. string _baseTokenURI; // _price is the price of one The Awakened Woman NFT uint256 public _price = 0.22 ether; // _paused is used to pause the contract in case of an emergency bool public _paused; // max number of The Awakened Woman uint256 public maxSupply = 5555; // mapping(address => uint256) myNFT; constructor(string memory baseURI) ERC721A("The Awakened Woman", "TAW") { _baseTokenURI = baseURI; } //Returns starting tokenId function _startTokenId() internal view virtual override returns (uint256) { return 1; } /** * @dev setPaused makes the contract paused or unpaused */ function setPaused(bool val) external onlyOwner { _paused = val; } /** * @dev change cost */ function setCost(uint256 _cost) external onlyOwner { _price = _cost; } /** * @dev _baseURI overides the Openzeppelin's ERC721 implementation which by default * returned an empty string for the baseURI */ function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory _uri) external onlyOwner{ _baseTokenURI = _uri; } /** * @dev mint allows an user to mint max of 5 NFT. */ function mint(uint256 quantity) external payable nonReentrant { uint256 supply = totalSupply(); require(!_paused, "Contract currently paused"); require(supply + quantity <= maxSupply, "Exceed maximum TAW supply"); require(msg.value == _price * quantity, "Ether sent is not correct"); require(quantity <= 5, "Exceed max mintable amount"); _mint(msg.sender, quantity); } function reserveNFTs(uint256 _amount) external onlyOwner nonReentrant { require(totalSupply() + _amount <= maxSupply, "Action not completed"); _mint(msg.sender, _amount); } /** * @dev Get token URI * @param tokenId ID of the token to retrieve */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, Strings.toString(tokenId), ".json" ) ) : ""; } function withdraw() public onlyOwner nonReentrant { // address _owner = nftowner; uint256 amount = address(this).balance; (bool sent, ) = payable(owner()).call{value: amount}(""); require(sent, "Failed to send Ether"); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reserveNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPaused","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267030d98d59a960000600b556115b3600d553480156200002357600080fd5b506040516200339838038062003398833981810160405281019062000049919062000349565b6040518060400160405280601281526020017f546865204177616b656e656420576f6d616e00000000000000000000000000008152506040518060400160405280600381526020017f5441570000000000000000000000000000000000000000000000000000000000815250620000d5620000c96200014660201b60201c565b6200014e60201b60201c565b600180819055508160049080519060200190620000f49291906200021b565b5080600590805190602001906200010d9291906200021b565b506200011e6200021260201b60201c565b600281905550505080600a90805190602001906200013e9291906200021b565b50506200051e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b82805462000229906200042f565b90600052602060002090601f0160209004810192826200024d576000855562000299565b82601f106200026857805160ff191683800117855562000299565b8280016001018555821562000299579182015b82811115620002985782518255916020019190600101906200027b565b5b509050620002a89190620002ac565b5090565b5b80821115620002c7576000816000905550600101620002ad565b5090565b6000620002e2620002dc84620003c3565b6200039a565b905082815260208101848484011115620003015762000300620004fe565b5b6200030e848285620003f9565b509392505050565b600082601f8301126200032e576200032d620004f9565b5b815162000340848260208601620002cb565b91505092915050565b60006020828403121562000362576200036162000508565b5b600082015167ffffffffffffffff81111562000383576200038262000503565b5b620003918482850162000316565b91505092915050565b6000620003a6620003b9565b9050620003b4828262000465565b919050565b6000604051905090565b600067ffffffffffffffff821115620003e157620003e0620004ca565b5b620003ec826200050d565b9050602081019050919050565b60005b8381101562000419578082015181840152602081019050620003fc565b8381111562000429576000848401525b50505050565b600060028204905060018216806200044857607f821691505b602082108114156200045f576200045e6200049b565b5b50919050565b62000470826200050d565b810181811067ffffffffffffffff82111715620004925762000491620004ca565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b612e6a806200052e6000396000f3fe6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610537578063d5abeb0114610574578063e985e9c51461059f578063f2fde38b146105dc57610181565b8063a22cb465146104bc578063b88d4fde146104e5578063bc7df0911461050e57610181565b80636352211e146103b957806370a08231146103f6578063715018a6146104335780638da5cb5b1461044a57806395d89b4114610475578063a0712d68146104a057610181565b806318160ddd1161013e5780633ccfd60b116101185780633ccfd60b1461032757806342842e0e1461033e57806344a0d68a1461036757806355f804b31461039057610181565b806318160ddd146102a8578063235b6ea1146102d357806323b872dd146102fe57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806316c38b3c1461025457806316c61ccc1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906121d8565b610605565b6040516101ba91906125c7565b60405180910390f35b3480156101cf57600080fd5b506101d8610697565b6040516101e591906125e2565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061227b565b610729565b6040516102229190612560565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d919061216b565b6107a8565b005b34801561026057600080fd5b5061027b600480360381019061027691906121ab565b6108ec565b005b34801561028957600080fd5b50610292610911565b60405161029f91906125c7565b60405180910390f35b3480156102b457600080fd5b506102bd610924565b6040516102ca9190612744565b60405180910390f35b3480156102df57600080fd5b506102e861093b565b6040516102f59190612744565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190612055565b610941565b005b34801561033357600080fd5b5061033c610c66565b005b34801561034a57600080fd5b5061036560048036038101906103609190612055565b610d7f565b005b34801561037357600080fd5b5061038e6004803603810190610389919061227b565b610d9f565b005b34801561039c57600080fd5b506103b760048036038101906103b29190612232565b610db1565b005b3480156103c557600080fd5b506103e060048036038101906103db919061227b565b610dd3565b6040516103ed9190612560565b60405180910390f35b34801561040257600080fd5b5061041d60048036038101906104189190611fe8565b610de5565b60405161042a9190612744565b60405180910390f35b34801561043f57600080fd5b50610448610e9e565b005b34801561045657600080fd5b5061045f610eb2565b60405161046c9190612560565b60405180910390f35b34801561048157600080fd5b5061048a610edb565b60405161049791906125e2565b60405180910390f35b6104ba60048036038101906104b5919061227b565b610f6d565b005b3480156104c857600080fd5b506104e360048036038101906104de919061212b565b61110f565b005b3480156104f157600080fd5b5061050c600480360381019061050791906120a8565b611287565b005b34801561051a57600080fd5b506105356004803603810190610530919061227b565b6112fa565b005b34801561054357600080fd5b5061055e6004803603810190610559919061227b565b6113bb565b60405161056b91906125e2565b60405180910390f35b34801561058057600080fd5b50610589611462565b6040516105969190612744565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c19190612015565b611468565b6040516105d391906125c7565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190611fe8565b6114fc565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106905750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600480546106a6906129ff565b80601f01602080910402602001604051908101604052809291908181526020018280546106d2906129ff565b801561071f5780601f106106f45761010080835404028352916020019161071f565b820191906000526020600020905b81548152906001019060200180831161070257829003601f168201915b5050505050905090565b600061073482611580565b61076a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107b382610dd3565b90508073ffffffffffffffffffffffffffffffffffffffff166107d46115df565b73ffffffffffffffffffffffffffffffffffffffff161461083757610800816107fb6115df565b611468565b610836576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6108f46115e7565b80600c60006101000a81548160ff02191690831515021790555050565b600c60009054906101000a900460ff1681565b600061092e611665565b6003546002540303905090565b600b5481565b600061094c8261166e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109b3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109bf8461173c565b915091506109d581876109d06115df565b611763565b610a21576109ea866109e56115df565b611468565b610a20576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a88576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a9586868660016117a7565b8015610aa057600082555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b6e85610b4a8888876117ad565b7c0200000000000000000000000000000000000000000000000000000000176117d5565b600660008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bf6576000600185019050600060066000838152602001908152602001600020541415610bf4576002548114610bf3578360066000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c5e8686866001611800565b505050505050565b610c6e6115e7565b60026001541415610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90612704565b60405180910390fd5b600260018190555060004790506000610ccb610eb2565b73ffffffffffffffffffffffffffffffffffffffff1682604051610cee9061254b565b60006040518083038185875af1925050503d8060008114610d2b576040519150601f19603f3d011682016040523d82523d6000602084013e610d30565b606091505b5050905080610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90612644565b60405180910390fd5b505060018081905550565b610d9a83838360405180602001604052806000815250611287565b505050565b610da76115e7565b80600b8190555050565b610db96115e7565b80600a9080519060200190610dcf929190611dfc565b5050565b6000610dde8261166e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea66115e7565b610eb06000611806565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610eea906129ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610f16906129ff565b8015610f635780601f10610f3857610100808354040283529160200191610f63565b820191906000526020600020905b815481529060010190602001808311610f4657829003601f168201915b5050505050905090565b60026001541415610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90612704565b60405180910390fd5b60026001819055506000610fc5610924565b9050600c60009054906101000a900460ff1615611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90612684565b60405180910390fd5b600d5482826110269190612834565b1115611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e906126c4565b60405180910390fd5b81600b5461107591906128bb565b34146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad906126a4565b60405180910390fd5b60058211156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f1906126e4565b60405180910390fd5b61110433836118ca565b506001808190555050565b6111176115df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006111896115df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112366115df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161127b91906125c7565b60405180910390a35050565b611292848484610941565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112f4576112bd84848484611a88565b6112f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113026115e7565b60026001541415611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90612704565b60405180910390fd5b6002600181905550600d548161135c610924565b6113669190612834565b11156113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90612724565b60405180910390fd5b6113b133826118ca565b6001808190555050565b60606113c682611580565b611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc90612604565b60405180910390fd5b600061140f611be8565b9050600081511161142f576040518060200160405280600081525061145a565b8061143984611c7a565b60405160200161144a92919061251c565b6040516020818303038152906040525b915050919050565b600d5481565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115046115e7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90612624565b60405180910390fd5b61157d81611806565b50565b60008161158b611665565b1115801561159a575060025482105b80156115d8575060007c0100000000000000000000000000000000000000000000000000000000600660008581526020019081526020016000205416145b9050919050565b600033905090565b6115ef611ddb565b73ffffffffffffffffffffffffffffffffffffffff1661160d610eb2565b73ffffffffffffffffffffffffffffffffffffffff1614611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90612664565b60405180910390fd5b565b60006001905090565b6000808290508061167d611665565b11611705576002548110156117045760006006600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611702575b60008114156116f85760066000836001900393508381526020019081526020016000205490506116cd565b8092505050611737565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006008600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117c4868684611de3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006002549050600082141561190c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61191960008483856117a7565b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119908361198160008660006117ad565b61198a85611dec565b176117d5565b6006600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611a3157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506119f6565b506000821415611a6d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806002819055505050611a836000848385611800565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611aae6115df565b8786866040518563ffffffff1660e01b8152600401611ad0949392919061257b565b602060405180830381600087803b158015611aea57600080fd5b505af1925050508015611b1b57506040513d601f19601f82011682018060405250810190611b189190612205565b60015b611b95573d8060008114611b4b576040519150601f19603f3d011682016040523d82523d6000602084013e611b50565b606091505b50600081511415611b8d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611bf7906129ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611c23906129ff565b8015611c705780601f10611c4557610100808354040283529160200191611c70565b820191906000526020600020905b815481529060010190602001808311611c5357829003601f168201915b5050505050905090565b60606000821415611cc2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dd6565b600082905060005b60008214611cf4578080611cdd90612a62565b915050600a82611ced919061288a565b9150611cca565b60008167ffffffffffffffff811115611d1057611d0f612b98565b5b6040519080825280601f01601f191660200182016040528015611d425781602001600182028036833780820191505090505b5090505b60008514611dcf57600182611d5b9190612915565b9150600a85611d6a9190612aab565b6030611d769190612834565b60f81b818381518110611d8c57611d8b612b69565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611dc8919061288a565b9450611d46565b8093505050505b919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b828054611e08906129ff565b90600052602060002090601f016020900481019282611e2a5760008555611e71565b82601f10611e4357805160ff1916838001178555611e71565b82800160010185558215611e71579182015b82811115611e70578251825591602001919060010190611e55565b5b509050611e7e9190611e82565b5090565b5b80821115611e9b576000816000905550600101611e83565b5090565b6000611eb2611ead84612784565b61275f565b905082815260208101848484011115611ece57611ecd612bcc565b5b611ed98482856129bd565b509392505050565b6000611ef4611eef846127b5565b61275f565b905082815260208101848484011115611f1057611f0f612bcc565b5b611f1b8482856129bd565b509392505050565b600081359050611f3281612dd8565b92915050565b600081359050611f4781612def565b92915050565b600081359050611f5c81612e06565b92915050565b600081519050611f7181612e06565b92915050565b600082601f830112611f8c57611f8b612bc7565b5b8135611f9c848260208601611e9f565b91505092915050565b600082601f830112611fba57611fb9612bc7565b5b8135611fca848260208601611ee1565b91505092915050565b600081359050611fe281612e1d565b92915050565b600060208284031215611ffe57611ffd612bd6565b5b600061200c84828501611f23565b91505092915050565b6000806040838503121561202c5761202b612bd6565b5b600061203a85828601611f23565b925050602061204b85828601611f23565b9150509250929050565b60008060006060848603121561206e5761206d612bd6565b5b600061207c86828701611f23565b935050602061208d86828701611f23565b925050604061209e86828701611fd3565b9150509250925092565b600080600080608085870312156120c2576120c1612bd6565b5b60006120d087828801611f23565b94505060206120e187828801611f23565b93505060406120f287828801611fd3565b925050606085013567ffffffffffffffff81111561211357612112612bd1565b5b61211f87828801611f77565b91505092959194509250565b6000806040838503121561214257612141612bd6565b5b600061215085828601611f23565b925050602061216185828601611f38565b9150509250929050565b6000806040838503121561218257612181612bd6565b5b600061219085828601611f23565b92505060206121a185828601611fd3565b9150509250929050565b6000602082840312156121c1576121c0612bd6565b5b60006121cf84828501611f38565b91505092915050565b6000602082840312156121ee576121ed612bd6565b5b60006121fc84828501611f4d565b91505092915050565b60006020828403121561221b5761221a612bd6565b5b600061222984828501611f62565b91505092915050565b60006020828403121561224857612247612bd6565b5b600082013567ffffffffffffffff81111561226657612265612bd1565b5b61227284828501611fa5565b91505092915050565b60006020828403121561229157612290612bd6565b5b600061229f84828501611fd3565b91505092915050565b6122b181612949565b82525050565b6122c08161295b565b82525050565b60006122d1826127e6565b6122db81856127fc565b93506122eb8185602086016129cc565b6122f481612bdb565b840191505092915050565b600061230a826127f1565b6123148185612818565b93506123248185602086016129cc565b61232d81612bdb565b840191505092915050565b6000612343826127f1565b61234d8185612829565b935061235d8185602086016129cc565b80840191505092915050565b6000612376601f83612818565b915061238182612bec565b602082019050919050565b6000612399602683612818565b91506123a482612c15565b604082019050919050565b60006123bc601483612818565b91506123c782612c64565b602082019050919050565b60006123df600583612829565b91506123ea82612c8d565b600582019050919050565b6000612402602083612818565b915061240d82612cb6565b602082019050919050565b6000612425601983612818565b915061243082612cdf565b602082019050919050565b6000612448601983612818565b915061245382612d08565b602082019050919050565b600061246b60008361280d565b915061247682612d31565b600082019050919050565b600061248e601983612818565b915061249982612d34565b602082019050919050565b60006124b1601a83612818565b91506124bc82612d5d565b602082019050919050565b60006124d4601f83612818565b91506124df82612d86565b602082019050919050565b60006124f7601483612818565b915061250282612daf565b602082019050919050565b612516816129b3565b82525050565b60006125288285612338565b91506125348284612338565b915061253f826123d2565b91508190509392505050565b60006125568261245e565b9150819050919050565b600060208201905061257560008301846122a8565b92915050565b600060808201905061259060008301876122a8565b61259d60208301866122a8565b6125aa604083018561250d565b81810360608301526125bc81846122c6565b905095945050505050565b60006020820190506125dc60008301846122b7565b92915050565b600060208201905081810360008301526125fc81846122ff565b905092915050565b6000602082019050818103600083015261261d81612369565b9050919050565b6000602082019050818103600083015261263d8161238c565b9050919050565b6000602082019050818103600083015261265d816123af565b9050919050565b6000602082019050818103600083015261267d816123f5565b9050919050565b6000602082019050818103600083015261269d81612418565b9050919050565b600060208201905081810360008301526126bd8161243b565b9050919050565b600060208201905081810360008301526126dd81612481565b9050919050565b600060208201905081810360008301526126fd816124a4565b9050919050565b6000602082019050818103600083015261271d816124c7565b9050919050565b6000602082019050818103600083015261273d816124ea565b9050919050565b6000602082019050612759600083018461250d565b92915050565b600061276961277a565b90506127758282612a31565b919050565b6000604051905090565b600067ffffffffffffffff82111561279f5761279e612b98565b5b6127a882612bdb565b9050602081019050919050565b600067ffffffffffffffff8211156127d0576127cf612b98565b5b6127d982612bdb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061283f826129b3565b915061284a836129b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561287f5761287e612adc565b5b828201905092915050565b6000612895826129b3565b91506128a0836129b3565b9250826128b0576128af612b0b565b5b828204905092915050565b60006128c6826129b3565b91506128d1836129b3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561290a57612909612adc565b5b828202905092915050565b6000612920826129b3565b915061292b836129b3565b92508282101561293e5761293d612adc565b5b828203905092915050565b600061295482612993565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129ea5780820151818401526020810190506129cf565b838111156129f9576000848401525b50505050565b60006002820490506001821680612a1757607f821691505b60208210811415612a2b57612a2a612b3a565b5b50919050565b612a3a82612bdb565b810181811067ffffffffffffffff82111715612a5957612a58612b98565b5b80604052505050565b6000612a6d826129b3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612aa057612a9f612adc565b5b600182019050919050565b6000612ab6826129b3565b9150612ac1836129b3565b925082612ad157612ad0612b0b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6e74726163742063757272656e746c792070617573656400000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b50565b7f457863656564206d6178696d756d2054415720737570706c7900000000000000600082015250565b7f457863656564206d6178206d696e7461626c6520616d6f756e74000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f416374696f6e206e6f7420636f6d706c65746564000000000000000000000000600082015250565b612de181612949565b8114612dec57600080fd5b50565b612df88161295b565b8114612e0357600080fd5b50565b612e0f81612967565b8114612e1a57600080fd5b50565b612e26816129b3565b8114612e3157600080fd5b5056fea2646970667358221220107d454115e27a57ab73a5996631474cf2c0276bc67969b12a6791b249b7155064736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f7468656177616b616e6564776f6d616e2e6d7970696e6174612e636c6f75642f697066732f516d557457443665634c65745852797843683357664563675964626f7944383977317170553832466146757a62762f00000000
Deployed Bytecode
0x6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610537578063d5abeb0114610574578063e985e9c51461059f578063f2fde38b146105dc57610181565b8063a22cb465146104bc578063b88d4fde146104e5578063bc7df0911461050e57610181565b80636352211e146103b957806370a08231146103f6578063715018a6146104335780638da5cb5b1461044a57806395d89b4114610475578063a0712d68146104a057610181565b806318160ddd1161013e5780633ccfd60b116101185780633ccfd60b1461032757806342842e0e1461033e57806344a0d68a1461036757806355f804b31461039057610181565b806318160ddd146102a8578063235b6ea1146102d357806323b872dd146102fe57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806316c38b3c1461025457806316c61ccc1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906121d8565b610605565b6040516101ba91906125c7565b60405180910390f35b3480156101cf57600080fd5b506101d8610697565b6040516101e591906125e2565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061227b565b610729565b6040516102229190612560565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d919061216b565b6107a8565b005b34801561026057600080fd5b5061027b600480360381019061027691906121ab565b6108ec565b005b34801561028957600080fd5b50610292610911565b60405161029f91906125c7565b60405180910390f35b3480156102b457600080fd5b506102bd610924565b6040516102ca9190612744565b60405180910390f35b3480156102df57600080fd5b506102e861093b565b6040516102f59190612744565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190612055565b610941565b005b34801561033357600080fd5b5061033c610c66565b005b34801561034a57600080fd5b5061036560048036038101906103609190612055565b610d7f565b005b34801561037357600080fd5b5061038e6004803603810190610389919061227b565b610d9f565b005b34801561039c57600080fd5b506103b760048036038101906103b29190612232565b610db1565b005b3480156103c557600080fd5b506103e060048036038101906103db919061227b565b610dd3565b6040516103ed9190612560565b60405180910390f35b34801561040257600080fd5b5061041d60048036038101906104189190611fe8565b610de5565b60405161042a9190612744565b60405180910390f35b34801561043f57600080fd5b50610448610e9e565b005b34801561045657600080fd5b5061045f610eb2565b60405161046c9190612560565b60405180910390f35b34801561048157600080fd5b5061048a610edb565b60405161049791906125e2565b60405180910390f35b6104ba60048036038101906104b5919061227b565b610f6d565b005b3480156104c857600080fd5b506104e360048036038101906104de919061212b565b61110f565b005b3480156104f157600080fd5b5061050c600480360381019061050791906120a8565b611287565b005b34801561051a57600080fd5b506105356004803603810190610530919061227b565b6112fa565b005b34801561054357600080fd5b5061055e6004803603810190610559919061227b565b6113bb565b60405161056b91906125e2565b60405180910390f35b34801561058057600080fd5b50610589611462565b6040516105969190612744565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c19190612015565b611468565b6040516105d391906125c7565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190611fe8565b6114fc565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106905750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600480546106a6906129ff565b80601f01602080910402602001604051908101604052809291908181526020018280546106d2906129ff565b801561071f5780601f106106f45761010080835404028352916020019161071f565b820191906000526020600020905b81548152906001019060200180831161070257829003601f168201915b5050505050905090565b600061073482611580565b61076a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107b382610dd3565b90508073ffffffffffffffffffffffffffffffffffffffff166107d46115df565b73ffffffffffffffffffffffffffffffffffffffff161461083757610800816107fb6115df565b611468565b610836576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6108f46115e7565b80600c60006101000a81548160ff02191690831515021790555050565b600c60009054906101000a900460ff1681565b600061092e611665565b6003546002540303905090565b600b5481565b600061094c8261166e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109b3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109bf8461173c565b915091506109d581876109d06115df565b611763565b610a21576109ea866109e56115df565b611468565b610a20576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a88576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a9586868660016117a7565b8015610aa057600082555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b6e85610b4a8888876117ad565b7c0200000000000000000000000000000000000000000000000000000000176117d5565b600660008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bf6576000600185019050600060066000838152602001908152602001600020541415610bf4576002548114610bf3578360066000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c5e8686866001611800565b505050505050565b610c6e6115e7565b60026001541415610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90612704565b60405180910390fd5b600260018190555060004790506000610ccb610eb2565b73ffffffffffffffffffffffffffffffffffffffff1682604051610cee9061254b565b60006040518083038185875af1925050503d8060008114610d2b576040519150601f19603f3d011682016040523d82523d6000602084013e610d30565b606091505b5050905080610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90612644565b60405180910390fd5b505060018081905550565b610d9a83838360405180602001604052806000815250611287565b505050565b610da76115e7565b80600b8190555050565b610db96115e7565b80600a9080519060200190610dcf929190611dfc565b5050565b6000610dde8261166e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea66115e7565b610eb06000611806565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610eea906129ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610f16906129ff565b8015610f635780601f10610f3857610100808354040283529160200191610f63565b820191906000526020600020905b815481529060010190602001808311610f4657829003601f168201915b5050505050905090565b60026001541415610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90612704565b60405180910390fd5b60026001819055506000610fc5610924565b9050600c60009054906101000a900460ff1615611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90612684565b60405180910390fd5b600d5482826110269190612834565b1115611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e906126c4565b60405180910390fd5b81600b5461107591906128bb565b34146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad906126a4565b60405180910390fd5b60058211156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f1906126e4565b60405180910390fd5b61110433836118ca565b506001808190555050565b6111176115df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006111896115df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112366115df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161127b91906125c7565b60405180910390a35050565b611292848484610941565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112f4576112bd84848484611a88565b6112f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113026115e7565b60026001541415611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90612704565b60405180910390fd5b6002600181905550600d548161135c610924565b6113669190612834565b11156113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90612724565b60405180910390fd5b6113b133826118ca565b6001808190555050565b60606113c682611580565b611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc90612604565b60405180910390fd5b600061140f611be8565b9050600081511161142f576040518060200160405280600081525061145a565b8061143984611c7a565b60405160200161144a92919061251c565b6040516020818303038152906040525b915050919050565b600d5481565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115046115e7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90612624565b60405180910390fd5b61157d81611806565b50565b60008161158b611665565b1115801561159a575060025482105b80156115d8575060007c0100000000000000000000000000000000000000000000000000000000600660008581526020019081526020016000205416145b9050919050565b600033905090565b6115ef611ddb565b73ffffffffffffffffffffffffffffffffffffffff1661160d610eb2565b73ffffffffffffffffffffffffffffffffffffffff1614611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90612664565b60405180910390fd5b565b60006001905090565b6000808290508061167d611665565b11611705576002548110156117045760006006600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611702575b60008114156116f85760066000836001900393508381526020019081526020016000205490506116cd565b8092505050611737565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006008600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117c4868684611de3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006002549050600082141561190c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61191960008483856117a7565b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119908361198160008660006117ad565b61198a85611dec565b176117d5565b6006600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611a3157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506119f6565b506000821415611a6d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806002819055505050611a836000848385611800565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611aae6115df565b8786866040518563ffffffff1660e01b8152600401611ad0949392919061257b565b602060405180830381600087803b158015611aea57600080fd5b505af1925050508015611b1b57506040513d601f19601f82011682018060405250810190611b189190612205565b60015b611b95573d8060008114611b4b576040519150601f19603f3d011682016040523d82523d6000602084013e611b50565b606091505b50600081511415611b8d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611bf7906129ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611c23906129ff565b8015611c705780601f10611c4557610100808354040283529160200191611c70565b820191906000526020600020905b815481529060010190602001808311611c5357829003601f168201915b5050505050905090565b60606000821415611cc2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dd6565b600082905060005b60008214611cf4578080611cdd90612a62565b915050600a82611ced919061288a565b9150611cca565b60008167ffffffffffffffff811115611d1057611d0f612b98565b5b6040519080825280601f01601f191660200182016040528015611d425781602001600182028036833780820191505090505b5090505b60008514611dcf57600182611d5b9190612915565b9150600a85611d6a9190612aab565b6030611d769190612834565b60f81b818381518110611d8c57611d8b612b69565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611dc8919061288a565b9450611d46565b8093505050505b919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b828054611e08906129ff565b90600052602060002090601f016020900481019282611e2a5760008555611e71565b82601f10611e4357805160ff1916838001178555611e71565b82800160010185558215611e71579182015b82811115611e70578251825591602001919060010190611e55565b5b509050611e7e9190611e82565b5090565b5b80821115611e9b576000816000905550600101611e83565b5090565b6000611eb2611ead84612784565b61275f565b905082815260208101848484011115611ece57611ecd612bcc565b5b611ed98482856129bd565b509392505050565b6000611ef4611eef846127b5565b61275f565b905082815260208101848484011115611f1057611f0f612bcc565b5b611f1b8482856129bd565b509392505050565b600081359050611f3281612dd8565b92915050565b600081359050611f4781612def565b92915050565b600081359050611f5c81612e06565b92915050565b600081519050611f7181612e06565b92915050565b600082601f830112611f8c57611f8b612bc7565b5b8135611f9c848260208601611e9f565b91505092915050565b600082601f830112611fba57611fb9612bc7565b5b8135611fca848260208601611ee1565b91505092915050565b600081359050611fe281612e1d565b92915050565b600060208284031215611ffe57611ffd612bd6565b5b600061200c84828501611f23565b91505092915050565b6000806040838503121561202c5761202b612bd6565b5b600061203a85828601611f23565b925050602061204b85828601611f23565b9150509250929050565b60008060006060848603121561206e5761206d612bd6565b5b600061207c86828701611f23565b935050602061208d86828701611f23565b925050604061209e86828701611fd3565b9150509250925092565b600080600080608085870312156120c2576120c1612bd6565b5b60006120d087828801611f23565b94505060206120e187828801611f23565b93505060406120f287828801611fd3565b925050606085013567ffffffffffffffff81111561211357612112612bd1565b5b61211f87828801611f77565b91505092959194509250565b6000806040838503121561214257612141612bd6565b5b600061215085828601611f23565b925050602061216185828601611f38565b9150509250929050565b6000806040838503121561218257612181612bd6565b5b600061219085828601611f23565b92505060206121a185828601611fd3565b9150509250929050565b6000602082840312156121c1576121c0612bd6565b5b60006121cf84828501611f38565b91505092915050565b6000602082840312156121ee576121ed612bd6565b5b60006121fc84828501611f4d565b91505092915050565b60006020828403121561221b5761221a612bd6565b5b600061222984828501611f62565b91505092915050565b60006020828403121561224857612247612bd6565b5b600082013567ffffffffffffffff81111561226657612265612bd1565b5b61227284828501611fa5565b91505092915050565b60006020828403121561229157612290612bd6565b5b600061229f84828501611fd3565b91505092915050565b6122b181612949565b82525050565b6122c08161295b565b82525050565b60006122d1826127e6565b6122db81856127fc565b93506122eb8185602086016129cc565b6122f481612bdb565b840191505092915050565b600061230a826127f1565b6123148185612818565b93506123248185602086016129cc565b61232d81612bdb565b840191505092915050565b6000612343826127f1565b61234d8185612829565b935061235d8185602086016129cc565b80840191505092915050565b6000612376601f83612818565b915061238182612bec565b602082019050919050565b6000612399602683612818565b91506123a482612c15565b604082019050919050565b60006123bc601483612818565b91506123c782612c64565b602082019050919050565b60006123df600583612829565b91506123ea82612c8d565b600582019050919050565b6000612402602083612818565b915061240d82612cb6565b602082019050919050565b6000612425601983612818565b915061243082612cdf565b602082019050919050565b6000612448601983612818565b915061245382612d08565b602082019050919050565b600061246b60008361280d565b915061247682612d31565b600082019050919050565b600061248e601983612818565b915061249982612d34565b602082019050919050565b60006124b1601a83612818565b91506124bc82612d5d565b602082019050919050565b60006124d4601f83612818565b91506124df82612d86565b602082019050919050565b60006124f7601483612818565b915061250282612daf565b602082019050919050565b612516816129b3565b82525050565b60006125288285612338565b91506125348284612338565b915061253f826123d2565b91508190509392505050565b60006125568261245e565b9150819050919050565b600060208201905061257560008301846122a8565b92915050565b600060808201905061259060008301876122a8565b61259d60208301866122a8565b6125aa604083018561250d565b81810360608301526125bc81846122c6565b905095945050505050565b60006020820190506125dc60008301846122b7565b92915050565b600060208201905081810360008301526125fc81846122ff565b905092915050565b6000602082019050818103600083015261261d81612369565b9050919050565b6000602082019050818103600083015261263d8161238c565b9050919050565b6000602082019050818103600083015261265d816123af565b9050919050565b6000602082019050818103600083015261267d816123f5565b9050919050565b6000602082019050818103600083015261269d81612418565b9050919050565b600060208201905081810360008301526126bd8161243b565b9050919050565b600060208201905081810360008301526126dd81612481565b9050919050565b600060208201905081810360008301526126fd816124a4565b9050919050565b6000602082019050818103600083015261271d816124c7565b9050919050565b6000602082019050818103600083015261273d816124ea565b9050919050565b6000602082019050612759600083018461250d565b92915050565b600061276961277a565b90506127758282612a31565b919050565b6000604051905090565b600067ffffffffffffffff82111561279f5761279e612b98565b5b6127a882612bdb565b9050602081019050919050565b600067ffffffffffffffff8211156127d0576127cf612b98565b5b6127d982612bdb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061283f826129b3565b915061284a836129b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561287f5761287e612adc565b5b828201905092915050565b6000612895826129b3565b91506128a0836129b3565b9250826128b0576128af612b0b565b5b828204905092915050565b60006128c6826129b3565b91506128d1836129b3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561290a57612909612adc565b5b828202905092915050565b6000612920826129b3565b915061292b836129b3565b92508282101561293e5761293d612adc565b5b828203905092915050565b600061295482612993565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129ea5780820151818401526020810190506129cf565b838111156129f9576000848401525b50505050565b60006002820490506001821680612a1757607f821691505b60208210811415612a2b57612a2a612b3a565b5b50919050565b612a3a82612bdb565b810181811067ffffffffffffffff82111715612a5957612a58612b98565b5b80604052505050565b6000612a6d826129b3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612aa057612a9f612adc565b5b600182019050919050565b6000612ab6826129b3565b9150612ac1836129b3565b925082612ad157612ad0612b0b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6e74726163742063757272656e746c792070617573656400000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b50565b7f457863656564206d6178696d756d2054415720737570706c7900000000000000600082015250565b7f457863656564206d6178206d696e7461626c6520616d6f756e74000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f416374696f6e206e6f7420636f6d706c65746564000000000000000000000000600082015250565b612de181612949565b8114612dec57600080fd5b50565b612df88161295b565b8114612e0357600080fd5b50565b612e0f81612967565b8114612e1a57600080fd5b50565b612e26816129b3565b8114612e3157600080fd5b5056fea2646970667358221220107d454115e27a57ab73a5996631474cf2c0276bc67969b12a6791b249b7155064736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f7468656177616b616e6564776f6d616e2e6d7970696e6174612e636c6f75642f697066732f516d557457443665634c65745852797843683357664563675964626f7944383977317170553832466146757a62762f00000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://theawakanedwoman.mypinata.cloud/ipfs/QmUtWD6ecLetXRyxCh3WfEcgYdboyD89w1qpU82FaFuzbv/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000005c
Arg [2] : 68747470733a2f2f7468656177616b616e6564776f6d616e2e6d7970696e6174
Arg [3] : 612e636c6f75642f697066732f516d557457443665634c657458527978436833
Arg [4] : 57664563675964626f7944383977317170553832466146757a62762f00000000
Deployed Bytecode Sourcemap
58103:3040:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17890:630;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18774:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25087:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24547:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58902:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58425:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14629:317;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58315:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28696:2756;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60885:256;;;;;;;;;;;;;:::i;:::-;;31543:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59026:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59384:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20126:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15780:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57252:101;;;;;;;;;;;;;:::i;:::-;;56622:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18943:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59559:420;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25628:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32303:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59985:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60275:604;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58491:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26081:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57502:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17890:630;17975:4;18308:10;18293:25;;:11;:25;;;;:101;;;;18384:10;18369:25;;:11;:25;;;;18293:101;:177;;;;18460:10;18445:25;;:11;:25;;;;18293:177;18274:196;;17890:630;;;:::o;18774:98::-;18828:13;18860:5;18853:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18774:98;:::o;25087:214::-;25163:7;25187:16;25195:7;25187;:16::i;:::-;25182:64;;25212:34;;;;;;;;;;;;;;25182:64;25264:15;:24;25280:7;25264:24;;;;;;;;;;;:30;;;;;;;;;;;;25257:37;;25087:214;;;:::o;24547:390::-;24627:13;24643:16;24651:7;24643;:16::i;:::-;24627:32;;24697:5;24674:28;;:19;:17;:19::i;:::-;:28;;;24670:172;;24721:44;24738:5;24745:19;:17;:19::i;:::-;24721:16;:44::i;:::-;24716:126;;24792:35;;;;;;;;;;;;;;24716:126;24670:172;24885:2;24852:15;:24;24868:7;24852:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;24922:7;24918:2;24902:28;;24911:5;24902:28;;;;;;;;;;;;24617:320;24547:390;;:::o;58902:78::-;56515:13;:11;:13::i;:::-;58970:3:::1;58960:7;;:13;;;;;;;;;;;;;;;;;;58902:78:::0;:::o;58425:19::-;;;;;;;;;;;;;:::o;14629:317::-;14690:7;14914:15;:13;:15::i;:::-;14899:12;;14883:13;;:28;:46;14876:53;;14629:317;:::o;58315:34::-;;;;:::o;28696:2756::-;28825:27;28855;28874:7;28855:18;:27::i;:::-;28825:57;;28938:4;28897:45;;28913:19;28897:45;;;28893:86;;28951:28;;;;;;;;;;;;;;28893:86;28991:27;29020:23;29047:35;29074:7;29047:26;:35::i;:::-;28990:92;;;;29179:68;29204:15;29221:4;29227:19;:17;:19::i;:::-;29179:24;:68::i;:::-;29174:179;;29266:43;29283:4;29289:19;:17;:19::i;:::-;29266:16;:43::i;:::-;29261:92;;29318:35;;;;;;;;;;;;;;29261:92;29174:179;29382:1;29368:16;;:2;:16;;;29364:52;;;29393:23;;;;;;;;;;;;;;29364:52;29427:43;29449:4;29455:2;29459:7;29468:1;29427:21;:43::i;:::-;29559:15;29556:157;;;29697:1;29676:19;29669:30;29556:157;30085:18;:24;30104:4;30085:24;;;;;;;;;;;;;;;;30083:26;;;;;;;;;;;;30153:18;:22;30172:2;30153:22;;;;;;;;;;;;;;;;30151:24;;;;;;;;;;;30468:143;30504:2;30552:45;30567:4;30573:2;30577:19;30552:14;:45::i;:::-;11127:8;30524:73;30468:18;:143::i;:::-;30439:17;:26;30457:7;30439:26;;;;;;;;;;;:172;;;;30779:1;11127:8;30728:19;:47;:52;30724:617;;;30800:19;30832:1;30822:7;:11;30800:33;;30987:1;30953:17;:30;30971:11;30953:30;;;;;;;;;;;;:35;30949:378;;;31089:13;;31074:11;:28;31070:239;;31267:19;31234:17;:30;31252:11;31234:30;;;;;;;;;;;:52;;;;31070:239;30949:378;30782:559;30724:617;31385:7;31381:2;31366:27;;31375:4;31366:27;;;;;;;;;;;;31403:42;31424:4;31430:2;31434:7;31443:1;31403:20;:42::i;:::-;28815:2637;;;28696:2756;;;:::o;60885:256::-;56515:13;:11;:13::i;:::-;51228:1:::1;51809:7;;:19;;51801:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51228:1;51939:7;:18;;;;60983:14:::2;61000:21;60983:38;;61032:9;61055:7;:5;:7::i;:::-;61047:21;;61076:6;61047:40;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61031:56;;;61105:4;61097:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;60935:206;;51185:1:::1;52112:7:::0;:22:::1;;;;60885:256::o:0;31543:179::-;31676:39;31693:4;31699:2;31703:7;31676:39;;;;;;;;;;;;:16;:39::i;:::-;31543:179;;;:::o;59026:82::-;56515:13;:11;:13::i;:::-;59096:5:::1;59087:6;:14;;;;59026:82:::0;:::o;59384:95::-;56515:13;:11;:13::i;:::-;59468:4:::1;59452:13;:20;;;;;;;;;;;;:::i;:::-;;59384:95:::0;:::o;20126:150::-;20198:7;20240:27;20259:7;20240:18;:27::i;:::-;20217:52;;20126:150;;;:::o;15780:230::-;15852:7;15892:1;15875:19;;:5;:19;;;15871:60;;;15903:28;;;;;;;;;;;;;;15871:60;10095:13;15948:18;:25;15967:5;15948:25;;;;;;;;;;;;;;;;:55;15941:62;;15780:230;;;:::o;57252:101::-;56515:13;:11;:13::i;:::-;57316:30:::1;57343:1;57316:18;:30::i;:::-;57252:101::o:0;56622:85::-;56668:7;56694:6;;;;;;;;;;;56687:13;;56622:85;:::o;18943:102::-;18999:13;19031:7;19024:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18943:102;:::o;59559:420::-;51228:1;51809:7;;:19;;51801:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51228:1;51939:7;:18;;;;59631:14:::1;59648:13;:11;:13::i;:::-;59631:30;;59680:7;;;;;;;;;;;59679:8;59671:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59756:9;;59744:8;59735:6;:17;;;;:::i;:::-;:30;;59727:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59835:8;59826:6;;:17;;;;:::i;:::-;59813:9;:30;59805:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59903:1;59891:8;:13;;59883:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;59945:27;59951:10;59963:8;59945:5;:27::i;:::-;59621:358;51185:1:::0;52112:7;:22;;;;59559:420;:::o;25628:303::-;25738:19;:17;:19::i;:::-;25726:31;;:8;:31;;;25722:61;;;25766:17;;;;;;;;;;;;;;25722:61;25846:8;25794:18;:39;25813:19;:17;:19::i;:::-;25794:39;;;;;;;;;;;;;;;:49;25834:8;25794:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;25905:8;25869:55;;25884:19;:17;:19::i;:::-;25869:55;;;25915:8;25869:55;;;;;;:::i;:::-;;;;;;;;25628:303;;:::o;32303:388::-;32464:31;32477:4;32483:2;32487:7;32464:12;:31::i;:::-;32527:1;32509:2;:14;;;:19;32505:180;;32547:56;32578:4;32584:2;32588:7;32597:5;32547:30;:56::i;:::-;32542:143;;32630:40;;;;;;;;;;;;;;32542:143;32505:180;32303:388;;;;:::o;59985:193::-;56515:13;:11;:13::i;:::-;51228:1:::1;51809:7;;:19;;51801:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51228:1;51939:7;:18;;;;60100:9:::2;;60089:7;60073:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;60065:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;60145:26;60151:10;60163:7;60145:5;:26::i;:::-;51185:1:::1;52112:7:::0;:22:::1;;;;59985:193:::0;:::o;60275:604::-;60388:13;60438:16;60446:7;60438;:16::i;:::-;60417:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;60522:28;60553:10;:8;:10::i;:::-;60522:41;;60623:1;60598:14;60592:28;:32;:280;;;;;;;;;;;;;;;;;60713:14;60753:25;60770:7;60753:16;:25::i;:::-;60671:162;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60592:280;60573:299;;;60275:604;;;:::o;58491:31::-;;;;:::o;26081:162::-;26178:4;26201:18;:25;26220:5;26201:25;;;;;;;;;;;;;;;:35;26227:8;26201:35;;;;;;;;;;;;;;;;;;;;;;;;;26194:42;;26081:162;;;;:::o;57502:198::-;56515:13;:11;:13::i;:::-;57610:1:::1;57590:22;;:8;:22;;;;57582:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;57665:28;57684:8;57665:18;:28::i;:::-;57502:198:::0;:::o;26492:277::-;26557:4;26611:7;26592:15;:13;:15::i;:::-;:26;;:65;;;;;26644:13;;26634:7;:23;26592:65;:151;;;;;26742:1;10853:8;26694:17;:26;26712:7;26694:26;;;;;;;;;;;;:44;:49;26592:151;26573:170;;26492:277;;;:::o;47700:103::-;47760:7;47786:10;47779:17;;47700:103;:::o;56780:130::-;56854:12;:10;:12::i;:::-;56843:23;;:7;:5;:7::i;:::-;:23;;;56835:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56780:130::o;58721:99::-;58786:7;58812:1;58805:8;;58721:99;:::o;21250:1249::-;21317:7;21336:12;21351:7;21336:22;;21416:4;21397:15;:13;:15::i;:::-;:23;21393:1042;;21449:13;;21442:4;:20;21438:997;;;21486:14;21503:17;:23;21521:4;21503:23;;;;;;;;;;;;21486:40;;21618:1;10853:8;21590:6;:24;:29;21586:831;;;22245:111;22262:1;22252:6;:11;22245:111;;;22304:17;:25;22322:6;;;;;;;22304:25;;;;;;;;;;;;22295:34;;22245:111;;;22388:6;22381:13;;;;;;21586:831;21464:971;21438:997;21393:1042;22461:31;;;;;;;;;;;;;;21250:1249;;;;:::o;27627:468::-;27726:27;27755:23;27794:38;27835:15;:24;27851:7;27835:24;;;;;;;;;;;27794:65;;28003:18;27980:41;;28059:19;28053:26;28034:45;;27966:123;27627:468;;;:::o;26873:646::-;27018:11;27180:16;27173:5;27169:28;27160:37;;27338:16;27327:9;27323:32;27310:45;;27486:15;27475:9;27472:30;27464:5;27453:9;27450:20;27447:56;27437:66;;26873:646;;;;;:::o;33335:154::-;;;;;:::o;47027:304::-;47158:7;47177:16;11248:3;47203:19;:41;;47177:68;;11248:3;47270:31;47281:4;47287:2;47291:9;47270:10;:31::i;:::-;47262:40;;:62;;47255:69;;;47027:304;;;;;:::o;23032:443::-;23112:14;23277:16;23270:5;23266:28;23257:37;;23452:5;23438:11;23413:23;23409:41;23406:52;23399:5;23396:63;23386:73;;23032:443;;;;:::o;34136:153::-;;;;;:::o;57854:187::-;57927:16;57946:6;;;;;;;;;;;57927:25;;57971:8;57962:6;;:17;;;;;;;;;;;;;;;;;;58025:8;57994:40;;58015:8;57994:40;;;;;;;;;;;;57917:124;57854:187;:::o;35860:2396::-;35932:20;35955:13;;35932:36;;35994:1;35982:8;:13;35978:44;;;36004:18;;;;;;;;;;;;;;35978:44;36033:61;36063:1;36067:2;36071:12;36085:8;36033:21;:61::i;:::-;36566:1;10230:2;36536:1;:26;;36535:32;36523:8;:45;36497:18;:22;36516:2;36497:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;36838:136;36874:2;36927:33;36950:1;36954:2;36958:1;36927:14;:33::i;:::-;36894:30;36915:8;36894:20;:30::i;:::-;:66;36838:18;:136::i;:::-;36804:17;:31;36822:12;36804:31;;;;;;;;;;;:170;;;;36989:16;37019:11;37048:8;37033:12;:23;37019:37;;37298:16;37294:2;37290:25;37278:37;;37662:12;37623:8;37583:1;37522:25;37464:1;37404;37378:328;37783:1;37769:12;37765:20;37724:339;37823:3;37814:7;37811:16;37724:339;;38037:7;38027:8;38024:1;37997:25;37994:1;37991;37986:59;37875:1;37866:7;37862:15;37851:26;;37724:339;;;37728:75;38106:1;38094:8;:13;38090:45;;;38116:19;;;;;;;;;;;;;;38090:45;38166:3;38150:13;:19;;;;36277:1903;;38189:60;38218:1;38222:2;38226:12;38240:8;38189:20;:60::i;:::-;35922:2334;35860:2396;;:::o;34717:697::-;34875:4;34920:2;34895:45;;;34941:19;:17;:19::i;:::-;34962:4;34968:7;34977:5;34895:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34891:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35190:1;35173:6;:13;:18;35169:229;;;35218:40;;;;;;;;;;;;;;35169:229;35358:6;35352:13;35343:6;35339:2;35335:15;35328:38;34891:517;35061:54;;;35051:64;;;:6;:64;;;;35044:71;;;34717:697;;;;;;:::o;59266:112::-;59326:13;59358;59351:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59266:112;:::o;52558:703::-;52614:13;52840:1;52831:5;:10;52827:51;;;52857:10;;;;;;;;;;;;;;;;;;;;;52827:51;52887:12;52902:5;52887:20;;52917:14;52941:75;52956:1;52948:4;:9;52941:75;;52973:8;;;;;:::i;:::-;;;;53003:2;52995:10;;;;;:::i;:::-;;;52941:75;;;53025:19;53057:6;53047:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53025:39;;53074:150;53090:1;53081:5;:10;53074:150;;53117:1;53107:11;;;;;:::i;:::-;;;53183:2;53175:5;:10;;;;:::i;:::-;53162:2;:24;;;;:::i;:::-;53149:39;;53132:6;53139;53132:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;53211:2;53202:11;;;;;:::i;:::-;;;53074:150;;;53247:6;53233:21;;;;;52558:703;;;;:::o;55225:96::-;55278:7;55304:10;55297:17;;55225:96;:::o;46738:143::-;46871:6;46738:143;;;;;:::o;23572:318::-;23642:14;23871:1;23861:8;23858:15;23832:24;23828:46;23818:56;;23572:318;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:400::-;10121:3;10142:84;10224:1;10219:3;10142:84;:::i;:::-;10135:91;;10235:93;10324:3;10235:93;:::i;:::-;10353:1;10348:3;10344:11;10337:18;;9961:400;;;:::o;10367:366::-;10509:3;10530:67;10594:2;10589:3;10530:67;:::i;:::-;10523:74;;10606:93;10695:3;10606:93;:::i;:::-;10724:2;10719:3;10715:12;10708:19;;10367:366;;;:::o;10739:::-;10881:3;10902:67;10966:2;10961:3;10902:67;:::i;:::-;10895:74;;10978:93;11067:3;10978:93;:::i;:::-;11096:2;11091:3;11087:12;11080:19;;10739:366;;;:::o;11111:::-;11253:3;11274:67;11338:2;11333:3;11274:67;:::i;:::-;11267:74;;11350:93;11439:3;11350:93;:::i;:::-;11468:2;11463:3;11459:12;11452:19;;11111:366;;;:::o;11483:398::-;11642:3;11663:83;11744:1;11739:3;11663:83;:::i;:::-;11656:90;;11755:93;11844:3;11755:93;:::i;:::-;11873:1;11868:3;11864:11;11857:18;;11483:398;;;:::o;11887:366::-;12029:3;12050:67;12114:2;12109:3;12050:67;:::i;:::-;12043:74;;12126:93;12215:3;12126:93;:::i;:::-;12244:2;12239:3;12235:12;12228:19;;11887:366;;;:::o;12259:::-;12401:3;12422:67;12486:2;12481:3;12422:67;:::i;:::-;12415:74;;12498:93;12587:3;12498:93;:::i;:::-;12616:2;12611:3;12607:12;12600:19;;12259:366;;;:::o;12631:::-;12773:3;12794:67;12858:2;12853:3;12794:67;:::i;:::-;12787:74;;12870:93;12959:3;12870:93;:::i;:::-;12988:2;12983:3;12979:12;12972:19;;12631:366;;;:::o;13003:::-;13145:3;13166:67;13230:2;13225:3;13166:67;:::i;:::-;13159:74;;13242:93;13331:3;13242:93;:::i;:::-;13360:2;13355:3;13351:12;13344:19;;13003:366;;;:::o;13375:118::-;13462:24;13480:5;13462:24;:::i;:::-;13457:3;13450:37;13375:118;;:::o;13499:701::-;13780:3;13802:95;13893:3;13884:6;13802:95;:::i;:::-;13795:102;;13914:95;14005:3;13996:6;13914:95;:::i;:::-;13907:102;;14026:148;14170:3;14026:148;:::i;:::-;14019:155;;14191:3;14184:10;;13499:701;;;;;:::o;14206:379::-;14390:3;14412:147;14555:3;14412:147;:::i;:::-;14405:154;;14576:3;14569:10;;14206:379;;;:::o;14591:222::-;14684:4;14722:2;14711:9;14707:18;14699:26;;14735:71;14803:1;14792:9;14788:17;14779:6;14735:71;:::i;:::-;14591:222;;;;:::o;14819:640::-;15014:4;15052:3;15041:9;15037:19;15029:27;;15066:71;15134:1;15123:9;15119:17;15110:6;15066:71;:::i;:::-;15147:72;15215:2;15204:9;15200:18;15191:6;15147:72;:::i;:::-;15229;15297:2;15286:9;15282:18;15273:6;15229:72;:::i;:::-;15348:9;15342:4;15338:20;15333:2;15322:9;15318:18;15311:48;15376:76;15447:4;15438:6;15376:76;:::i;:::-;15368:84;;14819:640;;;;;;;:::o;15465:210::-;15552:4;15590:2;15579:9;15575:18;15567:26;;15603:65;15665:1;15654:9;15650:17;15641:6;15603:65;:::i;:::-;15465:210;;;;:::o;15681:313::-;15794:4;15832:2;15821:9;15817:18;15809:26;;15881:9;15875:4;15871:20;15867:1;15856:9;15852:17;15845:47;15909:78;15982:4;15973:6;15909:78;:::i;:::-;15901:86;;15681:313;;;;:::o;16000:419::-;16166:4;16204:2;16193:9;16189:18;16181:26;;16253:9;16247:4;16243:20;16239:1;16228:9;16224:17;16217:47;16281:131;16407:4;16281:131;:::i;:::-;16273:139;;16000:419;;;:::o;16425:::-;16591:4;16629:2;16618:9;16614:18;16606:26;;16678:9;16672:4;16668:20;16664:1;16653:9;16649:17;16642:47;16706:131;16832:4;16706:131;:::i;:::-;16698:139;;16425:419;;;:::o;16850:::-;17016:4;17054:2;17043:9;17039:18;17031:26;;17103:9;17097:4;17093:20;17089:1;17078:9;17074:17;17067:47;17131:131;17257:4;17131:131;:::i;:::-;17123:139;;16850:419;;;:::o;17275:::-;17441:4;17479:2;17468:9;17464:18;17456:26;;17528:9;17522:4;17518:20;17514:1;17503:9;17499:17;17492:47;17556:131;17682:4;17556:131;:::i;:::-;17548:139;;17275:419;;;:::o;17700:::-;17866:4;17904:2;17893:9;17889:18;17881:26;;17953:9;17947:4;17943:20;17939:1;17928:9;17924:17;17917:47;17981:131;18107:4;17981:131;:::i;:::-;17973:139;;17700:419;;;:::o;18125:::-;18291:4;18329:2;18318:9;18314:18;18306:26;;18378:9;18372:4;18368:20;18364:1;18353:9;18349:17;18342:47;18406:131;18532:4;18406:131;:::i;:::-;18398:139;;18125:419;;;:::o;18550:::-;18716:4;18754:2;18743:9;18739:18;18731:26;;18803:9;18797:4;18793:20;18789:1;18778:9;18774:17;18767:47;18831:131;18957:4;18831:131;:::i;:::-;18823:139;;18550:419;;;:::o;18975:::-;19141:4;19179:2;19168:9;19164:18;19156:26;;19228:9;19222:4;19218:20;19214:1;19203:9;19199:17;19192:47;19256:131;19382:4;19256:131;:::i;:::-;19248:139;;18975:419;;;:::o;19400:::-;19566:4;19604:2;19593:9;19589:18;19581:26;;19653:9;19647:4;19643:20;19639:1;19628:9;19624:17;19617:47;19681:131;19807:4;19681:131;:::i;:::-;19673:139;;19400:419;;;:::o;19825:::-;19991:4;20029:2;20018:9;20014:18;20006:26;;20078:9;20072:4;20068:20;20064:1;20053:9;20049:17;20042:47;20106:131;20232:4;20106:131;:::i;:::-;20098:139;;19825:419;;;:::o;20250:222::-;20343:4;20381:2;20370:9;20366:18;20358:26;;20394:71;20462:1;20451:9;20447:17;20438:6;20394:71;:::i;:::-;20250:222;;;;:::o;20478:129::-;20512:6;20539:20;;:::i;:::-;20529:30;;20568:33;20596:4;20588:6;20568:33;:::i;:::-;20478:129;;;:::o;20613:75::-;20646:6;20679:2;20673:9;20663:19;;20613:75;:::o;20694:307::-;20755:4;20845:18;20837:6;20834:30;20831:56;;;20867:18;;:::i;:::-;20831:56;20905:29;20927:6;20905:29;:::i;:::-;20897:37;;20989:4;20983;20979:15;20971:23;;20694:307;;;:::o;21007:308::-;21069:4;21159:18;21151:6;21148:30;21145:56;;;21181:18;;:::i;:::-;21145:56;21219:29;21241:6;21219:29;:::i;:::-;21211:37;;21303:4;21297;21293:15;21285:23;;21007:308;;;:::o;21321:98::-;21372:6;21406:5;21400:12;21390:22;;21321:98;;;:::o;21425:99::-;21477:6;21511:5;21505:12;21495:22;;21425:99;;;:::o;21530:168::-;21613:11;21647:6;21642:3;21635:19;21687:4;21682:3;21678:14;21663:29;;21530:168;;;;:::o;21704:147::-;21805:11;21842:3;21827:18;;21704:147;;;;:::o;21857:169::-;21941:11;21975:6;21970:3;21963:19;22015:4;22010:3;22006:14;21991:29;;21857:169;;;;:::o;22032:148::-;22134:11;22171:3;22156:18;;22032:148;;;;:::o;22186:305::-;22226:3;22245:20;22263:1;22245:20;:::i;:::-;22240:25;;22279:20;22297:1;22279:20;:::i;:::-;22274:25;;22433:1;22365:66;22361:74;22358:1;22355:81;22352:107;;;22439:18;;:::i;:::-;22352:107;22483:1;22480;22476:9;22469:16;;22186:305;;;;:::o;22497:185::-;22537:1;22554:20;22572:1;22554:20;:::i;:::-;22549:25;;22588:20;22606:1;22588:20;:::i;:::-;22583:25;;22627:1;22617:35;;22632:18;;:::i;:::-;22617:35;22674:1;22671;22667:9;22662:14;;22497:185;;;;:::o;22688:348::-;22728:7;22751:20;22769:1;22751:20;:::i;:::-;22746:25;;22785:20;22803:1;22785:20;:::i;:::-;22780:25;;22973:1;22905:66;22901:74;22898:1;22895:81;22890:1;22883:9;22876:17;22872:105;22869:131;;;22980:18;;:::i;:::-;22869:131;23028:1;23025;23021:9;23010:20;;22688:348;;;;:::o;23042:191::-;23082:4;23102:20;23120:1;23102:20;:::i;:::-;23097:25;;23136:20;23154:1;23136:20;:::i;:::-;23131:25;;23175:1;23172;23169:8;23166:34;;;23180:18;;:::i;:::-;23166:34;23225:1;23222;23218:9;23210:17;;23042:191;;;;:::o;23239:96::-;23276:7;23305:24;23323:5;23305:24;:::i;:::-;23294:35;;23239:96;;;:::o;23341:90::-;23375:7;23418:5;23411:13;23404:21;23393:32;;23341:90;;;:::o;23437:149::-;23473:7;23513:66;23506:5;23502:78;23491:89;;23437:149;;;:::o;23592:126::-;23629:7;23669:42;23662:5;23658:54;23647:65;;23592:126;;;:::o;23724:77::-;23761:7;23790:5;23779:16;;23724:77;;;:::o;23807:154::-;23891:6;23886:3;23881;23868:30;23953:1;23944:6;23939:3;23935:16;23928:27;23807:154;;;:::o;23967:307::-;24035:1;24045:113;24059:6;24056:1;24053:13;24045:113;;;24144:1;24139:3;24135:11;24129:18;24125:1;24120:3;24116:11;24109:39;24081:2;24078:1;24074:10;24069:15;;24045:113;;;24176:6;24173:1;24170:13;24167:101;;;24256:1;24247:6;24242:3;24238:16;24231:27;24167:101;24016:258;23967:307;;;:::o;24280:320::-;24324:6;24361:1;24355:4;24351:12;24341:22;;24408:1;24402:4;24398:12;24429:18;24419:81;;24485:4;24477:6;24473:17;24463:27;;24419:81;24547:2;24539:6;24536:14;24516:18;24513:38;24510:84;;;24566:18;;:::i;:::-;24510:84;24331:269;24280:320;;;:::o;24606:281::-;24689:27;24711:4;24689:27;:::i;:::-;24681:6;24677:40;24819:6;24807:10;24804:22;24783:18;24771:10;24768:34;24765:62;24762:88;;;24830:18;;:::i;:::-;24762:88;24870:10;24866:2;24859:22;24649:238;24606:281;;:::o;24893:233::-;24932:3;24955:24;24973:5;24955:24;:::i;:::-;24946:33;;25001:66;24994:5;24991:77;24988:103;;;25071:18;;:::i;:::-;24988:103;25118:1;25111:5;25107:13;25100:20;;24893:233;;;:::o;25132:176::-;25164:1;25181:20;25199:1;25181:20;:::i;:::-;25176:25;;25215:20;25233:1;25215:20;:::i;:::-;25210:25;;25254:1;25244:35;;25259:18;;:::i;:::-;25244:35;25300:1;25297;25293:9;25288:14;;25132:176;;;;:::o;25314:180::-;25362:77;25359:1;25352:88;25459:4;25456:1;25449:15;25483:4;25480:1;25473:15;25500:180;25548:77;25545:1;25538:88;25645:4;25642:1;25635:15;25669:4;25666:1;25659:15;25686:180;25734:77;25731:1;25724:88;25831:4;25828:1;25821:15;25855:4;25852:1;25845:15;25872:180;25920:77;25917:1;25910:88;26017:4;26014:1;26007:15;26041:4;26038:1;26031:15;26058:180;26106:77;26103:1;26096:88;26203:4;26200:1;26193:15;26227:4;26224:1;26217:15;26244:117;26353:1;26350;26343:12;26367:117;26476:1;26473;26466:12;26490:117;26599:1;26596;26589:12;26613:117;26722:1;26719;26712:12;26736:102;26777:6;26828:2;26824:7;26819:2;26812:5;26808:14;26804:28;26794:38;;26736:102;;;:::o;26844:181::-;26984:33;26980:1;26972:6;26968:14;26961:57;26844:181;:::o;27031:225::-;27171:34;27167:1;27159:6;27155:14;27148:58;27240:8;27235:2;27227:6;27223:15;27216:33;27031:225;:::o;27262:170::-;27402:22;27398:1;27390:6;27386:14;27379:46;27262:170;:::o;27438:155::-;27578:7;27574:1;27566:6;27562:14;27555:31;27438:155;:::o;27599:182::-;27739:34;27735:1;27727:6;27723:14;27716:58;27599:182;:::o;27787:175::-;27927:27;27923:1;27915:6;27911:14;27904:51;27787:175;:::o;27968:::-;28108:27;28104:1;28096:6;28092:14;28085:51;27968:175;:::o;28149:114::-;;:::o;28269:175::-;28409:27;28405:1;28397:6;28393:14;28386:51;28269:175;:::o;28450:176::-;28590:28;28586:1;28578:6;28574:14;28567:52;28450:176;:::o;28632:181::-;28772:33;28768:1;28760:6;28756:14;28749:57;28632:181;:::o;28819:170::-;28959:22;28955:1;28947:6;28943:14;28936:46;28819:170;:::o;28995:122::-;29068:24;29086:5;29068:24;:::i;:::-;29061:5;29058:35;29048:63;;29107:1;29104;29097:12;29048:63;28995:122;:::o;29123:116::-;29193:21;29208:5;29193:21;:::i;:::-;29186:5;29183:32;29173:60;;29229:1;29226;29219:12;29173:60;29123:116;:::o;29245:120::-;29317:23;29334:5;29317:23;:::i;:::-;29310:5;29307:34;29297:62;;29355:1;29352;29345:12;29297:62;29245:120;:::o;29371:122::-;29444:24;29462:5;29444:24;:::i;:::-;29437:5;29434:35;29424:63;;29483:1;29480;29473:12;29424:63;29371:122;:::o
Swarm Source
ipfs://107d454115e27a57ab73a5996631474cf2c0276bc67969b12a6791b249b71550
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.