ERC-721
Overview
Max Total Supply
3,574 MINT
Holders
3,290
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MINTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MintFailed
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-24 */ // 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.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/MintFailed.sol pragma solidity ^0.8.10; contract MintFailed is ERC721A, Ownable { uint256 public constant MAX_SUPPLY = 3574; uint256 public constant MAX_PER_TXN = 10; uint256 public MAX_FREE_PER_TXN = 1; uint256 public MAX_FREE_PER_WALLET = 1; uint256 public tokenPrice = 0.00497237 ether; bool public isSaleActive; string private _baseTokenURI; constructor() ERC721A("MintFailed", "MINT") { isSaleActive = false; } function setBaseURI(string memory newBaseURI) external onlyOwner { _baseTokenURI = newBaseURI; } function setMaxFree(uint256 quantity) external onlyOwner { require(quantity <= MAX_SUPPLY, "Exceeded max supply"); MAX_FREE_PER_TXN = quantity; MAX_FREE_PER_WALLET = quantity; } function toggleSaleActive() external onlyOwner { isSaleActive = !isSaleActive; } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function devMint(uint256 quantity) external onlyOwner { require(quantity + totalSupply() <= MAX_SUPPLY, "Exceeded max supply"); _safeMint(msg.sender, quantity); } function freeMint(uint256 quantity) external { require(isSaleActive, "Sale is not active"); require(quantity <= MAX_FREE_PER_TXN, "Exceeded max free mints per transaction"); require(quantity + balanceOf(msg.sender) <= MAX_FREE_PER_WALLET, "Exceeded max free mints per wallet"); require(quantity + totalSupply() <= MAX_SUPPLY, "Exceeded max supply"); _safeMint(msg.sender, quantity); } function paidMint(uint256 quantity) external payable { require(isSaleActive, "Sale is not active"); require(quantity <= MAX_PER_TXN, "Exceeded max mints per transaction"); require(quantity + totalSupply() <= MAX_SUPPLY, "Exceeded max supply"); require(tokenPrice * quantity <= msg.value, "Not enough ether sent"); _safeMint(msg.sender, quantity); } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Withdrawal failed"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"paidMint","outputs":[],"stateMutability":"payable","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":"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":"quantity","type":"uint256"}],"name":"setMaxFree","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":"toggleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260016009556001600a556611aa581b8ab400600b553480156200002657600080fd5b506040518060400160405280600a81526020017f4d696e744661696c6564000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d494e54000000000000000000000000000000000000000000000000000000008152508160029081620000a491906200045d565b508060039081620000b691906200045d565b50620000c76200011060201b60201c565b6000819055505050620000ef620000e36200011560201b60201c565b6200011d60201b60201c565b6000600c60006101000a81548160ff02191690831515021790555062000544565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200026557607f821691505b6020821081036200027b576200027a6200021d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002e57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002a6565b620002f18683620002a6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200033e62000338620003328462000309565b62000313565b62000309565b9050919050565b6000819050919050565b6200035a836200031d565b62000372620003698262000345565b848454620002b3565b825550505050565b600090565b620003896200037a565b620003968184846200034f565b505050565b5b81811015620003be57620003b26000826200037f565b6001810190506200039c565b5050565b601f8211156200040d57620003d78162000281565b620003e28462000296565b81016020851015620003f2578190505b6200040a620004018562000296565b8301826200039b565b50505b505050565b600082821c905092915050565b6000620004326000198460080262000412565b1980831691505092915050565b60006200044d83836200041f565b9150826002028217905092915050565b6200046882620001e3565b67ffffffffffffffff811115620004845762000483620001ee565b5b6200049082546200024c565b6200049d828285620003c2565b600060209050601f831160018114620004d55760008415620004c0578287015190505b620004cc85826200043f565b8655506200053c565b601f198416620004e58662000281565b60005b828110156200050f57848901518255600182019150602085019450602081019050620004e8565b868310156200052f57848901516200052b601f8916826200041f565b8355505b6001600288020188555050505b505050505050565b612f7480620005546000396000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461061d578063d755bf991461065a578063e985e9c514610683578063f2fde38b146106c0576101cd565b806395d89b411461057557806398710d1e146105a0578063a22cb465146105cb578063b88d4fde146105f4576101cd565b8063715018a6116100d1578063715018a6146104df5780637c928fe9146104f65780637ff9b5961461051f5780638da5cb5b1461054a576101cd565b80636352211e1461044957806365cde7331461048657806370a08231146104a2576101cd565b806332cb6b0c1161016f57806342842e0e1161013e57806342842e0e146103a157806351b96d92146103ca57806355f804b3146103f5578063564566a81461041e576101cd565b806332cb6b0c1461030b578063375a069a146103365780633bdd87451461035f5780633ccfd60b1461038a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780633100a535146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190611f7e565b6106e9565b6040516102069190611fc6565b60405180910390f35b34801561021b57600080fd5b5061022461077b565b6040516102319190612071565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906120c9565b61080d565b60405161026e9190612137565b60405180910390f35b34801561028357600080fd5b5061029e6004803603810190610299919061217e565b61088c565b005b3480156102ac57600080fd5b506102b56109d0565b6040516102c291906121cd565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed91906121e8565b6109e7565b005b34801561030057600080fd5b50610309610d09565b005b34801561031757600080fd5b50610320610d3d565b60405161032d91906121cd565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906120c9565b610d43565b005b34801561036b57600080fd5b50610374610daf565b60405161038191906121cd565b60405180910390f35b34801561039657600080fd5b5061039f610db5565b005b3480156103ad57600080fd5b506103c860048036038101906103c391906121e8565b610e6c565b005b3480156103d657600080fd5b506103df610e8c565b6040516103ec91906121cd565b60405180910390f35b34801561040157600080fd5b5061041c60048036038101906104179190612370565b610e91565b005b34801561042a57600080fd5b50610433610eac565b6040516104409190611fc6565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b91906120c9565b610ebf565b60405161047d9190612137565b60405180910390f35b6104a0600480360381019061049b91906120c9565b610ed1565b005b3480156104ae57600080fd5b506104c960048036038101906104c491906123b9565b611018565b6040516104d691906121cd565b60405180910390f35b3480156104eb57600080fd5b506104f46110d0565b005b34801561050257600080fd5b5061051d600480360381019061051891906120c9565b6110e4565b005b34801561052b57600080fd5b50610534611234565b60405161054191906121cd565b60405180910390f35b34801561055657600080fd5b5061055f61123a565b60405161056c9190612137565b60405180910390f35b34801561058157600080fd5b5061058a611264565b6040516105979190612071565b60405180910390f35b3480156105ac57600080fd5b506105b56112f6565b6040516105c291906121cd565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190612412565b6112fc565b005b34801561060057600080fd5b5061061b600480360381019061061691906124f3565b611473565b005b34801561062957600080fd5b50610644600480360381019061063f91906120c9565b6114e6565b6040516106519190612071565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c91906120c9565b611584565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612576565b6115e2565b6040516106b79190611fc6565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e291906123b9565b611676565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107745750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078a906125e5565b80601f01602080910402602001604051908101604052809291908181526020018280546107b6906125e5565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b6000610818826116f9565b61084e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089782610ebf565b90508073ffffffffffffffffffffffffffffffffffffffff166108b8611758565b73ffffffffffffffffffffffffffffffffffffffff161461091b576108e4816108df611758565b6115e2565b61091a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109da611760565b6001546000540303905090565b60006109f282611765565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a59576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a6584611831565b91509150610a7b8187610a76611758565b611858565b610ac757610a9086610a8b611758565b6115e2565b610ac6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b2d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b3a868686600161189c565b8015610b4557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c1385610bef8888876118a2565b7c0200000000000000000000000000000000000000000000000000000000176118ca565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c995760006001850190506000600460008381526020019081526020016000205403610c97576000548114610c96578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d0186868660016118f5565b505050505050565b610d116118fb565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610df681565b610d4b6118fb565b610df6610d566109d0565b82610d619190612645565b1115610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d99906126c5565b60405180910390fd5b610dac3382611979565b50565b60095481565b610dbd6118fb565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610de390612716565b60006040518083038185875af1925050503d8060008114610e20576040519150601f19603f3d011682016040523d82523d6000602084013e610e25565b606091505b5050905080610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090612777565b60405180910390fd5b50565b610e8783838360405180602001604052806000815250611473565b505050565b600a81565b610e996118fb565b80600d9081610ea89190612943565b5050565b600c60009054906101000a900460ff1681565b6000610eca82611765565b9050919050565b600c60009054906101000a900460ff16610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1790612a61565b60405180910390fd5b600a811115610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90612af3565b60405180910390fd5b610df6610f6f6109d0565b82610f7a9190612645565b1115610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906126c5565b60405180910390fd5b3481600b54610fca9190612b13565b111561100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290612bb9565b60405180910390fd5b6110153382611979565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361107f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110d86118fb565b6110e26000611997565b565b600c60009054906101000a900460ff16611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90612a61565b60405180910390fd5b600954811115611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f90612c4b565b60405180910390fd5b600a5461118433611018565b8261118f9190612645565b11156111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790612cdd565b60405180910390fd5b610df66111db6109d0565b826111e69190612645565b1115611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e906126c5565b60405180910390fd5b6112313382611979565b50565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611273906125e5565b80601f016020809104026020016040519081016040528092919081815260200182805461129f906125e5565b80156112ec5780601f106112c1576101008083540402835291602001916112ec565b820191906000526020600020905b8154815290600101906020018083116112cf57829003601f168201915b5050505050905090565b600a5481565b611304611758565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611368576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611375611758565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611422611758565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114679190611fc6565b60405180910390a35050565b61147e8484846109e7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114e0576114a984848484611a5d565b6114df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114f1826116f9565b611527576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611531611bad565b90506000815103611551576040518060200160405280600081525061157c565b8061155b84611c3f565b60405160200161156c929190612d39565b6040516020818303038152906040525b915050919050565b61158c6118fb565b610df68111156115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c8906126c5565b60405180910390fd5b8060098190555080600a8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61167e6118fb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490612dcf565b60405180910390fd5b6116f681611997565b50565b600081611704611760565b11158015611713575060005482105b8015611751575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611774611760565b116117fa576000548110156117f95760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117f7575b600081036117ed5760046000836001900393508381526020019081526020016000205490506117c3565b809250505061182c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118b9868684611c99565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611903611ca2565b73ffffffffffffffffffffffffffffffffffffffff1661192161123a565b73ffffffffffffffffffffffffffffffffffffffff1614611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90612e3b565b60405180910390fd5b565b611993828260405180602001604052806000815250611caa565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a83611758565b8786866040518563ffffffff1660e01b8152600401611aa59493929190612eb0565b6020604051808303816000875af1925050508015611ae157506040513d601f19601f82011682018060405250810190611ade9190612f11565b60015b611b5a573d8060008114611b11576040519150601f19603f3d011682016040523d82523d6000602084013e611b16565b606091505b506000815103611b52576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611bbc906125e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611be8906125e5565b8015611c355780601f10611c0a57610100808354040283529160200191611c35565b820191906000526020600020905b815481529060010190602001808311611c1857829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611c8557600183039250600a81066030018353600a81049050611c65565b508181036020830392508083525050919050565b60009392505050565b600033905090565b611cb48383611d47565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d4257600080549050600083820390505b611cf46000868380600101945086611a5d565b611d2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ce1578160005414611d3f57600080fd5b50505b505050565b60008054905060008203611d87576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d94600084838561189c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e0b83611dfc60008660006118a2565b611e0585611f02565b176118ca565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611eac57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e71565b5060008203611ee7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611efd60008483856118f5565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f5b81611f26565b8114611f6657600080fd5b50565b600081359050611f7881611f52565b92915050565b600060208284031215611f9457611f93611f1c565b5b6000611fa284828501611f69565b91505092915050565b60008115159050919050565b611fc081611fab565b82525050565b6000602082019050611fdb6000830184611fb7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561201b578082015181840152602081019050612000565b60008484015250505050565b6000601f19601f8301169050919050565b600061204382611fe1565b61204d8185611fec565b935061205d818560208601611ffd565b61206681612027565b840191505092915050565b6000602082019050818103600083015261208b8184612038565b905092915050565b6000819050919050565b6120a681612093565b81146120b157600080fd5b50565b6000813590506120c38161209d565b92915050565b6000602082840312156120df576120de611f1c565b5b60006120ed848285016120b4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612121826120f6565b9050919050565b61213181612116565b82525050565b600060208201905061214c6000830184612128565b92915050565b61215b81612116565b811461216657600080fd5b50565b60008135905061217881612152565b92915050565b6000806040838503121561219557612194611f1c565b5b60006121a385828601612169565b92505060206121b4858286016120b4565b9150509250929050565b6121c781612093565b82525050565b60006020820190506121e260008301846121be565b92915050565b60008060006060848603121561220157612200611f1c565b5b600061220f86828701612169565b935050602061222086828701612169565b9250506040612231868287016120b4565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61227d82612027565b810181811067ffffffffffffffff8211171561229c5761229b612245565b5b80604052505050565b60006122af611f12565b90506122bb8282612274565b919050565b600067ffffffffffffffff8211156122db576122da612245565b5b6122e482612027565b9050602081019050919050565b82818337600083830152505050565b600061231361230e846122c0565b6122a5565b90508281526020810184848401111561232f5761232e612240565b5b61233a8482856122f1565b509392505050565b600082601f8301126123575761235661223b565b5b8135612367848260208601612300565b91505092915050565b60006020828403121561238657612385611f1c565b5b600082013567ffffffffffffffff8111156123a4576123a3611f21565b5b6123b084828501612342565b91505092915050565b6000602082840312156123cf576123ce611f1c565b5b60006123dd84828501612169565b91505092915050565b6123ef81611fab565b81146123fa57600080fd5b50565b60008135905061240c816123e6565b92915050565b6000806040838503121561242957612428611f1c565b5b600061243785828601612169565b9250506020612448858286016123fd565b9150509250929050565b600067ffffffffffffffff82111561246d5761246c612245565b5b61247682612027565b9050602081019050919050565b600061249661249184612452565b6122a5565b9050828152602081018484840111156124b2576124b1612240565b5b6124bd8482856122f1565b509392505050565b600082601f8301126124da576124d961223b565b5b81356124ea848260208601612483565b91505092915050565b6000806000806080858703121561250d5761250c611f1c565b5b600061251b87828801612169565b945050602061252c87828801612169565b935050604061253d878288016120b4565b925050606085013567ffffffffffffffff81111561255e5761255d611f21565b5b61256a878288016124c5565b91505092959194509250565b6000806040838503121561258d5761258c611f1c565b5b600061259b85828601612169565b92505060206125ac85828601612169565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125fd57607f821691505b6020821081036126105761260f6125b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061265082612093565b915061265b83612093565b925082820190508082111561267357612672612616565b5b92915050565b7f4578636565646564206d617820737570706c7900000000000000000000000000600082015250565b60006126af601383611fec565b91506126ba82612679565b602082019050919050565b600060208201905081810360008301526126de816126a2565b9050919050565b600081905092915050565b50565b60006127006000836126e5565b915061270b826126f0565b600082019050919050565b6000612721826126f3565b9150819050919050565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b6000612761601183611fec565b915061276c8261272b565b602082019050919050565b6000602082019050818103600083015261279081612754565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127f97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127bc565b61280386836127bc565b95508019841693508086168417925050509392505050565b6000819050919050565b600061284061283b61283684612093565b61281b565b612093565b9050919050565b6000819050919050565b61285a83612825565b61286e61286682612847565b8484546127c9565b825550505050565b600090565b612883612876565b61288e818484612851565b505050565b5b818110156128b2576128a760008261287b565b600181019050612894565b5050565b601f8211156128f7576128c881612797565b6128d1846127ac565b810160208510156128e0578190505b6128f46128ec856127ac565b830182612893565b50505b505050565b600082821c905092915050565b600061291a600019846008026128fc565b1980831691505092915050565b60006129338383612909565b9150826002028217905092915050565b61294c82611fe1565b67ffffffffffffffff81111561296557612964612245565b5b61296f82546125e5565b61297a8282856128b6565b600060209050601f8311600181146129ad576000841561299b578287015190505b6129a58582612927565b865550612a0d565b601f1984166129bb86612797565b60005b828110156129e3578489015182556001820191506020850194506020810190506129be565b86831015612a0057848901516129fc601f891682612909565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000612a4b601283611fec565b9150612a5682612a15565b602082019050919050565b60006020820190508181036000830152612a7a81612a3e565b9050919050565b7f4578636565646564206d6178206d696e747320706572207472616e736163746960008201527f6f6e000000000000000000000000000000000000000000000000000000000000602082015250565b6000612add602283611fec565b9150612ae882612a81565b604082019050919050565b60006020820190508181036000830152612b0c81612ad0565b9050919050565b6000612b1e82612093565b9150612b2983612093565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b6257612b61612616565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6000612ba3601583611fec565b9150612bae82612b6d565b602082019050919050565b60006020820190508181036000830152612bd281612b96565b9050919050565b7f4578636565646564206d61782066726565206d696e747320706572207472616e60008201527f73616374696f6e00000000000000000000000000000000000000000000000000602082015250565b6000612c35602783611fec565b9150612c4082612bd9565b604082019050919050565b60006020820190508181036000830152612c6481612c28565b9050919050565b7f4578636565646564206d61782066726565206d696e7473207065722077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cc7602283611fec565b9150612cd282612c6b565b604082019050919050565b60006020820190508181036000830152612cf681612cba565b9050919050565b600081905092915050565b6000612d1382611fe1565b612d1d8185612cfd565b9350612d2d818560208601611ffd565b80840191505092915050565b6000612d458285612d08565b9150612d518284612d08565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612db9602683611fec565b9150612dc482612d5d565b604082019050919050565b60006020820190508181036000830152612de881612dac565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e25602083611fec565b9150612e3082612def565b602082019050919050565b60006020820190508181036000830152612e5481612e18565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e8282612e5b565b612e8c8185612e66565b9350612e9c818560208601611ffd565b612ea581612027565b840191505092915050565b6000608082019050612ec56000830187612128565b612ed26020830186612128565b612edf60408301856121be565b8181036060830152612ef18184612e77565b905095945050505050565b600081519050612f0b81611f52565b92915050565b600060208284031215612f2757612f26611f1c565b5b6000612f3584828501612efc565b9150509291505056fea264697066735822122095e7189369ead677b66a608ebedc92e417dddf3b555f20075ecd98eff9f9770764736f6c63430008100033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461061d578063d755bf991461065a578063e985e9c514610683578063f2fde38b146106c0576101cd565b806395d89b411461057557806398710d1e146105a0578063a22cb465146105cb578063b88d4fde146105f4576101cd565b8063715018a6116100d1578063715018a6146104df5780637c928fe9146104f65780637ff9b5961461051f5780638da5cb5b1461054a576101cd565b80636352211e1461044957806365cde7331461048657806370a08231146104a2576101cd565b806332cb6b0c1161016f57806342842e0e1161013e57806342842e0e146103a157806351b96d92146103ca57806355f804b3146103f5578063564566a81461041e576101cd565b806332cb6b0c1461030b578063375a069a146103365780633bdd87451461035f5780633ccfd60b1461038a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780633100a535146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190611f7e565b6106e9565b6040516102069190611fc6565b60405180910390f35b34801561021b57600080fd5b5061022461077b565b6040516102319190612071565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906120c9565b61080d565b60405161026e9190612137565b60405180910390f35b34801561028357600080fd5b5061029e6004803603810190610299919061217e565b61088c565b005b3480156102ac57600080fd5b506102b56109d0565b6040516102c291906121cd565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed91906121e8565b6109e7565b005b34801561030057600080fd5b50610309610d09565b005b34801561031757600080fd5b50610320610d3d565b60405161032d91906121cd565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906120c9565b610d43565b005b34801561036b57600080fd5b50610374610daf565b60405161038191906121cd565b60405180910390f35b34801561039657600080fd5b5061039f610db5565b005b3480156103ad57600080fd5b506103c860048036038101906103c391906121e8565b610e6c565b005b3480156103d657600080fd5b506103df610e8c565b6040516103ec91906121cd565b60405180910390f35b34801561040157600080fd5b5061041c60048036038101906104179190612370565b610e91565b005b34801561042a57600080fd5b50610433610eac565b6040516104409190611fc6565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b91906120c9565b610ebf565b60405161047d9190612137565b60405180910390f35b6104a0600480360381019061049b91906120c9565b610ed1565b005b3480156104ae57600080fd5b506104c960048036038101906104c491906123b9565b611018565b6040516104d691906121cd565b60405180910390f35b3480156104eb57600080fd5b506104f46110d0565b005b34801561050257600080fd5b5061051d600480360381019061051891906120c9565b6110e4565b005b34801561052b57600080fd5b50610534611234565b60405161054191906121cd565b60405180910390f35b34801561055657600080fd5b5061055f61123a565b60405161056c9190612137565b60405180910390f35b34801561058157600080fd5b5061058a611264565b6040516105979190612071565b60405180910390f35b3480156105ac57600080fd5b506105b56112f6565b6040516105c291906121cd565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190612412565b6112fc565b005b34801561060057600080fd5b5061061b600480360381019061061691906124f3565b611473565b005b34801561062957600080fd5b50610644600480360381019061063f91906120c9565b6114e6565b6040516106519190612071565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c91906120c9565b611584565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612576565b6115e2565b6040516106b79190611fc6565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e291906123b9565b611676565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107745750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078a906125e5565b80601f01602080910402602001604051908101604052809291908181526020018280546107b6906125e5565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b6000610818826116f9565b61084e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089782610ebf565b90508073ffffffffffffffffffffffffffffffffffffffff166108b8611758565b73ffffffffffffffffffffffffffffffffffffffff161461091b576108e4816108df611758565b6115e2565b61091a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109da611760565b6001546000540303905090565b60006109f282611765565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a59576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a6584611831565b91509150610a7b8187610a76611758565b611858565b610ac757610a9086610a8b611758565b6115e2565b610ac6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b2d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b3a868686600161189c565b8015610b4557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c1385610bef8888876118a2565b7c0200000000000000000000000000000000000000000000000000000000176118ca565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c995760006001850190506000600460008381526020019081526020016000205403610c97576000548114610c96578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d0186868660016118f5565b505050505050565b610d116118fb565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610df681565b610d4b6118fb565b610df6610d566109d0565b82610d619190612645565b1115610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d99906126c5565b60405180910390fd5b610dac3382611979565b50565b60095481565b610dbd6118fb565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610de390612716565b60006040518083038185875af1925050503d8060008114610e20576040519150601f19603f3d011682016040523d82523d6000602084013e610e25565b606091505b5050905080610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090612777565b60405180910390fd5b50565b610e8783838360405180602001604052806000815250611473565b505050565b600a81565b610e996118fb565b80600d9081610ea89190612943565b5050565b600c60009054906101000a900460ff1681565b6000610eca82611765565b9050919050565b600c60009054906101000a900460ff16610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1790612a61565b60405180910390fd5b600a811115610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90612af3565b60405180910390fd5b610df6610f6f6109d0565b82610f7a9190612645565b1115610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906126c5565b60405180910390fd5b3481600b54610fca9190612b13565b111561100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290612bb9565b60405180910390fd5b6110153382611979565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361107f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110d86118fb565b6110e26000611997565b565b600c60009054906101000a900460ff16611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90612a61565b60405180910390fd5b600954811115611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f90612c4b565b60405180910390fd5b600a5461118433611018565b8261118f9190612645565b11156111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790612cdd565b60405180910390fd5b610df66111db6109d0565b826111e69190612645565b1115611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e906126c5565b60405180910390fd5b6112313382611979565b50565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611273906125e5565b80601f016020809104026020016040519081016040528092919081815260200182805461129f906125e5565b80156112ec5780601f106112c1576101008083540402835291602001916112ec565b820191906000526020600020905b8154815290600101906020018083116112cf57829003601f168201915b5050505050905090565b600a5481565b611304611758565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611368576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611375611758565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611422611758565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114679190611fc6565b60405180910390a35050565b61147e8484846109e7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114e0576114a984848484611a5d565b6114df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114f1826116f9565b611527576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611531611bad565b90506000815103611551576040518060200160405280600081525061157c565b8061155b84611c3f565b60405160200161156c929190612d39565b6040516020818303038152906040525b915050919050565b61158c6118fb565b610df68111156115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c8906126c5565b60405180910390fd5b8060098190555080600a8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61167e6118fb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490612dcf565b60405180910390fd5b6116f681611997565b50565b600081611704611760565b11158015611713575060005482105b8015611751575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611774611760565b116117fa576000548110156117f95760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117f7575b600081036117ed5760046000836001900393508381526020019081526020016000205490506117c3565b809250505061182c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118b9868684611c99565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611903611ca2565b73ffffffffffffffffffffffffffffffffffffffff1661192161123a565b73ffffffffffffffffffffffffffffffffffffffff1614611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90612e3b565b60405180910390fd5b565b611993828260405180602001604052806000815250611caa565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a83611758565b8786866040518563ffffffff1660e01b8152600401611aa59493929190612eb0565b6020604051808303816000875af1925050508015611ae157506040513d601f19601f82011682018060405250810190611ade9190612f11565b60015b611b5a573d8060008114611b11576040519150601f19603f3d011682016040523d82523d6000602084013e611b16565b606091505b506000815103611b52576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611bbc906125e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611be8906125e5565b8015611c355780601f10611c0a57610100808354040283529160200191611c35565b820191906000526020600020905b815481529060010190602001808311611c1857829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611c8557600183039250600a81066030018353600a81049050611c65565b508181036020830392508083525050919050565b60009392505050565b600033905090565b611cb48383611d47565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d4257600080549050600083820390505b611cf46000868380600101945086611a5d565b611d2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ce1578160005414611d3f57600080fd5b50505b505050565b60008054905060008203611d87576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d94600084838561189c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e0b83611dfc60008660006118a2565b611e0585611f02565b176118ca565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611eac57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e71565b5060008203611ee7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611efd60008483856118f5565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f5b81611f26565b8114611f6657600080fd5b50565b600081359050611f7881611f52565b92915050565b600060208284031215611f9457611f93611f1c565b5b6000611fa284828501611f69565b91505092915050565b60008115159050919050565b611fc081611fab565b82525050565b6000602082019050611fdb6000830184611fb7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561201b578082015181840152602081019050612000565b60008484015250505050565b6000601f19601f8301169050919050565b600061204382611fe1565b61204d8185611fec565b935061205d818560208601611ffd565b61206681612027565b840191505092915050565b6000602082019050818103600083015261208b8184612038565b905092915050565b6000819050919050565b6120a681612093565b81146120b157600080fd5b50565b6000813590506120c38161209d565b92915050565b6000602082840312156120df576120de611f1c565b5b60006120ed848285016120b4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612121826120f6565b9050919050565b61213181612116565b82525050565b600060208201905061214c6000830184612128565b92915050565b61215b81612116565b811461216657600080fd5b50565b60008135905061217881612152565b92915050565b6000806040838503121561219557612194611f1c565b5b60006121a385828601612169565b92505060206121b4858286016120b4565b9150509250929050565b6121c781612093565b82525050565b60006020820190506121e260008301846121be565b92915050565b60008060006060848603121561220157612200611f1c565b5b600061220f86828701612169565b935050602061222086828701612169565b9250506040612231868287016120b4565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61227d82612027565b810181811067ffffffffffffffff8211171561229c5761229b612245565b5b80604052505050565b60006122af611f12565b90506122bb8282612274565b919050565b600067ffffffffffffffff8211156122db576122da612245565b5b6122e482612027565b9050602081019050919050565b82818337600083830152505050565b600061231361230e846122c0565b6122a5565b90508281526020810184848401111561232f5761232e612240565b5b61233a8482856122f1565b509392505050565b600082601f8301126123575761235661223b565b5b8135612367848260208601612300565b91505092915050565b60006020828403121561238657612385611f1c565b5b600082013567ffffffffffffffff8111156123a4576123a3611f21565b5b6123b084828501612342565b91505092915050565b6000602082840312156123cf576123ce611f1c565b5b60006123dd84828501612169565b91505092915050565b6123ef81611fab565b81146123fa57600080fd5b50565b60008135905061240c816123e6565b92915050565b6000806040838503121561242957612428611f1c565b5b600061243785828601612169565b9250506020612448858286016123fd565b9150509250929050565b600067ffffffffffffffff82111561246d5761246c612245565b5b61247682612027565b9050602081019050919050565b600061249661249184612452565b6122a5565b9050828152602081018484840111156124b2576124b1612240565b5b6124bd8482856122f1565b509392505050565b600082601f8301126124da576124d961223b565b5b81356124ea848260208601612483565b91505092915050565b6000806000806080858703121561250d5761250c611f1c565b5b600061251b87828801612169565b945050602061252c87828801612169565b935050604061253d878288016120b4565b925050606085013567ffffffffffffffff81111561255e5761255d611f21565b5b61256a878288016124c5565b91505092959194509250565b6000806040838503121561258d5761258c611f1c565b5b600061259b85828601612169565b92505060206125ac85828601612169565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125fd57607f821691505b6020821081036126105761260f6125b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061265082612093565b915061265b83612093565b925082820190508082111561267357612672612616565b5b92915050565b7f4578636565646564206d617820737570706c7900000000000000000000000000600082015250565b60006126af601383611fec565b91506126ba82612679565b602082019050919050565b600060208201905081810360008301526126de816126a2565b9050919050565b600081905092915050565b50565b60006127006000836126e5565b915061270b826126f0565b600082019050919050565b6000612721826126f3565b9150819050919050565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b6000612761601183611fec565b915061276c8261272b565b602082019050919050565b6000602082019050818103600083015261279081612754565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127f97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127bc565b61280386836127bc565b95508019841693508086168417925050509392505050565b6000819050919050565b600061284061283b61283684612093565b61281b565b612093565b9050919050565b6000819050919050565b61285a83612825565b61286e61286682612847565b8484546127c9565b825550505050565b600090565b612883612876565b61288e818484612851565b505050565b5b818110156128b2576128a760008261287b565b600181019050612894565b5050565b601f8211156128f7576128c881612797565b6128d1846127ac565b810160208510156128e0578190505b6128f46128ec856127ac565b830182612893565b50505b505050565b600082821c905092915050565b600061291a600019846008026128fc565b1980831691505092915050565b60006129338383612909565b9150826002028217905092915050565b61294c82611fe1565b67ffffffffffffffff81111561296557612964612245565b5b61296f82546125e5565b61297a8282856128b6565b600060209050601f8311600181146129ad576000841561299b578287015190505b6129a58582612927565b865550612a0d565b601f1984166129bb86612797565b60005b828110156129e3578489015182556001820191506020850194506020810190506129be565b86831015612a0057848901516129fc601f891682612909565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000612a4b601283611fec565b9150612a5682612a15565b602082019050919050565b60006020820190508181036000830152612a7a81612a3e565b9050919050565b7f4578636565646564206d6178206d696e747320706572207472616e736163746960008201527f6f6e000000000000000000000000000000000000000000000000000000000000602082015250565b6000612add602283611fec565b9150612ae882612a81565b604082019050919050565b60006020820190508181036000830152612b0c81612ad0565b9050919050565b6000612b1e82612093565b9150612b2983612093565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b6257612b61612616565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6000612ba3601583611fec565b9150612bae82612b6d565b602082019050919050565b60006020820190508181036000830152612bd281612b96565b9050919050565b7f4578636565646564206d61782066726565206d696e747320706572207472616e60008201527f73616374696f6e00000000000000000000000000000000000000000000000000602082015250565b6000612c35602783611fec565b9150612c4082612bd9565b604082019050919050565b60006020820190508181036000830152612c6481612c28565b9050919050565b7f4578636565646564206d61782066726565206d696e7473207065722077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cc7602283611fec565b9150612cd282612c6b565b604082019050919050565b60006020820190508181036000830152612cf681612cba565b9050919050565b600081905092915050565b6000612d1382611fe1565b612d1d8185612cfd565b9350612d2d818560208601611ffd565b80840191505092915050565b6000612d458285612d08565b9150612d518284612d08565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612db9602683611fec565b9150612dc482612d5d565b604082019050919050565b60006020820190508181036000830152612de881612dac565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e25602083611fec565b9150612e3082612def565b602082019050919050565b60006020820190508181036000830152612e5481612e18565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e8282612e5b565b612e8c8185612e66565b9350612e9c818560208601611ffd565b612ea581612027565b840191505092915050565b6000608082019050612ec56000830187612128565b612ed26020830186612128565b612edf60408301856121be565b8181036060830152612ef18184612e77565b905095945050505050565b600081519050612f0b81611f52565b92915050565b600060208284031215612f2757612f26611f1c565b5b6000612f3584828501612efc565b9150509291505056fea264697066735822122095e7189369ead677b66a608ebedc92e417dddf3b555f20075ecd98eff9f9770764736f6c63430008100033
Deployed Bytecode Sourcemap
54911:2220:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22028:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22930:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29413:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28854:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18681:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33120:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55691:94;;;;;;;;;;;;;:::i;:::-;;54958:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55907:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55059:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56954:174;;;;;;;;;;;;;:::i;:::-;;36033:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55006:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55356:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55197:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24323:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56546:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19865:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;56102:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55146:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23106:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55101:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29971:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36816:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23316:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55474:209;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30436:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22028:639;22113:4;22452:10;22437:25;;:11;:25;;;;:102;;;;22529:10;22514:25;;:11;:25;;;;22437:102;:179;;;;22606:10;22591:25;;:11;:25;;;;22437:179;22417:199;;22028:639;;;:::o;22930:100::-;22984:13;23017:5;23010:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22930:100;:::o;29413:218::-;29489:7;29514:16;29522:7;29514;:16::i;:::-;29509:64;;29539:34;;;;;;;;;;;;;;29509:64;29593:15;:24;29609:7;29593:24;;;;;;;;;;;:30;;;;;;;;;;;;29586:37;;29413:218;;;:::o;28854:400::-;28935:13;28951:16;28959:7;28951;:16::i;:::-;28935:32;;29007:5;28984:28;;:19;:17;:19::i;:::-;:28;;;28980:175;;29032:44;29049:5;29056:19;:17;:19::i;:::-;29032:16;:44::i;:::-;29027:128;;29104:35;;;;;;;;;;;;;;29027:128;28980:175;29200:2;29167:15;:24;29183:7;29167:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29238:7;29234:2;29218:28;;29227:5;29218:28;;;;;;;;;;;;28924:330;28854:400;;:::o;18681:323::-;18742:7;18970:15;:13;:15::i;:::-;18955:12;;18939:13;;:28;:46;18932:53;;18681:323;:::o;33120:2817::-;33254:27;33284;33303:7;33284:18;:27::i;:::-;33254:57;;33369:4;33328:45;;33344:19;33328:45;;;33324:86;;33382:28;;;;;;;;;;;;;;33324:86;33424:27;33453:23;33480:35;33507:7;33480:26;:35::i;:::-;33423:92;;;;33615:68;33640:15;33657:4;33663:19;:17;:19::i;:::-;33615:24;:68::i;:::-;33610:180;;33703:43;33720:4;33726:19;:17;:19::i;:::-;33703:16;:43::i;:::-;33698:92;;33755:35;;;;;;;;;;;;;;33698:92;33610:180;33821:1;33807:16;;:2;:16;;;33803:52;;33832:23;;;;;;;;;;;;;;33803:52;33868:43;33890:4;33896:2;33900:7;33909:1;33868:21;:43::i;:::-;34004:15;34001:160;;;34144:1;34123:19;34116:30;34001:160;34541:18;:24;34560:4;34541:24;;;;;;;;;;;;;;;;34539:26;;;;;;;;;;;;34610:18;:22;34629:2;34610:22;;;;;;;;;;;;;;;;34608:24;;;;;;;;;;;34932:146;34969:2;35018:45;35033:4;35039:2;35043:19;35018:14;:45::i;:::-;15080:8;34990:73;34932:18;:146::i;:::-;34903:17;:26;34921:7;34903:26;;;;;;;;;;;:175;;;;35249:1;15080:8;35198:19;:47;:52;35194:627;;35271:19;35303:1;35293:7;:11;35271:33;;35460:1;35426:17;:30;35444:11;35426:30;;;;;;;;;;;;:35;35422:384;;35564:13;;35549:11;:28;35545:242;;35744:19;35711:17;:30;35729:11;35711:30;;;;;;;;;;;:52;;;;35545:242;35422:384;35252:569;35194:627;35868:7;35864:2;35849:27;;35858:4;35849:27;;;;;;;;;;;;35887:42;35908:4;35914:2;35918:7;35927:1;35887:20;:42::i;:::-;33243:2694;;;33120:2817;;;:::o;55691:94::-;2014:13;:11;:13::i;:::-;55765:12:::1;;;;;;;;;;;55764:13;55749:12;;:28;;;;;;;;;;;;;;;;;;55691:94::o:0;54958:41::-;54995:4;54958:41;:::o;55907:187::-;2014:13;:11;:13::i;:::-;54995:4:::1;55991:13;:11;:13::i;:::-;55980:8;:24;;;;:::i;:::-;:38;;55972:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;56055:31;56065:10;56077:8;56055:9;:31::i;:::-;55907:187:::0;:::o;55059:35::-;;;;:::o;56954:174::-;2014:13;:11;:13::i;:::-;57005:12:::1;57023:10;:15;;57046:21;57023:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57004:68;;;57091:7;57083:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;56993:135;56954:174::o:0;36033:185::-;36171:39;36188:4;36194:2;36198:7;36171:39;;;;;;;;;;;;:16;:39::i;:::-;36033:185;;;:::o;55006:40::-;55044:2;55006:40;:::o;55356:110::-;2014:13;:11;:13::i;:::-;55448:10:::1;55432:13;:26;;;;;;:::i;:::-;;55356:110:::0;:::o;55197:24::-;;;;;;;;;;;;;:::o;24323:152::-;24395:7;24438:27;24457:7;24438:18;:27::i;:::-;24415:52;;24323:152;;;:::o;56546:400::-;56618:12;;;;;;;;;;;56610:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;55044:2;56672:8;:23;;56664:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;54995:4;56764:13;:11;:13::i;:::-;56753:8;:24;;;;:::i;:::-;:38;;56745:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;56859:9;56847:8;56834:10;;:21;;;;:::i;:::-;:34;;56826:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56907:31;56917:10;56929:8;56907:9;:31::i;:::-;56546:400;:::o;19865:233::-;19937:7;19978:1;19961:19;;:5;:19;;;19957:60;;19989:28;;;;;;;;;;;;;;19957:60;14024:13;20035:18;:25;20054:5;20035:25;;;;;;;;;;;;;;;;:55;20028:62;;19865:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;56102:436::-;56166:12;;;;;;;;;;;56158:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;56232:16;;56220:8;:28;;56212:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;56347:19;;56322:21;56332:10;56322:9;:21::i;:::-;56311:8;:32;;;;:::i;:::-;:55;;56303:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;54995:4;56435:13;:11;:13::i;:::-;56424:8;:24;;;;:::i;:::-;:38;;56416:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;56499:31;56509:10;56521:8;56499:9;:31::i;:::-;56102:436;:::o;55146:44::-;;;;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;23106:104::-;23162:13;23195:7;23188:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23106:104;:::o;55101:38::-;;;;:::o;29971:308::-;30082:19;:17;:19::i;:::-;30070:31;;:8;:31;;;30066:61;;30110:17;;;;;;;;;;;;;;30066:61;30192:8;30140:18;:39;30159:19;:17;:19::i;:::-;30140:39;;;;;;;;;;;;;;;:49;30180:8;30140:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30252:8;30216:55;;30231:19;:17;:19::i;:::-;30216:55;;;30262:8;30216:55;;;;;;:::i;:::-;;;;;;;;29971:308;;:::o;36816:399::-;36983:31;36996:4;37002:2;37006:7;36983:12;:31::i;:::-;37047:1;37029:2;:14;;;:19;37025:183;;37068:56;37099:4;37105:2;37109:7;37118:5;37068:30;:56::i;:::-;37063:145;;37152:40;;;;;;;;;;;;;;37063:145;37025:183;36816:399;;;;:::o;23316:318::-;23389:13;23420:16;23428:7;23420;:16::i;:::-;23415:59;;23445:29;;;;;;;;;;;;;;23415:59;23487:21;23511:10;:8;:10::i;:::-;23487:34;;23564:1;23545:7;23539:21;:26;:87;;;;;;;;;;;;;;;;;23592:7;23601:18;23611:7;23601:9;:18::i;:::-;23575:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23539:87;23532:94;;;23316:318;;;:::o;55474:209::-;2014:13;:11;:13::i;:::-;54995:4:::1;55550:8;:22;;55542:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;55626:8;55607:16;:27;;;;55667:8;55645:19;:30;;;;55474:209:::0;:::o;30436:164::-;30533:4;30557:18;:25;30576:5;30557:25;;;;;;;;;;;;;;;:35;30583:8;30557:35;;;;;;;;;;;;;;;;;;;;;;;;;30550:42;;30436:164;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;::::0;3115:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;30858:282::-;30923:4;30979:7;30960:15;:13;:15::i;:::-;:26;;:66;;;;;31013:13;;31003:7;:23;30960:66;:153;;;;;31112:1;14800:8;31064:17;:26;31082:7;31064:26;;;;;;;;;;;;:44;:49;30960:153;30940:173;;30858:282;;;:::o;52624:105::-;52684:7;52711:10;52704:17;;52624:105;:::o;18197:92::-;18253:7;18197:92;:::o;25478:1275::-;25545:7;25565:12;25580:7;25565:22;;25648:4;25629:15;:13;:15::i;:::-;:23;25625:1061;;25682:13;;25675:4;:20;25671:1015;;;25720:14;25737:17;:23;25755:4;25737:23;;;;;;;;;;;;25720:40;;25854:1;14800:8;25826:6;:24;:29;25822:845;;26491:113;26508:1;26498:6;:11;26491:113;;26551:17;:25;26569:6;;;;;;;26551:25;;;;;;;;;;;;26542:34;;26491:113;;;26637:6;26630:13;;;;;;25822:845;25697:989;25671:1015;25625:1061;26714:31;;;;;;;;;;;;;;25478:1275;;;;:::o;32021:479::-;32123:27;32152:23;32193:38;32234:15;:24;32250:7;32234:24;;;;;;;;;;;32193:65;;32405:18;32382:41;;32462:19;32456:26;32437:45;;32367:126;32021:479;;;:::o;31249:659::-;31398:11;31563:16;31556:5;31552:28;31543:37;;31723:16;31712:9;31708:32;31695:45;;31873:15;31862:9;31859:30;31851:5;31840:9;31837:20;31834:56;31824:66;;31249:659;;;;;:::o;37877:159::-;;;;;:::o;51933:311::-;52068:7;52088:16;15204:3;52114:19;:41;;52088:68;;15204:3;52182:31;52193:4;52199:2;52203:9;52182:10;:31::i;:::-;52174:40;;:62;;52167:69;;;51933:311;;;;;:::o;27301:450::-;27381:14;27549:16;27542:5;27538:28;27529:37;;27726:5;27712:11;27687:23;27683:41;27680:52;27673:5;27670:63;27660:73;;27301:450;;;;:::o;38701:158::-;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;46456:112::-;46533:27;46543:2;46547:8;46533:27;;;;;;;;;;;;:9;:27::i;:::-;46456:112;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;39299:716::-;39462:4;39508:2;39483:45;;;39529:19;:17;:19::i;:::-;39550:4;39556:7;39565:5;39483:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39479:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39783:1;39766:6;:13;:18;39762:235;;39812:40;;;;;;;;;;;;;;39762:235;39955:6;39949:13;39940:6;39936:2;39932:15;39925:38;39479:529;39652:54;;;39642:64;;;:6;:64;;;;39635:71;;;39299:716;;;;;;:::o;55793:106::-;55845:13;55878;55871:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55793:106;:::o;52831:2002::-;52896:17;53315:3;53308:4;53302:11;53298:21;53291:28;;53406:3;53400:4;53393:17;53512:3;53968:5;54098:1;54093:3;54089:11;54082:18;;54269:2;54263:4;54259:13;54255:2;54251:22;54246:3;54238:36;54310:2;54304:4;54300:13;54292:21;;53860:731;54329:4;53860:731;;;54520:1;54515:3;54511:11;54504:18;;54571:2;54565:4;54561:13;54557:2;54553:22;54548:3;54540:36;54424:2;54418:4;54414:13;54406:21;;53860:731;;;53864:464;54630:3;54625;54621:13;54745:2;54740:3;54736:12;54729:19;;54808:6;54803:3;54796:19;52935:1891;;52831:2002;;;:::o;51634:147::-;51771:6;51634:147;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;45683:689::-;45814:19;45820:2;45824:8;45814:5;:19::i;:::-;45893:1;45875:2;:14;;;:19;45871:483;;45915:11;45929:13;;45915:27;;45961:13;45983:8;45977:3;:14;45961:30;;46010:233;46041:62;46080:1;46084:2;46088:7;;;;;;46097:5;46041:30;:62::i;:::-;46036:167;;46139:40;;;;;;;;;;;;;;46036:167;46238:3;46230:5;:11;46010:233;;46325:3;46308:13;;:20;46304:34;;46330:8;;;46304:34;45896:458;;45871:483;45683:689;;;:::o;40477:2454::-;40550:20;40573:13;;40550:36;;40613:1;40601:8;:13;40597:44;;40623:18;;;;;;;;;;;;;;40597:44;40654:61;40684:1;40688:2;40692:12;40706:8;40654:21;:61::i;:::-;41198:1;14162:2;41168:1;:26;;41167:32;41155:8;:45;41129:18;:22;41148:2;41129:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41477:139;41514:2;41568:33;41591:1;41595:2;41599:1;41568:14;:33::i;:::-;41535:30;41556:8;41535:20;:30::i;:::-;:66;41477:18;:139::i;:::-;41443:17;:31;41461:12;41443:31;;;;;;;;;;;:173;;;;41633:16;41664:11;41693:8;41678:12;:23;41664:37;;41948:16;41944:2;41940:25;41928:37;;42320:12;42280:8;42239:1;42177:25;42118:1;42057;42030:335;42445:1;42431:12;42427:20;42385:346;42486:3;42477:7;42474:16;42385:346;;42704:7;42694:8;42691:1;42664:25;42661:1;42658;42653:59;42539:1;42530:7;42526:15;42515:26;;42385:346;;;42389:77;42776:1;42764:8;:13;42760:45;;42786:19;;;;;;;;;;;;;;42760:45;42838:3;42822:13;:19;;;;40903:1950;;42863:60;42892:1;42896:2;42900:12;42914:8;42863:20;:60::i;:::-;40539:2392;40477:2454;;:::o;27853:324::-;27923:14;28156:1;28146:8;28143:15;28117:24;28113:46;28103:56;;27853:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:180::-;12651:77;12648:1;12641:88;12748:4;12745:1;12738:15;12772:4;12769:1;12762:15;12789:191;12829:3;12848:20;12866:1;12848:20;:::i;:::-;12843:25;;12882:20;12900:1;12882:20;:::i;:::-;12877:25;;12925:1;12922;12918:9;12911:16;;12946:3;12943:1;12940:10;12937:36;;;12953:18;;:::i;:::-;12937:36;12789:191;;;;:::o;12986:169::-;13126:21;13122:1;13114:6;13110:14;13103:45;12986:169;:::o;13161:366::-;13303:3;13324:67;13388:2;13383:3;13324:67;:::i;:::-;13317:74;;13400:93;13489:3;13400:93;:::i;:::-;13518:2;13513:3;13509:12;13502:19;;13161:366;;;:::o;13533:419::-;13699:4;13737:2;13726:9;13722:18;13714:26;;13786:9;13780:4;13776:20;13772:1;13761:9;13757:17;13750:47;13814:131;13940:4;13814:131;:::i;:::-;13806:139;;13533:419;;;:::o;13958:147::-;14059:11;14096:3;14081:18;;13958:147;;;;:::o;14111:114::-;;:::o;14231:398::-;14390:3;14411:83;14492:1;14487:3;14411:83;:::i;:::-;14404:90;;14503:93;14592:3;14503:93;:::i;:::-;14621:1;14616:3;14612:11;14605:18;;14231:398;;;:::o;14635:379::-;14819:3;14841:147;14984:3;14841:147;:::i;:::-;14834:154;;15005:3;14998:10;;14635:379;;;:::o;15020:167::-;15160:19;15156:1;15148:6;15144:14;15137:43;15020:167;:::o;15193:366::-;15335:3;15356:67;15420:2;15415:3;15356:67;:::i;:::-;15349:74;;15432:93;15521:3;15432:93;:::i;:::-;15550:2;15545:3;15541:12;15534:19;;15193:366;;;:::o;15565:419::-;15731:4;15769:2;15758:9;15754:18;15746:26;;15818:9;15812:4;15808:20;15804:1;15793:9;15789:17;15782:47;15846:131;15972:4;15846:131;:::i;:::-;15838:139;;15565:419;;;:::o;15990:141::-;16039:4;16062:3;16054:11;;16085:3;16082:1;16075:14;16119:4;16116:1;16106:18;16098:26;;15990:141;;;:::o;16137:93::-;16174:6;16221:2;16216;16209:5;16205:14;16201:23;16191:33;;16137:93;;;:::o;16236:107::-;16280:8;16330:5;16324:4;16320:16;16299:37;;16236:107;;;;:::o;16349:393::-;16418:6;16468:1;16456:10;16452:18;16491:97;16521:66;16510:9;16491:97;:::i;:::-;16609:39;16639:8;16628:9;16609:39;:::i;:::-;16597:51;;16681:4;16677:9;16670:5;16666:21;16657:30;;16730:4;16720:8;16716:19;16709:5;16706:30;16696:40;;16425:317;;16349:393;;;;;:::o;16748:60::-;16776:3;16797:5;16790:12;;16748:60;;;:::o;16814:142::-;16864:9;16897:53;16915:34;16924:24;16942:5;16924:24;:::i;:::-;16915:34;:::i;:::-;16897:53;:::i;:::-;16884:66;;16814:142;;;:::o;16962:75::-;17005:3;17026:5;17019:12;;16962:75;;;:::o;17043:269::-;17153:39;17184:7;17153:39;:::i;:::-;17214:91;17263:41;17287:16;17263:41;:::i;:::-;17255:6;17248:4;17242:11;17214:91;:::i;:::-;17208:4;17201:105;17119:193;17043:269;;;:::o;17318:73::-;17363:3;17318:73;:::o;17397:189::-;17474:32;;:::i;:::-;17515:65;17573:6;17565;17559:4;17515:65;:::i;:::-;17450:136;17397:189;;:::o;17592:186::-;17652:120;17669:3;17662:5;17659:14;17652:120;;;17723:39;17760:1;17753:5;17723:39;:::i;:::-;17696:1;17689:5;17685:13;17676:22;;17652:120;;;17592:186;;:::o;17784:543::-;17885:2;17880:3;17877:11;17874:446;;;17919:38;17951:5;17919:38;:::i;:::-;18003:29;18021:10;18003:29;:::i;:::-;17993:8;17989:44;18186:2;18174:10;18171:18;18168:49;;;18207:8;18192:23;;18168:49;18230:80;18286:22;18304:3;18286:22;:::i;:::-;18276:8;18272:37;18259:11;18230:80;:::i;:::-;17889:431;;17874:446;17784:543;;;:::o;18333:117::-;18387:8;18437:5;18431:4;18427:16;18406:37;;18333:117;;;;:::o;18456:169::-;18500:6;18533:51;18581:1;18577:6;18569:5;18566:1;18562:13;18533:51;:::i;:::-;18529:56;18614:4;18608;18604:15;18594:25;;18507:118;18456:169;;;;:::o;18630:295::-;18706:4;18852:29;18877:3;18871:4;18852:29;:::i;:::-;18844:37;;18914:3;18911:1;18907:11;18901:4;18898:21;18890:29;;18630:295;;;;:::o;18930:1395::-;19047:37;19080:3;19047:37;:::i;:::-;19149:18;19141:6;19138:30;19135:56;;;19171:18;;:::i;:::-;19135:56;19215:38;19247:4;19241:11;19215:38;:::i;:::-;19300:67;19360:6;19352;19346:4;19300:67;:::i;:::-;19394:1;19418:4;19405:17;;19450:2;19442:6;19439:14;19467:1;19462:618;;;;20124:1;20141:6;20138:77;;;20190:9;20185:3;20181:19;20175:26;20166:35;;20138:77;20241:67;20301:6;20294:5;20241:67;:::i;:::-;20235:4;20228:81;20097:222;19432:887;;19462:618;19514:4;19510:9;19502:6;19498:22;19548:37;19580:4;19548:37;:::i;:::-;19607:1;19621:208;19635:7;19632:1;19629:14;19621:208;;;19714:9;19709:3;19705:19;19699:26;19691:6;19684:42;19765:1;19757:6;19753:14;19743:24;;19812:2;19801:9;19797:18;19784:31;;19658:4;19655:1;19651:12;19646:17;;19621:208;;;19857:6;19848:7;19845:19;19842:179;;;19915:9;19910:3;19906:19;19900:26;19958:48;20000:4;19992:6;19988:17;19977:9;19958:48;:::i;:::-;19950:6;19943:64;19865:156;19842:179;20067:1;20063;20055:6;20051:14;20047:22;20041:4;20034:36;19469:611;;;19432:887;;19022:1303;;;18930:1395;;:::o;20331:168::-;20471:20;20467:1;20459:6;20455:14;20448:44;20331:168;:::o;20505:366::-;20647:3;20668:67;20732:2;20727:3;20668:67;:::i;:::-;20661:74;;20744:93;20833:3;20744:93;:::i;:::-;20862:2;20857:3;20853:12;20846:19;;20505:366;;;:::o;20877:419::-;21043:4;21081:2;21070:9;21066:18;21058:26;;21130:9;21124:4;21120:20;21116:1;21105:9;21101:17;21094:47;21158:131;21284:4;21158:131;:::i;:::-;21150:139;;20877:419;;;:::o;21302:221::-;21442:34;21438:1;21430:6;21426:14;21419:58;21511:4;21506:2;21498:6;21494:15;21487:29;21302:221;:::o;21529:366::-;21671:3;21692:67;21756:2;21751:3;21692:67;:::i;:::-;21685:74;;21768:93;21857:3;21768:93;:::i;:::-;21886:2;21881:3;21877:12;21870:19;;21529:366;;;:::o;21901:419::-;22067:4;22105:2;22094:9;22090:18;22082:26;;22154:9;22148:4;22144:20;22140:1;22129:9;22125:17;22118:47;22182:131;22308:4;22182:131;:::i;:::-;22174:139;;21901:419;;;:::o;22326:348::-;22366:7;22389:20;22407:1;22389:20;:::i;:::-;22384:25;;22423:20;22441:1;22423:20;:::i;:::-;22418:25;;22611:1;22543:66;22539:74;22536:1;22533:81;22528:1;22521:9;22514:17;22510:105;22507:131;;;22618:18;;:::i;:::-;22507:131;22666:1;22663;22659:9;22648:20;;22326:348;;;;:::o;22680:171::-;22820:23;22816:1;22808:6;22804:14;22797:47;22680:171;:::o;22857:366::-;22999:3;23020:67;23084:2;23079:3;23020:67;:::i;:::-;23013:74;;23096:93;23185:3;23096:93;:::i;:::-;23214:2;23209:3;23205:12;23198:19;;22857:366;;;:::o;23229:419::-;23395:4;23433:2;23422:9;23418:18;23410:26;;23482:9;23476:4;23472:20;23468:1;23457:9;23453:17;23446:47;23510:131;23636:4;23510:131;:::i;:::-;23502:139;;23229:419;;;:::o;23654:226::-;23794:34;23790:1;23782:6;23778:14;23771:58;23863:9;23858:2;23850:6;23846:15;23839:34;23654:226;:::o;23886:366::-;24028:3;24049:67;24113:2;24108:3;24049:67;:::i;:::-;24042:74;;24125:93;24214:3;24125:93;:::i;:::-;24243:2;24238:3;24234:12;24227:19;;23886:366;;;:::o;24258:419::-;24424:4;24462:2;24451:9;24447:18;24439:26;;24511:9;24505:4;24501:20;24497:1;24486:9;24482:17;24475:47;24539:131;24665:4;24539:131;:::i;:::-;24531:139;;24258:419;;;:::o;24683:221::-;24823:34;24819:1;24811:6;24807:14;24800:58;24892:4;24887:2;24879:6;24875:15;24868:29;24683:221;:::o;24910:366::-;25052:3;25073:67;25137:2;25132:3;25073:67;:::i;:::-;25066:74;;25149:93;25238:3;25149:93;:::i;:::-;25267:2;25262:3;25258:12;25251:19;;24910:366;;;:::o;25282:419::-;25448:4;25486:2;25475:9;25471:18;25463:26;;25535:9;25529:4;25525:20;25521:1;25510:9;25506:17;25499:47;25563:131;25689:4;25563:131;:::i;:::-;25555:139;;25282:419;;;:::o;25707:148::-;25809:11;25846:3;25831:18;;25707:148;;;;:::o;25861:390::-;25967:3;25995:39;26028:5;25995:39;:::i;:::-;26050:89;26132:6;26127:3;26050:89;:::i;:::-;26043:96;;26148:65;26206:6;26201:3;26194:4;26187:5;26183:16;26148:65;:::i;:::-;26238:6;26233:3;26229:16;26222:23;;25971:280;25861:390;;;;:::o;26257:435::-;26437:3;26459:95;26550:3;26541:6;26459:95;:::i;:::-;26452:102;;26571:95;26662:3;26653:6;26571:95;:::i;:::-;26564:102;;26683:3;26676:10;;26257:435;;;;;:::o;26698:225::-;26838:34;26834:1;26826:6;26822:14;26815:58;26907:8;26902:2;26894:6;26890:15;26883:33;26698:225;:::o;26929:366::-;27071:3;27092:67;27156:2;27151:3;27092:67;:::i;:::-;27085:74;;27168:93;27257:3;27168:93;:::i;:::-;27286:2;27281:3;27277:12;27270:19;;26929:366;;;:::o;27301:419::-;27467:4;27505:2;27494:9;27490:18;27482:26;;27554:9;27548:4;27544:20;27540:1;27529:9;27525:17;27518:47;27582:131;27708:4;27582:131;:::i;:::-;27574:139;;27301:419;;;:::o;27726:182::-;27866:34;27862:1;27854:6;27850:14;27843:58;27726:182;:::o;27914:366::-;28056:3;28077:67;28141:2;28136:3;28077:67;:::i;:::-;28070:74;;28153:93;28242:3;28153:93;:::i;:::-;28271:2;28266:3;28262:12;28255:19;;27914:366;;;:::o;28286:419::-;28452:4;28490:2;28479:9;28475:18;28467:26;;28539:9;28533:4;28529:20;28525:1;28514:9;28510:17;28503:47;28567:131;28693:4;28567:131;:::i;:::-;28559:139;;28286:419;;;:::o;28711:98::-;28762:6;28796:5;28790:12;28780:22;;28711:98;;;:::o;28815:168::-;28898:11;28932:6;28927:3;28920:19;28972:4;28967:3;28963:14;28948:29;;28815:168;;;;:::o;28989:373::-;29075:3;29103:38;29135:5;29103:38;:::i;:::-;29157:70;29220:6;29215:3;29157:70;:::i;:::-;29150:77;;29236:65;29294:6;29289:3;29282:4;29275:5;29271:16;29236:65;:::i;:::-;29326:29;29348:6;29326:29;:::i;:::-;29321:3;29317:39;29310:46;;29079:283;28989:373;;;;:::o;29368:640::-;29563:4;29601:3;29590:9;29586:19;29578:27;;29615:71;29683:1;29672:9;29668:17;29659:6;29615:71;:::i;:::-;29696:72;29764:2;29753:9;29749:18;29740:6;29696:72;:::i;:::-;29778;29846:2;29835:9;29831:18;29822:6;29778:72;:::i;:::-;29897:9;29891:4;29887:20;29882:2;29871:9;29867:18;29860:48;29925:76;29996:4;29987:6;29925:76;:::i;:::-;29917:84;;29368:640;;;;;;;:::o;30014:141::-;30070:5;30101:6;30095:13;30086:22;;30117:32;30143:5;30117:32;:::i;:::-;30014:141;;;;:::o;30161:349::-;30230:6;30279:2;30267:9;30258:7;30254:23;30250:32;30247:119;;;30285:79;;:::i;:::-;30247:119;30405:1;30430:63;30485:7;30476:6;30465:9;30461:22;30430:63;:::i;:::-;30420:73;;30376:127;30161:349;;;;:::o
Swarm Source
ipfs://95e7189369ead677b66a608ebedc92e417dddf3b555f20075ecd98eff9f97707
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.