ERC-721
Overview
Max Total Supply
3,333 MOUSELEMUR
Holders
1,202
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 MOUSELEMURLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MouseLemur
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-16 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The 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 tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the 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 { 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; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev 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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function 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) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/MouseLemur.sol // ,// // ,//////// */* // */////// /////////// // //////////* ,// // */* // ////////// // ,//// //// //, //. */* // // // // // ,//// //// */* // // // // ,// // // //, //. */* // *///// ///// // ///// ,// // // */* // ////////// // ,// // //, //. */* // // // // // ,// // */* // // // // ,// // ,//////// .///// //////// /////////// ////////// //////////* ,// // ///// // // pragma solidity ^0.8.14; contract MouseLemur is ERC721A, Ownable { using Strings for uint256; error MaxAmountExceeded(); error NoSupplyLeft(); error InsufficientFunds(); uint256 public maxSupply = 3333; uint256 public maxWLSupply = 738; uint256 public freeThreshold = 1333; uint256 public mintPrice = 0.005 ether; uint256 public mintPerWhiteList = 1; uint256 public mintPerPublic = 3; string private baseURI; bool public isWhitelistMintEnabled; bool public isPublicMintEnabled; mapping(address => uint256) private mintedPublicAddresses; mapping(address => uint256) private mintedWLAddresses; mapping(address => bool) private whitelistAddresses; constructor() ERC721A("Mouse Lemur", "MOUSELEMUR") {} function mint(uint256 qty) external payable { uint256 cost = mintPrice; bool isFree = (_totalMinted() + qty <= freeThreshold); require(msg.sender == tx.origin); require(isPublicMintEnabled, "public mint not enabled yet"); if (mintedPublicAddresses[msg.sender] + qty > mintPerPublic) revert MaxAmountExceeded(); if (_totalMinted() + qty > maxSupply) revert NoSupplyLeft(); if (isFree) { cost = 0; } if (msg.value < cost * qty) revert InsufficientFunds(); mintedPublicAddresses[msg.sender] += qty; _mint(msg.sender, qty); } function whiteListMint(uint256 qty) external { require(msg.sender == tx.origin); require(isWhitelistMintEnabled, "Whitelist mint not enabled yet"); require(isValid(msg.sender), "Not whitelisted"); if (mintedWLAddresses[msg.sender] + qty > mintPerWhiteList) revert MaxAmountExceeded(); if (_totalMinted() + qty > maxWLSupply) revert NoSupplyLeft(); mintedWLAddresses[msg.sender] += qty; _mint(msg.sender, qty); } function devMint(address recipient) external onlyOwner { if (_totalMinted() + 5 > maxSupply) revert NoSupplyLeft(); _mint(recipient, 5); } function isValid(address _address) public view returns (bool) { return whitelistAddresses[_address]; } function togglePublicMint() external onlyOwner { isPublicMintEnabled = !isPublicMintEnabled; } function toggleWLMint() external onlyOwner { isWhitelistMintEnabled = !isWhitelistMintEnabled; } function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } function setAddressesForWhitelist(address[] calldata targets) external onlyOwner { for (uint256 i = 0; i < targets.length; ++i) { whitelistAddresses[targets[i]] = true; } } /* * SETTER */ function setFreeThreshold(uint256 _newThreshold) external onlyOwner { freeThreshold = _newThreshold; } function setPrice(uint256 _newPrice) external onlyOwner { mintPrice = _newPrice; } function setMaxSupply(uint256 _maxSupply) external onlyOwner { require(_maxSupply < maxSupply); //can only be decreased maxSupply = _maxSupply; } function setWLSupply(uint256 _newWLSupply) external onlyOwner { require(_newWLSupply < maxWLSupply); //can only be decreased maxWLSupply = _newWLSupply; } function setMintPerWhitelist(uint256 qty) external onlyOwner { mintPerWhiteList = qty; } function setMintPerPublic(uint256 qty) external onlyOwner { mintPerPublic = qty; } function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } /* * GETTER */ function getFreeThreshold() external view returns (uint256) { return freeThreshold; } function getPrice() external view returns (uint256) { return mintPrice; } function getMaxSupply() external view returns (uint256) { return maxSupply; } function getMaxWLSupply() external view returns (uint256) { return maxWLSupply; } function getMintPerWhitelist() external view returns (uint256) { return mintPerWhiteList; } function getMintPerPublic() external view returns (uint256) { return mintPerPublic; } function getBaseURI() external view returns (string memory) { return baseURI; } function getMintedWLAddress(address key) external view returns (uint256) { return mintedWLAddresses[key]; } function getMintedPublicAddress(address key) external view returns (uint256) { return mintedPublicAddresses[key]; } function getTotalMinted() public view returns (uint256) { return _totalMinted(); } /* * OVERRIDES */ function _startTokenId() internal pure override returns (uint256) { return 1; } function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI_ = _baseURI(); return bytes(baseURI_).length > 0 ? string( abi.encodePacked(baseURI_, tokenId.toString(), ".json") ) : ""; } }
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":"InsufficientFunds","type":"error"},{"inputs":[],"name":"MaxAmountExceeded","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoSupplyLeft","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"address","name":"recipient","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFreeThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxWLSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPerPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPerWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"key","type":"address"}],"name":"getMintedPublicAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"key","type":"address"}],"name":"getMintedWLAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPerPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPerWhiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"targets","type":"address[]"}],"name":"setAddressesForWhitelist","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"setFreeThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"setMintPerPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"setMintPerWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWLSupply","type":"uint256"}],"name":"setWLSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWLMint","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":"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":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610d056009556102e2600a55610535600b556611c37937e08000600c556001600d556003600e553480156200003857600080fd5b506040518060400160405280600b81526020017f4d6f757365204c656d75720000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f4d4f5553454c454d5552000000000000000000000000000000000000000000008152508160029080519060200190620000bd929190620001ec565b508060039080519060200190620000d6929190620001ec565b50620000e76200011560201b60201c565b60008190555050506200010f620001036200011e60201b60201c565b6200012660201b60201c565b62000300565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001fa90620002cb565b90600052602060002090601f0160209004810192826200021e57600085556200026a565b82601f106200023957805160ff19168380011785556200026a565b828001600101855582156200026a579182015b82811115620002695782518255916020019190600101906200024c565b5b5090506200027991906200027d565b5090565b5b80821115620002985760008160009055506001016200027e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002e457607f821691505b602082108103620002fa57620002f96200029c565b5b50919050565b61373780620003106000396000f3fe6080604052600436106102c95760003560e01c80636e2e8143116101755780639a480af0116100dc578063b88d4fde11610095578063ca9ee4311161006f578063ca9ee43114610a9b578063d5abeb0114610ac6578063e985e9c514610af1578063f2fde38b14610b2e576102c9565b8063b88d4fde146109f8578063b915fe9714610a21578063c87b56dd14610a5e576102c9565b80639a480af01461090b578063a0712d6814610936578063a22cb46514610952578063a7b4efde1461097b578063b3c03325146109a6578063b49a115a146109cf576102c9565b806375bbab3a1161012e57806375bbab3a146107fb5780638b1b925f146108245780638da5cb5b1461086157806391b7f5ed1461088c57806395d89b41146108b557806398d5fdca146108e0576102c9565b80636e2e8143146106eb5780636f8b44b01461072857806370a0823114610751578063714c53981461078e578063715018a6146107b9578063721e8386146107d0576102c9565b80633948b8cc116102345780634c0f38c2116101ed57806355f804b3116101c757806355f804b314610631578063577fca411461065a5780636352211e146106835780636817c76c146106c0576102c9565b80634c0f38c2146105b0578063515dc327146105db57806351aaceab14610606576102c9565b80633948b8cc146104dc5780633ccfd60b146105055780634047638d1461051c57806341ee05f71461053357806342842e0e1461055c5780634503770114610585576102c9565b80630ca1c5c9116102865780630ca1c5c9146103f0578063142f82ae1461041b57806318160ddd146104465780631e1d0b8f1461047157806323b872dd1461048857806325f051bd146104b1576102c9565b80630116bc2d146102ce57806301ffc9a7146102f957806302e001ef1461033657806306fdde031461035f578063081812fc1461038a578063095ea7b3146103c7575b600080fd5b3480156102da57600080fd5b506102e3610b57565b6040516102f091906128d9565b60405180910390f35b34801561030557600080fd5b50610320600480360381019061031b9190612960565b610b6a565b60405161032d91906128d9565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906129c3565b610bfc565b005b34801561036b57600080fd5b50610374610e02565b6040516103819190612a89565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac91906129c3565b610e94565b6040516103be9190612aec565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190612b33565b610f10565b005b3480156103fc57600080fd5b50610405611051565b6040516104129190612b82565b60405180910390f35b34801561042757600080fd5b50610430611060565b60405161043d9190612b82565b60405180910390f35b34801561045257600080fd5b5061045b61106a565b6040516104689190612b82565b60405180910390f35b34801561047d57600080fd5b50610486611081565b005b34801561049457600080fd5b506104af60048036038101906104aa9190612b9d565b6110b5565b005b3480156104bd57600080fd5b506104c66113d7565b6040516104d39190612b82565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe91906129c3565b6113dd565b005b34801561051157600080fd5b5061051a6113fd565b005b34801561052857600080fd5b5061053161144e565b005b34801561053f57600080fd5b5061055a60048036038101906105559190612bf0565b611482565b005b34801561056857600080fd5b50610583600480360381019061057e9190612b9d565b6114e7565b005b34801561059157600080fd5b5061059a611507565b6040516105a79190612b82565b60405180910390f35b3480156105bc57600080fd5b506105c561150d565b6040516105d29190612b82565b60405180910390f35b3480156105e757600080fd5b506105f0611517565b6040516105fd9190612b82565b60405180910390f35b34801561061257600080fd5b5061061b61151d565b60405161062891906128d9565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190612d52565b611530565b005b34801561066657600080fd5b50610681600480360381019061067c91906129c3565b611552565b005b34801561068f57600080fd5b506106aa60048036038101906106a591906129c3565b611564565b6040516106b79190612aec565b60405180910390f35b3480156106cc57600080fd5b506106d5611576565b6040516106e29190612b82565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d9190612bf0565b61157c565b60405161071f9190612b82565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a91906129c3565b6115c5565b005b34801561075d57600080fd5b5061077860048036038101906107739190612bf0565b6115e5565b6040516107859190612b82565b60405180910390f35b34801561079a57600080fd5b506107a361169d565b6040516107b09190612a89565b60405180910390f35b3480156107c557600080fd5b506107ce61172f565b005b3480156107dc57600080fd5b506107e5611743565b6040516107f29190612b82565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d91906129c3565b61174d565b005b34801561083057600080fd5b5061084b60048036038101906108469190612bf0565b61175f565b60405161085891906128d9565b60405180910390f35b34801561086d57600080fd5b506108766117b5565b6040516108839190612aec565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae91906129c3565b6117df565b005b3480156108c157600080fd5b506108ca6117f1565b6040516108d79190612a89565b60405180910390f35b3480156108ec57600080fd5b506108f5611883565b6040516109029190612b82565b60405180910390f35b34801561091757600080fd5b5061092061188d565b60405161092d9190612b82565b60405180910390f35b610950600480360381019061094b91906129c3565b611897565b005b34801561095e57600080fd5b5061097960048036038101906109749190612dc7565b611aca565b005b34801561098757600080fd5b50610990611c41565b60405161099d9190612b82565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190612e67565b611c47565b005b3480156109db57600080fd5b506109f660048036038101906109f191906129c3565b611cf2565b005b348015610a0457600080fd5b50610a1f6004803603810190610a1a9190612f55565b611d04565b005b348015610a2d57600080fd5b50610a486004803603810190610a439190612bf0565b611d77565b604051610a559190612b82565b60405180910390f35b348015610a6a57600080fd5b50610a856004803603810190610a8091906129c3565b611dc0565b604051610a929190612a89565b60405180910390f35b348015610aa757600080fd5b50610ab0611e67565b604051610abd9190612b82565b60405180910390f35b348015610ad257600080fd5b50610adb611e71565b604051610ae89190612b82565b60405180910390f35b348015610afd57600080fd5b50610b186004803603810190610b139190612fd8565b611e77565b604051610b2591906128d9565b60405180910390f35b348015610b3a57600080fd5b50610b556004803603810190610b509190612bf0565b611f0b565b005b601060019054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bc557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf55750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c3457600080fd5b601060009054906101000a900460ff16610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613064565b60405180910390fd5b610c8c3361175f565b610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc2906130d0565b60405180910390fd5b600d5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d19919061311f565b1115610d51576040517fa049dfc700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481610d5d611f8e565b610d67919061311f565b1115610d9f576040517f800113cb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dee919061311f565b92505081905550610dff3382611fa1565b50565b606060028054610e11906131a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3d906131a4565b8015610e8a5780601f10610e5f57610100808354040283529160200191610e8a565b820191906000526020600020905b815481529060010190602001808311610e6d57829003601f168201915b5050505050905090565b6000610e9f82612173565b610ed5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f1b82611564565b90508073ffffffffffffffffffffffffffffffffffffffff16610f3c6121d2565b73ffffffffffffffffffffffffffffffffffffffff1614610f9f57610f6881610f636121d2565b611e77565b610f9e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061105b611f8e565b905090565b6000600b54905090565b60006110746121da565b6001546000540303905090565b6110896121e3565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60006110c082612261565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611127576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806111338461232d565b9150915061114981876111446121d2565b61234f565b6111955761115e866111596121d2565b611e77565b611194576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036111fb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112088686866001612393565b801561121357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112e1856112bd888887612399565b7c0200000000000000000000000000000000000000000000000000000000176123c1565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036113675760006001850190506000600460008381526020019081526020016000205403611365576000548114611364578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113cf86868660016123ec565b505050505050565b600b5481565b6113e56121e3565b600a5481106113f357600080fd5b80600a8190555050565b6114056121e3565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561144b573d6000803e3d6000fd5b50565b6114566121e3565b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b61148a6121e3565b6009546005611497611f8e565b6114a1919061311f565b11156114d9576040517f800113cb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114e4816005611fa1565b50565b61150283838360405180602001604052806000815250611d04565b505050565b600d5481565b6000600954905090565b600a5481565b601060009054906101000a900460ff1681565b6115386121e3565b80600f908051906020019061154e92919061281b565b5050565b61155a6121e3565b80600e8190555050565b600061156f82612261565b9050919050565b600c5481565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115cd6121e3565b60095481106115db57600080fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361164c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6060600f80546116ac906131a4565b80601f01602080910402602001604051908101604052809291908181526020018280546116d8906131a4565b80156117255780601f106116fa57610100808354040283529160200191611725565b820191906000526020600020905b81548152906001019060200180831161170857829003601f168201915b5050505050905090565b6117376121e3565b61174160006123f2565b565b6000600e54905090565b6117556121e3565b80600b8190555050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117e76121e3565b80600c8190555050565b606060038054611800906131a4565b80601f016020809104026020016040519081016040528092919081815260200182805461182c906131a4565b80156118795780601f1061184e57610100808354040283529160200191611879565b820191906000526020600020905b81548152906001019060200180831161185c57829003601f168201915b5050505050905090565b6000600c54905090565b6000600d54905090565b6000600c5490506000600b54836118ac611f8e565b6118b6919061311f565b111590503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118f257600080fd5b601060019054906101000a900460ff16611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890613221565b60405180910390fd5b600e5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461198f919061311f565b11156119c7576040517fa049dfc700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600954836119d3611f8e565b6119dd919061311f565b1115611a15576040517f800113cb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015611a2057600091505b8282611a2c9190613241565b341015611a65576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab4919061311f565b92505081905550611ac53384611fa1565b505050565b611ad26121d2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b36576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b436121d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bf06121d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c3591906128d9565b60405180910390a35050565b600e5481565b611c4f6121e3565b60005b82829050811015611ced57600160136000858585818110611c7657611c7561329b565b5b9050602002016020810190611c8b9190612bf0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080611ce6906132ca565b9050611c52565b505050565b611cfa6121e3565b80600d8190555050565b611d0f8484846110b5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d7157611d3a848484846124b8565b611d70576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060611dcb82612173565b611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0190613384565b60405180910390fd5b6000611e14612608565b90506000815111611e345760405180602001604052806000815250611e5f565b80611e3e8461269a565b604051602001611e4f92919061342c565b6040516020818303038152906040525b915050919050565b6000600a54905090565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f136121e3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f79906134cd565b60405180910390fd5b611f8b816123f2565b50565b6000611f986121da565b60005403905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361200d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612047576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120546000848385612393565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120cb836120bc6000866000612399565b6120c5856127fa565b176123c1565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106120ef5780600081905550505061216e60008483856123ec565b505050565b60008161217e6121da565b1115801561218d575060005482105b80156121cb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6121eb61280a565b73ffffffffffffffffffffffffffffffffffffffff166122096117b5565b73ffffffffffffffffffffffffffffffffffffffff161461225f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225690613539565b60405180910390fd5b565b600080829050806122706121da565b116122f6576000548110156122f55760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036122f3575b600081036122e95760046000836001900393508381526020019081526020016000205490506122bf565b8092505050612328565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123b0868684612812565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124de6121d2565b8786866040518563ffffffff1660e01b815260040161250094939291906135ae565b6020604051808303816000875af192505050801561253c57506040513d601f19601f82011682018060405250810190612539919061360f565b60015b6125b5573d806000811461256c576040519150601f19603f3d011682016040523d82523d6000602084013e612571565b606091505b5060008151036125ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612617906131a4565b80601f0160208091040260200160405190810160405280929190818152602001828054612643906131a4565b80156126905780601f1061266557610100808354040283529160200191612690565b820191906000526020600020905b81548152906001019060200180831161267357829003601f168201915b5050505050905090565b6060600082036126e1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127f5565b600082905060005b600082146127135780806126fc906132ca565b915050600a8261270c919061366b565b91506126e9565b60008167ffffffffffffffff81111561272f5761272e612c27565b5b6040519080825280601f01601f1916602001820160405280156127615781602001600182028036833780820191505090505b5090505b600085146127ee5760018261277a919061369c565b9150600a8561278991906136d0565b6030612795919061311f565b60f81b8183815181106127ab576127aa61329b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127e7919061366b565b9450612765565b8093505050505b919050565b60006001821460e11b9050919050565b600033905090565b60009392505050565b828054612827906131a4565b90600052602060002090601f0160209004810192826128495760008555612890565b82601f1061286257805160ff1916838001178555612890565b82800160010185558215612890579182015b8281111561288f578251825591602001919060010190612874565b5b50905061289d91906128a1565b5090565b5b808211156128ba5760008160009055506001016128a2565b5090565b60008115159050919050565b6128d3816128be565b82525050565b60006020820190506128ee60008301846128ca565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61293d81612908565b811461294857600080fd5b50565b60008135905061295a81612934565b92915050565b600060208284031215612976576129756128fe565b5b60006129848482850161294b565b91505092915050565b6000819050919050565b6129a08161298d565b81146129ab57600080fd5b50565b6000813590506129bd81612997565b92915050565b6000602082840312156129d9576129d86128fe565b5b60006129e7848285016129ae565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a2a578082015181840152602081019050612a0f565b83811115612a39576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a5b826129f0565b612a6581856129fb565b9350612a75818560208601612a0c565b612a7e81612a3f565b840191505092915050565b60006020820190508181036000830152612aa38184612a50565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ad682612aab565b9050919050565b612ae681612acb565b82525050565b6000602082019050612b016000830184612add565b92915050565b612b1081612acb565b8114612b1b57600080fd5b50565b600081359050612b2d81612b07565b92915050565b60008060408385031215612b4a57612b496128fe565b5b6000612b5885828601612b1e565b9250506020612b69858286016129ae565b9150509250929050565b612b7c8161298d565b82525050565b6000602082019050612b976000830184612b73565b92915050565b600080600060608486031215612bb657612bb56128fe565b5b6000612bc486828701612b1e565b9350506020612bd586828701612b1e565b9250506040612be6868287016129ae565b9150509250925092565b600060208284031215612c0657612c056128fe565b5b6000612c1484828501612b1e565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c5f82612a3f565b810181811067ffffffffffffffff82111715612c7e57612c7d612c27565b5b80604052505050565b6000612c916128f4565b9050612c9d8282612c56565b919050565b600067ffffffffffffffff821115612cbd57612cbc612c27565b5b612cc682612a3f565b9050602081019050919050565b82818337600083830152505050565b6000612cf5612cf084612ca2565b612c87565b905082815260208101848484011115612d1157612d10612c22565b5b612d1c848285612cd3565b509392505050565b600082601f830112612d3957612d38612c1d565b5b8135612d49848260208601612ce2565b91505092915050565b600060208284031215612d6857612d676128fe565b5b600082013567ffffffffffffffff811115612d8657612d85612903565b5b612d9284828501612d24565b91505092915050565b612da4816128be565b8114612daf57600080fd5b50565b600081359050612dc181612d9b565b92915050565b60008060408385031215612dde57612ddd6128fe565b5b6000612dec85828601612b1e565b9250506020612dfd85828601612db2565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612e2757612e26612c1d565b5b8235905067ffffffffffffffff811115612e4457612e43612e07565b5b602083019150836020820283011115612e6057612e5f612e0c565b5b9250929050565b60008060208385031215612e7e57612e7d6128fe565b5b600083013567ffffffffffffffff811115612e9c57612e9b612903565b5b612ea885828601612e11565b92509250509250929050565b600067ffffffffffffffff821115612ecf57612ece612c27565b5b612ed882612a3f565b9050602081019050919050565b6000612ef8612ef384612eb4565b612c87565b905082815260208101848484011115612f1457612f13612c22565b5b612f1f848285612cd3565b509392505050565b600082601f830112612f3c57612f3b612c1d565b5b8135612f4c848260208601612ee5565b91505092915050565b60008060008060808587031215612f6f57612f6e6128fe565b5b6000612f7d87828801612b1e565b9450506020612f8e87828801612b1e565b9350506040612f9f878288016129ae565b925050606085013567ffffffffffffffff811115612fc057612fbf612903565b5b612fcc87828801612f27565b91505092959194509250565b60008060408385031215612fef57612fee6128fe565b5b6000612ffd85828601612b1e565b925050602061300e85828601612b1e565b9150509250929050565b7f57686974656c697374206d696e74206e6f7420656e61626c6564207965740000600082015250565b600061304e601e836129fb565b915061305982613018565b602082019050919050565b6000602082019050818103600083015261307d81613041565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b60006130ba600f836129fb565b91506130c582613084565b602082019050919050565b600060208201905081810360008301526130e9816130ad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061312a8261298d565b91506131358361298d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561316a576131696130f0565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131bc57607f821691505b6020821081036131cf576131ce613175565b5b50919050565b7f7075626c6963206d696e74206e6f7420656e61626c6564207965740000000000600082015250565b600061320b601b836129fb565b9150613216826131d5565b602082019050919050565b6000602082019050818103600083015261323a816131fe565b9050919050565b600061324c8261298d565b91506132578361298d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132905761328f6130f0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006132d58261298d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613307576133066130f0565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061336e602f836129fb565b915061337982613312565b604082019050919050565b6000602082019050818103600083015261339d81613361565b9050919050565b600081905092915050565b60006133ba826129f0565b6133c481856133a4565b93506133d4818560208601612a0c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134166005836133a4565b9150613421826133e0565b600582019050919050565b600061343882856133af565b915061344482846133af565b915061344f82613409565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134b76026836129fb565b91506134c28261345b565b604082019050919050565b600060208201905081810360008301526134e6816134aa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135236020836129fb565b915061352e826134ed565b602082019050919050565b6000602082019050818103600083015261355281613516565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061358082613559565b61358a8185613564565b935061359a818560208601612a0c565b6135a381612a3f565b840191505092915050565b60006080820190506135c36000830187612add565b6135d06020830186612add565b6135dd6040830185612b73565b81810360608301526135ef8184613575565b905095945050505050565b60008151905061360981612934565b92915050565b600060208284031215613625576136246128fe565b5b6000613633848285016135fa565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136768261298d565b91506136818361298d565b9250826136915761369061363c565b5b828204905092915050565b60006136a78261298d565b91506136b28361298d565b9250828210156136c5576136c46130f0565b5b828203905092915050565b60006136db8261298d565b91506136e68361298d565b9250826136f6576136f561363c565b5b82820690509291505056fea264697066735822122097d1b273c144da5c7873a2d669647e2e3cc3e2a418e27ad13ada3efb1aa53a3f64736f6c634300080e0033
Deployed Bytecode
0x6080604052600436106102c95760003560e01c80636e2e8143116101755780639a480af0116100dc578063b88d4fde11610095578063ca9ee4311161006f578063ca9ee43114610a9b578063d5abeb0114610ac6578063e985e9c514610af1578063f2fde38b14610b2e576102c9565b8063b88d4fde146109f8578063b915fe9714610a21578063c87b56dd14610a5e576102c9565b80639a480af01461090b578063a0712d6814610936578063a22cb46514610952578063a7b4efde1461097b578063b3c03325146109a6578063b49a115a146109cf576102c9565b806375bbab3a1161012e57806375bbab3a146107fb5780638b1b925f146108245780638da5cb5b1461086157806391b7f5ed1461088c57806395d89b41146108b557806398d5fdca146108e0576102c9565b80636e2e8143146106eb5780636f8b44b01461072857806370a0823114610751578063714c53981461078e578063715018a6146107b9578063721e8386146107d0576102c9565b80633948b8cc116102345780634c0f38c2116101ed57806355f804b3116101c757806355f804b314610631578063577fca411461065a5780636352211e146106835780636817c76c146106c0576102c9565b80634c0f38c2146105b0578063515dc327146105db57806351aaceab14610606576102c9565b80633948b8cc146104dc5780633ccfd60b146105055780634047638d1461051c57806341ee05f71461053357806342842e0e1461055c5780634503770114610585576102c9565b80630ca1c5c9116102865780630ca1c5c9146103f0578063142f82ae1461041b57806318160ddd146104465780631e1d0b8f1461047157806323b872dd1461048857806325f051bd146104b1576102c9565b80630116bc2d146102ce57806301ffc9a7146102f957806302e001ef1461033657806306fdde031461035f578063081812fc1461038a578063095ea7b3146103c7575b600080fd5b3480156102da57600080fd5b506102e3610b57565b6040516102f091906128d9565b60405180910390f35b34801561030557600080fd5b50610320600480360381019061031b9190612960565b610b6a565b60405161032d91906128d9565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906129c3565b610bfc565b005b34801561036b57600080fd5b50610374610e02565b6040516103819190612a89565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac91906129c3565b610e94565b6040516103be9190612aec565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190612b33565b610f10565b005b3480156103fc57600080fd5b50610405611051565b6040516104129190612b82565b60405180910390f35b34801561042757600080fd5b50610430611060565b60405161043d9190612b82565b60405180910390f35b34801561045257600080fd5b5061045b61106a565b6040516104689190612b82565b60405180910390f35b34801561047d57600080fd5b50610486611081565b005b34801561049457600080fd5b506104af60048036038101906104aa9190612b9d565b6110b5565b005b3480156104bd57600080fd5b506104c66113d7565b6040516104d39190612b82565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe91906129c3565b6113dd565b005b34801561051157600080fd5b5061051a6113fd565b005b34801561052857600080fd5b5061053161144e565b005b34801561053f57600080fd5b5061055a60048036038101906105559190612bf0565b611482565b005b34801561056857600080fd5b50610583600480360381019061057e9190612b9d565b6114e7565b005b34801561059157600080fd5b5061059a611507565b6040516105a79190612b82565b60405180910390f35b3480156105bc57600080fd5b506105c561150d565b6040516105d29190612b82565b60405180910390f35b3480156105e757600080fd5b506105f0611517565b6040516105fd9190612b82565b60405180910390f35b34801561061257600080fd5b5061061b61151d565b60405161062891906128d9565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190612d52565b611530565b005b34801561066657600080fd5b50610681600480360381019061067c91906129c3565b611552565b005b34801561068f57600080fd5b506106aa60048036038101906106a591906129c3565b611564565b6040516106b79190612aec565b60405180910390f35b3480156106cc57600080fd5b506106d5611576565b6040516106e29190612b82565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d9190612bf0565b61157c565b60405161071f9190612b82565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a91906129c3565b6115c5565b005b34801561075d57600080fd5b5061077860048036038101906107739190612bf0565b6115e5565b6040516107859190612b82565b60405180910390f35b34801561079a57600080fd5b506107a361169d565b6040516107b09190612a89565b60405180910390f35b3480156107c557600080fd5b506107ce61172f565b005b3480156107dc57600080fd5b506107e5611743565b6040516107f29190612b82565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d91906129c3565b61174d565b005b34801561083057600080fd5b5061084b60048036038101906108469190612bf0565b61175f565b60405161085891906128d9565b60405180910390f35b34801561086d57600080fd5b506108766117b5565b6040516108839190612aec565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae91906129c3565b6117df565b005b3480156108c157600080fd5b506108ca6117f1565b6040516108d79190612a89565b60405180910390f35b3480156108ec57600080fd5b506108f5611883565b6040516109029190612b82565b60405180910390f35b34801561091757600080fd5b5061092061188d565b60405161092d9190612b82565b60405180910390f35b610950600480360381019061094b91906129c3565b611897565b005b34801561095e57600080fd5b5061097960048036038101906109749190612dc7565b611aca565b005b34801561098757600080fd5b50610990611c41565b60405161099d9190612b82565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190612e67565b611c47565b005b3480156109db57600080fd5b506109f660048036038101906109f191906129c3565b611cf2565b005b348015610a0457600080fd5b50610a1f6004803603810190610a1a9190612f55565b611d04565b005b348015610a2d57600080fd5b50610a486004803603810190610a439190612bf0565b611d77565b604051610a559190612b82565b60405180910390f35b348015610a6a57600080fd5b50610a856004803603810190610a8091906129c3565b611dc0565b604051610a929190612a89565b60405180910390f35b348015610aa757600080fd5b50610ab0611e67565b604051610abd9190612b82565b60405180910390f35b348015610ad257600080fd5b50610adb611e71565b604051610ae89190612b82565b60405180910390f35b348015610afd57600080fd5b50610b186004803603810190610b139190612fd8565b611e77565b604051610b2591906128d9565b60405180910390f35b348015610b3a57600080fd5b50610b556004803603810190610b509190612bf0565b611f0b565b005b601060019054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bc557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf55750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c3457600080fd5b601060009054906101000a900460ff16610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613064565b60405180910390fd5b610c8c3361175f565b610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc2906130d0565b60405180910390fd5b600d5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d19919061311f565b1115610d51576040517fa049dfc700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481610d5d611f8e565b610d67919061311f565b1115610d9f576040517f800113cb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dee919061311f565b92505081905550610dff3382611fa1565b50565b606060028054610e11906131a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3d906131a4565b8015610e8a5780601f10610e5f57610100808354040283529160200191610e8a565b820191906000526020600020905b815481529060010190602001808311610e6d57829003601f168201915b5050505050905090565b6000610e9f82612173565b610ed5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f1b82611564565b90508073ffffffffffffffffffffffffffffffffffffffff16610f3c6121d2565b73ffffffffffffffffffffffffffffffffffffffff1614610f9f57610f6881610f636121d2565b611e77565b610f9e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061105b611f8e565b905090565b6000600b54905090565b60006110746121da565b6001546000540303905090565b6110896121e3565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b60006110c082612261565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611127576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806111338461232d565b9150915061114981876111446121d2565b61234f565b6111955761115e866111596121d2565b611e77565b611194576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036111fb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112088686866001612393565b801561121357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112e1856112bd888887612399565b7c0200000000000000000000000000000000000000000000000000000000176123c1565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036113675760006001850190506000600460008381526020019081526020016000205403611365576000548114611364578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113cf86868660016123ec565b505050505050565b600b5481565b6113e56121e3565b600a5481106113f357600080fd5b80600a8190555050565b6114056121e3565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561144b573d6000803e3d6000fd5b50565b6114566121e3565b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b61148a6121e3565b6009546005611497611f8e565b6114a1919061311f565b11156114d9576040517f800113cb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114e4816005611fa1565b50565b61150283838360405180602001604052806000815250611d04565b505050565b600d5481565b6000600954905090565b600a5481565b601060009054906101000a900460ff1681565b6115386121e3565b80600f908051906020019061154e92919061281b565b5050565b61155a6121e3565b80600e8190555050565b600061156f82612261565b9050919050565b600c5481565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115cd6121e3565b60095481106115db57600080fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361164c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6060600f80546116ac906131a4565b80601f01602080910402602001604051908101604052809291908181526020018280546116d8906131a4565b80156117255780601f106116fa57610100808354040283529160200191611725565b820191906000526020600020905b81548152906001019060200180831161170857829003601f168201915b5050505050905090565b6117376121e3565b61174160006123f2565b565b6000600e54905090565b6117556121e3565b80600b8190555050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117e76121e3565b80600c8190555050565b606060038054611800906131a4565b80601f016020809104026020016040519081016040528092919081815260200182805461182c906131a4565b80156118795780601f1061184e57610100808354040283529160200191611879565b820191906000526020600020905b81548152906001019060200180831161185c57829003601f168201915b5050505050905090565b6000600c54905090565b6000600d54905090565b6000600c5490506000600b54836118ac611f8e565b6118b6919061311f565b111590503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118f257600080fd5b601060019054906101000a900460ff16611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890613221565b60405180910390fd5b600e5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461198f919061311f565b11156119c7576040517fa049dfc700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600954836119d3611f8e565b6119dd919061311f565b1115611a15576040517f800113cb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015611a2057600091505b8282611a2c9190613241565b341015611a65576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab4919061311f565b92505081905550611ac53384611fa1565b505050565b611ad26121d2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b36576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b436121d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bf06121d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c3591906128d9565b60405180910390a35050565b600e5481565b611c4f6121e3565b60005b82829050811015611ced57600160136000858585818110611c7657611c7561329b565b5b9050602002016020810190611c8b9190612bf0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080611ce6906132ca565b9050611c52565b505050565b611cfa6121e3565b80600d8190555050565b611d0f8484846110b5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d7157611d3a848484846124b8565b611d70576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060611dcb82612173565b611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0190613384565b60405180910390fd5b6000611e14612608565b90506000815111611e345760405180602001604052806000815250611e5f565b80611e3e8461269a565b604051602001611e4f92919061342c565b6040516020818303038152906040525b915050919050565b6000600a54905090565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f136121e3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f79906134cd565b60405180910390fd5b611f8b816123f2565b50565b6000611f986121da565b60005403905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361200d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612047576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120546000848385612393565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120cb836120bc6000866000612399565b6120c5856127fa565b176123c1565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106120ef5780600081905550505061216e60008483856123ec565b505050565b60008161217e6121da565b1115801561218d575060005482105b80156121cb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6121eb61280a565b73ffffffffffffffffffffffffffffffffffffffff166122096117b5565b73ffffffffffffffffffffffffffffffffffffffff161461225f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225690613539565b60405180910390fd5b565b600080829050806122706121da565b116122f6576000548110156122f55760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036122f3575b600081036122e95760046000836001900393508381526020019081526020016000205490506122bf565b8092505050612328565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123b0868684612812565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124de6121d2565b8786866040518563ffffffff1660e01b815260040161250094939291906135ae565b6020604051808303816000875af192505050801561253c57506040513d601f19601f82011682018060405250810190612539919061360f565b60015b6125b5573d806000811461256c576040519150601f19603f3d011682016040523d82523d6000602084013e612571565b606091505b5060008151036125ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612617906131a4565b80601f0160208091040260200160405190810160405280929190818152602001828054612643906131a4565b80156126905780601f1061266557610100808354040283529160200191612690565b820191906000526020600020905b81548152906001019060200180831161267357829003601f168201915b5050505050905090565b6060600082036126e1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127f5565b600082905060005b600082146127135780806126fc906132ca565b915050600a8261270c919061366b565b91506126e9565b60008167ffffffffffffffff81111561272f5761272e612c27565b5b6040519080825280601f01601f1916602001820160405280156127615781602001600182028036833780820191505090505b5090505b600085146127ee5760018261277a919061369c565b9150600a8561278991906136d0565b6030612795919061311f565b60f81b8183815181106127ab576127aa61329b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127e7919061366b565b9450612765565b8093505050505b919050565b60006001821460e11b9050919050565b600033905090565b60009392505050565b828054612827906131a4565b90600052602060002090601f0160209004810192826128495760008555612890565b82601f1061286257805160ff1916838001178555612890565b82800160010185558215612890579182015b8281111561288f578251825591602001919060010190612874565b5b50905061289d91906128a1565b5090565b5b808211156128ba5760008160009055506001016128a2565b5090565b60008115159050919050565b6128d3816128be565b82525050565b60006020820190506128ee60008301846128ca565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61293d81612908565b811461294857600080fd5b50565b60008135905061295a81612934565b92915050565b600060208284031215612976576129756128fe565b5b60006129848482850161294b565b91505092915050565b6000819050919050565b6129a08161298d565b81146129ab57600080fd5b50565b6000813590506129bd81612997565b92915050565b6000602082840312156129d9576129d86128fe565b5b60006129e7848285016129ae565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a2a578082015181840152602081019050612a0f565b83811115612a39576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a5b826129f0565b612a6581856129fb565b9350612a75818560208601612a0c565b612a7e81612a3f565b840191505092915050565b60006020820190508181036000830152612aa38184612a50565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ad682612aab565b9050919050565b612ae681612acb565b82525050565b6000602082019050612b016000830184612add565b92915050565b612b1081612acb565b8114612b1b57600080fd5b50565b600081359050612b2d81612b07565b92915050565b60008060408385031215612b4a57612b496128fe565b5b6000612b5885828601612b1e565b9250506020612b69858286016129ae565b9150509250929050565b612b7c8161298d565b82525050565b6000602082019050612b976000830184612b73565b92915050565b600080600060608486031215612bb657612bb56128fe565b5b6000612bc486828701612b1e565b9350506020612bd586828701612b1e565b9250506040612be6868287016129ae565b9150509250925092565b600060208284031215612c0657612c056128fe565b5b6000612c1484828501612b1e565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c5f82612a3f565b810181811067ffffffffffffffff82111715612c7e57612c7d612c27565b5b80604052505050565b6000612c916128f4565b9050612c9d8282612c56565b919050565b600067ffffffffffffffff821115612cbd57612cbc612c27565b5b612cc682612a3f565b9050602081019050919050565b82818337600083830152505050565b6000612cf5612cf084612ca2565b612c87565b905082815260208101848484011115612d1157612d10612c22565b5b612d1c848285612cd3565b509392505050565b600082601f830112612d3957612d38612c1d565b5b8135612d49848260208601612ce2565b91505092915050565b600060208284031215612d6857612d676128fe565b5b600082013567ffffffffffffffff811115612d8657612d85612903565b5b612d9284828501612d24565b91505092915050565b612da4816128be565b8114612daf57600080fd5b50565b600081359050612dc181612d9b565b92915050565b60008060408385031215612dde57612ddd6128fe565b5b6000612dec85828601612b1e565b9250506020612dfd85828601612db2565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612e2757612e26612c1d565b5b8235905067ffffffffffffffff811115612e4457612e43612e07565b5b602083019150836020820283011115612e6057612e5f612e0c565b5b9250929050565b60008060208385031215612e7e57612e7d6128fe565b5b600083013567ffffffffffffffff811115612e9c57612e9b612903565b5b612ea885828601612e11565b92509250509250929050565b600067ffffffffffffffff821115612ecf57612ece612c27565b5b612ed882612a3f565b9050602081019050919050565b6000612ef8612ef384612eb4565b612c87565b905082815260208101848484011115612f1457612f13612c22565b5b612f1f848285612cd3565b509392505050565b600082601f830112612f3c57612f3b612c1d565b5b8135612f4c848260208601612ee5565b91505092915050565b60008060008060808587031215612f6f57612f6e6128fe565b5b6000612f7d87828801612b1e565b9450506020612f8e87828801612b1e565b9350506040612f9f878288016129ae565b925050606085013567ffffffffffffffff811115612fc057612fbf612903565b5b612fcc87828801612f27565b91505092959194509250565b60008060408385031215612fef57612fee6128fe565b5b6000612ffd85828601612b1e565b925050602061300e85828601612b1e565b9150509250929050565b7f57686974656c697374206d696e74206e6f7420656e61626c6564207965740000600082015250565b600061304e601e836129fb565b915061305982613018565b602082019050919050565b6000602082019050818103600083015261307d81613041565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b60006130ba600f836129fb565b91506130c582613084565b602082019050919050565b600060208201905081810360008301526130e9816130ad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061312a8261298d565b91506131358361298d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561316a576131696130f0565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131bc57607f821691505b6020821081036131cf576131ce613175565b5b50919050565b7f7075626c6963206d696e74206e6f7420656e61626c6564207965740000000000600082015250565b600061320b601b836129fb565b9150613216826131d5565b602082019050919050565b6000602082019050818103600083015261323a816131fe565b9050919050565b600061324c8261298d565b91506132578361298d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132905761328f6130f0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006132d58261298d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613307576133066130f0565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061336e602f836129fb565b915061337982613312565b604082019050919050565b6000602082019050818103600083015261339d81613361565b9050919050565b600081905092915050565b60006133ba826129f0565b6133c481856133a4565b93506133d4818560208601612a0c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134166005836133a4565b9150613421826133e0565b600582019050919050565b600061343882856133af565b915061344482846133af565b915061344f82613409565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134b76026836129fb565b91506134c28261345b565b604082019050919050565b600060208201905081810360008301526134e6816134aa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135236020836129fb565b915061352e826134ed565b602082019050919050565b6000602082019050818103600083015261355281613516565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061358082613559565b61358a8185613564565b935061359a818560208601612a0c565b6135a381612a3f565b840191505092915050565b60006080820190506135c36000830187612add565b6135d06020830186612add565b6135dd6040830185612b73565b81810360608301526135ef8184613575565b905095945050505050565b60008151905061360981612934565b92915050565b600060208284031215613625576136246128fe565b5b6000613633848285016135fa565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136768261298d565b91506136818361298d565b9250826136915761369061363c565b5b828204905092915050565b60006136a78261298d565b91506136b28361298d565b9250828210156136c5576136c46130f0565b5b828203905092915050565b60006136db8261298d565b91506136e68361298d565b9250826136f6576136f561363c565b5b82820690509291505056fea264697066735822122097d1b273c144da5c7873a2d669647e2e3cc3e2a418e27ad13ada3efb1aa53a3f64736f6c634300080e0033
Deployed Bytecode Sourcemap
51595:5696:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52090:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20682:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53040:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26329:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28275:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27823:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56435:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55412:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19736:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53953:110;;;;;;;;;;;;;:::i;:::-;;37540:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51846:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54865:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54071:109;;;;;;;;;;;;;:::i;:::-;;53837:108;;;;;;;;;;;;;:::i;:::-;;53542:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29165:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51935:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55614:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51807:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52049:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55264:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55160:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26118:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51888:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56137:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54689:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21361:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56036:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;55929:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54461:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54585:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26498:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55519:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55816:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52375:657;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28551:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51977:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54188:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55050:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29421:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56266:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56785:503;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55713:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51769:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28930:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52090:31;;;;;;;;;;;;;:::o;20682:615::-;20767:4;21082:10;21067:25;;:11;:25;;;;:102;;;;21159:10;21144:25;;:11;:25;;;;21067:102;:179;;;;21236:10;21221:25;;:11;:25;;;;21067:179;21047:199;;20682:615;;;:::o;53040:494::-;53118:9;53104:23;;:10;:23;;;53096:32;;;;;;53147:22;;;;;;;;;;;53139:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53223:19;53231:10;53223:7;:19::i;:::-;53215:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;53315:16;;53309:3;53277:17;:29;53295:10;53277:29;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:54;53273:99;;;53353:19;;;;;;;;;;;;;;53273:99;53410:11;;53404:3;53387:14;:12;:14::i;:::-;:20;;;;:::i;:::-;:34;53383:61;;;53430:14;;;;;;;;;;;;;;53383:61;53490:3;53457:17;:29;53475:10;53457:29;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;53504:22;53510:10;53522:3;53504:5;:22::i;:::-;53040:494;:::o;26329:100::-;26383:13;26416:5;26409:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26329:100;:::o;28275:204::-;28343:7;28368:16;28376:7;28368;:16::i;:::-;28363:64;;28393:34;;;;;;;;;;;;;;28363:64;28447:15;:24;28463:7;28447:24;;;;;;;;;;;;;;;;;;;;;28440:31;;28275:204;;;:::o;27823:386::-;27896:13;27912:16;27920:7;27912;:16::i;:::-;27896:32;;27968:5;27945:28;;:19;:17;:19::i;:::-;:28;;;27941:175;;27993:44;28010:5;28017:19;:17;:19::i;:::-;27993:16;:44::i;:::-;27988:128;;28065:35;;;;;;;;;;;;;;27988:128;27941:175;28155:2;28128:15;:24;28144:7;28128:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28193:7;28189:2;28173:28;;28182:5;28173:28;;;;;;;;;;;;27885:324;27823:386;;:::o;56435:96::-;56482:7;56509:14;:12;:14::i;:::-;56502:21;;56435:96;:::o;55412:99::-;55463:7;55490:13;;55483:20;;55412:99;:::o;19736:315::-;19789:7;20017:15;:13;:15::i;:::-;20002:12;;19986:13;;:28;:46;19979:53;;19736:315;:::o;53953:110::-;4511:13;:11;:13::i;:::-;54033:22:::1;;;;;;;;;;;54032:23;54007:22;;:48;;;;;;;;;;;;;;;;;;53953:110::o:0;37540:2800::-;37674:27;37704;37723:7;37704:18;:27::i;:::-;37674:57;;37789:4;37748:45;;37764:19;37748:45;;;37744:86;;37802:28;;;;;;;;;;;;;;37744:86;37844:27;37873:23;37900:28;37920:7;37900:19;:28::i;:::-;37843:85;;;;38028:62;38047:15;38064:4;38070:19;:17;:19::i;:::-;38028:18;:62::i;:::-;38023:174;;38110:43;38127:4;38133:19;:17;:19::i;:::-;38110:16;:43::i;:::-;38105:92;;38162:35;;;;;;;;;;;;;;38105:92;38023:174;38228:1;38214:16;;:2;:16;;;38210:52;;38239:23;;;;;;;;;;;;;;38210:52;38275:43;38297:4;38303:2;38307:7;38316:1;38275:21;:43::i;:::-;38411:15;38408:160;;;38551:1;38530:19;38523:30;38408:160;38946:18;:24;38965:4;38946:24;;;;;;;;;;;;;;;;38944:26;;;;;;;;;;;;39015:18;:22;39034:2;39015:22;;;;;;;;;;;;;;;;39013:24;;;;;;;;;;;39337:145;39374:2;39422:45;39437:4;39443:2;39447:19;39422:14;:45::i;:::-;16964:8;39395:72;39337:18;:145::i;:::-;39308:17;:26;39326:7;39308:26;;;;;;;;;;;:174;;;;39652:1;16964:8;39602:19;:46;:51;39598:626;;39674:19;39706:1;39696:7;:11;39674:33;;39863:1;39829:17;:30;39847:11;39829:30;;;;;;;;;;;;:35;39825:384;;39967:13;;39952:11;:28;39948:242;;40147:19;40114:17;:30;40132:11;40114:30;;;;;;;;;;;:52;;;;39948:242;39825:384;39655:569;39598:626;40271:7;40267:2;40252:27;;40261:4;40252:27;;;;;;;;;;;;40290:42;40311:4;40317:2;40321:7;40330:1;40290:20;:42::i;:::-;37663:2677;;;37540:2800;;;:::o;51846:35::-;;;;:::o;54865:177::-;4511:13;:11;:13::i;:::-;54961:11:::1;;54946:12;:26;54938:35;;;::::0;::::1;;55022:12;55008:11;:26;;;;54865:177:::0;:::o;54071:109::-;4511:13;:11;:13::i;:::-;54129:10:::1;54121:28;;:51;54150:21;54121:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;54071:109::o:0;53837:108::-;4511:13;:11;:13::i;:::-;53918:19:::1;;;;;;;;;;;53917:20;53895:19;;:42;;;;;;;;;;;;;;;;;;53837:108::o:0;53542:163::-;4511:13;:11;:13::i;:::-;53633:9:::1;;53629:1;53612:14;:12;:14::i;:::-;:18;;;;:::i;:::-;:30;53608:57;;;53651:14;;;;;;;;;;;;;;53608:57;53678:19;53684:9;53695:1;53678:5;:19::i;:::-;53542:163:::0;:::o;29165:185::-;29303:39;29320:4;29326:2;29330:7;29303:39;;;;;;;;;;;;:16;:39::i;:::-;29165:185;;;:::o;51935:35::-;;;;:::o;55614:91::-;55661:7;55688:9;;55681:16;;55614:91;:::o;51807:32::-;;;;:::o;52049:34::-;;;;;;;;;;;;;:::o;55264:106::-;4511:13;:11;:13::i;:::-;55351:11:::1;55341:7;:21;;;;;;;;;;;;:::i;:::-;;55264:106:::0;:::o;55160:96::-;4511:13;:11;:13::i;:::-;55245:3:::1;55229:13;:19;;;;55160:96:::0;:::o;26118:144::-;26182:7;26225:27;26244:7;26225:18;:27::i;:::-;26202:52;;26118:144;;;:::o;51888:38::-;;;;:::o;56137:121::-;56201:7;56228:17;:22;56246:3;56228:22;;;;;;;;;;;;;;;;56221:29;;56137:121;;;:::o;54689:168::-;4511:13;:11;:13::i;:::-;54782:9:::1;;54769:10;:22;54761:31;;;::::0;::::1;;54839:10;54827:9;:22;;;;54689:168:::0;:::o;21361:224::-;21425:7;21466:1;21449:19;;:5;:19;;;21445:60;;21477:28;;;;;;;;;;;;;;21445:60;15916:13;21523:18;:25;21542:5;21523:25;;;;;;;;;;;;;;;;:54;21516:61;;21361:224;;;:::o;56036:93::-;56081:13;56114:7;56107:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56036:93;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;55929:99::-;55980:7;56007:13;;56000:20;;55929:99;:::o;54461:116::-;4511:13;:11;:13::i;:::-;54556::::1;54540;:29;;;;54461:116:::0;:::o;53713:::-;53769:4;53793:18;:28;53812:8;53793:28;;;;;;;;;;;;;;;;;;;;;;;;;53786:35;;53713:116;;;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;54585:96::-;4511:13;:11;:13::i;:::-;54664:9:::1;54652;:21;;;;54585:96:::0;:::o;26498:104::-;26554:13;26587:7;26580:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26498:104;:::o;55519:87::-;55562:7;55589:9;;55582:16;;55519:87;:::o;55816:105::-;55870:7;55897:16;;55890:23;;55816:105;:::o;52375:657::-;52430:12;52445:9;;52430:24;;52465:11;52504:13;;52497:3;52480:14;:12;:14::i;:::-;:20;;;;:::i;:::-;:37;;52465:53;;52553:9;52539:23;;:10;:23;;;52531:32;;;;;;52582:19;;;;;;;;;;;52574:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;52690:13;;52684:3;52648:21;:33;52670:10;52648:33;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:55;52644:100;;;52725:19;;;;;;;;;;;;;;52644:100;52782:9;;52776:3;52759:14;:12;:14::i;:::-;:20;;;;:::i;:::-;:32;52755:59;;;52800:14;;;;;;;;;;;;;;52755:59;52831:6;52827:47;;;52861:1;52854:8;;52827:47;52909:3;52902:4;:10;;;;:::i;:::-;52890:9;:22;52886:54;;;52921:19;;;;;;;;;;;;;;52886:54;52988:3;52951:21;:33;52973:10;52951:33;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;53002:22;53008:10;53020:3;53002:5;:22::i;:::-;52419:613;;52375:657;:::o;28551:308::-;28662:19;:17;:19::i;:::-;28650:31;;:8;:31;;;28646:61;;28690:17;;;;;;;;;;;;;;28646:61;28772:8;28720:18;:39;28739:19;:17;:19::i;:::-;28720:39;;;;;;;;;;;;;;;:49;28760:8;28720:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28832:8;28796:55;;28811:19;:17;:19::i;:::-;28796:55;;;28842:8;28796:55;;;;;;:::i;:::-;;;;;;;;28551:308;;:::o;51977:32::-;;;;:::o;54188:231::-;4511:13;:11;:13::i;:::-;54308:9:::1;54303:109;54327:7;;:14;;54323:1;:18;54303:109;;;54396:4;54363:18;:30;54382:7;;54390:1;54382:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;54363:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;54343:3;;;;:::i;:::-;;;54303:109;;;;54188:231:::0;;:::o;55050:102::-;4511:13;:11;:13::i;:::-;55141:3:::1;55122:16;:22;;;;55050:102:::0;:::o;29421:399::-;29588:31;29601:4;29607:2;29611:7;29588:12;:31::i;:::-;29652:1;29634:2;:14;;;:19;29630:183;;29673:56;29704:4;29710:2;29714:7;29723:5;29673:30;:56::i;:::-;29668:145;;29757:40;;;;;;;;;;;;;;29668:145;29630:183;29421:399;;;;:::o;56266:161::-;56361:7;56393:21;:26;56415:3;56393:26;;;;;;;;;;;;;;;;56386:33;;56266:161;;;:::o;56785:503::-;56886:13;56939:16;56947:7;56939;:16::i;:::-;56917:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;57043:22;57068:10;:8;:10::i;:::-;57043:35;;57134:1;57115:8;57109:22;:26;:171;;;;;;;;;;;;;;;;;57201:8;57211:18;:7;:16;:18::i;:::-;57184:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57109:171;57089:191;;;56785:503;;;:::o;55713:95::-;55762:7;55789:11;;55782:18;;55713:95;:::o;51769:31::-;;;;:::o;28930:164::-;29027:4;29051:18;:25;29070:5;29051:25;;;;;;;;;;;;;;;:35;29077:8;29051:35;;;;;;;;;;;;;;;;;;;;;;;;;29044:42;;28930:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;::::0;5612:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;20149:285::-;20196:7;20400:15;:13;:15::i;:::-;20384:13;;:31;20377:38;;20149:285;:::o;31906:1529::-;31971:20;31994:13;;31971:36;;32036:1;32022:16;;:2;:16;;;32018:48;;32047:19;;;;;;;;;;;;;;32018:48;32093:1;32081:8;:13;32077:44;;32103:18;;;;;;;;;;;;;;32077:44;32134:61;32164:1;32168:2;32172:12;32186:8;32134:21;:61::i;:::-;32677:1;16053:2;32648:1;:25;;32647:31;32635:8;:44;32609:18;:22;32628:2;32609:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;32956:139;32993:2;33047:33;33070:1;33074:2;33078:1;33047:14;:33::i;:::-;33014:30;33035:8;33014:20;:30::i;:::-;:66;32956:18;:139::i;:::-;32922:17;:31;32940:12;32922:31;;;;;;;;;;;:173;;;;33112:15;33130:12;33112:30;;33157:11;33186:8;33171:12;:23;33157:37;;33209:101;33261:9;;;;;;33257:2;33236:35;;33253:1;33236:35;;;;;;;;;;;;33305:3;33295:7;:13;33209:101;;33342:3;33326:13;:19;;;;32383:974;;33367:60;33396:1;33400:2;33404:12;33418:8;33367:20;:60::i;:::-;31960:1475;31906:1529;;:::o;30075:273::-;30132:4;30188:7;30169:15;:13;:15::i;:::-;:26;;:66;;;;;30222:13;;30212:7;:23;30169:66;:152;;;;;30320:1;16686:8;30273:17;:26;30291:7;30273:26;;;;;;;;;;;;:43;:48;30169:152;30149:172;;30075:273;;;:::o;48636:105::-;48696:7;48723:10;48716:17;;48636:105;:::o;56576:93::-;56633:7;56660:1;56653:8;;56576:93;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;23035:1129::-;23102:7;23122:12;23137:7;23122:22;;23205:4;23186:15;:13;:15::i;:::-;:23;23182:915;;23239:13;;23232:4;:20;23228:869;;;23277:14;23294:17;:23;23312:4;23294:23;;;;;;;;;;;;23277:40;;23410:1;16686:8;23383:6;:23;:28;23379:699;;23902:113;23919:1;23909:6;:11;23902:113;;23962:17;:25;23980:6;;;;;;;23962:25;;;;;;;;;;;;23953:34;;23902:113;;;24048:6;24041:13;;;;;;23379:699;23254:843;23228:869;23182:915;24125:31;;;;;;;;;;;;;;23035:1129;;;;:::o;35876:652::-;35971:27;36000:23;36041:53;36097:15;36041:71;;36283:7;36277:4;36270:21;36318:22;36312:4;36305:36;36394:4;36388;36378:21;36355:44;;36490:19;36484:26;36465:45;;36221:300;35876:652;;;:::o;36641:645::-;36783:11;36945:15;36939:4;36935:26;36927:34;;37104:15;37093:9;37089:31;37076:44;;37251:15;37240:9;37237:30;37230:4;37219:9;37216:19;37213:55;37203:65;;36641:645;;;;;:::o;47469:159::-;;;;;:::o;45781:309::-;45916:7;45936:16;17087:3;45962:19;:40;;45936:67;;17087:3;46029:31;46040:4;46046:2;46050:9;46029:10;:31::i;:::-;46021:40;;:61;;46014:68;;;45781:309;;;;;:::o;25609:447::-;25689:14;25857:15;25850:5;25846:27;25837:36;;26031:5;26017:11;25993:22;25989:40;25986:51;25979:5;25976:62;25966:72;;25609:447;;;;:::o;48287:158::-;;;;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;44291:716::-;44454:4;44500:2;44475:45;;;44521:19;:17;:19::i;:::-;44542:4;44548:7;44557:5;44475:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44471:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44775:1;44758:6;:13;:18;44754:235;;44804:40;;;;;;;;;;;;;;44754:235;44947:6;44941:13;44932:6;44928:2;44924:15;44917:38;44471:529;44644:54;;;44634:64;;;:6;:64;;;;44627:71;;;44291:716;;;;;;:::o;56677:100::-;56729:13;56762:7;56755:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56677:100;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;27439:322::-;27509:14;27740:1;27730:8;27727:15;27702:23;27698:45;27688:55;;27439:322;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;46666:147::-;46803:6;46666:147;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:90:1:-;41:7;84:5;77:13;70:21;59:32;;7:90;;;:::o;103:109::-;184:21;199:5;184:21;:::i;:::-;179:3;172:34;103:109;;:::o;218:210::-;305:4;343:2;332:9;328:18;320:26;;356:65;418:1;407:9;403:17;394:6;356:65;:::i;:::-;218:210;;;;:::o;434:75::-;467:6;500:2;494:9;484:19;;434:75;:::o;515:117::-;624:1;621;614:12;638:117;747:1;744;737:12;761:149;797:7;837:66;830:5;826:78;815:89;;761:149;;;:::o;916:120::-;988:23;1005:5;988:23;:::i;:::-;981:5;978:34;968:62;;1026:1;1023;1016:12;968:62;916:120;:::o;1042:137::-;1087:5;1125:6;1112:20;1103:29;;1141:32;1167:5;1141:32;:::i;:::-;1042:137;;;;:::o;1185:327::-;1243:6;1292:2;1280:9;1271:7;1267:23;1263:32;1260:119;;;1298:79;;:::i;:::-;1260:119;1418:1;1443:52;1487:7;1478:6;1467:9;1463:22;1443:52;:::i;:::-;1433:62;;1389:116;1185:327;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:329::-;1933:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:119;;;1988:79;;:::i;:::-;1950:119;2108:1;2133:53;2178:7;2169:6;2158:9;2154:22;2133:53;:::i;:::-;2123:63;;2079:117;1874:329;;;;:::o;2209:99::-;2261:6;2295:5;2289:12;2279:22;;2209:99;;;:::o;2314:169::-;2398:11;2432:6;2427:3;2420:19;2472:4;2467:3;2463:14;2448:29;;2314:169;;;;:::o;2489:307::-;2557:1;2567:113;2581:6;2578:1;2575:13;2567:113;;;2666:1;2661:3;2657:11;2651:18;2647:1;2642:3;2638:11;2631:39;2603:2;2600:1;2596:10;2591:15;;2567:113;;;2698:6;2695:1;2692:13;2689:101;;;2778:1;2769:6;2764:3;2760:16;2753:27;2689:101;2538:258;2489:307;;;:::o;2802:102::-;2843:6;2894:2;2890:7;2885:2;2878:5;2874:14;2870:28;2860:38;;2802:102;;;:::o;2910:364::-;2998:3;3026:39;3059:5;3026:39;:::i;:::-;3081:71;3145:6;3140:3;3081:71;:::i;:::-;3074:78;;3161:52;3206:6;3201:3;3194:4;3187:5;3183:16;3161:52;:::i;:::-;3238:29;3260:6;3238:29;:::i;:::-;3233:3;3229:39;3222:46;;3002:272;2910:364;;;;:::o;3280:313::-;3393:4;3431:2;3420:9;3416:18;3408:26;;3480:9;3474:4;3470:20;3466:1;3455:9;3451:17;3444:47;3508:78;3581:4;3572:6;3508:78;:::i;:::-;3500:86;;3280:313;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:117::-;9715:1;9712;9705:12;9729:117;9838:1;9835;9828:12;9869:568;9942:8;9952:6;10002:3;9995:4;9987:6;9983:17;9979:27;9969:122;;10010:79;;:::i;:::-;9969:122;10123:6;10110:20;10100:30;;10153:18;10145:6;10142:30;10139:117;;;10175:79;;:::i;:::-;10139:117;10289:4;10281:6;10277:17;10265:29;;10343:3;10335:4;10327:6;10323:17;10313:8;10309:32;10306:41;10303:128;;;10350:79;;:::i;:::-;10303:128;9869:568;;;;;:::o;10443:559::-;10529:6;10537;10586:2;10574:9;10565:7;10561:23;10557:32;10554:119;;;10592:79;;:::i;:::-;10554:119;10740:1;10729:9;10725:17;10712:31;10770:18;10762:6;10759:30;10756:117;;;10792:79;;:::i;:::-;10756:117;10905:80;10977:7;10968:6;10957:9;10953:22;10905:80;:::i;:::-;10887:98;;;;10683:312;10443:559;;;;;:::o;11008:307::-;11069:4;11159:18;11151:6;11148:30;11145:56;;;11181:18;;:::i;:::-;11145:56;11219:29;11241:6;11219:29;:::i;:::-;11211:37;;11303:4;11297;11293:15;11285:23;;11008:307;;;:::o;11321:410::-;11398:5;11423:65;11439:48;11480:6;11439:48;:::i;:::-;11423:65;:::i;:::-;11414:74;;11511:6;11504:5;11497:21;11549:4;11542:5;11538:16;11587:3;11578:6;11573:3;11569:16;11566:25;11563:112;;;11594:79;;:::i;:::-;11563:112;11684:41;11718:6;11713:3;11708;11684:41;:::i;:::-;11404:327;11321:410;;;;;:::o;11750:338::-;11805:5;11854:3;11847:4;11839:6;11835:17;11831:27;11821:122;;11862:79;;:::i;:::-;11821:122;11979:6;11966:20;12004:78;12078:3;12070:6;12063:4;12055:6;12051:17;12004:78;:::i;:::-;11995:87;;11811:277;11750:338;;;;:::o;12094:943::-;12189:6;12197;12205;12213;12262:3;12250:9;12241:7;12237:23;12233:33;12230:120;;;12269:79;;:::i;:::-;12230:120;12389:1;12414:53;12459:7;12450:6;12439:9;12435:22;12414:53;:::i;:::-;12404:63;;12360:117;12516:2;12542:53;12587:7;12578:6;12567:9;12563:22;12542:53;:::i;:::-;12532:63;;12487:118;12644:2;12670:53;12715:7;12706:6;12695:9;12691:22;12670:53;:::i;:::-;12660:63;;12615:118;12800:2;12789:9;12785:18;12772:32;12831:18;12823:6;12820:30;12817:117;;;12853:79;;:::i;:::-;12817:117;12958:62;13012:7;13003:6;12992:9;12988:22;12958:62;:::i;:::-;12948:72;;12743:287;12094:943;;;;;;;:::o;13043:474::-;13111:6;13119;13168:2;13156:9;13147:7;13143:23;13139:32;13136:119;;;13174:79;;:::i;:::-;13136:119;13294:1;13319:53;13364:7;13355:6;13344:9;13340:22;13319:53;:::i;:::-;13309:63;;13265:117;13421:2;13447:53;13492:7;13483:6;13472:9;13468:22;13447:53;:::i;:::-;13437:63;;13392:118;13043:474;;;;;:::o;13523:180::-;13663:32;13659:1;13651:6;13647:14;13640:56;13523:180;:::o;13709:366::-;13851:3;13872:67;13936:2;13931:3;13872:67;:::i;:::-;13865:74;;13948:93;14037:3;13948:93;:::i;:::-;14066:2;14061:3;14057:12;14050:19;;13709:366;;;:::o;14081:419::-;14247:4;14285:2;14274:9;14270:18;14262:26;;14334:9;14328:4;14324:20;14320:1;14309:9;14305:17;14298:47;14362:131;14488:4;14362:131;:::i;:::-;14354:139;;14081:419;;;:::o;14506:165::-;14646:17;14642:1;14634:6;14630:14;14623:41;14506:165;:::o;14677:366::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:419::-;15215:4;15253:2;15242:9;15238:18;15230:26;;15302:9;15296:4;15292:20;15288:1;15277:9;15273:17;15266:47;15330:131;15456:4;15330:131;:::i;:::-;15322:139;;15049:419;;;:::o;15474:180::-;15522:77;15519:1;15512:88;15619:4;15616:1;15609:15;15643:4;15640:1;15633:15;15660:305;15700:3;15719:20;15737:1;15719:20;:::i;:::-;15714:25;;15753:20;15771:1;15753:20;:::i;:::-;15748:25;;15907:1;15839:66;15835:74;15832:1;15829:81;15826:107;;;15913:18;;:::i;:::-;15826:107;15957:1;15954;15950:9;15943:16;;15660:305;;;;:::o;15971:180::-;16019:77;16016:1;16009:88;16116:4;16113:1;16106:15;16140:4;16137:1;16130:15;16157:320;16201:6;16238:1;16232:4;16228:12;16218:22;;16285:1;16279:4;16275:12;16306:18;16296:81;;16362:4;16354:6;16350:17;16340:27;;16296:81;16424:2;16416:6;16413:14;16393:18;16390:38;16387:84;;16443:18;;:::i;:::-;16387:84;16208:269;16157:320;;;:::o;16483:177::-;16623:29;16619:1;16611:6;16607:14;16600:53;16483:177;:::o;16666:366::-;16808:3;16829:67;16893:2;16888:3;16829:67;:::i;:::-;16822:74;;16905:93;16994:3;16905:93;:::i;:::-;17023:2;17018:3;17014:12;17007:19;;16666:366;;;:::o;17038:419::-;17204:4;17242:2;17231:9;17227:18;17219:26;;17291:9;17285:4;17281:20;17277:1;17266:9;17262:17;17255:47;17319:131;17445:4;17319:131;:::i;:::-;17311:139;;17038:419;;;:::o;17463:348::-;17503:7;17526:20;17544:1;17526:20;:::i;:::-;17521:25;;17560:20;17578:1;17560:20;:::i;:::-;17555:25;;17748:1;17680:66;17676:74;17673:1;17670:81;17665:1;17658:9;17651:17;17647:105;17644:131;;;17755:18;;:::i;:::-;17644:131;17803:1;17800;17796:9;17785:20;;17463:348;;;;:::o;17817:180::-;17865:77;17862:1;17855:88;17962:4;17959:1;17952:15;17986:4;17983:1;17976:15;18003:233;18042:3;18065:24;18083:5;18065:24;:::i;:::-;18056:33;;18111:66;18104:5;18101:77;18098:103;;18181:18;;:::i;:::-;18098:103;18228:1;18221:5;18217:13;18210:20;;18003:233;;;:::o;18242:234::-;18382:34;18378:1;18370:6;18366:14;18359:58;18451:17;18446:2;18438:6;18434:15;18427:42;18242:234;:::o;18482:366::-;18624:3;18645:67;18709:2;18704:3;18645:67;:::i;:::-;18638:74;;18721:93;18810:3;18721:93;:::i;:::-;18839:2;18834:3;18830:12;18823:19;;18482:366;;;:::o;18854:419::-;19020:4;19058:2;19047:9;19043:18;19035:26;;19107:9;19101:4;19097:20;19093:1;19082:9;19078:17;19071:47;19135:131;19261:4;19135:131;:::i;:::-;19127:139;;18854:419;;;:::o;19279:148::-;19381:11;19418:3;19403:18;;19279:148;;;;:::o;19433:377::-;19539:3;19567:39;19600:5;19567:39;:::i;:::-;19622:89;19704:6;19699:3;19622:89;:::i;:::-;19615:96;;19720:52;19765:6;19760:3;19753:4;19746:5;19742:16;19720:52;:::i;:::-;19797:6;19792:3;19788:16;19781:23;;19543:267;19433:377;;;;:::o;19816:155::-;19956:7;19952:1;19944:6;19940:14;19933:31;19816:155;:::o;19977:400::-;20137:3;20158:84;20240:1;20235:3;20158:84;:::i;:::-;20151:91;;20251:93;20340:3;20251:93;:::i;:::-;20369:1;20364:3;20360:11;20353:18;;19977:400;;;:::o;20383:701::-;20664:3;20686:95;20777:3;20768:6;20686:95;:::i;:::-;20679:102;;20798:95;20889:3;20880:6;20798:95;:::i;:::-;20791:102;;20910:148;21054:3;20910:148;:::i;:::-;20903:155;;21075:3;21068:10;;20383:701;;;;;:::o;21090:225::-;21230:34;21226:1;21218:6;21214:14;21207:58;21299:8;21294:2;21286:6;21282:15;21275:33;21090:225;:::o;21321:366::-;21463:3;21484:67;21548:2;21543:3;21484:67;:::i;:::-;21477:74;;21560:93;21649:3;21560:93;:::i;:::-;21678:2;21673:3;21669:12;21662:19;;21321:366;;;:::o;21693:419::-;21859:4;21897:2;21886:9;21882:18;21874:26;;21946:9;21940:4;21936:20;21932:1;21921:9;21917:17;21910:47;21974:131;22100:4;21974:131;:::i;:::-;21966:139;;21693:419;;;:::o;22118:182::-;22258:34;22254:1;22246:6;22242:14;22235:58;22118:182;:::o;22306:366::-;22448:3;22469:67;22533:2;22528:3;22469:67;:::i;:::-;22462:74;;22545:93;22634:3;22545:93;:::i;:::-;22663:2;22658:3;22654:12;22647:19;;22306:366;;;:::o;22678:419::-;22844:4;22882:2;22871:9;22867:18;22859:26;;22931:9;22925:4;22921:20;22917:1;22906:9;22902:17;22895:47;22959:131;23085:4;22959:131;:::i;:::-;22951:139;;22678:419;;;:::o;23103:98::-;23154:6;23188:5;23182:12;23172:22;;23103:98;;;:::o;23207:168::-;23290:11;23324:6;23319:3;23312:19;23364:4;23359:3;23355:14;23340:29;;23207:168;;;;:::o;23381:360::-;23467:3;23495:38;23527:5;23495:38;:::i;:::-;23549:70;23612:6;23607:3;23549:70;:::i;:::-;23542:77;;23628:52;23673:6;23668:3;23661:4;23654:5;23650:16;23628:52;:::i;:::-;23705:29;23727:6;23705:29;:::i;:::-;23700:3;23696:39;23689:46;;23471:270;23381:360;;;;:::o;23747:640::-;23942:4;23980:3;23969:9;23965:19;23957:27;;23994:71;24062:1;24051:9;24047:17;24038:6;23994:71;:::i;:::-;24075:72;24143:2;24132:9;24128:18;24119:6;24075:72;:::i;:::-;24157;24225:2;24214:9;24210:18;24201:6;24157:72;:::i;:::-;24276:9;24270:4;24266:20;24261:2;24250:9;24246:18;24239:48;24304:76;24375:4;24366:6;24304:76;:::i;:::-;24296:84;;23747:640;;;;;;;:::o;24393:141::-;24449:5;24480:6;24474:13;24465:22;;24496:32;24522:5;24496:32;:::i;:::-;24393:141;;;;:::o;24540:349::-;24609:6;24658:2;24646:9;24637:7;24633:23;24629:32;24626:119;;;24664:79;;:::i;:::-;24626:119;24784:1;24809:63;24864:7;24855:6;24844:9;24840:22;24809:63;:::i;:::-;24799:73;;24755:127;24540:349;;;;:::o;24895:180::-;24943:77;24940:1;24933:88;25040:4;25037:1;25030:15;25064:4;25061:1;25054:15;25081:185;25121:1;25138:20;25156:1;25138:20;:::i;:::-;25133:25;;25172:20;25190:1;25172:20;:::i;:::-;25167:25;;25211:1;25201:35;;25216:18;;:::i;:::-;25201:35;25258:1;25255;25251:9;25246:14;;25081:185;;;;:::o;25272:191::-;25312:4;25332:20;25350:1;25332:20;:::i;:::-;25327:25;;25366:20;25384:1;25366:20;:::i;:::-;25361:25;;25405:1;25402;25399:8;25396:34;;;25410:18;;:::i;:::-;25396:34;25455:1;25452;25448:9;25440:17;;25272:191;;;;:::o;25469:176::-;25501:1;25518:20;25536:1;25518:20;:::i;:::-;25513:25;;25552:20;25570:1;25552:20;:::i;:::-;25547:25;;25591:1;25581:35;;25596:18;;:::i;:::-;25581:35;25637:1;25634;25630:9;25625:14;;25469:176;;;;:::o
Swarm Source
ipfs://97d1b273c144da5c7873a2d669647e2e3cc3e2a418e27ad13ada3efb1aa53a3f
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.