ERC-721
Overview
Max Total Supply
636 R420
Holders
153
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 R420Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Room420
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-21 */ // Sources flattened with hardhat v2.12.2 https://hardhat.org // File contracts/IERC721A.sol // SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.0 // 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 contracts/ERC721A.sol // ERC721A Contracts v4.2.0 // 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 ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File @openzeppelin/contracts/utils/[email protected] // 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/[email protected] // 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 @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _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) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _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/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File contracts/Room420.sol pragma solidity ^0.8.13; /* /$$$$$$$ /$$$$$$ /$$$$$$ /$$ /$$ /$$ /$$ /$$$$$$ /$$$$$$ | $$__ $$ /$$__ $$ /$$__ $$| $$$ /$$$ | $$ | $$ /$$__ $$ /$$$_ $$ | $$ \ $$| $$ \ $$| $$ \ $$| $$$$ /$$$$ | $$ | $$|__/ \ $$| $$$$\ $$ | $$$$$$$/| $$ | $$| $$ | $$| $$ $$/$$ $$ | $$$$$$$$ /$$$$$$/| $$ $$ $$ | $$__ $$| $$ | $$| $$ | $$| $$ $$$| $$ |_____ $$ /$$____/ | $$\ $$$$ | $$ \ $$| $$ | $$| $$ | $$| $$\ $ | $$ | $$| $$ | $$ \ $$$ | $$ | $$| $$$$$$/| $$$$$$/| $$ \/ | $$ | $$| $$$$$$$$| $$$$$$/ |__/ |__/ \______/ \______/ |__/ |__/ |__/|________/ \______/ */ // Room420 2022 contract Room420 is ERC721A, Ownable { using Strings for uint; event PricesChanged(uint newPresalePrice, uint newPublicPrice); event BaseURIChanged(string newUriPrefix, string newUriSuffix); event WalletLimitChanged(uint newWalletLimit); event MaxSupplyChanged(uint newMaxSupply); uint public publicPrice = 0.12 * 1000000000000000000; uint public presalePrice = 0.1 * 1000000000000000000; uint public maxSupply = 5420; bool public publicSaleEnabled; bool public presaleEnabled; bool public uriLocked; uint public walletLimit = 3; mapping(address => uint) public walletMints; uint public tokensReserved; string private _baseURIPrefix = ""; string private _baseURISuffix = ""; address private dev = 0xDB4AAC095f709a62Ec24479404fAE45D24ade34b; address private signerAddress = 0x77bFCca6F45B07047a34A31885Af86F11033665B; constructor() ERC721A('Room420', 'R420') { } // ========================== Minting ============================== function _mintTokens(address to, uint quantity, uint price) internal { require(quantity > 0, "Invalid quantity"); require(totalSupply()+quantity <= maxSupply, "Max supply exceeded"); require(price*quantity == msg.value, "invalid eth value"); payable(owner()).transfer(msg.value); _mint(to, quantity); walletMints[msg.sender]+=quantity; } function _hashMessage(address sender, uint maxCount) internal pure returns(bytes32) { return keccak256(abi.encodePacked( "\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked('R420WL',sender, maxCount)))); } function presaleMint(uint quantity, uint maxCount, bytes memory signature) external payable { require(presaleEnabled, "Presale minting disabled"); require(signerAddress == ECDSA.recover( _hashMessage( msg.sender, maxCount), signature), "invalid hash or signature"); require( walletMints[msg.sender]+quantity <= maxCount, "Max presale mints exceeded for this wallet"); _mintTokens(msg.sender, quantity, presalePrice); } function mint(uint quantity) external payable { require(publicSaleEnabled, "Public minting disabled"); require( walletMints[msg.sender]+quantity <= walletLimit, "Max mints exceeded for this wallet"); _mintTokens(msg.sender, quantity, publicPrice); } // TealerLab can reserve tokens to sell to its clients function reserveTokens(address to, uint quantity) external onlyOwner { tokensReserved += quantity; _mint(to, quantity); } // ========================== Other functions ============================== modifier devOrOwner() { _devOrOwner(); _; } function _devOrOwner() internal view { require( (owner()==msg.sender)||(dev==msg.sender), "Signer is not dev nor owner"); } function tokenURI(uint tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(_baseURIPrefix).length > 0 ? string(abi.encodePacked(_baseURIPrefix, tokenId.toString(), _baseURISuffix)) : ""; } function setBaseURI(string memory newUriPrefix, string memory newUriSuffix) external devOrOwner{ require(!uriLocked, 'URIs are locked'); _baseURIPrefix = newUriPrefix; _baseURISuffix = newUriSuffix; emit BaseURIChanged(newUriPrefix, newUriSuffix); } function setPrices(uint newPresalePrice, uint newPublicPrice) external devOrOwner{ presalePrice = newPresalePrice; publicPrice = newPublicPrice; emit PricesChanged(newPresalePrice, newPublicPrice); } function setWalletLimit(uint newWalletLimit) external devOrOwner{ walletLimit = newWalletLimit; emit WalletLimitChanged(newWalletLimit); } function setMaxSupply(uint newMaxSupply) external devOrOwner{ require(newMaxSupply < maxSupply, 'can only decrease max supply'); require(newMaxSupply >= totalSupply(), 'current supply is bigger than this supply'); maxSupply = newMaxSupply; emit MaxSupplyChanged(newMaxSupply); } function setDev(address newDev) external onlyOwner{ dev = newDev; } function toggleMinting(bool _presaleEnabled, bool _publicSaleEnabled) external devOrOwner{ presaleEnabled = _presaleEnabled; publicSaleEnabled = _publicSaleEnabled; } function lockURIs() external onlyOwner{ uriLocked=true; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"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":false,"internalType":"string","name":"newUriPrefix","type":"string"},{"indexed":false,"internalType":"string","name":"newUriSuffix","type":"string"}],"name":"BaseURIChanged","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":false,"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"MaxSupplyChanged","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":false,"internalType":"uint256","name":"newPresalePrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPublicPrice","type":"uint256"}],"name":"PricesChanged","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newWalletLimit","type":"uint256"}],"name":"WalletLimitChanged","type":"event"},{"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":"lockURIs","outputs":[],"stateMutability":"nonpayable","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":"presaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"maxCount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTokens","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":"newUriPrefix","type":"string"},{"internalType":"string","name":"newUriSuffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDev","type":"address"}],"name":"setDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPresalePrice","type":"uint256"},{"internalType":"uint256","name":"newPublicPrice","type":"uint256"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newWalletLimit","type":"uint256"}],"name":"setWalletLimit","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":"bool","name":"_presaleEnabled","type":"bool"},{"internalType":"bool","name":"_publicSaleEnabled","type":"bool"}],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uriLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526701aa535d3d0c000060095567016345785d8a0000600a5561152c600b556003600d5560405180602001604052806000815250601090805190602001906200004e929190620002e2565b50604051806020016040528060008152506011908051906020019062000076929190620002e2565b5073db4aac095f709a62ec24479404fae45d24ade34b601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507377bfcca6f45b07047a34a31885af86f11033665b601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200012e57600080fd5b506040518060400160405280600781526020017f526f6f6d343230000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f52343230000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001b3929190620002e2565b508060039080519060200190620001cc929190620002e2565b50620001dd6200020b60201b60201c565b600081905550505062000205620001f96200021460201b60201c565b6200021c60201b60201c565b620003f6565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002f090620003c1565b90600052602060002090601f01602090048101928262000314576000855562000360565b82601f106200032f57805160ff191683800117855562000360565b8280016001018555821562000360579182015b828111156200035f57825182559160200191906001019062000342565b5b5090506200036f919062000373565b5090565b5b808211156200038e57600081600090555060010162000374565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003da57607f821691505b602082108103620003f057620003ef62000392565b5b50919050565b613ed980620004066000396000f3fe60806040526004361061020e5760003560e01c806370a0823111610118578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c514610748578063f0293fd314610785578063f1d5f517146107c2578063f2fde38b146107eb578063f997cbec146108145761020e565b8063c87b56dd1461069b578063d477f05f146106d8578063d5abeb0114610701578063d63ba1491461072c5761020e565b806395d89b41116100e757806395d89b41146105d7578063a0712d6814610602578063a22cb4651461061e578063a945bf8014610647578063b88d4fde146106725761020e565b806370a082311461052f578063715018a61461056c57806378cf19e9146105835780638da5cb5b146105ac5761020e565b806323b872dd1161019b578063433adb051161016a578063433adb051461045e5780636352211e146104895780636790a9de146104c65780636a5f2a5e146104ef5780636f8b44b0146105065761020e565b806323b872dd146103b65780632ab91bba146103df5780633c8463a11461040a57806342842e0e146104355761020e565b8063081812fc116101e2578063081812fc146102cf578063095ea7b31461030c578063143b237f1461033557806318160ddd1461036057806320c5ab6a1461038b5761020e565b80620e7fa81461021357806301ffc9a71461023e57806305fefda71461027b57806306fdde03146102a4575b600080fd5b34801561021f57600080fd5b5061022861083d565b604051610235919061289b565b60405180910390f35b34801561024a57600080fd5b5061026560048036038101906102609190612922565b610843565b604051610272919061296a565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d91906129b1565b6108d5565b005b3480156102b057600080fd5b506102b9610928565b6040516102c69190612a8a565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612aac565b6109ba565b6040516103039190612b1a565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190612b61565b610a39565b005b34801561034157600080fd5b5061034a610b7d565b604051610357919061296a565b60405180910390f35b34801561036c57600080fd5b50610375610b90565b604051610382919061289b565b60405180910390f35b34801561039757600080fd5b506103a0610ba7565b6040516103ad919061296a565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612ba1565b610bba565b005b3480156103eb57600080fd5b506103f4610edc565b604051610401919061296a565b60405180910390f35b34801561041657600080fd5b5061041f610eef565b60405161042c919061289b565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190612ba1565b610ef5565b005b34801561046a57600080fd5b50610473610f15565b604051610480919061289b565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612aac565b610f1b565b6040516104bd9190612b1a565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190612d29565b610f2d565b005b3480156104fb57600080fd5b50610504610ff0565b005b34801561051257600080fd5b5061052d60048036038101906105289190612aac565b611015565b005b34801561053b57600080fd5b5061055660048036038101906105519190612da1565b6110ec565b604051610563919061289b565b60405180910390f35b34801561057857600080fd5b506105816111a4565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190612b61565b6111b8565b005b3480156105b857600080fd5b506105c16111e7565b6040516105ce9190612b1a565b60405180910390f35b3480156105e357600080fd5b506105ec611211565b6040516105f99190612a8a565b60405180910390f35b61061c60048036038101906106179190612aac565b6112a3565b005b34801561062a57600080fd5b5061064560048036038101906106409190612dfa565b611391565b005b34801561065357600080fd5b5061065c611508565b604051610669919061289b565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190612edb565b61150e565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190612aac565b611581565b6040516106cf9190612a8a565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612da1565b61162c565b005b34801561070d57600080fd5b50610716611678565b604051610723919061289b565b60405180910390f35b61074660048036038101906107419190612f5e565b61167e565b005b34801561075457600080fd5b5061076f600480360381019061076a9190612fcd565b61180e565b60405161077c919061296a565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190612da1565b6118a2565b6040516107b9919061289b565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e49190612aac565b6118ba565b005b3480156107f757600080fd5b50610812600480360381019061080d9190612da1565b611903565b005b34801561082057600080fd5b5061083b6004803603810190610836919061300d565b611986565b005b600a5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ce5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108dd6119c6565b81600a81905550806009819055507f80aade646210706e24b438e253bdb9596f344bc718597854cba4a597f4db8f93828260405161091c92919061304d565b60405180910390a15050565b606060028054610937906130a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610963906130a5565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b5050505050905090565b60006109c582611a95565b6109fb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4482610f1b565b90508073ffffffffffffffffffffffffffffffffffffffff16610a65611af4565b73ffffffffffffffffffffffffffffffffffffffff1614610ac857610a9181610a8c611af4565b61180e565b610ac7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c60019054906101000a900460ff1681565b6000610b9a611afc565b6001546000540303905090565b600c60029054906101000a900460ff1681565b6000610bc582611b05565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c2c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3884611bd1565b91509150610c4e8187610c49611af4565b611bf8565b610c9a57610c6386610c5e611af4565b61180e565b610c99576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d00576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d0d8686866001611c3c565b8015610d1857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de685610dc2888887611c42565b7c020000000000000000000000000000000000000000000000000000000017611c6a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e6c5760006001850190506000600460008381526020019081526020016000205403610e6a576000548114610e69578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed48686866001611c95565b505050505050565b600c60009054906101000a900460ff1681565b600d5481565b610f108383836040518060200160405280600081525061150e565b505050565b600f5481565b6000610f2682611b05565b9050919050565b610f356119c6565b600c60029054906101000a900460ff1615610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613122565b60405180910390fd5b8160109080519060200190610f9b9291906127df565b508060119080519060200190610fb29291906127df565b507fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b966998282604051610fe4929190613142565b60405180910390a15050565b610ff8611c9b565b6001600c60026101000a81548160ff021916908315150217905550565b61101d6119c6565b600b548110611061576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611058906131c5565b60405180910390fd5b611069610b90565b8110156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290613257565b60405180910390fd5b80600b819055507f28a10a2e0b5582da7164754cb994f6214b8af6aa7f7e003305fbc09e7106c513816040516110e1919061289b565b60405180910390a150565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611153576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111ac611c9b565b6111b66000611d19565b565b6111c0611c9b565b80600f60008282546111d291906132a6565b925050819055506111e38282611ddf565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611220906130a5565b80601f016020809104026020016040519081016040528092919081815260200182805461124c906130a5565b80156112995780601f1061126e57610100808354040283529160200191611299565b820191906000526020600020905b81548152906001019060200180831161127c57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff166112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990613348565b60405180910390fd5b600d5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134091906132a6565b1115611381576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611378906133da565b60405180910390fd5b61138e3382600954611f9a565b50565b611399611af4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061140a611af4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b7611af4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fc919061296a565b60405180910390a35050565b60095481565b611519848484610bba565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461157b5761154484848484612134565b61157a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061158c82611a95565b6115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c29061346c565b60405180910390fd5b6000601080546115da906130a5565b9050116115f65760405180602001604052806000815250611625565b601061160183612284565b60116040516020016116159392919061355c565b6040516020818303038152906040525b9050919050565b611634611c9b565b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b600c60019054906101000a900460ff166116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c4906135d9565b60405180910390fd5b6116e06116da3384612352565b826123ab565b73ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690613645565b60405180910390fd5b8183600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117bb91906132a6565b11156117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f3906136d7565b60405180910390fd5b6118093384600a54611f9a565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e6020528060005260406000206000915090505481565b6118c26119c6565b80600d819055507f7872485612198920508f0a96f4e47084f84df76e33b2b1d76ceff0dc83499aa6816040516118f8919061289b565b60405180910390a150565b61190b611c9b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361197a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197190613769565b60405180910390fd5b61198381611d19565b50565b61198e6119c6565b81600c60016101000a81548160ff02191690831515021790555080600c60006101000a81548160ff0219169083151502179055505050565b3373ffffffffffffffffffffffffffffffffffffffff166119e56111e7565b73ffffffffffffffffffffffffffffffffffffffff161480611a5457503373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a906137d5565b60405180910390fd5b565b600081611aa0611afc565b11158015611aaf575060005482105b8015611aed575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611b14611afc565b11611b9a57600054811015611b995760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b97575b60008103611b8d576004600083600190039350838152602001908152602001600020549050611b63565b8092505050611bcc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c598686846123d2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611ca36123db565b73ffffffffffffffffffffffffffffffffffffffff16611cc16111e7565b73ffffffffffffffffffffffffffffffffffffffff1614611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e90613841565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905060008203611e1f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e2c6000848385611c3c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ea383611e946000866000611c42565b611e9d856123e3565b17611c6a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f4457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f09565b5060008203611f7f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f956000848385611c95565b505050565b60008211611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd4906138ad565b60405180910390fd5b600b5482611fe9610b90565b611ff391906132a6565b1115612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b90613919565b60405180910390fd5b3482826120419190613939565b14612081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612078906139df565b60405180910390fd5b6120896111e7565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156120ce573d6000803e3d6000fd5b506120d98383611ddf565b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461212891906132a6565b92505081905550505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261215a611af4565b8786866040518563ffffffff1660e01b815260040161217c9493929190613a54565b6020604051808303816000875af19250505080156121b857506040513d601f19601f820116820180604052508101906121b59190613ab5565b60015b612231573d80600081146121e8576040519150601f19603f3d011682016040523d82523d6000602084013e6121ed565b606091505b506000815103612229576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001612293846123f3565b01905060008167ffffffffffffffff8111156122b2576122b1612bfe565b5b6040519080825280601f01601f1916602001820160405280156122e45781602001600182028036833780820191505090505b509050600082602001820190505b600115612347578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161233b5761233a613ae2565b5b049450600085036122f2575b819350505050919050565b60008282604051602001612367929190613bc6565b6040516020818303038152906040528051906020012060405160200161238d9190613c74565b60405160208183030381529060405280519060200120905092915050565b60008060006123ba8585612546565b915091506123c781612597565b819250505092915050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612451577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161244757612446613ae2565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061248e576d04ee2d6d415b85acef8100000000838161248457612483613ae2565b5b0492506020810190505b662386f26fc1000083106124bd57662386f26fc1000083816124b3576124b2613ae2565b5b0492506010810190505b6305f5e10083106124e6576305f5e10083816124dc576124db613ae2565b5b0492506008810190505b612710831061250b57612710838161250157612500613ae2565b5b0492506004810190505b6064831061252e576064838161252457612523613ae2565b5b0492506002810190505b600a831061253d576001810190505b80915050919050565b60008060418351036125875760008060006020860151925060408601519150606086015160001a905061257b878285856126fd565b94509450505050612590565b60006002915091505b9250929050565b600060048111156125ab576125aa613c9a565b5b8160048111156125be576125bd613c9a565b5b03156126fa57600160048111156125d8576125d7613c9a565b5b8160048111156125eb576125ea613c9a565b5b0361262b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262290613d15565b60405180910390fd5b6002600481111561263f5761263e613c9a565b5b81600481111561265257612651613c9a565b5b03612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268990613d81565b60405180910390fd5b600360048111156126a6576126a5613c9a565b5b8160048111156126b9576126b8613c9a565b5b036126f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f090613e13565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156127385760006003915091506127d6565b60006001878787876040516000815260200160405260405161275d9493929190613e5e565b6020604051602081039080840390855afa15801561277f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127cd576000600192509250506127d6565b80600092509250505b94509492505050565b8280546127eb906130a5565b90600052602060002090601f01602090048101928261280d5760008555612854565b82601f1061282657805160ff1916838001178555612854565b82800160010185558215612854579182015b82811115612853578251825591602001919060010190612838565b5b5090506128619190612865565b5090565b5b8082111561287e576000816000905550600101612866565b5090565b6000819050919050565b61289581612882565b82525050565b60006020820190506128b0600083018461288c565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128ff816128ca565b811461290a57600080fd5b50565b60008135905061291c816128f6565b92915050565b600060208284031215612938576129376128c0565b5b60006129468482850161290d565b91505092915050565b60008115159050919050565b6129648161294f565b82525050565b600060208201905061297f600083018461295b565b92915050565b61298e81612882565b811461299957600080fd5b50565b6000813590506129ab81612985565b92915050565b600080604083850312156129c8576129c76128c0565b5b60006129d68582860161299c565b92505060206129e78582860161299c565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a2b578082015181840152602081019050612a10565b83811115612a3a576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a5c826129f1565b612a6681856129fc565b9350612a76818560208601612a0d565b612a7f81612a40565b840191505092915050565b60006020820190508181036000830152612aa48184612a51565b905092915050565b600060208284031215612ac257612ac16128c0565b5b6000612ad08482850161299c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b0482612ad9565b9050919050565b612b1481612af9565b82525050565b6000602082019050612b2f6000830184612b0b565b92915050565b612b3e81612af9565b8114612b4957600080fd5b50565b600081359050612b5b81612b35565b92915050565b60008060408385031215612b7857612b776128c0565b5b6000612b8685828601612b4c565b9250506020612b978582860161299c565b9150509250929050565b600080600060608486031215612bba57612bb96128c0565b5b6000612bc886828701612b4c565b9350506020612bd986828701612b4c565b9250506040612bea8682870161299c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c3682612a40565b810181811067ffffffffffffffff82111715612c5557612c54612bfe565b5b80604052505050565b6000612c686128b6565b9050612c748282612c2d565b919050565b600067ffffffffffffffff821115612c9457612c93612bfe565b5b612c9d82612a40565b9050602081019050919050565b82818337600083830152505050565b6000612ccc612cc784612c79565b612c5e565b905082815260208101848484011115612ce857612ce7612bf9565b5b612cf3848285612caa565b509392505050565b600082601f830112612d1057612d0f612bf4565b5b8135612d20848260208601612cb9565b91505092915050565b60008060408385031215612d4057612d3f6128c0565b5b600083013567ffffffffffffffff811115612d5e57612d5d6128c5565b5b612d6a85828601612cfb565b925050602083013567ffffffffffffffff811115612d8b57612d8a6128c5565b5b612d9785828601612cfb565b9150509250929050565b600060208284031215612db757612db66128c0565b5b6000612dc584828501612b4c565b91505092915050565b612dd78161294f565b8114612de257600080fd5b50565b600081359050612df481612dce565b92915050565b60008060408385031215612e1157612e106128c0565b5b6000612e1f85828601612b4c565b9250506020612e3085828601612de5565b9150509250929050565b600067ffffffffffffffff821115612e5557612e54612bfe565b5b612e5e82612a40565b9050602081019050919050565b6000612e7e612e7984612e3a565b612c5e565b905082815260208101848484011115612e9a57612e99612bf9565b5b612ea5848285612caa565b509392505050565b600082601f830112612ec257612ec1612bf4565b5b8135612ed2848260208601612e6b565b91505092915050565b60008060008060808587031215612ef557612ef46128c0565b5b6000612f0387828801612b4c565b9450506020612f1487828801612b4c565b9350506040612f258782880161299c565b925050606085013567ffffffffffffffff811115612f4657612f456128c5565b5b612f5287828801612ead565b91505092959194509250565b600080600060608486031215612f7757612f766128c0565b5b6000612f858682870161299c565b9350506020612f968682870161299c565b925050604084013567ffffffffffffffff811115612fb757612fb66128c5565b5b612fc386828701612ead565b9150509250925092565b60008060408385031215612fe457612fe36128c0565b5b6000612ff285828601612b4c565b925050602061300385828601612b4c565b9150509250929050565b60008060408385031215613024576130236128c0565b5b600061303285828601612de5565b925050602061304385828601612de5565b9150509250929050565b6000604082019050613062600083018561288c565b61306f602083018461288c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130bd57607f821691505b6020821081036130d0576130cf613076565b5b50919050565b7f5552497320617265206c6f636b65640000000000000000000000000000000000600082015250565b600061310c600f836129fc565b9150613117826130d6565b602082019050919050565b6000602082019050818103600083015261313b816130ff565b9050919050565b6000604082019050818103600083015261315c8185612a51565b905081810360208301526131708184612a51565b90509392505050565b7f63616e206f6e6c79206465637265617365206d617820737570706c7900000000600082015250565b60006131af601c836129fc565b91506131ba82613179565b602082019050919050565b600060208201905081810360008301526131de816131a2565b9050919050565b7f63757272656e7420737570706c7920697320626967676572207468616e20746860008201527f697320737570706c790000000000000000000000000000000000000000000000602082015250565b60006132416029836129fc565b915061324c826131e5565b604082019050919050565b6000602082019050818103600083015261327081613234565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132b182612882565b91506132bc83612882565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132f1576132f0613277565b5b828201905092915050565b7f5075626c6963206d696e74696e672064697361626c6564000000000000000000600082015250565b60006133326017836129fc565b915061333d826132fc565b602082019050919050565b6000602082019050818103600083015261336181613325565b9050919050565b7f4d6178206d696e747320657863656564656420666f7220746869732077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b60006133c46022836129fc565b91506133cf82613368565b604082019050919050565b600060208201905081810360008301526133f3816133b7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613456602f836129fc565b9150613461826133fa565b604082019050919050565b6000602082019050818103600083015261348581613449565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546134b9816130a5565b6134c3818661348c565b945060018216600081146134de57600181146134ef57613522565b60ff19831686528186019350613522565b6134f885613497565b60005b8381101561351a578154818901526001820191506020810190506134fb565b838801955050505b50505092915050565b6000613536826129f1565b613540818561348c565b9350613550818560208601612a0d565b80840191505092915050565b600061356882866134ac565b9150613574828561352b565b915061358082846134ac565b9150819050949350505050565b7f50726573616c65206d696e74696e672064697361626c65640000000000000000600082015250565b60006135c36018836129fc565b91506135ce8261358d565b602082019050919050565b600060208201905081810360008301526135f2816135b6565b9050919050565b7f696e76616c69642068617368206f72207369676e617475726500000000000000600082015250565b600061362f6019836129fc565b915061363a826135f9565b602082019050919050565b6000602082019050818103600083015261365e81613622565b9050919050565b7f4d61782070726573616c65206d696e747320657863656564656420666f72207460008201527f6869732077616c6c657400000000000000000000000000000000000000000000602082015250565b60006136c1602a836129fc565b91506136cc82613665565b604082019050919050565b600060208201905081810360008301526136f0816136b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137536026836129fc565b915061375e826136f7565b604082019050919050565b6000602082019050818103600083015261378281613746565b9050919050565b7f5369676e6572206973206e6f7420646576206e6f72206f776e65720000000000600082015250565b60006137bf601b836129fc565b91506137ca82613789565b602082019050919050565b600060208201905081810360008301526137ee816137b2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061382b6020836129fc565b9150613836826137f5565b602082019050919050565b6000602082019050818103600083015261385a8161381e565b9050919050565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b60006138976010836129fc565b91506138a282613861565b602082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006139036013836129fc565b915061390e826138cd565b602082019050919050565b60006020820190508181036000830152613932816138f6565b9050919050565b600061394482612882565b915061394f83612882565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561398857613987613277565b5b828202905092915050565b7f696e76616c6964206574682076616c7565000000000000000000000000000000600082015250565b60006139c96011836129fc565b91506139d482613993565b602082019050919050565b600060208201905081810360008301526139f8816139bc565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a26826139ff565b613a308185613a0a565b9350613a40818560208601612a0d565b613a4981612a40565b840191505092915050565b6000608082019050613a696000830187612b0b565b613a766020830186612b0b565b613a83604083018561288c565b8181036060830152613a958184613a1b565b905095945050505050565b600081519050613aaf816128f6565b92915050565b600060208284031215613acb57613aca6128c0565b5b6000613ad984828501613aa0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f52343230574c0000000000000000000000000000000000000000000000000000600082015250565b6000613b4760068361348c565b9150613b5282613b11565b600682019050919050565b60008160601b9050919050565b6000613b7582613b5d565b9050919050565b6000613b8782613b6a565b9050919050565b613b9f613b9a82612af9565b613b7c565b82525050565b6000819050919050565b613bc0613bbb82612882565b613ba5565b82525050565b6000613bd182613b3a565b9150613bdd8285613b8e565b601482019150613bed8284613baf565b6020820191508190509392505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000613c33601c8361348c565b9150613c3e82613bfd565b601c82019050919050565b6000819050919050565b6000819050919050565b613c6e613c6982613c49565b613c53565b82525050565b6000613c7f82613c26565b9150613c8b8284613c5d565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613cff6018836129fc565b9150613d0a82613cc9565b602082019050919050565b60006020820190508181036000830152613d2e81613cf2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613d6b601f836129fc565b9150613d7682613d35565b602082019050919050565b60006020820190508181036000830152613d9a81613d5e565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613dfd6022836129fc565b9150613e0882613da1565b604082019050919050565b60006020820190508181036000830152613e2c81613df0565b9050919050565b613e3c81613c49565b82525050565b600060ff82169050919050565b613e5881613e42565b82525050565b6000608082019050613e736000830187613e33565b613e806020830186613e4f565b613e8d6040830185613e33565b613e9a6060830184613e33565b9594505050505056fea264697066735822122029949b5235461c7d86a176647cf92124e0d2d9fe3d16a38569d783abde2c2e3564736f6c634300080d0033
Deployed Bytecode
0x60806040526004361061020e5760003560e01c806370a0823111610118578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c514610748578063f0293fd314610785578063f1d5f517146107c2578063f2fde38b146107eb578063f997cbec146108145761020e565b8063c87b56dd1461069b578063d477f05f146106d8578063d5abeb0114610701578063d63ba1491461072c5761020e565b806395d89b41116100e757806395d89b41146105d7578063a0712d6814610602578063a22cb4651461061e578063a945bf8014610647578063b88d4fde146106725761020e565b806370a082311461052f578063715018a61461056c57806378cf19e9146105835780638da5cb5b146105ac5761020e565b806323b872dd1161019b578063433adb051161016a578063433adb051461045e5780636352211e146104895780636790a9de146104c65780636a5f2a5e146104ef5780636f8b44b0146105065761020e565b806323b872dd146103b65780632ab91bba146103df5780633c8463a11461040a57806342842e0e146104355761020e565b8063081812fc116101e2578063081812fc146102cf578063095ea7b31461030c578063143b237f1461033557806318160ddd1461036057806320c5ab6a1461038b5761020e565b80620e7fa81461021357806301ffc9a71461023e57806305fefda71461027b57806306fdde03146102a4575b600080fd5b34801561021f57600080fd5b5061022861083d565b604051610235919061289b565b60405180910390f35b34801561024a57600080fd5b5061026560048036038101906102609190612922565b610843565b604051610272919061296a565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d91906129b1565b6108d5565b005b3480156102b057600080fd5b506102b9610928565b6040516102c69190612a8a565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612aac565b6109ba565b6040516103039190612b1a565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190612b61565b610a39565b005b34801561034157600080fd5b5061034a610b7d565b604051610357919061296a565b60405180910390f35b34801561036c57600080fd5b50610375610b90565b604051610382919061289b565b60405180910390f35b34801561039757600080fd5b506103a0610ba7565b6040516103ad919061296a565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612ba1565b610bba565b005b3480156103eb57600080fd5b506103f4610edc565b604051610401919061296a565b60405180910390f35b34801561041657600080fd5b5061041f610eef565b60405161042c919061289b565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190612ba1565b610ef5565b005b34801561046a57600080fd5b50610473610f15565b604051610480919061289b565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612aac565b610f1b565b6040516104bd9190612b1a565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190612d29565b610f2d565b005b3480156104fb57600080fd5b50610504610ff0565b005b34801561051257600080fd5b5061052d60048036038101906105289190612aac565b611015565b005b34801561053b57600080fd5b5061055660048036038101906105519190612da1565b6110ec565b604051610563919061289b565b60405180910390f35b34801561057857600080fd5b506105816111a4565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190612b61565b6111b8565b005b3480156105b857600080fd5b506105c16111e7565b6040516105ce9190612b1a565b60405180910390f35b3480156105e357600080fd5b506105ec611211565b6040516105f99190612a8a565b60405180910390f35b61061c60048036038101906106179190612aac565b6112a3565b005b34801561062a57600080fd5b5061064560048036038101906106409190612dfa565b611391565b005b34801561065357600080fd5b5061065c611508565b604051610669919061289b565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190612edb565b61150e565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190612aac565b611581565b6040516106cf9190612a8a565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612da1565b61162c565b005b34801561070d57600080fd5b50610716611678565b604051610723919061289b565b60405180910390f35b61074660048036038101906107419190612f5e565b61167e565b005b34801561075457600080fd5b5061076f600480360381019061076a9190612fcd565b61180e565b60405161077c919061296a565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190612da1565b6118a2565b6040516107b9919061289b565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e49190612aac565b6118ba565b005b3480156107f757600080fd5b50610812600480360381019061080d9190612da1565b611903565b005b34801561082057600080fd5b5061083b6004803603810190610836919061300d565b611986565b005b600a5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ce5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108dd6119c6565b81600a81905550806009819055507f80aade646210706e24b438e253bdb9596f344bc718597854cba4a597f4db8f93828260405161091c92919061304d565b60405180910390a15050565b606060028054610937906130a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610963906130a5565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b5050505050905090565b60006109c582611a95565b6109fb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4482610f1b565b90508073ffffffffffffffffffffffffffffffffffffffff16610a65611af4565b73ffffffffffffffffffffffffffffffffffffffff1614610ac857610a9181610a8c611af4565b61180e565b610ac7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c60019054906101000a900460ff1681565b6000610b9a611afc565b6001546000540303905090565b600c60029054906101000a900460ff1681565b6000610bc582611b05565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c2c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3884611bd1565b91509150610c4e8187610c49611af4565b611bf8565b610c9a57610c6386610c5e611af4565b61180e565b610c99576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d00576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d0d8686866001611c3c565b8015610d1857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de685610dc2888887611c42565b7c020000000000000000000000000000000000000000000000000000000017611c6a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e6c5760006001850190506000600460008381526020019081526020016000205403610e6a576000548114610e69578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed48686866001611c95565b505050505050565b600c60009054906101000a900460ff1681565b600d5481565b610f108383836040518060200160405280600081525061150e565b505050565b600f5481565b6000610f2682611b05565b9050919050565b610f356119c6565b600c60029054906101000a900460ff1615610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613122565b60405180910390fd5b8160109080519060200190610f9b9291906127df565b508060119080519060200190610fb29291906127df565b507fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b966998282604051610fe4929190613142565b60405180910390a15050565b610ff8611c9b565b6001600c60026101000a81548160ff021916908315150217905550565b61101d6119c6565b600b548110611061576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611058906131c5565b60405180910390fd5b611069610b90565b8110156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290613257565b60405180910390fd5b80600b819055507f28a10a2e0b5582da7164754cb994f6214b8af6aa7f7e003305fbc09e7106c513816040516110e1919061289b565b60405180910390a150565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611153576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111ac611c9b565b6111b66000611d19565b565b6111c0611c9b565b80600f60008282546111d291906132a6565b925050819055506111e38282611ddf565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611220906130a5565b80601f016020809104026020016040519081016040528092919081815260200182805461124c906130a5565b80156112995780601f1061126e57610100808354040283529160200191611299565b820191906000526020600020905b81548152906001019060200180831161127c57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff166112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990613348565b60405180910390fd5b600d5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134091906132a6565b1115611381576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611378906133da565b60405180910390fd5b61138e3382600954611f9a565b50565b611399611af4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061140a611af4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b7611af4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fc919061296a565b60405180910390a35050565b60095481565b611519848484610bba565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461157b5761154484848484612134565b61157a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061158c82611a95565b6115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c29061346c565b60405180910390fd5b6000601080546115da906130a5565b9050116115f65760405180602001604052806000815250611625565b601061160183612284565b60116040516020016116159392919061355c565b6040516020818303038152906040525b9050919050565b611634611c9b565b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b600c60019054906101000a900460ff166116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c4906135d9565b60405180910390fd5b6116e06116da3384612352565b826123ab565b73ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690613645565b60405180910390fd5b8183600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117bb91906132a6565b11156117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f3906136d7565b60405180910390fd5b6118093384600a54611f9a565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e6020528060005260406000206000915090505481565b6118c26119c6565b80600d819055507f7872485612198920508f0a96f4e47084f84df76e33b2b1d76ceff0dc83499aa6816040516118f8919061289b565b60405180910390a150565b61190b611c9b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361197a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197190613769565b60405180910390fd5b61198381611d19565b50565b61198e6119c6565b81600c60016101000a81548160ff02191690831515021790555080600c60006101000a81548160ff0219169083151502179055505050565b3373ffffffffffffffffffffffffffffffffffffffff166119e56111e7565b73ffffffffffffffffffffffffffffffffffffffff161480611a5457503373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a906137d5565b60405180910390fd5b565b600081611aa0611afc565b11158015611aaf575060005482105b8015611aed575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611b14611afc565b11611b9a57600054811015611b995760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b97575b60008103611b8d576004600083600190039350838152602001908152602001600020549050611b63565b8092505050611bcc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c598686846123d2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611ca36123db565b73ffffffffffffffffffffffffffffffffffffffff16611cc16111e7565b73ffffffffffffffffffffffffffffffffffffffff1614611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e90613841565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905060008203611e1f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e2c6000848385611c3c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ea383611e946000866000611c42565b611e9d856123e3565b17611c6a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f4457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f09565b5060008203611f7f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f956000848385611c95565b505050565b60008211611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd4906138ad565b60405180910390fd5b600b5482611fe9610b90565b611ff391906132a6565b1115612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b90613919565b60405180910390fd5b3482826120419190613939565b14612081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612078906139df565b60405180910390fd5b6120896111e7565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156120ce573d6000803e3d6000fd5b506120d98383611ddf565b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461212891906132a6565b92505081905550505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261215a611af4565b8786866040518563ffffffff1660e01b815260040161217c9493929190613a54565b6020604051808303816000875af19250505080156121b857506040513d601f19601f820116820180604052508101906121b59190613ab5565b60015b612231573d80600081146121e8576040519150601f19603f3d011682016040523d82523d6000602084013e6121ed565b606091505b506000815103612229576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001612293846123f3565b01905060008167ffffffffffffffff8111156122b2576122b1612bfe565b5b6040519080825280601f01601f1916602001820160405280156122e45781602001600182028036833780820191505090505b509050600082602001820190505b600115612347578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161233b5761233a613ae2565b5b049450600085036122f2575b819350505050919050565b60008282604051602001612367929190613bc6565b6040516020818303038152906040528051906020012060405160200161238d9190613c74565b60405160208183030381529060405280519060200120905092915050565b60008060006123ba8585612546565b915091506123c781612597565b819250505092915050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612451577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161244757612446613ae2565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061248e576d04ee2d6d415b85acef8100000000838161248457612483613ae2565b5b0492506020810190505b662386f26fc1000083106124bd57662386f26fc1000083816124b3576124b2613ae2565b5b0492506010810190505b6305f5e10083106124e6576305f5e10083816124dc576124db613ae2565b5b0492506008810190505b612710831061250b57612710838161250157612500613ae2565b5b0492506004810190505b6064831061252e576064838161252457612523613ae2565b5b0492506002810190505b600a831061253d576001810190505b80915050919050565b60008060418351036125875760008060006020860151925060408601519150606086015160001a905061257b878285856126fd565b94509450505050612590565b60006002915091505b9250929050565b600060048111156125ab576125aa613c9a565b5b8160048111156125be576125bd613c9a565b5b03156126fa57600160048111156125d8576125d7613c9a565b5b8160048111156125eb576125ea613c9a565b5b0361262b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262290613d15565b60405180910390fd5b6002600481111561263f5761263e613c9a565b5b81600481111561265257612651613c9a565b5b03612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268990613d81565b60405180910390fd5b600360048111156126a6576126a5613c9a565b5b8160048111156126b9576126b8613c9a565b5b036126f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f090613e13565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156127385760006003915091506127d6565b60006001878787876040516000815260200160405260405161275d9493929190613e5e565b6020604051602081039080840390855afa15801561277f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127cd576000600192509250506127d6565b80600092509250505b94509492505050565b8280546127eb906130a5565b90600052602060002090601f01602090048101928261280d5760008555612854565b82601f1061282657805160ff1916838001178555612854565b82800160010185558215612854579182015b82811115612853578251825591602001919060010190612838565b5b5090506128619190612865565b5090565b5b8082111561287e576000816000905550600101612866565b5090565b6000819050919050565b61289581612882565b82525050565b60006020820190506128b0600083018461288c565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128ff816128ca565b811461290a57600080fd5b50565b60008135905061291c816128f6565b92915050565b600060208284031215612938576129376128c0565b5b60006129468482850161290d565b91505092915050565b60008115159050919050565b6129648161294f565b82525050565b600060208201905061297f600083018461295b565b92915050565b61298e81612882565b811461299957600080fd5b50565b6000813590506129ab81612985565b92915050565b600080604083850312156129c8576129c76128c0565b5b60006129d68582860161299c565b92505060206129e78582860161299c565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a2b578082015181840152602081019050612a10565b83811115612a3a576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a5c826129f1565b612a6681856129fc565b9350612a76818560208601612a0d565b612a7f81612a40565b840191505092915050565b60006020820190508181036000830152612aa48184612a51565b905092915050565b600060208284031215612ac257612ac16128c0565b5b6000612ad08482850161299c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b0482612ad9565b9050919050565b612b1481612af9565b82525050565b6000602082019050612b2f6000830184612b0b565b92915050565b612b3e81612af9565b8114612b4957600080fd5b50565b600081359050612b5b81612b35565b92915050565b60008060408385031215612b7857612b776128c0565b5b6000612b8685828601612b4c565b9250506020612b978582860161299c565b9150509250929050565b600080600060608486031215612bba57612bb96128c0565b5b6000612bc886828701612b4c565b9350506020612bd986828701612b4c565b9250506040612bea8682870161299c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c3682612a40565b810181811067ffffffffffffffff82111715612c5557612c54612bfe565b5b80604052505050565b6000612c686128b6565b9050612c748282612c2d565b919050565b600067ffffffffffffffff821115612c9457612c93612bfe565b5b612c9d82612a40565b9050602081019050919050565b82818337600083830152505050565b6000612ccc612cc784612c79565b612c5e565b905082815260208101848484011115612ce857612ce7612bf9565b5b612cf3848285612caa565b509392505050565b600082601f830112612d1057612d0f612bf4565b5b8135612d20848260208601612cb9565b91505092915050565b60008060408385031215612d4057612d3f6128c0565b5b600083013567ffffffffffffffff811115612d5e57612d5d6128c5565b5b612d6a85828601612cfb565b925050602083013567ffffffffffffffff811115612d8b57612d8a6128c5565b5b612d9785828601612cfb565b9150509250929050565b600060208284031215612db757612db66128c0565b5b6000612dc584828501612b4c565b91505092915050565b612dd78161294f565b8114612de257600080fd5b50565b600081359050612df481612dce565b92915050565b60008060408385031215612e1157612e106128c0565b5b6000612e1f85828601612b4c565b9250506020612e3085828601612de5565b9150509250929050565b600067ffffffffffffffff821115612e5557612e54612bfe565b5b612e5e82612a40565b9050602081019050919050565b6000612e7e612e7984612e3a565b612c5e565b905082815260208101848484011115612e9a57612e99612bf9565b5b612ea5848285612caa565b509392505050565b600082601f830112612ec257612ec1612bf4565b5b8135612ed2848260208601612e6b565b91505092915050565b60008060008060808587031215612ef557612ef46128c0565b5b6000612f0387828801612b4c565b9450506020612f1487828801612b4c565b9350506040612f258782880161299c565b925050606085013567ffffffffffffffff811115612f4657612f456128c5565b5b612f5287828801612ead565b91505092959194509250565b600080600060608486031215612f7757612f766128c0565b5b6000612f858682870161299c565b9350506020612f968682870161299c565b925050604084013567ffffffffffffffff811115612fb757612fb66128c5565b5b612fc386828701612ead565b9150509250925092565b60008060408385031215612fe457612fe36128c0565b5b6000612ff285828601612b4c565b925050602061300385828601612b4c565b9150509250929050565b60008060408385031215613024576130236128c0565b5b600061303285828601612de5565b925050602061304385828601612de5565b9150509250929050565b6000604082019050613062600083018561288c565b61306f602083018461288c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130bd57607f821691505b6020821081036130d0576130cf613076565b5b50919050565b7f5552497320617265206c6f636b65640000000000000000000000000000000000600082015250565b600061310c600f836129fc565b9150613117826130d6565b602082019050919050565b6000602082019050818103600083015261313b816130ff565b9050919050565b6000604082019050818103600083015261315c8185612a51565b905081810360208301526131708184612a51565b90509392505050565b7f63616e206f6e6c79206465637265617365206d617820737570706c7900000000600082015250565b60006131af601c836129fc565b91506131ba82613179565b602082019050919050565b600060208201905081810360008301526131de816131a2565b9050919050565b7f63757272656e7420737570706c7920697320626967676572207468616e20746860008201527f697320737570706c790000000000000000000000000000000000000000000000602082015250565b60006132416029836129fc565b915061324c826131e5565b604082019050919050565b6000602082019050818103600083015261327081613234565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132b182612882565b91506132bc83612882565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132f1576132f0613277565b5b828201905092915050565b7f5075626c6963206d696e74696e672064697361626c6564000000000000000000600082015250565b60006133326017836129fc565b915061333d826132fc565b602082019050919050565b6000602082019050818103600083015261336181613325565b9050919050565b7f4d6178206d696e747320657863656564656420666f7220746869732077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b60006133c46022836129fc565b91506133cf82613368565b604082019050919050565b600060208201905081810360008301526133f3816133b7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613456602f836129fc565b9150613461826133fa565b604082019050919050565b6000602082019050818103600083015261348581613449565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546134b9816130a5565b6134c3818661348c565b945060018216600081146134de57600181146134ef57613522565b60ff19831686528186019350613522565b6134f885613497565b60005b8381101561351a578154818901526001820191506020810190506134fb565b838801955050505b50505092915050565b6000613536826129f1565b613540818561348c565b9350613550818560208601612a0d565b80840191505092915050565b600061356882866134ac565b9150613574828561352b565b915061358082846134ac565b9150819050949350505050565b7f50726573616c65206d696e74696e672064697361626c65640000000000000000600082015250565b60006135c36018836129fc565b91506135ce8261358d565b602082019050919050565b600060208201905081810360008301526135f2816135b6565b9050919050565b7f696e76616c69642068617368206f72207369676e617475726500000000000000600082015250565b600061362f6019836129fc565b915061363a826135f9565b602082019050919050565b6000602082019050818103600083015261365e81613622565b9050919050565b7f4d61782070726573616c65206d696e747320657863656564656420666f72207460008201527f6869732077616c6c657400000000000000000000000000000000000000000000602082015250565b60006136c1602a836129fc565b91506136cc82613665565b604082019050919050565b600060208201905081810360008301526136f0816136b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137536026836129fc565b915061375e826136f7565b604082019050919050565b6000602082019050818103600083015261378281613746565b9050919050565b7f5369676e6572206973206e6f7420646576206e6f72206f776e65720000000000600082015250565b60006137bf601b836129fc565b91506137ca82613789565b602082019050919050565b600060208201905081810360008301526137ee816137b2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061382b6020836129fc565b9150613836826137f5565b602082019050919050565b6000602082019050818103600083015261385a8161381e565b9050919050565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b60006138976010836129fc565b91506138a282613861565b602082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006139036013836129fc565b915061390e826138cd565b602082019050919050565b60006020820190508181036000830152613932816138f6565b9050919050565b600061394482612882565b915061394f83612882565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561398857613987613277565b5b828202905092915050565b7f696e76616c6964206574682076616c7565000000000000000000000000000000600082015250565b60006139c96011836129fc565b91506139d482613993565b602082019050919050565b600060208201905081810360008301526139f8816139bc565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a26826139ff565b613a308185613a0a565b9350613a40818560208601612a0d565b613a4981612a40565b840191505092915050565b6000608082019050613a696000830187612b0b565b613a766020830186612b0b565b613a83604083018561288c565b8181036060830152613a958184613a1b565b905095945050505050565b600081519050613aaf816128f6565b92915050565b600060208284031215613acb57613aca6128c0565b5b6000613ad984828501613aa0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f52343230574c0000000000000000000000000000000000000000000000000000600082015250565b6000613b4760068361348c565b9150613b5282613b11565b600682019050919050565b60008160601b9050919050565b6000613b7582613b5d565b9050919050565b6000613b8782613b6a565b9050919050565b613b9f613b9a82612af9565b613b7c565b82525050565b6000819050919050565b613bc0613bbb82612882565b613ba5565b82525050565b6000613bd182613b3a565b9150613bdd8285613b8e565b601482019150613bed8284613baf565b6020820191508190509392505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000613c33601c8361348c565b9150613c3e82613bfd565b601c82019050919050565b6000819050919050565b6000819050919050565b613c6e613c6982613c49565b613c53565b82525050565b6000613c7f82613c26565b9150613c8b8284613c5d565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613cff6018836129fc565b9150613d0a82613cc9565b602082019050919050565b60006020820190508181036000830152613d2e81613cf2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613d6b601f836129fc565b9150613d7682613d35565b602082019050919050565b60006020820190508181036000830152613d9a81613d5e565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613dfd6022836129fc565b9150613e0882613da1565b604082019050919050565b60006020820190508181036000830152613e2c81613df0565b9050919050565b613e3c81613c49565b82525050565b600060ff82169050919050565b613e5881613e42565b82525050565b6000608082019050613e736000830187613e33565b613e806020830186613e4f565b613e8d6040830185613e33565b613e9a6060830184613e33565b9594505050505056fea264697066735822122029949b5235461c7d86a176647cf92124e0d2d9fe3d16a38569d783abde2c2e3564736f6c634300080d0033
Deployed Bytecode Sourcemap
79821:4863:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80195:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18513:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83450:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19415:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25898:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25339:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80325:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15166:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80358:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29605:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80289:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80386:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32518:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80470:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20808:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83152:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84495:71;;;;;;;;;;;;;:::i;:::-;;83859:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16350:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54115:103;;;;;;;;;;;;;:::i;:::-;;82367:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53467:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19591:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82009:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26456:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80136:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33301:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82830:314;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84190:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80254:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81542:459;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26921:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80420:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83690:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54373:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84290:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80195:52;;;;:::o;18513:639::-;18598:4;18937:10;18922:25;;:11;:25;;;;:102;;;;19014:10;18999:25;;:11;:25;;;;18922:102;:179;;;;19091:10;19076:25;;:11;:25;;;;18922:179;18902:199;;18513:639;;;:::o;83450:231::-;82640:13;:11;:13::i;:::-;83557:15:::1;83542:12;:30;;;;83597:14;83583:11;:28;;;;83627:46;83641:15;83658:14;83627:46;;;;;;;:::i;:::-;;;;;;;;83450:231:::0;;:::o;19415:100::-;19469:13;19502:5;19495:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19415:100;:::o;25898:218::-;25974:7;25999:16;26007:7;25999;:16::i;:::-;25994:64;;26024:34;;;;;;;;;;;;;;25994:64;26078:15;:24;26094:7;26078:24;;;;;;;;;;;:30;;;;;;;;;;;;26071:37;;25898:218;;;:::o;25339:400::-;25420:13;25436:16;25444:7;25436;:16::i;:::-;25420:32;;25492:5;25469:28;;:19;:17;:19::i;:::-;:28;;;25465:175;;25517:44;25534:5;25541:19;:17;:19::i;:::-;25517:16;:44::i;:::-;25512:128;;25589:35;;;;;;;;;;;;;;25512:128;25465:175;25685:2;25652:15;:24;25668:7;25652:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25723:7;25719:2;25703:28;;25712:5;25703:28;;;;;;;;;;;;25409:330;25339:400;;:::o;80325:26::-;;;;;;;;;;;;;:::o;15166:323::-;15227:7;15455:15;:13;:15::i;:::-;15440:12;;15424:13;;:28;:46;15417:53;;15166:323;:::o;80358:21::-;;;;;;;;;;;;;:::o;29605:2817::-;29739:27;29769;29788:7;29769:18;:27::i;:::-;29739:57;;29854:4;29813:45;;29829:19;29813:45;;;29809:86;;29867:28;;;;;;;;;;;;;;29809:86;29909:27;29938:23;29965:35;29992:7;29965:26;:35::i;:::-;29908:92;;;;30100:68;30125:15;30142:4;30148:19;:17;:19::i;:::-;30100:24;:68::i;:::-;30095:180;;30188:43;30205:4;30211:19;:17;:19::i;:::-;30188:16;:43::i;:::-;30183:92;;30240:35;;;;;;;;;;;;;;30183:92;30095:180;30306:1;30292:16;;:2;:16;;;30288:52;;30317:23;;;;;;;;;;;;;;30288:52;30353:43;30375:4;30381:2;30385:7;30394:1;30353:21;:43::i;:::-;30489:15;30486:160;;;30629:1;30608:19;30601:30;30486:160;31026:18;:24;31045:4;31026:24;;;;;;;;;;;;;;;;31024:26;;;;;;;;;;;;31095:18;:22;31114:2;31095:22;;;;;;;;;;;;;;;;31093:24;;;;;;;;;;;31417:146;31454:2;31503:45;31518:4;31524:2;31528:19;31503:14;:45::i;:::-;11565:8;31475:73;31417:18;:146::i;:::-;31388:17;:26;31406:7;31388:26;;;;;;;;;;;:175;;;;31734:1;11565:8;31683:19;:47;:52;31679:627;;31756:19;31788:1;31778:7;:11;31756:33;;31945:1;31911:17;:30;31929:11;31911:30;;;;;;;;;;;;:35;31907:384;;32049:13;;32034:11;:28;32030:242;;32229:19;32196:17;:30;32214:11;32196:30;;;;;;;;;;;:52;;;;32030:242;31907:384;31737:569;31679:627;32353:7;32349:2;32334:27;;32343:4;32334:27;;;;;;;;;;;;32372:42;32393:4;32399:2;32403:7;32412:1;32372:20;:42::i;:::-;29728:2694;;;29605:2817;;;:::o;80289:29::-;;;;;;;;;;;;;:::o;80386:27::-;;;;:::o;32518:185::-;32656:39;32673:4;32679:2;32683:7;32656:39;;;;;;;;;;;;:16;:39::i;:::-;32518:185;;;:::o;80470:26::-;;;;:::o;20808:152::-;20880:7;20923:27;20942:7;20923:18;:27::i;:::-;20900:52;;20808:152;;;:::o;83152:290::-;82640:13;:11;:13::i;:::-;83267:9:::1;;;;;;;;;;;83266:10;83258:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;83324:12;83307:14;:29;;;;;;;;;;;;:::i;:::-;;83364:12;83347:14;:29;;;;;;;;;;;;:::i;:::-;;83392:42;83407:12;83421;83392:42;;;;;;;:::i;:::-;;;;;;;;83152:290:::0;;:::o;84495:71::-;53353:13;:11;:13::i;:::-;84554:4:::1;84544:9;;:14;;;;;;;;;;;;;;;;;;84495:71::o:0;83859:319::-;82640:13;:11;:13::i;:::-;83953:9:::1;;83938:12;:24;83930:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;84030:13;:11;:13::i;:::-;84014:12;:29;;84006:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;84112:12;84100:9;:24;;;;84140:30;84157:12;84140:30;;;;;;:::i;:::-;;;;;;;;83859:319:::0;:::o;16350:233::-;16422:7;16463:1;16446:19;;:5;:19;;;16442:60;;16474:28;;;;;;;;;;;;;;16442:60;10509:13;16520:18;:25;16539:5;16520:25;;;;;;;;;;;;;;;;:55;16513:62;;16350:233;;;:::o;54115:103::-;53353:13;:11;:13::i;:::-;54180:30:::1;54207:1;54180:18;:30::i;:::-;54115:103::o:0;82367:144::-;53353:13;:11;:13::i;:::-;82465:8:::1;82447:14;;:26;;;;;;;:::i;:::-;;;;;;;;82484:19;82490:2;82494:8;82484:5;:19::i;:::-;82367:144:::0;;:::o;53467:87::-;53513:7;53540:6;;;;;;;;;;;53533:13;;53467:87;:::o;19591:104::-;19647:13;19680:7;19673:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19591:104;:::o;82009:290::-;82074:17;;;;;;;;;;;82066:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;82184:11;;82172:8;82148:11;:23;82160:10;82148:23;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:47;;82139:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;82245:46;82257:10;82269:8;82279:11;;82245;:46::i;:::-;82009:290;:::o;26456:308::-;26567:19;:17;:19::i;:::-;26555:31;;:8;:31;;;26551:61;;26595:17;;;;;;;;;;;;;;26551:61;26677:8;26625:18;:39;26644:19;:17;:19::i;:::-;26625:39;;;;;;;;;;;;;;;:49;26665:8;26625:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26737:8;26701:55;;26716:19;:17;:19::i;:::-;26701:55;;;26747:8;26701:55;;;;;;:::i;:::-;;;;;;;;26456:308;;:::o;80136:52::-;;;;:::o;33301:399::-;33468:31;33481:4;33487:2;33491:7;33468:12;:31::i;:::-;33532:1;33514:2;:14;;;:19;33510:183;;33553:56;33584:4;33590:2;33594:7;33603:5;33553:30;:56::i;:::-;33548:145;;33637:40;;;;;;;;;;;;;;33548:145;33510:183;33301:399;;;;:::o;82830:314::-;82900:13;82934:16;82942:7;82934;:16::i;:::-;82926:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;83051:1;83026:14;83020:28;;;;;:::i;:::-;;;:32;:116;;;;;;;;;;;;;;;;;83079:14;83095:18;:7;:16;:18::i;:::-;83115:14;83062:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;83020:116;83013:123;;82830:314;;;:::o;84190:81::-;53353:13;:11;:13::i;:::-;84257:6:::1;84251:3;;:12;;;;;;;;;;;;;;;;;;84190:81:::0;:::o;80254:28::-;;;;:::o;81542:459::-;81653:14;;;;;;;;;;;81645:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;81732:62;81747:35;81761:10;81773:8;81747:12;:35::i;:::-;81784:9;81732:13;:62::i;:::-;81715:79;;:13;;;;;;;;;;;:79;;;81707:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;81880:8;81868;81844:11;:23;81856:10;81844:23;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:44;;81835:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;81946:47;81958:10;81970:8;81980:12;;81946:11;:47::i;:::-;81542:459;;;:::o;26921:164::-;27018:4;27042:18;:25;27061:5;27042:25;;;;;;;;;;;;;;;:35;27068:8;27042:35;;;;;;;;;;;;;;;;;;;;;;;;;27035:42;;26921:164;;;;:::o;80420:43::-;;;;;;;;;;;;;;;;;:::o;83690:161::-;82640:13;:11;:13::i;:::-;83779:14:::1;83765:11;:28;;;;83809:34;83828:14;83809:34;;;;;;:::i;:::-;;;;;;;;83690:161:::0;:::o;54373:201::-;53353:13;:11;:13::i;:::-;54482:1:::1;54462:22;;:8;:22;;::::0;54454:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;54538:28;54557:8;54538:18;:28::i;:::-;54373:201:::0;:::o;84290:197::-;82640:13;:11;:13::i;:::-;84407:15:::1;84390:14;;:32;;;;;;;;;;;;;;;;;;84453:18;84433:17;;:38;;;;;;;;;;;;;;;;;;84290:197:::0;;:::o;82681:137::-;82748:10;82739:19;;:7;:5;:7::i;:::-;:19;;;82738:40;;;;82767:10;82762:15;;:3;;;;;;;;;;;:15;;;82738:40;82729:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;82681:137::o;27343:282::-;27408:4;27464:7;27445:15;:13;:15::i;:::-;:26;;:66;;;;;27498:13;;27488:7;:23;27445:66;:153;;;;;27597:1;11285:8;27549:17;:26;27567:7;27549:26;;;;;;;;;;;;:44;:49;27445:153;27425:173;;27343:282;;;:::o;49109:105::-;49169:7;49196:10;49189:17;;49109:105;:::o;84574:101::-;84639:7;84666:1;84659:8;;84574:101;:::o;21963:1275::-;22030:7;22050:12;22065:7;22050:22;;22133:4;22114:15;:13;:15::i;:::-;:23;22110:1061;;22167:13;;22160:4;:20;22156:1015;;;22205:14;22222:17;:23;22240:4;22222:23;;;;;;;;;;;;22205:40;;22339:1;11285:8;22311:6;:24;:29;22307:845;;22976:113;22993:1;22983:6;:11;22976:113;;23036:17;:25;23054:6;;;;;;;23036:25;;;;;;;;;;;;23027:34;;22976:113;;;23122:6;23115:13;;;;;;22307:845;22182:989;22156:1015;22110:1061;23199:31;;;;;;;;;;;;;;21963:1275;;;;:::o;28506:479::-;28608:27;28637:23;28678:38;28719:15;:24;28735:7;28719:24;;;;;;;;;;;28678:65;;28890:18;28867:41;;28947:19;28941:26;28922:45;;28852:126;28506:479;;;:::o;27734:659::-;27883:11;28048:16;28041:5;28037:28;28028:37;;28208:16;28197:9;28193:32;28180:45;;28358:15;28347:9;28344:30;28336:5;28325:9;28322:20;28319:56;28309:66;;27734:659;;;;;:::o;34362:159::-;;;;;:::o;48418:311::-;48553:7;48573:16;11689:3;48599:19;:41;;48573:68;;11689:3;48667:31;48678:4;48684:2;48688:9;48667:10;:31::i;:::-;48659:40;;:62;;48652:69;;;48418:311;;;;;:::o;23786:450::-;23866:14;24034:16;24027:5;24023:28;24014:37;;24211:5;24197:11;24172:23;24168:41;24165:52;24158:5;24155:63;24145:73;;23786:450;;;;:::o;35186:158::-;;;;;:::o;53632:132::-;53707:12;:10;:12::i;:::-;53696:23;;:7;:5;:7::i;:::-;:23;;;53688:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53632:132::o;54734:191::-;54808:16;54827:6;;;;;;;;;;;54808:25;;54853:8;54844:6;;:17;;;;;;;;;;;;;;;;;;54908:8;54877:40;;54898:8;54877:40;;;;;;;;;;;;54797:128;54734:191;:::o;36962:2454::-;37035:20;37058:13;;37035:36;;37098:1;37086:8;:13;37082:44;;37108:18;;;;;;;;;;;;;;37082:44;37139:61;37169:1;37173:2;37177:12;37191:8;37139:21;:61::i;:::-;37683:1;10647:2;37653:1;:26;;37652:32;37640:8;:45;37614:18;:22;37633:2;37614:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37962:139;37999:2;38053:33;38076:1;38080:2;38084:1;38053:14;:33::i;:::-;38020:30;38041:8;38020:20;:30::i;:::-;:66;37962:18;:139::i;:::-;37928:17;:31;37946:12;37928:31;;;;;;;;;;;:173;;;;38118:16;38149:11;38178:8;38163:12;:23;38149:37;;38433:16;38429:2;38425:25;38413:37;;38805:12;38765:8;38724:1;38662:25;38603:1;38542;38515:335;38930:1;38916:12;38912:20;38870:346;38971:3;38962:7;38959:16;38870:346;;39189:7;39179:8;39176:1;39149:25;39146:1;39143;39138:59;39024:1;39015:7;39011:15;39000:26;;38870:346;;;38874:77;39261:1;39249:8;:13;39245:45;;39271:19;;;;;;;;;;;;;;39245:45;39323:3;39307:13;:19;;;;37388:1950;;39348:60;39377:1;39381:2;39385:12;39399:8;39348:20;:60::i;:::-;37024:2392;36962:2454;;:::o;80877:410::-;80976:1;80965:8;:12;80957:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;81053:9;;81041:8;81027:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;81019:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;81123:9;81111:8;81105:5;:14;;;;:::i;:::-;:27;81097:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;81175:7;:5;:7::i;:::-;81167:25;;:36;81193:9;81167:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81216:19;81222:2;81226:8;81216:5;:19::i;:::-;81271:8;81246:11;:23;81258:10;81246:23;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;80877:410;;;:::o;35784:716::-;35947:4;35993:2;35968:45;;;36014:19;:17;:19::i;:::-;36035:4;36041:7;36050:5;35968:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35964:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36268:1;36251:6;:13;:18;36247:235;;36297:40;;;;;;;;;;;;;;36247:235;36440:6;36434:13;36425:6;36421:2;36417:15;36410:38;35964:529;36137:54;;;36127:64;;;:6;:64;;;;36120:71;;;35784:716;;;;;;:::o;68251:::-;68307:13;68358:14;68395:1;68375:17;68386:5;68375:10;:17::i;:::-;:21;68358:38;;68411:20;68445:6;68434:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68411:41;;68467:11;68596:6;68592:2;68588:15;68580:6;68576:28;68569:35;;68633:288;68640:4;68633:288;;;68665:5;;;;;;;;68807:8;68802:2;68795:5;68791:14;68786:30;68781:3;68773:44;68863:2;68854:11;;;;;;:::i;:::-;;;;;68897:1;68888:5;:10;68633:288;68884:21;68633:288;68942:6;68935:13;;;;;68251:716;;;:::o;81295:239::-;81370:7;81497:6;81505:8;81471:43;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81461:54;;;;;;81407:109;;;;;;;;:::i;:::-;;;;;;;;;;;;;81397:120;;;;;;81390:127;;81295:239;;;;:::o;73907:231::-;73985:7;74006:17;74025:18;74047:27;74058:4;74064:9;74047:10;:27::i;:::-;74005:69;;;;74085:18;74097:5;74085:11;:18::i;:::-;74121:9;74114:16;;;;73907:231;;;;:::o;48119:147::-;48256:6;48119:147;;;;;:::o;52012:98::-;52065:7;52092:10;52085:17;;52012:98;:::o;24338:324::-;24408:14;24641:1;24631:8;24628:15;24602:24;24598:46;24588:56;;24338:324;;;:::o;65111:922::-;65164:7;65184:14;65201:1;65184:18;;65251:6;65242:5;:15;65238:102;;65287:6;65278:15;;;;;;:::i;:::-;;;;;65322:2;65312:12;;;;65238:102;65367:6;65358:5;:15;65354:102;;65403:6;65394:15;;;;;;:::i;:::-;;;;;65438:2;65428:12;;;;65354:102;65483:6;65474:5;:15;65470:102;;65519:6;65510:15;;;;;;:::i;:::-;;;;;65554:2;65544:12;;;;65470:102;65599:5;65590;:14;65586:99;;65634:5;65625:14;;;;;;:::i;:::-;;;;;65668:1;65658:11;;;;65586:99;65712:5;65703;:14;65699:99;;65747:5;65738:14;;;;;;:::i;:::-;;;;;65781:1;65771:11;;;;65699:99;65825:5;65816;:14;65812:99;;65860:5;65851:14;;;;;;:::i;:::-;;;;;65894:1;65884:11;;;;65812:99;65938:5;65929;:14;65925:66;;65974:1;65964:11;;;;65925:66;66019:6;66012:13;;;65111:922;;;:::o;72358:747::-;72439:7;72448:12;72497:2;72477:9;:16;:22;72473:625;;72516:9;72540;72564:7;72821:4;72810:9;72806:20;72800:27;72795:32;;72871:4;72860:9;72856:20;72850:27;72845:32;;72929:4;72918:9;72914:20;72908:27;72905:1;72900:36;72895:41;;72972:25;72983:4;72989:1;72992;72995;72972:10;:25::i;:::-;72965:32;;;;;;;;;72473:625;73046:1;73050:35;73030:56;;;;72358:747;;;;;;:::o;70751:521::-;70829:20;70820:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;70816:449;70866:7;70816:449;70927:29;70918:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;70914:351;;70973:34;;;;;;;;;;:::i;:::-;;;;;;;;70914:351;71038:35;71029:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;71025:240;;71090:41;;;;;;;;;;:::i;:::-;;;;;;;;71025:240;71162:30;71153:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;71149:116;;71209:44;;;;;;;;;;:::i;:::-;;;;;;;;71149:116;70751:521;;:::o;75359:1520::-;75490:7;75499:12;76424:66;76419:1;76411:10;;:79;76407:163;;;76523:1;76527:30;76507:51;;;;;;76407:163;76667:14;76684:24;76694:4;76700:1;76703;76706;76684:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76667:41;;76741:1;76723:20;;:6;:20;;;76719:103;;76776:1;76780:29;76760:50;;;;;;;76719:103;76842:6;76850:20;76834:37;;;;;75359:1520;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:149;805:7;845:66;838:5;834:78;823:89;;769:149;;;:::o;924:120::-;996:23;1013:5;996:23;:::i;:::-;989:5;986:34;976:62;;1034:1;1031;1024:12;976:62;924:120;:::o;1050:137::-;1095:5;1133:6;1120:20;1111:29;;1149:32;1175:5;1149:32;:::i;:::-;1050:137;;;;:::o;1193:327::-;1251:6;1300:2;1288:9;1279:7;1275:23;1271:32;1268:119;;;1306:79;;:::i;:::-;1268:119;1426:1;1451:52;1495:7;1486:6;1475:9;1471:22;1451:52;:::i;:::-;1441:62;;1397:116;1193:327;;;;:::o;1526:90::-;1560:7;1603:5;1596:13;1589:21;1578:32;;1526:90;;;:::o;1622:109::-;1703:21;1718:5;1703:21;:::i;:::-;1698:3;1691:34;1622:109;;:::o;1737:210::-;1824:4;1862:2;1851:9;1847:18;1839:26;;1875:65;1937:1;1926:9;1922:17;1913:6;1875:65;:::i;:::-;1737:210;;;;:::o;1953:122::-;2026:24;2044:5;2026:24;:::i;:::-;2019:5;2016:35;2006:63;;2065:1;2062;2055:12;2006:63;1953:122;:::o;2081:139::-;2127:5;2165:6;2152:20;2143:29;;2181:33;2208:5;2181:33;:::i;:::-;2081:139;;;;:::o;2226:474::-;2294:6;2302;2351:2;2339:9;2330:7;2326:23;2322:32;2319:119;;;2357:79;;:::i;:::-;2319:119;2477:1;2502:53;2547:7;2538:6;2527:9;2523:22;2502:53;:::i;:::-;2492:63;;2448:117;2604:2;2630:53;2675:7;2666:6;2655:9;2651:22;2630:53;:::i;:::-;2620:63;;2575:118;2226:474;;;;;:::o;2706:99::-;2758:6;2792:5;2786:12;2776:22;;2706:99;;;:::o;2811:169::-;2895:11;2929:6;2924:3;2917:19;2969:4;2964:3;2960:14;2945:29;;2811:169;;;;:::o;2986:307::-;3054:1;3064:113;3078:6;3075:1;3072:13;3064:113;;;3163:1;3158:3;3154:11;3148:18;3144:1;3139:3;3135:11;3128:39;3100:2;3097:1;3093:10;3088:15;;3064:113;;;3195:6;3192:1;3189:13;3186:101;;;3275:1;3266:6;3261:3;3257:16;3250:27;3186:101;3035:258;2986:307;;;:::o;3299:102::-;3340:6;3391:2;3387:7;3382:2;3375:5;3371:14;3367:28;3357:38;;3299:102;;;:::o;3407:364::-;3495:3;3523:39;3556:5;3523:39;:::i;:::-;3578:71;3642:6;3637:3;3578:71;:::i;:::-;3571:78;;3658:52;3703:6;3698:3;3691:4;3684:5;3680:16;3658:52;:::i;:::-;3735:29;3757:6;3735:29;:::i;:::-;3730:3;3726:39;3719:46;;3499:272;3407:364;;;;:::o;3777:313::-;3890:4;3928:2;3917:9;3913:18;3905:26;;3977:9;3971:4;3967:20;3963:1;3952:9;3948:17;3941:47;4005:78;4078:4;4069:6;4005:78;:::i;:::-;3997:86;;3777:313;;;;:::o;4096:329::-;4155:6;4204:2;4192:9;4183:7;4179:23;4175:32;4172:119;;;4210:79;;:::i;:::-;4172:119;4330:1;4355:53;4400:7;4391:6;4380:9;4376:22;4355:53;:::i;:::-;4345:63;;4301:117;4096:329;;;;:::o;4431:126::-;4468:7;4508:42;4501:5;4497:54;4486:65;;4431:126;;;:::o;4563:96::-;4600:7;4629:24;4647:5;4629:24;:::i;:::-;4618:35;;4563:96;;;:::o;4665:118::-;4752:24;4770:5;4752:24;:::i;:::-;4747:3;4740:37;4665:118;;:::o;4789:222::-;4882:4;4920:2;4909:9;4905:18;4897:26;;4933:71;5001:1;4990:9;4986:17;4977:6;4933:71;:::i;:::-;4789:222;;;;:::o;5017:122::-;5090:24;5108:5;5090:24;:::i;:::-;5083:5;5080:35;5070:63;;5129:1;5126;5119:12;5070:63;5017:122;:::o;5145:139::-;5191:5;5229:6;5216:20;5207:29;;5245:33;5272:5;5245:33;:::i;:::-;5145:139;;;;:::o;5290:474::-;5358:6;5366;5415:2;5403:9;5394:7;5390:23;5386:32;5383:119;;;5421:79;;:::i;:::-;5383:119;5541:1;5566:53;5611:7;5602:6;5591:9;5587:22;5566:53;:::i;:::-;5556:63;;5512:117;5668:2;5694:53;5739:7;5730:6;5719:9;5715:22;5694:53;:::i;:::-;5684:63;;5639:118;5290:474;;;;;:::o;5770:619::-;5847:6;5855;5863;5912:2;5900:9;5891:7;5887:23;5883:32;5880:119;;;5918:79;;:::i;:::-;5880:119;6038:1;6063:53;6108:7;6099:6;6088:9;6084:22;6063:53;:::i;:::-;6053:63;;6009:117;6165:2;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6136:118;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5770:619;;;;;:::o;6395:117::-;6504:1;6501;6494:12;6518:117;6627:1;6624;6617:12;6641:180;6689:77;6686:1;6679:88;6786:4;6783:1;6776:15;6810:4;6807:1;6800:15;6827:281;6910:27;6932:4;6910:27;:::i;:::-;6902:6;6898:40;7040:6;7028:10;7025:22;7004:18;6992:10;6989:34;6986:62;6983:88;;;7051:18;;:::i;:::-;6983:88;7091:10;7087:2;7080:22;6870:238;6827:281;;:::o;7114:129::-;7148:6;7175:20;;:::i;:::-;7165:30;;7204:33;7232:4;7224:6;7204:33;:::i;:::-;7114:129;;;:::o;7249:308::-;7311:4;7401:18;7393:6;7390:30;7387:56;;;7423:18;;:::i;:::-;7387:56;7461:29;7483:6;7461:29;:::i;:::-;7453:37;;7545:4;7539;7535:15;7527:23;;7249:308;;;:::o;7563:154::-;7647:6;7642:3;7637;7624:30;7709:1;7700:6;7695:3;7691:16;7684:27;7563:154;;;:::o;7723:412::-;7801:5;7826:66;7842:49;7884:6;7842:49;:::i;:::-;7826:66;:::i;:::-;7817:75;;7915:6;7908:5;7901:21;7953:4;7946:5;7942:16;7991:3;7982:6;7977:3;7973:16;7970:25;7967:112;;;7998:79;;:::i;:::-;7967:112;8088:41;8122:6;8117:3;8112;8088:41;:::i;:::-;7807:328;7723:412;;;;;:::o;8155:340::-;8211:5;8260:3;8253:4;8245:6;8241:17;8237:27;8227:122;;8268:79;;:::i;:::-;8227:122;8385:6;8372:20;8410:79;8485:3;8477:6;8470:4;8462:6;8458:17;8410:79;:::i;:::-;8401:88;;8217:278;8155:340;;;;:::o;8501:834::-;8589:6;8597;8646:2;8634:9;8625:7;8621:23;8617:32;8614:119;;;8652:79;;:::i;:::-;8614:119;8800:1;8789:9;8785:17;8772:31;8830:18;8822:6;8819:30;8816:117;;;8852:79;;:::i;:::-;8816:117;8957:63;9012:7;9003:6;8992:9;8988:22;8957:63;:::i;:::-;8947:73;;8743:287;9097:2;9086:9;9082:18;9069:32;9128:18;9120:6;9117:30;9114:117;;;9150:79;;:::i;:::-;9114:117;9255:63;9310:7;9301:6;9290:9;9286:22;9255:63;:::i;:::-;9245:73;;9040:288;8501:834;;;;;:::o;9341:329::-;9400:6;9449:2;9437:9;9428:7;9424:23;9420:32;9417:119;;;9455:79;;:::i;:::-;9417:119;9575:1;9600:53;9645:7;9636:6;9625:9;9621:22;9600:53;:::i;:::-;9590:63;;9546:117;9341:329;;;;:::o;9676:116::-;9746:21;9761:5;9746:21;:::i;:::-;9739:5;9736:32;9726:60;;9782:1;9779;9772:12;9726:60;9676:116;:::o;9798:133::-;9841:5;9879:6;9866:20;9857:29;;9895:30;9919:5;9895:30;:::i;:::-;9798:133;;;;:::o;9937:468::-;10002:6;10010;10059:2;10047:9;10038:7;10034:23;10030:32;10027:119;;;10065:79;;:::i;:::-;10027:119;10185:1;10210:53;10255:7;10246:6;10235:9;10231:22;10210:53;:::i;:::-;10200:63;;10156:117;10312:2;10338:50;10380:7;10371:6;10360:9;10356:22;10338:50;:::i;:::-;10328:60;;10283:115;9937:468;;;;;:::o;10411:307::-;10472:4;10562:18;10554:6;10551:30;10548:56;;;10584:18;;:::i;:::-;10548:56;10622:29;10644:6;10622:29;:::i;:::-;10614:37;;10706:4;10700;10696:15;10688:23;;10411:307;;;:::o;10724:410::-;10801:5;10826:65;10842:48;10883:6;10842:48;:::i;:::-;10826:65;:::i;:::-;10817:74;;10914:6;10907:5;10900:21;10952:4;10945:5;10941:16;10990:3;10981:6;10976:3;10972:16;10969:25;10966:112;;;10997:79;;:::i;:::-;10966:112;11087:41;11121:6;11116:3;11111;11087:41;:::i;:::-;10807:327;10724:410;;;;;:::o;11153:338::-;11208:5;11257:3;11250:4;11242:6;11238:17;11234:27;11224:122;;11265:79;;:::i;:::-;11224:122;11382:6;11369:20;11407:78;11481:3;11473:6;11466:4;11458:6;11454:17;11407:78;:::i;:::-;11398:87;;11214:277;11153:338;;;;:::o;11497:943::-;11592:6;11600;11608;11616;11665:3;11653:9;11644:7;11640:23;11636:33;11633:120;;;11672:79;;:::i;:::-;11633:120;11792:1;11817:53;11862:7;11853:6;11842:9;11838:22;11817:53;:::i;:::-;11807:63;;11763:117;11919:2;11945:53;11990:7;11981:6;11970:9;11966:22;11945:53;:::i;:::-;11935:63;;11890:118;12047:2;12073:53;12118:7;12109:6;12098:9;12094:22;12073:53;:::i;:::-;12063:63;;12018:118;12203:2;12192:9;12188:18;12175:32;12234:18;12226:6;12223:30;12220:117;;;12256:79;;:::i;:::-;12220:117;12361:62;12415:7;12406:6;12395:9;12391:22;12361:62;:::i;:::-;12351:72;;12146:287;11497:943;;;;;;;:::o;12446:797::-;12532:6;12540;12548;12597:2;12585:9;12576:7;12572:23;12568:32;12565:119;;;12603:79;;:::i;:::-;12565:119;12723:1;12748:53;12793:7;12784:6;12773:9;12769:22;12748:53;:::i;:::-;12738:63;;12694:117;12850:2;12876:53;12921:7;12912:6;12901:9;12897:22;12876:53;:::i;:::-;12866:63;;12821:118;13006:2;12995:9;12991:18;12978:32;13037:18;13029:6;13026:30;13023:117;;;13059:79;;:::i;:::-;13023:117;13164:62;13218:7;13209:6;13198:9;13194:22;13164:62;:::i;:::-;13154:72;;12949:287;12446:797;;;;;:::o;13249:474::-;13317:6;13325;13374:2;13362:9;13353:7;13349:23;13345:32;13342:119;;;13380:79;;:::i;:::-;13342:119;13500:1;13525:53;13570:7;13561:6;13550:9;13546:22;13525:53;:::i;:::-;13515:63;;13471:117;13627:2;13653:53;13698:7;13689:6;13678:9;13674:22;13653:53;:::i;:::-;13643:63;;13598:118;13249:474;;;;;:::o;13729:462::-;13791:6;13799;13848:2;13836:9;13827:7;13823:23;13819:32;13816:119;;;13854:79;;:::i;:::-;13816:119;13974:1;13999:50;14041:7;14032:6;14021:9;14017:22;13999:50;:::i;:::-;13989:60;;13945:114;14098:2;14124:50;14166:7;14157:6;14146:9;14142:22;14124:50;:::i;:::-;14114:60;;14069:115;13729:462;;;;;:::o;14197:332::-;14318:4;14356:2;14345:9;14341:18;14333:26;;14369:71;14437:1;14426:9;14422:17;14413:6;14369:71;:::i;:::-;14450:72;14518:2;14507:9;14503:18;14494:6;14450:72;:::i;:::-;14197:332;;;;;:::o;14535:180::-;14583:77;14580:1;14573:88;14680:4;14677:1;14670:15;14704:4;14701:1;14694:15;14721:320;14765:6;14802:1;14796:4;14792:12;14782:22;;14849:1;14843:4;14839:12;14870:18;14860:81;;14926:4;14918:6;14914:17;14904:27;;14860:81;14988:2;14980:6;14977:14;14957:18;14954:38;14951:84;;15007:18;;:::i;:::-;14951:84;14772:269;14721:320;;;:::o;15047:165::-;15187:17;15183:1;15175:6;15171:14;15164:41;15047:165;:::o;15218:366::-;15360:3;15381:67;15445:2;15440:3;15381:67;:::i;:::-;15374:74;;15457:93;15546:3;15457:93;:::i;:::-;15575:2;15570:3;15566:12;15559:19;;15218:366;;;:::o;15590:419::-;15756:4;15794:2;15783:9;15779:18;15771:26;;15843:9;15837:4;15833:20;15829:1;15818:9;15814:17;15807:47;15871:131;15997:4;15871:131;:::i;:::-;15863:139;;15590:419;;;:::o;16015:514::-;16176:4;16214:2;16203:9;16199:18;16191:26;;16263:9;16257:4;16253:20;16249:1;16238:9;16234:17;16227:47;16291:78;16364:4;16355:6;16291:78;:::i;:::-;16283:86;;16416:9;16410:4;16406:20;16401:2;16390:9;16386:18;16379:48;16444:78;16517:4;16508:6;16444:78;:::i;:::-;16436:86;;16015:514;;;;;:::o;16535:178::-;16675:30;16671:1;16663:6;16659:14;16652:54;16535:178;:::o;16719:366::-;16861:3;16882:67;16946:2;16941:3;16882:67;:::i;:::-;16875:74;;16958:93;17047:3;16958:93;:::i;:::-;17076:2;17071:3;17067:12;17060:19;;16719:366;;;:::o;17091:419::-;17257:4;17295:2;17284:9;17280:18;17272:26;;17344:9;17338:4;17334:20;17330:1;17319:9;17315:17;17308:47;17372:131;17498:4;17372:131;:::i;:::-;17364:139;;17091:419;;;:::o;17516:228::-;17656:34;17652:1;17644:6;17640:14;17633:58;17725:11;17720:2;17712:6;17708:15;17701:36;17516:228;:::o;17750:366::-;17892:3;17913:67;17977:2;17972:3;17913:67;:::i;:::-;17906:74;;17989:93;18078:3;17989:93;:::i;:::-;18107:2;18102:3;18098:12;18091:19;;17750:366;;;:::o;18122:419::-;18288:4;18326:2;18315:9;18311:18;18303:26;;18375:9;18369:4;18365:20;18361:1;18350:9;18346:17;18339:47;18403:131;18529:4;18403:131;:::i;:::-;18395:139;;18122:419;;;:::o;18547:180::-;18595:77;18592:1;18585:88;18692:4;18689:1;18682:15;18716:4;18713:1;18706:15;18733:305;18773:3;18792:20;18810:1;18792:20;:::i;:::-;18787:25;;18826:20;18844:1;18826:20;:::i;:::-;18821:25;;18980:1;18912:66;18908:74;18905:1;18902:81;18899:107;;;18986:18;;:::i;:::-;18899:107;19030:1;19027;19023:9;19016:16;;18733:305;;;;:::o;19044:173::-;19184:25;19180:1;19172:6;19168:14;19161:49;19044:173;:::o;19223:366::-;19365:3;19386:67;19450:2;19445:3;19386:67;:::i;:::-;19379:74;;19462:93;19551:3;19462:93;:::i;:::-;19580:2;19575:3;19571:12;19564:19;;19223:366;;;:::o;19595:419::-;19761:4;19799:2;19788:9;19784:18;19776:26;;19848:9;19842:4;19838:20;19834:1;19823:9;19819:17;19812:47;19876:131;20002:4;19876:131;:::i;:::-;19868:139;;19595:419;;;:::o;20020:221::-;20160:34;20156:1;20148:6;20144:14;20137:58;20229:4;20224:2;20216:6;20212:15;20205:29;20020:221;:::o;20247:366::-;20389:3;20410:67;20474:2;20469:3;20410:67;:::i;:::-;20403:74;;20486:93;20575:3;20486:93;:::i;:::-;20604:2;20599:3;20595:12;20588:19;;20247:366;;;:::o;20619:419::-;20785:4;20823:2;20812:9;20808:18;20800:26;;20872:9;20866:4;20862:20;20858:1;20847:9;20843:17;20836:47;20900:131;21026:4;20900:131;:::i;:::-;20892:139;;20619:419;;;:::o;21044:234::-;21184:34;21180:1;21172:6;21168:14;21161:58;21253:17;21248:2;21240:6;21236:15;21229:42;21044:234;:::o;21284:366::-;21426:3;21447:67;21511:2;21506:3;21447:67;:::i;:::-;21440:74;;21523:93;21612:3;21523:93;:::i;:::-;21641:2;21636:3;21632:12;21625:19;;21284:366;;;:::o;21656:419::-;21822:4;21860:2;21849:9;21845:18;21837:26;;21909:9;21903:4;21899:20;21895:1;21884:9;21880:17;21873:47;21937:131;22063:4;21937:131;:::i;:::-;21929:139;;21656:419;;;:::o;22081:148::-;22183:11;22220:3;22205:18;;22081:148;;;;:::o;22235:141::-;22284:4;22307:3;22299:11;;22330:3;22327:1;22320:14;22364:4;22361:1;22351:18;22343:26;;22235:141;;;:::o;22406:845::-;22509:3;22546:5;22540:12;22575:36;22601:9;22575:36;:::i;:::-;22627:89;22709:6;22704:3;22627:89;:::i;:::-;22620:96;;22747:1;22736:9;22732:17;22763:1;22758:137;;;;22909:1;22904:341;;;;22725:520;;22758:137;22842:4;22838:9;22827;22823:25;22818:3;22811:38;22878:6;22873:3;22869:16;22862:23;;22758:137;;22904:341;22971:38;23003:5;22971:38;:::i;:::-;23031:1;23045:154;23059:6;23056:1;23053:13;23045:154;;;23133:7;23127:14;23123:1;23118:3;23114:11;23107:35;23183:1;23174:7;23170:15;23159:26;;23081:4;23078:1;23074:12;23069:17;;23045:154;;;23228:6;23223:3;23219:16;23212:23;;22911:334;;22725:520;;22513:738;;22406:845;;;;:::o;23257:377::-;23363:3;23391:39;23424:5;23391:39;:::i;:::-;23446:89;23528:6;23523:3;23446:89;:::i;:::-;23439:96;;23544:52;23589:6;23584:3;23577:4;23570:5;23566:16;23544:52;:::i;:::-;23621:6;23616:3;23612:16;23605:23;;23367:267;23257:377;;;;:::o;23640:583::-;23862:3;23884:92;23972:3;23963:6;23884:92;:::i;:::-;23877:99;;23993:95;24084:3;24075:6;23993:95;:::i;:::-;23986:102;;24105:92;24193:3;24184:6;24105:92;:::i;:::-;24098:99;;24214:3;24207:10;;23640:583;;;;;;:::o;24229:174::-;24369:26;24365:1;24357:6;24353:14;24346:50;24229:174;:::o;24409:366::-;24551:3;24572:67;24636:2;24631:3;24572:67;:::i;:::-;24565:74;;24648:93;24737:3;24648:93;:::i;:::-;24766:2;24761:3;24757:12;24750:19;;24409:366;;;:::o;24781:419::-;24947:4;24985:2;24974:9;24970:18;24962:26;;25034:9;25028:4;25024:20;25020:1;25009:9;25005:17;24998:47;25062:131;25188:4;25062:131;:::i;:::-;25054:139;;24781:419;;;:::o;25206:175::-;25346:27;25342:1;25334:6;25330:14;25323:51;25206:175;:::o;25387:366::-;25529:3;25550:67;25614:2;25609:3;25550:67;:::i;:::-;25543:74;;25626:93;25715:3;25626:93;:::i;:::-;25744:2;25739:3;25735:12;25728:19;;25387:366;;;:::o;25759:419::-;25925:4;25963:2;25952:9;25948:18;25940:26;;26012:9;26006:4;26002:20;25998:1;25987:9;25983:17;25976:47;26040:131;26166:4;26040:131;:::i;:::-;26032:139;;25759:419;;;:::o;26184:229::-;26324:34;26320:1;26312:6;26308:14;26301:58;26393:12;26388:2;26380:6;26376:15;26369:37;26184:229;:::o;26419:366::-;26561:3;26582:67;26646:2;26641:3;26582:67;:::i;:::-;26575:74;;26658:93;26747:3;26658:93;:::i;:::-;26776:2;26771:3;26767:12;26760:19;;26419:366;;;:::o;26791:419::-;26957:4;26995:2;26984:9;26980:18;26972:26;;27044:9;27038:4;27034:20;27030:1;27019:9;27015:17;27008:47;27072:131;27198:4;27072:131;:::i;:::-;27064:139;;26791:419;;;:::o;27216:225::-;27356:34;27352:1;27344:6;27340:14;27333:58;27425:8;27420:2;27412:6;27408:15;27401:33;27216:225;:::o;27447:366::-;27589:3;27610:67;27674:2;27669:3;27610:67;:::i;:::-;27603:74;;27686:93;27775:3;27686:93;:::i;:::-;27804:2;27799:3;27795:12;27788:19;;27447:366;;;:::o;27819:419::-;27985:4;28023:2;28012:9;28008:18;28000:26;;28072:9;28066:4;28062:20;28058:1;28047:9;28043:17;28036:47;28100:131;28226:4;28100:131;:::i;:::-;28092:139;;27819:419;;;:::o;28244:177::-;28384:29;28380:1;28372:6;28368:14;28361:53;28244:177;:::o;28427:366::-;28569:3;28590:67;28654:2;28649:3;28590:67;:::i;:::-;28583:74;;28666:93;28755:3;28666:93;:::i;:::-;28784:2;28779:3;28775:12;28768:19;;28427:366;;;:::o;28799:419::-;28965:4;29003:2;28992:9;28988:18;28980:26;;29052:9;29046:4;29042:20;29038:1;29027:9;29023:17;29016:47;29080:131;29206:4;29080:131;:::i;:::-;29072:139;;28799:419;;;:::o;29224:182::-;29364:34;29360:1;29352:6;29348:14;29341:58;29224:182;:::o;29412:366::-;29554:3;29575:67;29639:2;29634:3;29575:67;:::i;:::-;29568:74;;29651:93;29740:3;29651:93;:::i;:::-;29769:2;29764:3;29760:12;29753:19;;29412:366;;;:::o;29784:419::-;29950:4;29988:2;29977:9;29973:18;29965:26;;30037:9;30031:4;30027:20;30023:1;30012:9;30008:17;30001:47;30065:131;30191:4;30065:131;:::i;:::-;30057:139;;29784:419;;;:::o;30209:166::-;30349:18;30345:1;30337:6;30333:14;30326:42;30209:166;:::o;30381:366::-;30523:3;30544:67;30608:2;30603:3;30544:67;:::i;:::-;30537:74;;30620:93;30709:3;30620:93;:::i;:::-;30738:2;30733:3;30729:12;30722:19;;30381:366;;;:::o;30753:419::-;30919:4;30957:2;30946:9;30942:18;30934:26;;31006:9;31000:4;30996:20;30992:1;30981:9;30977:17;30970:47;31034:131;31160:4;31034:131;:::i;:::-;31026:139;;30753:419;;;:::o;31178:169::-;31318:21;31314:1;31306:6;31302:14;31295:45;31178:169;:::o;31353:366::-;31495:3;31516:67;31580:2;31575:3;31516:67;:::i;:::-;31509:74;;31592:93;31681:3;31592:93;:::i;:::-;31710:2;31705:3;31701:12;31694:19;;31353:366;;;:::o;31725:419::-;31891:4;31929:2;31918:9;31914:18;31906:26;;31978:9;31972:4;31968:20;31964:1;31953:9;31949:17;31942:47;32006:131;32132:4;32006:131;:::i;:::-;31998:139;;31725:419;;;:::o;32150:348::-;32190:7;32213:20;32231:1;32213:20;:::i;:::-;32208:25;;32247:20;32265:1;32247:20;:::i;:::-;32242:25;;32435:1;32367:66;32363:74;32360:1;32357:81;32352:1;32345:9;32338:17;32334:105;32331:131;;;32442:18;;:::i;:::-;32331:131;32490:1;32487;32483:9;32472:20;;32150:348;;;;:::o;32504:167::-;32644:19;32640:1;32632:6;32628:14;32621:43;32504:167;:::o;32677:366::-;32819:3;32840:67;32904:2;32899:3;32840:67;:::i;:::-;32833:74;;32916:93;33005:3;32916:93;:::i;:::-;33034:2;33029:3;33025:12;33018:19;;32677:366;;;:::o;33049:419::-;33215:4;33253:2;33242:9;33238:18;33230:26;;33302:9;33296:4;33292:20;33288:1;33277:9;33273:17;33266:47;33330:131;33456:4;33330:131;:::i;:::-;33322:139;;33049:419;;;:::o;33474:98::-;33525:6;33559:5;33553:12;33543:22;;33474:98;;;:::o;33578:168::-;33661:11;33695:6;33690:3;33683:19;33735:4;33730:3;33726:14;33711:29;;33578:168;;;;:::o;33752:360::-;33838:3;33866:38;33898:5;33866:38;:::i;:::-;33920:70;33983:6;33978:3;33920:70;:::i;:::-;33913:77;;33999:52;34044:6;34039:3;34032:4;34025:5;34021:16;33999:52;:::i;:::-;34076:29;34098:6;34076:29;:::i;:::-;34071:3;34067:39;34060:46;;33842:270;33752:360;;;;:::o;34118:640::-;34313:4;34351:3;34340:9;34336:19;34328:27;;34365:71;34433:1;34422:9;34418:17;34409:6;34365:71;:::i;:::-;34446:72;34514:2;34503:9;34499:18;34490:6;34446:72;:::i;:::-;34528;34596:2;34585:9;34581:18;34572:6;34528:72;:::i;:::-;34647:9;34641:4;34637:20;34632:2;34621:9;34617:18;34610:48;34675:76;34746:4;34737:6;34675:76;:::i;:::-;34667:84;;34118:640;;;;;;;:::o;34764:141::-;34820:5;34851:6;34845:13;34836:22;;34867:32;34893:5;34867:32;:::i;:::-;34764:141;;;;:::o;34911:349::-;34980:6;35029:2;35017:9;35008:7;35004:23;35000:32;34997:119;;;35035:79;;:::i;:::-;34997:119;35155:1;35180:63;35235:7;35226:6;35215:9;35211:22;35180:63;:::i;:::-;35170:73;;35126:127;34911:349;;;;:::o;35266:180::-;35314:77;35311:1;35304:88;35411:4;35408:1;35401:15;35435:4;35432:1;35425:15;35452:156;35592:8;35588:1;35580:6;35576:14;35569:32;35452:156;:::o;35614:400::-;35774:3;35795:84;35877:1;35872:3;35795:84;:::i;:::-;35788:91;;35888:93;35977:3;35888:93;:::i;:::-;36006:1;36001:3;35997:11;35990:18;;35614:400;;;:::o;36020:94::-;36053:8;36101:5;36097:2;36093:14;36072:35;;36020:94;;;:::o;36120:::-;36159:7;36188:20;36202:5;36188:20;:::i;:::-;36177:31;;36120:94;;;:::o;36220:100::-;36259:7;36288:26;36308:5;36288:26;:::i;:::-;36277:37;;36220:100;;;:::o;36326:157::-;36431:45;36451:24;36469:5;36451:24;:::i;:::-;36431:45;:::i;:::-;36426:3;36419:58;36326:157;;:::o;36489:79::-;36528:7;36557:5;36546:16;;36489:79;;;:::o;36574:157::-;36679:45;36699:24;36717:5;36699:24;:::i;:::-;36679:45;:::i;:::-;36674:3;36667:58;36574:157;;:::o;36737:663::-;36978:3;37000:148;37144:3;37000:148;:::i;:::-;36993:155;;37158:75;37229:3;37220:6;37158:75;:::i;:::-;37258:2;37253:3;37249:12;37242:19;;37271:75;37342:3;37333:6;37271:75;:::i;:::-;37371:2;37366:3;37362:12;37355:19;;37391:3;37384:10;;36737:663;;;;;:::o;37406:214::-;37546:66;37542:1;37534:6;37530:14;37523:90;37406:214;:::o;37626:402::-;37786:3;37807:85;37889:2;37884:3;37807:85;:::i;:::-;37800:92;;37901:93;37990:3;37901:93;:::i;:::-;38019:2;38014:3;38010:12;38003:19;;37626:402;;;:::o;38034:77::-;38071:7;38100:5;38089:16;;38034:77;;;:::o;38117:79::-;38156:7;38185:5;38174:16;;38117:79;;;:::o;38202:157::-;38307:45;38327:24;38345:5;38327:24;:::i;:::-;38307:45;:::i;:::-;38302:3;38295:58;38202:157;;:::o;38365:522::-;38578:3;38600:148;38744:3;38600:148;:::i;:::-;38593:155;;38758:75;38829:3;38820:6;38758:75;:::i;:::-;38858:2;38853:3;38849:12;38842:19;;38878:3;38871:10;;38365:522;;;;:::o;38893:180::-;38941:77;38938:1;38931:88;39038:4;39035:1;39028:15;39062:4;39059:1;39052:15;39079:174;39219:26;39215:1;39207:6;39203:14;39196:50;39079:174;:::o;39259:366::-;39401:3;39422:67;39486:2;39481:3;39422:67;:::i;:::-;39415:74;;39498:93;39587:3;39498:93;:::i;:::-;39616:2;39611:3;39607:12;39600:19;;39259:366;;;:::o;39631:419::-;39797:4;39835:2;39824:9;39820:18;39812:26;;39884:9;39878:4;39874:20;39870:1;39859:9;39855:17;39848:47;39912:131;40038:4;39912:131;:::i;:::-;39904:139;;39631:419;;;:::o;40056:181::-;40196:33;40192:1;40184:6;40180:14;40173:57;40056:181;:::o;40243:366::-;40385:3;40406:67;40470:2;40465:3;40406:67;:::i;:::-;40399:74;;40482:93;40571:3;40482:93;:::i;:::-;40600:2;40595:3;40591:12;40584:19;;40243:366;;;:::o;40615:419::-;40781:4;40819:2;40808:9;40804:18;40796:26;;40868:9;40862:4;40858:20;40854:1;40843:9;40839:17;40832:47;40896:131;41022:4;40896:131;:::i;:::-;40888:139;;40615:419;;;:::o;41040:221::-;41180:34;41176:1;41168:6;41164:14;41157:58;41249:4;41244:2;41236:6;41232:15;41225:29;41040:221;:::o;41267:366::-;41409:3;41430:67;41494:2;41489:3;41430:67;:::i;:::-;41423:74;;41506:93;41595:3;41506:93;:::i;:::-;41624:2;41619:3;41615:12;41608:19;;41267:366;;;:::o;41639:419::-;41805:4;41843:2;41832:9;41828:18;41820:26;;41892:9;41886:4;41882:20;41878:1;41867:9;41863:17;41856:47;41920:131;42046:4;41920:131;:::i;:::-;41912:139;;41639:419;;;:::o;42064:118::-;42151:24;42169:5;42151:24;:::i;:::-;42146:3;42139:37;42064:118;;:::o;42188:86::-;42223:7;42263:4;42256:5;42252:16;42241:27;;42188:86;;;:::o;42280:112::-;42363:22;42379:5;42363:22;:::i;:::-;42358:3;42351:35;42280:112;;:::o;42398:545::-;42571:4;42609:3;42598:9;42594:19;42586:27;;42623:71;42691:1;42680:9;42676:17;42667:6;42623:71;:::i;:::-;42704:68;42768:2;42757:9;42753:18;42744:6;42704:68;:::i;:::-;42782:72;42850:2;42839:9;42835:18;42826:6;42782:72;:::i;:::-;42864;42932:2;42921:9;42917:18;42908:6;42864:72;:::i;:::-;42398:545;;;;;;;:::o
Swarm Source
ipfs://29949b5235461c7d86a176647cf92124e0d2d9fe3d16a38569d783abde2c2e35
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.