Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
155 RCC
Holders
74
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 RCCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RCC
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-12 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/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.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: rare.sol pragma solidity ^0.8.9; contract RCC is ERC721A, Ownable, ReentrancyGuard { event DevMintEvent(address ownerAddress, uint256 startWith, uint256 amountMinted); uint256 public devTotal; uint256 public _maxSupply = 5777; uint256 public _mintPrice = 0.0035 ether; uint256 public _maxMintPerTx = 10; uint256 public _maxFreeMintPerAddr = 2; uint256 public _maxFreeMintSupply = 5000; uint256 public devSupply = 500; using Strings for uint256; string public baseURI; mapping(address => uint256) private _mintedFreeAmount; constructor(string memory initBaseURI) ERC721A("RareCroaCroas", "RCC") { baseURI = initBaseURI; } function mint(uint256 count) external payable { uint256 cost = _mintPrice; bool isFree = ((totalSupply() + count < _maxFreeMintSupply + 1) && (_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr)) || (msg.sender == owner()); if (isFree) { cost = 0; } require(msg.value >= count * cost, "Please send the exact amount."); require(totalSupply() + count < _maxSupply - devSupply + 1, "Sold out!"); require(count < _maxMintPerTx + 1, "Max per TX reached."); if (isFree) { _mintedFreeAmount[msg.sender] += count; } _safeMint(msg.sender, count); } function devMint() public onlyOwner { devTotal += devSupply; emit DevMintEvent(_msgSender(), devTotal, devSupply); _safeMint(msg.sender, devSupply); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { require(totalSupply() + _mintAmount <= _maxSupply, 'Max supply exceeded!'); _safeMint(_receiver, _mintAmount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setFreeAmount(uint256 amount) external onlyOwner { _maxFreeMintSupply = amount; } function setPrice(uint256 _newPrice) external onlyOwner { _mintPrice = _newPrice; } function withdraw() public payable onlyOwner nonReentrant { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"ownerAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountMinted","type":"uint256"}],"name":"DevMintEvent","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":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052611691600b55660c6f3b40b6c000600c55600a600d556002600e55611388600f556101f46010553480156200003857600080fd5b506040516200399b3803806200399b83398181016040528101906200005e9190620003ad565b6040518060400160405280600d81526020017f5261726543726f6143726f6173000000000000000000000000000000000000008152506040518060400160405280600381526020017f52434300000000000000000000000000000000000000000000000000000000008152508160029081620000db919062000649565b508060039081620000ed919062000649565b50620000fe6200014760201b60201c565b6000819055505050620001266200011a6200014c60201b60201c565b6200015460201b60201c565b600160098190555080601190816200013f919062000649565b505062000730565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002838262000238565b810181811067ffffffffffffffff82111715620002a557620002a462000249565b5b80604052505050565b6000620002ba6200021a565b9050620002c8828262000278565b919050565b600067ffffffffffffffff821115620002eb57620002ea62000249565b5b620002f68262000238565b9050602081019050919050565b60005b838110156200032357808201518184015260208101905062000306565b60008484015250505050565b6000620003466200034084620002cd565b620002ae565b90508281526020810184848401111562000365576200036462000233565b5b6200037284828562000303565b509392505050565b600082601f8301126200039257620003916200022e565b5b8151620003a48482602086016200032f565b91505092915050565b600060208284031215620003c657620003c562000224565b5b600082015167ffffffffffffffff811115620003e757620003e662000229565b5b620003f5848285016200037a565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045157607f821691505b60208210810362000467576200046662000409565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004d17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000492565b620004dd868362000492565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200052a620005246200051e84620004f5565b620004ff565b620004f5565b9050919050565b6000819050919050565b620005468362000509565b6200055e620005558262000531565b8484546200049f565b825550505050565b600090565b6200057562000566565b620005828184846200053b565b505050565b5b81811015620005aa576200059e6000826200056b565b60018101905062000588565b5050565b601f821115620005f957620005c3816200046d565b620005ce8462000482565b81016020851015620005de578190505b620005f6620005ed8562000482565b83018262000587565b50505b505050565b600082821c905092915050565b60006200061e60001984600802620005fe565b1980831691505092915050565b60006200063983836200060b565b9150826002028217905092915050565b6200065482620003fe565b67ffffffffffffffff81111562000670576200066f62000249565b5b6200067c825462000438565b62000689828285620005ae565b600060209050601f831160018114620006c15760008415620006ac578287015190505b620006b885826200062b565b86555062000728565b601f198416620006d1866200046d565b60005b82811015620006fb57848901518255600182019150602085019450602081019050620006d4565b868310156200071b578489015162000717601f8916826200060b565b8355505b6001600288020188555050505b505050505050565b61325b80620007406000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a0712d6811610095578063de314a5911610064578063de314a591461068e578063e985e9c5146106b9578063efbd73f4146106f6578063f2fde38b1461071f576101e3565b8063a0712d68146105e3578063a22cb465146105ff578063b88d4fde14610628578063c87b56dd14610651576101e3565b806391b7f5ed116100d157806391b7f5ed1461053b57806392910eec1461056457806395d89b411461058d5780639cb57d20146105b8576101e3565b806370a08231146104a5578063715018a6146104e25780637c69e207146104f95780638da5cb5b14610510576101e3565b806323b872dd1161017a57806355f804b31161014957806355f804b3146103e95780635e1c4b60146104125780636352211e1461043d5780636c0360eb1461047a576101e3565b806323b872dd146103625780633ccfd60b1461038b57806341c66d0a1461039557806342842e0e146103c0576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630afb04db146102e157806318160ddd1461030c57806322f4596f14610337576101e3565b806301ffc9a7146101e85780630387da421461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612090565b610748565b60405161021c91906120d8565b60405180910390f35b34801561023157600080fd5b5061023a6107da565b604051610247919061210c565b60405180910390f35b34801561025c57600080fd5b506102656107e0565b60405161027291906121b7565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612205565b610872565b6040516102af9190612273565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906122ba565b6108f1565b005b3480156102ed57600080fd5b506102f6610a35565b604051610303919061210c565b60405180910390f35b34801561031857600080fd5b50610321610a3b565b60405161032e919061210c565b60405180910390f35b34801561034357600080fd5b5061034c610a52565b604051610359919061210c565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906122fa565b610a58565b005b610393610d7a565b005b3480156103a157600080fd5b506103aa610e50565b6040516103b7919061210c565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906122fa565b610e56565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612482565b610e76565b005b34801561041e57600080fd5b50610427610e91565b604051610434919061210c565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f9190612205565b610e97565b6040516104719190612273565b60405180910390f35b34801561048657600080fd5b5061048f610ea9565b60405161049c91906121b7565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906124cb565b610f37565b6040516104d9919061210c565b60405180910390f35b3480156104ee57600080fd5b506104f7610fef565b005b34801561050557600080fd5b5061050e611003565b005b34801561051c57600080fd5b5061052561107a565b6040516105329190612273565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190612205565b6110a4565b005b34801561057057600080fd5b5061058b60048036038101906105869190612205565b6110b6565b005b34801561059957600080fd5b506105a26110c8565b6040516105af91906121b7565b60405180910390f35b3480156105c457600080fd5b506105cd61115a565b6040516105da919061210c565b60405180910390f35b6105fd60048036038101906105f89190612205565b611160565b005b34801561060b57600080fd5b5061062660048036038101906106219190612524565b6113a7565b005b34801561063457600080fd5b5061064f600480360381019061064a9190612605565b61151e565b005b34801561065d57600080fd5b5061067860048036038101906106739190612205565b611591565b60405161068591906121b7565b60405180910390f35b34801561069a57600080fd5b506106a361160d565b6040516106b0919061210c565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190612688565b611613565b6040516106ed91906120d8565b60405180910390f35b34801561070257600080fd5b5061071d600480360381019061071891906126c8565b6116a7565b005b34801561072b57600080fd5b50610746600480360381019061074191906124cb565b611714565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546107ef90612737565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90612737565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d82611797565b6108b3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108fc82610e97565b90508073ffffffffffffffffffffffffffffffffffffffff1661091d6117f6565b73ffffffffffffffffffffffffffffffffffffffff161461098057610949816109446117f6565b611613565b61097f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b6000610a456117fe565b6001546000540303905090565b600b5481565b6000610a6382611803565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aca576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ad6846118cf565b91509150610aec8187610ae76117f6565b6118f6565b610b3857610b0186610afc6117f6565b611613565b610b37576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b9e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bab868686600161193a565b8015610bb657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8485610c60888887611940565b7c020000000000000000000000000000000000000000000000000000000017611968565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d0a5760006001850190506000600460008381526020019081526020016000205403610d08576000548114610d07578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d728686866001611993565b505050505050565b610d82611999565b600260095403610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe906127b4565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610df590612805565b60006040518083038185875af1925050503d8060008114610e32576040519150601f19603f3d011682016040523d82523d6000602084013e610e37565b606091505b5050905080610e4557600080fd5b506001600981905550565b60105481565b610e718383836040518060200160405280600081525061151e565b505050565b610e7e611999565b8060119081610e8d91906129c6565b5050565b600f5481565b6000610ea282611803565b9050919050565b60118054610eb690612737565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee290612737565b8015610f2f5780601f10610f0457610100808354040283529160200191610f2f565b820191906000526020600020905b815481529060010190602001808311610f1257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ff7611999565b6110016000611a17565b565b61100b611999565b601054600a600082825461101f9190612ac7565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e61104f611add565b600a5460105460405161106493929190612afb565b60405180910390a161107833601054611ae5565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110ac611999565b80600c8190555050565b6110be611999565b80600f8190555050565b6060600380546110d790612737565b80601f016020809104026020016040519081016040528092919081815260200182805461110390612737565b80156111505780601f1061112557610100808354040283529160200191611150565b820191906000526020600020905b81548152906001019060200180831161113357829003601f168201915b5050505050905090565b600e5481565b6000600c54905060006001600f546111789190612ac7565b83611181610a3b565b61118b9190612ac7565b1080156111e45750600e5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111e19190612ac7565b11155b8061122157506111f261107a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561122e57600091505b818361123a9190612b32565b34101561127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390612bd8565b60405180910390fd5b6001601054600b5461128e9190612bf8565b6112989190612ac7565b836112a1610a3b565b6112ab9190612ac7565b106112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290612c78565b60405180910390fd5b6001600d546112fa9190612ac7565b831061133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290612ce4565b60405180910390fd5b80156113985782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113909190612ac7565b925050819055505b6113a23384611ae5565b505050565b6113af6117f6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611413576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114206117f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114cd6117f6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161151291906120d8565b60405180910390a35050565b611529848484610a58565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461158b5761155484848484611b03565b61158a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061159c82611797565b6115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d290612d76565b60405180910390fd5b60116115e683611c53565b6040516020016115f7929190612ea1565b6040516020818303038152906040529050919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116af611999565b600b54826116bb610a3b565b6116c59190612ac7565b1115611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90612f1c565b60405180910390fd5b6117108183611ae5565b5050565b61171c611999565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361178b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178290612fae565b60405180910390fd5b61179481611a17565b50565b6000816117a26117fe565b111580156117b1575060005482105b80156117ef575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806118126117fe565b11611898576000548110156118975760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611895575b6000810361188b576004600083600190039350838152602001908152602001600020549050611861565b80925050506118ca565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611957868684611db3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119a1611add565b73ffffffffffffffffffffffffffffffffffffffff166119bf61107a565b73ffffffffffffffffffffffffffffffffffffffff1614611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c9061301a565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611aff828260405180602001604052806000815250611dbc565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b296117f6565b8786866040518563ffffffff1660e01b8152600401611b4b949392919061308f565b6020604051808303816000875af1925050508015611b8757506040513d601f19601f82011682018060405250810190611b8491906130f0565b60015b611c00573d8060008114611bb7576040519150601f19603f3d011682016040523d82523d6000602084013e611bbc565b606091505b506000815103611bf8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611c9a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dae565b600082905060005b60008214611ccc578080611cb59061311d565b915050600a82611cc59190613194565b9150611ca2565b60008167ffffffffffffffff811115611ce857611ce7612357565b5b6040519080825280601f01601f191660200182016040528015611d1a5781602001600182028036833780820191505090505b5090505b60008514611da757600182611d339190612bf8565b9150600a85611d4291906131c5565b6030611d4e9190612ac7565b60f81b818381518110611d6457611d636131f6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611da09190613194565b9450611d1e565b8093505050505b919050565b60009392505050565b611dc68383611e59565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e5457600080549050600083820390505b611e066000868380600101945086611b03565b611e3c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611df3578160005414611e5157600080fd5b50505b505050565b60008054905060008203611e99576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ea6600084838561193a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f1d83611f0e6000866000611940565b611f1785612014565b17611968565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fbe57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f83565b5060008203611ff9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061200f6000848385611993565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61206d81612038565b811461207857600080fd5b50565b60008135905061208a81612064565b92915050565b6000602082840312156120a6576120a561202e565b5b60006120b48482850161207b565b91505092915050565b60008115159050919050565b6120d2816120bd565b82525050565b60006020820190506120ed60008301846120c9565b92915050565b6000819050919050565b612106816120f3565b82525050565b600060208201905061212160008301846120fd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612161578082015181840152602081019050612146565b60008484015250505050565b6000601f19601f8301169050919050565b600061218982612127565b6121938185612132565b93506121a3818560208601612143565b6121ac8161216d565b840191505092915050565b600060208201905081810360008301526121d1818461217e565b905092915050565b6121e2816120f3565b81146121ed57600080fd5b50565b6000813590506121ff816121d9565b92915050565b60006020828403121561221b5761221a61202e565b5b6000612229848285016121f0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061225d82612232565b9050919050565b61226d81612252565b82525050565b60006020820190506122886000830184612264565b92915050565b61229781612252565b81146122a257600080fd5b50565b6000813590506122b48161228e565b92915050565b600080604083850312156122d1576122d061202e565b5b60006122df858286016122a5565b92505060206122f0858286016121f0565b9150509250929050565b6000806000606084860312156123135761231261202e565b5b6000612321868287016122a5565b9350506020612332868287016122a5565b9250506040612343868287016121f0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61238f8261216d565b810181811067ffffffffffffffff821117156123ae576123ad612357565b5b80604052505050565b60006123c1612024565b90506123cd8282612386565b919050565b600067ffffffffffffffff8211156123ed576123ec612357565b5b6123f68261216d565b9050602081019050919050565b82818337600083830152505050565b6000612425612420846123d2565b6123b7565b90508281526020810184848401111561244157612440612352565b5b61244c848285612403565b509392505050565b600082601f8301126124695761246861234d565b5b8135612479848260208601612412565b91505092915050565b6000602082840312156124985761249761202e565b5b600082013567ffffffffffffffff8111156124b6576124b5612033565b5b6124c284828501612454565b91505092915050565b6000602082840312156124e1576124e061202e565b5b60006124ef848285016122a5565b91505092915050565b612501816120bd565b811461250c57600080fd5b50565b60008135905061251e816124f8565b92915050565b6000806040838503121561253b5761253a61202e565b5b6000612549858286016122a5565b925050602061255a8582860161250f565b9150509250929050565b600067ffffffffffffffff82111561257f5761257e612357565b5b6125888261216d565b9050602081019050919050565b60006125a86125a384612564565b6123b7565b9050828152602081018484840111156125c4576125c3612352565b5b6125cf848285612403565b509392505050565b600082601f8301126125ec576125eb61234d565b5b81356125fc848260208601612595565b91505092915050565b6000806000806080858703121561261f5761261e61202e565b5b600061262d878288016122a5565b945050602061263e878288016122a5565b935050604061264f878288016121f0565b925050606085013567ffffffffffffffff8111156126705761266f612033565b5b61267c878288016125d7565b91505092959194509250565b6000806040838503121561269f5761269e61202e565b5b60006126ad858286016122a5565b92505060206126be858286016122a5565b9150509250929050565b600080604083850312156126df576126de61202e565b5b60006126ed858286016121f0565b92505060206126fe858286016122a5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061274f57607f821691505b60208210810361276257612761612708565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061279e601f83612132565b91506127a982612768565b602082019050919050565b600060208201905081810360008301526127cd81612791565b9050919050565b600081905092915050565b50565b60006127ef6000836127d4565b91506127fa826127df565b600082019050919050565b6000612810826127e2565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261287c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261283f565b612886868361283f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006128c36128be6128b9846120f3565b61289e565b6120f3565b9050919050565b6000819050919050565b6128dd836128a8565b6128f16128e9826128ca565b84845461284c565b825550505050565b600090565b6129066128f9565b6129118184846128d4565b505050565b5b818110156129355761292a6000826128fe565b600181019050612917565b5050565b601f82111561297a5761294b8161281a565b6129548461282f565b81016020851015612963578190505b61297761296f8561282f565b830182612916565b50505b505050565b600082821c905092915050565b600061299d6000198460080261297f565b1980831691505092915050565b60006129b6838361298c565b9150826002028217905092915050565b6129cf82612127565b67ffffffffffffffff8111156129e8576129e7612357565b5b6129f28254612737565b6129fd828285612939565b600060209050601f831160018114612a305760008415612a1e578287015190505b612a2885826129aa565b865550612a90565b601f198416612a3e8661281a565b60005b82811015612a6657848901518255600182019150602085019450602081019050612a41565b86831015612a835784890151612a7f601f89168261298c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ad2826120f3565b9150612add836120f3565b9250828201905080821115612af557612af4612a98565b5b92915050565b6000606082019050612b106000830186612264565b612b1d60208301856120fd565b612b2a60408301846120fd565b949350505050565b6000612b3d826120f3565b9150612b48836120f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b8157612b80612a98565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612bc2601d83612132565b9150612bcd82612b8c565b602082019050919050565b60006020820190508181036000830152612bf181612bb5565b9050919050565b6000612c03826120f3565b9150612c0e836120f3565b9250828203905081811115612c2657612c25612a98565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612c62600983612132565b9150612c6d82612c2c565b602082019050919050565b60006020820190508181036000830152612c9181612c55565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612cce601383612132565b9150612cd982612c98565b602082019050919050565b60006020820190508181036000830152612cfd81612cc1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d60602f83612132565b9150612d6b82612d04565b604082019050919050565b60006020820190508181036000830152612d8f81612d53565b9050919050565b600081905092915050565b60008154612dae81612737565b612db88186612d96565b94506001821660008114612dd35760018114612de857612e1b565b60ff1983168652811515820286019350612e1b565b612df18561281a565b60005b83811015612e1357815481890152600182019150602081019050612df4565b838801955050505b50505092915050565b6000612e2f82612127565b612e398185612d96565b9350612e49818560208601612143565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e8b600583612d96565b9150612e9682612e55565b600582019050919050565b6000612ead8285612da1565b9150612eb98284612e24565b9150612ec482612e7e565b91508190509392505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612f06601483612132565b9150612f1182612ed0565b602082019050919050565b60006020820190508181036000830152612f3581612ef9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f98602683612132565b9150612fa382612f3c565b604082019050919050565b60006020820190508181036000830152612fc781612f8b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613004602083612132565b915061300f82612fce565b602082019050919050565b6000602082019050818103600083015261303381612ff7565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130618261303a565b61306b8185613045565b935061307b818560208601612143565b6130848161216d565b840191505092915050565b60006080820190506130a46000830187612264565b6130b16020830186612264565b6130be60408301856120fd565b81810360608301526130d08184613056565b905095945050505050565b6000815190506130ea81612064565b92915050565b6000602082840312156131065761310561202e565b5b6000613114848285016130db565b91505092915050565b6000613128826120f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361315a57613159612a98565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061319f826120f3565b91506131aa836120f3565b9250826131ba576131b9613165565b5b828204905092915050565b60006131d0826120f3565b91506131db836120f3565b9250826131eb576131ea613165565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209dccf2828df8fa53a1d88fc27cdab5ebc2c8f160b515b91b3edb243a86989fda64736f6c6343000810003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6561454443366a6e554678714262636d704d684a71656d693853565351476f6e6a69583537756374727331422f00000000000000000000
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806370a0823111610102578063a0712d6811610095578063de314a5911610064578063de314a591461068e578063e985e9c5146106b9578063efbd73f4146106f6578063f2fde38b1461071f576101e3565b8063a0712d68146105e3578063a22cb465146105ff578063b88d4fde14610628578063c87b56dd14610651576101e3565b806391b7f5ed116100d157806391b7f5ed1461053b57806392910eec1461056457806395d89b411461058d5780639cb57d20146105b8576101e3565b806370a08231146104a5578063715018a6146104e25780637c69e207146104f95780638da5cb5b14610510576101e3565b806323b872dd1161017a57806355f804b31161014957806355f804b3146103e95780635e1c4b60146104125780636352211e1461043d5780636c0360eb1461047a576101e3565b806323b872dd146103625780633ccfd60b1461038b57806341c66d0a1461039557806342842e0e146103c0576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630afb04db146102e157806318160ddd1461030c57806322f4596f14610337576101e3565b806301ffc9a7146101e85780630387da421461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612090565b610748565b60405161021c91906120d8565b60405180910390f35b34801561023157600080fd5b5061023a6107da565b604051610247919061210c565b60405180910390f35b34801561025c57600080fd5b506102656107e0565b60405161027291906121b7565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612205565b610872565b6040516102af9190612273565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906122ba565b6108f1565b005b3480156102ed57600080fd5b506102f6610a35565b604051610303919061210c565b60405180910390f35b34801561031857600080fd5b50610321610a3b565b60405161032e919061210c565b60405180910390f35b34801561034357600080fd5b5061034c610a52565b604051610359919061210c565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906122fa565b610a58565b005b610393610d7a565b005b3480156103a157600080fd5b506103aa610e50565b6040516103b7919061210c565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906122fa565b610e56565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612482565b610e76565b005b34801561041e57600080fd5b50610427610e91565b604051610434919061210c565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f9190612205565b610e97565b6040516104719190612273565b60405180910390f35b34801561048657600080fd5b5061048f610ea9565b60405161049c91906121b7565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906124cb565b610f37565b6040516104d9919061210c565b60405180910390f35b3480156104ee57600080fd5b506104f7610fef565b005b34801561050557600080fd5b5061050e611003565b005b34801561051c57600080fd5b5061052561107a565b6040516105329190612273565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190612205565b6110a4565b005b34801561057057600080fd5b5061058b60048036038101906105869190612205565b6110b6565b005b34801561059957600080fd5b506105a26110c8565b6040516105af91906121b7565b60405180910390f35b3480156105c457600080fd5b506105cd61115a565b6040516105da919061210c565b60405180910390f35b6105fd60048036038101906105f89190612205565b611160565b005b34801561060b57600080fd5b5061062660048036038101906106219190612524565b6113a7565b005b34801561063457600080fd5b5061064f600480360381019061064a9190612605565b61151e565b005b34801561065d57600080fd5b5061067860048036038101906106739190612205565b611591565b60405161068591906121b7565b60405180910390f35b34801561069a57600080fd5b506106a361160d565b6040516106b0919061210c565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190612688565b611613565b6040516106ed91906120d8565b60405180910390f35b34801561070257600080fd5b5061071d600480360381019061071891906126c8565b6116a7565b005b34801561072b57600080fd5b50610746600480360381019061074191906124cb565b611714565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546107ef90612737565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90612737565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d82611797565b6108b3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108fc82610e97565b90508073ffffffffffffffffffffffffffffffffffffffff1661091d6117f6565b73ffffffffffffffffffffffffffffffffffffffff161461098057610949816109446117f6565b611613565b61097f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b6000610a456117fe565b6001546000540303905090565b600b5481565b6000610a6382611803565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aca576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ad6846118cf565b91509150610aec8187610ae76117f6565b6118f6565b610b3857610b0186610afc6117f6565b611613565b610b37576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b9e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bab868686600161193a565b8015610bb657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8485610c60888887611940565b7c020000000000000000000000000000000000000000000000000000000017611968565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d0a5760006001850190506000600460008381526020019081526020016000205403610d08576000548114610d07578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d728686866001611993565b505050505050565b610d82611999565b600260095403610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe906127b4565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610df590612805565b60006040518083038185875af1925050503d8060008114610e32576040519150601f19603f3d011682016040523d82523d6000602084013e610e37565b606091505b5050905080610e4557600080fd5b506001600981905550565b60105481565b610e718383836040518060200160405280600081525061151e565b505050565b610e7e611999565b8060119081610e8d91906129c6565b5050565b600f5481565b6000610ea282611803565b9050919050565b60118054610eb690612737565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee290612737565b8015610f2f5780601f10610f0457610100808354040283529160200191610f2f565b820191906000526020600020905b815481529060010190602001808311610f1257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ff7611999565b6110016000611a17565b565b61100b611999565b601054600a600082825461101f9190612ac7565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e61104f611add565b600a5460105460405161106493929190612afb565b60405180910390a161107833601054611ae5565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110ac611999565b80600c8190555050565b6110be611999565b80600f8190555050565b6060600380546110d790612737565b80601f016020809104026020016040519081016040528092919081815260200182805461110390612737565b80156111505780601f1061112557610100808354040283529160200191611150565b820191906000526020600020905b81548152906001019060200180831161113357829003601f168201915b5050505050905090565b600e5481565b6000600c54905060006001600f546111789190612ac7565b83611181610a3b565b61118b9190612ac7565b1080156111e45750600e5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111e19190612ac7565b11155b8061122157506111f261107a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561122e57600091505b818361123a9190612b32565b34101561127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390612bd8565b60405180910390fd5b6001601054600b5461128e9190612bf8565b6112989190612ac7565b836112a1610a3b565b6112ab9190612ac7565b106112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290612c78565b60405180910390fd5b6001600d546112fa9190612ac7565b831061133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290612ce4565b60405180910390fd5b80156113985782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113909190612ac7565b925050819055505b6113a23384611ae5565b505050565b6113af6117f6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611413576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114206117f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114cd6117f6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161151291906120d8565b60405180910390a35050565b611529848484610a58565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461158b5761155484848484611b03565b61158a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061159c82611797565b6115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d290612d76565b60405180910390fd5b60116115e683611c53565b6040516020016115f7929190612ea1565b6040516020818303038152906040529050919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116af611999565b600b54826116bb610a3b565b6116c59190612ac7565b1115611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90612f1c565b60405180910390fd5b6117108183611ae5565b5050565b61171c611999565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361178b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178290612fae565b60405180910390fd5b61179481611a17565b50565b6000816117a26117fe565b111580156117b1575060005482105b80156117ef575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806118126117fe565b11611898576000548110156118975760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611895575b6000810361188b576004600083600190039350838152602001908152602001600020549050611861565b80925050506118ca565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611957868684611db3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119a1611add565b73ffffffffffffffffffffffffffffffffffffffff166119bf61107a565b73ffffffffffffffffffffffffffffffffffffffff1614611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c9061301a565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611aff828260405180602001604052806000815250611dbc565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b296117f6565b8786866040518563ffffffff1660e01b8152600401611b4b949392919061308f565b6020604051808303816000875af1925050508015611b8757506040513d601f19601f82011682018060405250810190611b8491906130f0565b60015b611c00573d8060008114611bb7576040519150601f19603f3d011682016040523d82523d6000602084013e611bbc565b606091505b506000815103611bf8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611c9a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dae565b600082905060005b60008214611ccc578080611cb59061311d565b915050600a82611cc59190613194565b9150611ca2565b60008167ffffffffffffffff811115611ce857611ce7612357565b5b6040519080825280601f01601f191660200182016040528015611d1a5781602001600182028036833780820191505090505b5090505b60008514611da757600182611d339190612bf8565b9150600a85611d4291906131c5565b6030611d4e9190612ac7565b60f81b818381518110611d6457611d636131f6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611da09190613194565b9450611d1e565b8093505050505b919050565b60009392505050565b611dc68383611e59565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e5457600080549050600083820390505b611e066000868380600101945086611b03565b611e3c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611df3578160005414611e5157600080fd5b50505b505050565b60008054905060008203611e99576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ea6600084838561193a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f1d83611f0e6000866000611940565b611f1785612014565b17611968565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fbe57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f83565b5060008203611ff9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061200f6000848385611993565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61206d81612038565b811461207857600080fd5b50565b60008135905061208a81612064565b92915050565b6000602082840312156120a6576120a561202e565b5b60006120b48482850161207b565b91505092915050565b60008115159050919050565b6120d2816120bd565b82525050565b60006020820190506120ed60008301846120c9565b92915050565b6000819050919050565b612106816120f3565b82525050565b600060208201905061212160008301846120fd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612161578082015181840152602081019050612146565b60008484015250505050565b6000601f19601f8301169050919050565b600061218982612127565b6121938185612132565b93506121a3818560208601612143565b6121ac8161216d565b840191505092915050565b600060208201905081810360008301526121d1818461217e565b905092915050565b6121e2816120f3565b81146121ed57600080fd5b50565b6000813590506121ff816121d9565b92915050565b60006020828403121561221b5761221a61202e565b5b6000612229848285016121f0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061225d82612232565b9050919050565b61226d81612252565b82525050565b60006020820190506122886000830184612264565b92915050565b61229781612252565b81146122a257600080fd5b50565b6000813590506122b48161228e565b92915050565b600080604083850312156122d1576122d061202e565b5b60006122df858286016122a5565b92505060206122f0858286016121f0565b9150509250929050565b6000806000606084860312156123135761231261202e565b5b6000612321868287016122a5565b9350506020612332868287016122a5565b9250506040612343868287016121f0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61238f8261216d565b810181811067ffffffffffffffff821117156123ae576123ad612357565b5b80604052505050565b60006123c1612024565b90506123cd8282612386565b919050565b600067ffffffffffffffff8211156123ed576123ec612357565b5b6123f68261216d565b9050602081019050919050565b82818337600083830152505050565b6000612425612420846123d2565b6123b7565b90508281526020810184848401111561244157612440612352565b5b61244c848285612403565b509392505050565b600082601f8301126124695761246861234d565b5b8135612479848260208601612412565b91505092915050565b6000602082840312156124985761249761202e565b5b600082013567ffffffffffffffff8111156124b6576124b5612033565b5b6124c284828501612454565b91505092915050565b6000602082840312156124e1576124e061202e565b5b60006124ef848285016122a5565b91505092915050565b612501816120bd565b811461250c57600080fd5b50565b60008135905061251e816124f8565b92915050565b6000806040838503121561253b5761253a61202e565b5b6000612549858286016122a5565b925050602061255a8582860161250f565b9150509250929050565b600067ffffffffffffffff82111561257f5761257e612357565b5b6125888261216d565b9050602081019050919050565b60006125a86125a384612564565b6123b7565b9050828152602081018484840111156125c4576125c3612352565b5b6125cf848285612403565b509392505050565b600082601f8301126125ec576125eb61234d565b5b81356125fc848260208601612595565b91505092915050565b6000806000806080858703121561261f5761261e61202e565b5b600061262d878288016122a5565b945050602061263e878288016122a5565b935050604061264f878288016121f0565b925050606085013567ffffffffffffffff8111156126705761266f612033565b5b61267c878288016125d7565b91505092959194509250565b6000806040838503121561269f5761269e61202e565b5b60006126ad858286016122a5565b92505060206126be858286016122a5565b9150509250929050565b600080604083850312156126df576126de61202e565b5b60006126ed858286016121f0565b92505060206126fe858286016122a5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061274f57607f821691505b60208210810361276257612761612708565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061279e601f83612132565b91506127a982612768565b602082019050919050565b600060208201905081810360008301526127cd81612791565b9050919050565b600081905092915050565b50565b60006127ef6000836127d4565b91506127fa826127df565b600082019050919050565b6000612810826127e2565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261287c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261283f565b612886868361283f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006128c36128be6128b9846120f3565b61289e565b6120f3565b9050919050565b6000819050919050565b6128dd836128a8565b6128f16128e9826128ca565b84845461284c565b825550505050565b600090565b6129066128f9565b6129118184846128d4565b505050565b5b818110156129355761292a6000826128fe565b600181019050612917565b5050565b601f82111561297a5761294b8161281a565b6129548461282f565b81016020851015612963578190505b61297761296f8561282f565b830182612916565b50505b505050565b600082821c905092915050565b600061299d6000198460080261297f565b1980831691505092915050565b60006129b6838361298c565b9150826002028217905092915050565b6129cf82612127565b67ffffffffffffffff8111156129e8576129e7612357565b5b6129f28254612737565b6129fd828285612939565b600060209050601f831160018114612a305760008415612a1e578287015190505b612a2885826129aa565b865550612a90565b601f198416612a3e8661281a565b60005b82811015612a6657848901518255600182019150602085019450602081019050612a41565b86831015612a835784890151612a7f601f89168261298c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ad2826120f3565b9150612add836120f3565b9250828201905080821115612af557612af4612a98565b5b92915050565b6000606082019050612b106000830186612264565b612b1d60208301856120fd565b612b2a60408301846120fd565b949350505050565b6000612b3d826120f3565b9150612b48836120f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b8157612b80612a98565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612bc2601d83612132565b9150612bcd82612b8c565b602082019050919050565b60006020820190508181036000830152612bf181612bb5565b9050919050565b6000612c03826120f3565b9150612c0e836120f3565b9250828203905081811115612c2657612c25612a98565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612c62600983612132565b9150612c6d82612c2c565b602082019050919050565b60006020820190508181036000830152612c9181612c55565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612cce601383612132565b9150612cd982612c98565b602082019050919050565b60006020820190508181036000830152612cfd81612cc1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d60602f83612132565b9150612d6b82612d04565b604082019050919050565b60006020820190508181036000830152612d8f81612d53565b9050919050565b600081905092915050565b60008154612dae81612737565b612db88186612d96565b94506001821660008114612dd35760018114612de857612e1b565b60ff1983168652811515820286019350612e1b565b612df18561281a565b60005b83811015612e1357815481890152600182019150602081019050612df4565b838801955050505b50505092915050565b6000612e2f82612127565b612e398185612d96565b9350612e49818560208601612143565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e8b600583612d96565b9150612e9682612e55565b600582019050919050565b6000612ead8285612da1565b9150612eb98284612e24565b9150612ec482612e7e565b91508190509392505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612f06601483612132565b9150612f1182612ed0565b602082019050919050565b60006020820190508181036000830152612f3581612ef9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f98602683612132565b9150612fa382612f3c565b604082019050919050565b60006020820190508181036000830152612fc781612f8b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613004602083612132565b915061300f82612fce565b602082019050919050565b6000602082019050818103600083015261303381612ff7565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130618261303a565b61306b8185613045565b935061307b818560208601612143565b6130848161216d565b840191505092915050565b60006080820190506130a46000830187612264565b6130b16020830186612264565b6130be60408301856120fd565b81810360608301526130d08184613056565b905095945050505050565b6000815190506130ea81612064565b92915050565b6000602082840312156131065761310561202e565b5b6000613114848285016130db565b91505092915050565b6000613128826120f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361315a57613159612a98565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061319f826120f3565b91506131aa836120f3565b9250826131ba576131b9613165565b5b828204905092915050565b60006131d0826120f3565b91506131db836120f3565b9250826131eb576131ea613165565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209dccf2828df8fa53a1d88fc27cdab5ebc2c8f160b515b91b3edb243a86989fda64736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6561454443366a6e554678714262636d704d684a71656d693853565351476f6e6a69583537756374727331422f00000000000000000000
-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmeaEDC6jnUFxqBbcmpMhJqemi8SVSQGonjiX57uctrs1B/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d6561454443366a6e554678714262636d704d684a71656d
Arg [3] : 693853565351476f6e6a69583537756374727331422f00000000000000000000
Deployed Bytecode Sourcemap
59733:2798:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27284:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59940:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28186:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34669:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34110:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59871:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23937:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59901:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38376:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62323:205;;;:::i;:::-;;60122:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41289:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62010:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60074:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29579:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60193:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25121:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8032:103;;;;;;;;;;;;;:::i;:::-;;61119:182;;;;;;;;;;;;;:::i;:::-;;7384:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62218:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62106:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28362;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60029:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60402:704;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35227:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42072:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61652:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59987:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35692:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61422:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8290:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27284:639;27369:4;27708:10;27693:25;;:11;:25;;;;:102;;;;27785:10;27770:25;;:11;:25;;;;27693:102;:179;;;;27862:10;27847:25;;:11;:25;;;;27693:179;27673:199;;27284:639;;;:::o;59940:40::-;;;;:::o;28186:100::-;28240:13;28273:5;28266:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28186:100;:::o;34669:218::-;34745:7;34770:16;34778:7;34770;:16::i;:::-;34765:64;;34795:34;;;;;;;;;;;;;;34765:64;34849:15;:24;34865:7;34849:24;;;;;;;;;;;:30;;;;;;;;;;;;34842:37;;34669:218;;;:::o;34110:400::-;34191:13;34207:16;34215:7;34207;:16::i;:::-;34191:32;;34263:5;34240:28;;:19;:17;:19::i;:::-;:28;;;34236:175;;34288:44;34305:5;34312:19;:17;:19::i;:::-;34288:16;:44::i;:::-;34283:128;;34360:35;;;;;;;;;;;;;;34283:128;34236:175;34456:2;34423:15;:24;34439:7;34423:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34494:7;34490:2;34474:28;;34483:5;34474:28;;;;;;;;;;;;34180:330;34110:400;;:::o;59871:23::-;;;;:::o;23937:323::-;23998:7;24226:15;:13;:15::i;:::-;24211:12;;24195:13;;:28;:46;24188:53;;23937:323;:::o;59901:32::-;;;;:::o;38376:2817::-;38510:27;38540;38559:7;38540:18;:27::i;:::-;38510:57;;38625:4;38584:45;;38600:19;38584:45;;;38580:86;;38638:28;;;;;;;;;;;;;;38580:86;38680:27;38709:23;38736:35;38763:7;38736:26;:35::i;:::-;38679:92;;;;38871:68;38896:15;38913:4;38919:19;:17;:19::i;:::-;38871:24;:68::i;:::-;38866:180;;38959:43;38976:4;38982:19;:17;:19::i;:::-;38959:16;:43::i;:::-;38954:92;;39011:35;;;;;;;;;;;;;;38954:92;38866:180;39077:1;39063:16;;:2;:16;;;39059:52;;39088:23;;;;;;;;;;;;;;39059:52;39124:43;39146:4;39152:2;39156:7;39165:1;39124:21;:43::i;:::-;39260:15;39257:160;;;39400:1;39379:19;39372:30;39257:160;39797:18;:24;39816:4;39797:24;;;;;;;;;;;;;;;;39795:26;;;;;;;;;;;;39866:18;:22;39885:2;39866:22;;;;;;;;;;;;;;;;39864:24;;;;;;;;;;;40188:146;40225:2;40274:45;40289:4;40295:2;40299:19;40274:14;:45::i;:::-;20336:8;40246:73;40188:18;:146::i;:::-;40159:17;:26;40177:7;40159:26;;;;;;;;;;;:175;;;;40505:1;20336:8;40454:19;:47;:52;40450:627;;40527:19;40559:1;40549:7;:11;40527:33;;40716:1;40682:17;:30;40700:11;40682:30;;;;;;;;;;;;:35;40678:384;;40820:13;;40805:11;:28;40801:242;;41000:19;40967:17;:30;40985:11;40967:30;;;;;;;;;;;:52;;;;40801:242;40678:384;40508:569;40450:627;41124:7;41120:2;41105:27;;41114:4;41105:27;;;;;;;;;;;;41143:42;41164:4;41170:2;41174:7;41183:1;41143:20;:42::i;:::-;38499:2694;;;38376:2817;;;:::o;62323:205::-;7270:13;:11;:13::i;:::-;4309:1:::1;4907:7;;:19:::0;4899:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4309:1;5040:7;:18;;;;62393:12:::2;62419:10;62411:24;;62457:21;62411:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62392:101;;;62512:7;62504:16;;;::::0;::::2;;62381:147;4265:1:::1;5219:7;:22;;;;62323:205::o:0;60122:30::-;;;;:::o;41289:185::-;41427:39;41444:4;41450:2;41454:7;41427:39;;;;;;;;;;;;:16;:39::i;:::-;41289:185;;;:::o;62010:88::-;7270:13;:11;:13::i;:::-;62087:3:::1;62077:7;:13;;;;;;:::i;:::-;;62010:88:::0;:::o;60074:40::-;;;;:::o;29579:152::-;29651:7;29694:27;29713:7;29694:18;:27::i;:::-;29671:52;;29579:152;;;:::o;60193:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25121:233::-;25193:7;25234:1;25217:19;;:5;:19;;;25213:60;;25245:28;;;;;;;;;;;;;;25213:60;19280:13;25291:18;:25;25310:5;25291:25;;;;;;;;;;;;;;;;:55;25284:62;;25121:233;;;:::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;61119:182::-;7270:13;:11;:13::i;:::-;61178:9:::1;;61166:8;;:21;;;;;;;:::i;:::-;;;;;;;;61203:47;61216:12;:10;:12::i;:::-;61230:8;;61240:9;;61203:47;;;;;;;;:::i;:::-;;;;;;;;61261:32;61271:10;61283:9;;61261;:32::i;:::-;61119:182::o:0;7384:87::-;7430:7;7457:6;;;;;;;;;;;7450:13;;7384:87;:::o;62218:97::-;7270:13;:11;:13::i;:::-;62298:9:::1;62285:10;:22;;;;62218:97:::0;:::o;62106:104::-;7270:13;:11;:13::i;:::-;62196:6:::1;62175:18;:27;;;;62106:104:::0;:::o;28362:::-;28418:13;28451:7;28444:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28362:104;:::o;60029:38::-;;;;:::o;60402:704::-;60459:12;60474:10;;60459:25;;60495:11;60556:1;60535:18;;:22;;;;:::i;:::-;60527:5;60511:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;60510:127;;;;;60617:19;;60608:5;60576:17;:29;60594:10;60576:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;60510:127;60509:169;;;;60670:7;:5;:7::i;:::-;60656:21;;:10;:21;;;60509:169;60495:183;;60695:6;60691:47;;;60725:1;60718:8;;60691:47;60779:4;60771:5;:12;;;;:::i;:::-;60758:9;:25;;60750:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;60885:1;60873:9;;60860:10;;:22;;;;:::i;:::-;:26;;;;:::i;:::-;60852:5;60836:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:50;60828:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;60943:1;60927:13;;:17;;;;:::i;:::-;60919:5;:25;60911:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;60985:6;60981:77;;;61041:5;61008:17;:29;61026:10;61008:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;60981:77;61070:28;61080:10;61092:5;61070:9;:28::i;:::-;60448:658;;60402:704;:::o;35227:308::-;35338:19;:17;:19::i;:::-;35326:31;;:8;:31;;;35322:61;;35366:17;;;;;;;;;;;;;;35322:61;35448:8;35396:18;:39;35415:19;:17;:19::i;:::-;35396:39;;;;;;;;;;;;;;;:49;35436:8;35396:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35508:8;35472:55;;35487:19;:17;:19::i;:::-;35472:55;;;35518:8;35472:55;;;;;;:::i;:::-;;;;;;;;35227:308;;:::o;42072:399::-;42239:31;42252:4;42258:2;42262:7;42239:12;:31::i;:::-;42303:1;42285:2;:14;;;:19;42281:183;;42324:56;42355:4;42361:2;42365:7;42374:5;42324:30;:56::i;:::-;42319:145;;42408:40;;;;;;;;;;;;;;42319:145;42281:183;42072:399;;;;:::o;61652:350::-;61770:13;61823:16;61831:7;61823;:16::i;:::-;61801:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;61956:7;61965:18;:7;:16;:18::i;:::-;61939:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61925:69;;61652:350;;;:::o;59987:33::-;;;;:::o;35692:164::-;35789:4;35813:18;:25;35832:5;35813:25;;;;;;;;;;;;;;;:35;35839:8;35813:35;;;;;;;;;;;;;;;;;;;;;;;;;35806:42;;35692:164;;;;:::o;61422:218::-;7270:13;:11;:13::i;:::-;61553:10:::1;;61538:11;61522:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;61514:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;61599:33;61609:9;61620:11;61599:9;:33::i;:::-;61422:218:::0;;:::o;8290:201::-;7270:13;:11;:13::i;:::-;8399:1:::1;8379:22;;:8;:22;;::::0;8371:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8455:28;8474:8;8455:18;:28::i;:::-;8290:201:::0;:::o;36114:282::-;36179:4;36235:7;36216:15;:13;:15::i;:::-;:26;;:66;;;;;36269:13;;36259:7;:23;36216:66;:153;;;;;36368:1;20056:8;36320:17;:26;36338:7;36320:26;;;;;;;;;;;;:44;:49;36216:153;36196:173;;36114:282;;;:::o;57880:105::-;57940:7;57967:10;57960:17;;57880:105;:::o;23453:92::-;23509:7;23453:92;:::o;30734:1275::-;30801:7;30821:12;30836:7;30821:22;;30904:4;30885:15;:13;:15::i;:::-;:23;30881:1061;;30938:13;;30931:4;:20;30927:1015;;;30976:14;30993:17;:23;31011:4;30993:23;;;;;;;;;;;;30976:40;;31110:1;20056:8;31082:6;:24;:29;31078:845;;31747:113;31764:1;31754:6;:11;31747:113;;31807:17;:25;31825:6;;;;;;;31807:25;;;;;;;;;;;;31798:34;;31747:113;;;31893:6;31886:13;;;;;;31078:845;30953:989;30927:1015;30881:1061;31970:31;;;;;;;;;;;;;;30734:1275;;;;:::o;37277:479::-;37379:27;37408:23;37449:38;37490:15;:24;37506:7;37490:24;;;;;;;;;;;37449:65;;37661:18;37638:41;;37718:19;37712:26;37693:45;;37623:126;37277:479;;;:::o;36505:659::-;36654:11;36819:16;36812:5;36808:28;36799:37;;36979:16;36968:9;36964:32;36951:45;;37129:15;37118:9;37115:30;37107:5;37096:9;37093:20;37090:56;37080:66;;36505:659;;;;;:::o;43133:159::-;;;;;:::o;57189:311::-;57324:7;57344:16;20460:3;57370:19;:41;;57344:68;;20460:3;57438:31;57449:4;57455:2;57459:9;57438:10;:31::i;:::-;57430:40;;:62;;57423:69;;;57189:311;;;;;:::o;32557:450::-;32637:14;32805:16;32798:5;32794:28;32785:37;;32982:5;32968:11;32943:23;32939:41;32936:52;32929:5;32926:63;32916:73;;32557:450;;;;:::o;43957:158::-;;;;;:::o;7549:132::-;7624:12;:10;:12::i;:::-;7613:23;;:7;:5;:7::i;:::-;:23;;;7605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7549:132::o;8651:191::-;8725:16;8744:6;;;;;;;;;;;8725:25;;8770:8;8761:6;;:17;;;;;;;;;;;;;;;;;;8825:8;8794:40;;8815:8;8794:40;;;;;;;;;;;;8714:128;8651:191;:::o;5935:98::-;5988:7;6015:10;6008:17;;5935:98;:::o;51712:112::-;51789:27;51799:2;51803:8;51789:27;;;;;;;;;;;;:9;:27::i;:::-;51712:112;;:::o;44555:716::-;44718:4;44764:2;44739:45;;;44785:19;:17;:19::i;:::-;44806:4;44812:7;44821:5;44739:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44735:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45039:1;45022:6;:13;:18;45018:235;;45068:40;;;;;;;;;;;;;;45018:235;45211:6;45205:13;45196:6;45192:2;45188:15;45181:38;44735:529;44908:54;;;44898:64;;;:6;:64;;;;44891:71;;;44555:716;;;;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;56890:147::-;57027:6;56890:147;;;;;:::o;50939:689::-;51070:19;51076:2;51080:8;51070:5;:19::i;:::-;51149:1;51131:2;:14;;;:19;51127:483;;51171:11;51185:13;;51171:27;;51217:13;51239:8;51233:3;:14;51217:30;;51266:233;51297:62;51336:1;51340:2;51344:7;;;;;;51353:5;51297:30;:62::i;:::-;51292:167;;51395:40;;;;;;;;;;;;;;51292:167;51494:3;51486:5;:11;51266:233;;51581:3;51564:13;;:20;51560:34;;51586:8;;;51560:34;51152:458;;51127:483;50939:689;;;:::o;45733:2454::-;45806:20;45829:13;;45806:36;;45869:1;45857:8;:13;45853:44;;45879:18;;;;;;;;;;;;;;45853:44;45910:61;45940:1;45944:2;45948:12;45962:8;45910:21;:61::i;:::-;46454:1;19418:2;46424:1;:26;;46423:32;46411:8;:45;46385:18;:22;46404:2;46385:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46733:139;46770:2;46824:33;46847:1;46851:2;46855:1;46824:14;:33::i;:::-;46791:30;46812:8;46791:20;:30::i;:::-;:66;46733:18;:139::i;:::-;46699:17;:31;46717:12;46699:31;;;;;;;;;;;:173;;;;46889:16;46920:11;46949:8;46934:12;:23;46920:37;;47204:16;47200:2;47196:25;47184:37;;47576:12;47536:8;47495:1;47433:25;47374:1;47313;47286:335;47701:1;47687:12;47683:20;47641:346;47742:3;47733:7;47730:16;47641:346;;47960:7;47950:8;47947:1;47920:25;47917:1;47914;47909:59;47795:1;47786:7;47782:15;47771:26;;47641:346;;;47645:77;48032:1;48020:8;:13;48016:45;;48042:19;;;;;;;;;;;;;;48016:45;48094:3;48078:13;:19;;;;46159:1950;;48119:60;48148:1;48152:2;48156:12;48170:8;48119:20;:60::i;:::-;45795:2392;45733:2454;;:::o;33109:324::-;33179:14;33412:1;33402:8;33399:15;33373:24;33369:46;33359:56;;33109: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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::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:::-;12159:6;12167;12216:2;12204:9;12195:7;12191:23;12187:32;12184:119;;;12222:79;;:::i;:::-;12184:119;12342:1;12367:53;12412:7;12403:6;12392:9;12388:22;12367:53;:::i;:::-;12357:63;;12313:117;12469:2;12495:53;12540:7;12531:6;12520:9;12516:22;12495:53;:::i;:::-;12485:63;;12440:118;12091:474;;;;;:::o;12571:180::-;12619:77;12616:1;12609:88;12716:4;12713:1;12706:15;12740:4;12737:1;12730:15;12757:320;12801:6;12838:1;12832:4;12828:12;12818:22;;12885:1;12879:4;12875:12;12906:18;12896:81;;12962:4;12954:6;12950:17;12940:27;;12896:81;13024:2;13016:6;13013:14;12993:18;12990:38;12987:84;;13043:18;;:::i;:::-;12987:84;12808:269;12757:320;;;:::o;13083:181::-;13223:33;13219:1;13211:6;13207:14;13200:57;13083:181;:::o;13270:366::-;13412:3;13433:67;13497:2;13492:3;13433:67;:::i;:::-;13426:74;;13509:93;13598:3;13509:93;:::i;:::-;13627:2;13622:3;13618:12;13611:19;;13270:366;;;:::o;13642:419::-;13808:4;13846:2;13835:9;13831:18;13823:26;;13895:9;13889:4;13885:20;13881:1;13870:9;13866:17;13859:47;13923:131;14049:4;13923:131;:::i;:::-;13915:139;;13642:419;;;:::o;14067:147::-;14168:11;14205:3;14190:18;;14067:147;;;;:::o;14220:114::-;;:::o;14340:398::-;14499:3;14520:83;14601:1;14596:3;14520:83;:::i;:::-;14513:90;;14612:93;14701:3;14612:93;:::i;:::-;14730:1;14725:3;14721:11;14714:18;;14340:398;;;:::o;14744:379::-;14928:3;14950:147;15093:3;14950:147;:::i;:::-;14943:154;;15114:3;15107:10;;14744:379;;;:::o;15129:141::-;15178:4;15201:3;15193:11;;15224:3;15221:1;15214:14;15258:4;15255:1;15245:18;15237:26;;15129:141;;;:::o;15276:93::-;15313:6;15360:2;15355;15348:5;15344:14;15340:23;15330:33;;15276:93;;;:::o;15375:107::-;15419:8;15469:5;15463:4;15459:16;15438:37;;15375:107;;;;:::o;15488:393::-;15557:6;15607:1;15595:10;15591:18;15630:97;15660:66;15649:9;15630:97;:::i;:::-;15748:39;15778:8;15767:9;15748:39;:::i;:::-;15736:51;;15820:4;15816:9;15809:5;15805:21;15796:30;;15869:4;15859:8;15855:19;15848:5;15845:30;15835:40;;15564:317;;15488:393;;;;;:::o;15887:60::-;15915:3;15936:5;15929:12;;15887:60;;;:::o;15953:142::-;16003:9;16036:53;16054:34;16063:24;16081:5;16063:24;:::i;:::-;16054:34;:::i;:::-;16036:53;:::i;:::-;16023:66;;15953:142;;;:::o;16101:75::-;16144:3;16165:5;16158:12;;16101:75;;;:::o;16182:269::-;16292:39;16323:7;16292:39;:::i;:::-;16353:91;16402:41;16426:16;16402:41;:::i;:::-;16394:6;16387:4;16381:11;16353:91;:::i;:::-;16347:4;16340:105;16258:193;16182:269;;;:::o;16457:73::-;16502:3;16457:73;:::o;16536:189::-;16613:32;;:::i;:::-;16654:65;16712:6;16704;16698:4;16654:65;:::i;:::-;16589:136;16536:189;;:::o;16731:186::-;16791:120;16808:3;16801:5;16798:14;16791:120;;;16862:39;16899:1;16892:5;16862:39;:::i;:::-;16835:1;16828:5;16824:13;16815:22;;16791:120;;;16731:186;;:::o;16923:543::-;17024:2;17019:3;17016:11;17013:446;;;17058:38;17090:5;17058:38;:::i;:::-;17142:29;17160:10;17142:29;:::i;:::-;17132:8;17128:44;17325:2;17313:10;17310:18;17307:49;;;17346:8;17331:23;;17307:49;17369:80;17425:22;17443:3;17425:22;:::i;:::-;17415:8;17411:37;17398:11;17369:80;:::i;:::-;17028:431;;17013:446;16923:543;;;:::o;17472:117::-;17526:8;17576:5;17570:4;17566:16;17545:37;;17472:117;;;;:::o;17595:169::-;17639:6;17672:51;17720:1;17716:6;17708:5;17705:1;17701:13;17672:51;:::i;:::-;17668:56;17753:4;17747;17743:15;17733:25;;17646:118;17595:169;;;;:::o;17769:295::-;17845:4;17991:29;18016:3;18010:4;17991:29;:::i;:::-;17983:37;;18053:3;18050:1;18046:11;18040:4;18037:21;18029:29;;17769:295;;;;:::o;18069:1395::-;18186:37;18219:3;18186:37;:::i;:::-;18288:18;18280:6;18277:30;18274:56;;;18310:18;;:::i;:::-;18274:56;18354:38;18386:4;18380:11;18354:38;:::i;:::-;18439:67;18499:6;18491;18485:4;18439:67;:::i;:::-;18533:1;18557:4;18544:17;;18589:2;18581:6;18578:14;18606:1;18601:618;;;;19263:1;19280:6;19277:77;;;19329:9;19324:3;19320:19;19314:26;19305:35;;19277:77;19380:67;19440:6;19433:5;19380:67;:::i;:::-;19374:4;19367:81;19236:222;18571:887;;18601:618;18653:4;18649:9;18641:6;18637:22;18687:37;18719:4;18687:37;:::i;:::-;18746:1;18760:208;18774:7;18771:1;18768:14;18760:208;;;18853:9;18848:3;18844:19;18838:26;18830:6;18823:42;18904:1;18896:6;18892:14;18882:24;;18951:2;18940:9;18936:18;18923:31;;18797:4;18794:1;18790:12;18785:17;;18760:208;;;18996:6;18987:7;18984:19;18981:179;;;19054:9;19049:3;19045:19;19039:26;19097:48;19139:4;19131:6;19127:17;19116:9;19097:48;:::i;:::-;19089:6;19082:64;19004:156;18981:179;19206:1;19202;19194:6;19190:14;19186:22;19180:4;19173:36;18608:611;;;18571:887;;18161:1303;;;18069:1395;;:::o;19470:180::-;19518:77;19515:1;19508:88;19615:4;19612:1;19605:15;19639:4;19636:1;19629:15;19656:191;19696:3;19715:20;19733:1;19715:20;:::i;:::-;19710:25;;19749:20;19767:1;19749:20;:::i;:::-;19744:25;;19792:1;19789;19785:9;19778:16;;19813:3;19810:1;19807:10;19804:36;;;19820:18;;:::i;:::-;19804:36;19656:191;;;;:::o;19853:442::-;20002:4;20040:2;20029:9;20025:18;20017:26;;20053:71;20121:1;20110:9;20106:17;20097:6;20053:71;:::i;:::-;20134:72;20202:2;20191:9;20187:18;20178:6;20134:72;:::i;:::-;20216;20284:2;20273:9;20269:18;20260:6;20216:72;:::i;:::-;19853:442;;;;;;:::o;20301:348::-;20341:7;20364:20;20382:1;20364:20;:::i;:::-;20359:25;;20398:20;20416:1;20398:20;:::i;:::-;20393:25;;20586:1;20518:66;20514:74;20511:1;20508:81;20503:1;20496:9;20489:17;20485:105;20482:131;;;20593:18;;:::i;:::-;20482:131;20641:1;20638;20634:9;20623:20;;20301:348;;;;:::o;20655:179::-;20795:31;20791:1;20783:6;20779:14;20772:55;20655:179;:::o;20840:366::-;20982:3;21003:67;21067:2;21062:3;21003:67;:::i;:::-;20996:74;;21079:93;21168:3;21079:93;:::i;:::-;21197:2;21192:3;21188:12;21181:19;;20840:366;;;:::o;21212:419::-;21378:4;21416:2;21405:9;21401:18;21393:26;;21465:9;21459:4;21455:20;21451:1;21440:9;21436:17;21429:47;21493:131;21619:4;21493:131;:::i;:::-;21485:139;;21212:419;;;:::o;21637:194::-;21677:4;21697:20;21715:1;21697:20;:::i;:::-;21692:25;;21731:20;21749:1;21731:20;:::i;:::-;21726:25;;21775:1;21772;21768:9;21760:17;;21799:1;21793:4;21790:11;21787:37;;;21804:18;;:::i;:::-;21787:37;21637:194;;;;:::o;21837:159::-;21977:11;21973:1;21965:6;21961:14;21954:35;21837:159;:::o;22002:365::-;22144:3;22165:66;22229:1;22224:3;22165:66;:::i;:::-;22158:73;;22240:93;22329:3;22240:93;:::i;:::-;22358:2;22353:3;22349:12;22342:19;;22002:365;;;:::o;22373:419::-;22539:4;22577:2;22566:9;22562:18;22554:26;;22626:9;22620:4;22616:20;22612:1;22601:9;22597:17;22590:47;22654:131;22780:4;22654:131;:::i;:::-;22646:139;;22373:419;;;:::o;22798:169::-;22938:21;22934:1;22926:6;22922:14;22915:45;22798:169;:::o;22973:366::-;23115:3;23136:67;23200:2;23195:3;23136:67;:::i;:::-;23129:74;;23212:93;23301:3;23212:93;:::i;:::-;23330:2;23325:3;23321:12;23314:19;;22973:366;;;:::o;23345:419::-;23511:4;23549:2;23538:9;23534:18;23526:26;;23598:9;23592:4;23588:20;23584:1;23573:9;23569:17;23562:47;23626:131;23752:4;23626:131;:::i;:::-;23618:139;;23345:419;;;:::o;23770:234::-;23910:34;23906:1;23898:6;23894:14;23887:58;23979:17;23974:2;23966:6;23962:15;23955:42;23770:234;:::o;24010:366::-;24152:3;24173:67;24237:2;24232:3;24173:67;:::i;:::-;24166:74;;24249:93;24338:3;24249:93;:::i;:::-;24367:2;24362:3;24358:12;24351:19;;24010:366;;;:::o;24382:419::-;24548:4;24586:2;24575:9;24571:18;24563:26;;24635:9;24629:4;24625:20;24621:1;24610:9;24606:17;24599:47;24663:131;24789:4;24663:131;:::i;:::-;24655:139;;24382:419;;;:::o;24807:148::-;24909:11;24946:3;24931:18;;24807:148;;;;:::o;24985:874::-;25088:3;25125:5;25119:12;25154:36;25180:9;25154:36;:::i;:::-;25206:89;25288:6;25283:3;25206:89;:::i;:::-;25199:96;;25326:1;25315:9;25311:17;25342:1;25337:166;;;;25517:1;25512:341;;;;25304:549;;25337:166;25421:4;25417:9;25406;25402:25;25397:3;25390:38;25483:6;25476:14;25469:22;25461:6;25457:35;25452:3;25448:45;25441:52;;25337:166;;25512:341;25579:38;25611:5;25579:38;:::i;:::-;25639:1;25653:154;25667:6;25664:1;25661:13;25653:154;;;25741:7;25735:14;25731:1;25726:3;25722:11;25715:35;25791:1;25782:7;25778:15;25767:26;;25689:4;25686:1;25682:12;25677:17;;25653:154;;;25836:6;25831:3;25827:16;25820:23;;25519:334;;25304:549;;25092:767;;24985:874;;;;:::o;25865:390::-;25971:3;25999:39;26032:5;25999:39;:::i;:::-;26054:89;26136:6;26131:3;26054:89;:::i;:::-;26047:96;;26152:65;26210:6;26205:3;26198:4;26191:5;26187:16;26152:65;:::i;:::-;26242:6;26237:3;26233:16;26226:23;;25975:280;25865:390;;;;:::o;26261:155::-;26401:7;26397:1;26389:6;26385:14;26378:31;26261:155;:::o;26422:400::-;26582:3;26603:84;26685:1;26680:3;26603:84;:::i;:::-;26596:91;;26696:93;26785:3;26696:93;:::i;:::-;26814:1;26809:3;26805:11;26798:18;;26422:400;;;:::o;26828:695::-;27106:3;27128:92;27216:3;27207:6;27128:92;:::i;:::-;27121:99;;27237:95;27328:3;27319:6;27237:95;:::i;:::-;27230:102;;27349:148;27493:3;27349:148;:::i;:::-;27342:155;;27514:3;27507:10;;26828:695;;;;;:::o;27529:170::-;27669:22;27665:1;27657:6;27653:14;27646:46;27529:170;:::o;27705:366::-;27847:3;27868:67;27932:2;27927:3;27868:67;:::i;:::-;27861:74;;27944:93;28033:3;27944:93;:::i;:::-;28062:2;28057:3;28053:12;28046:19;;27705:366;;;:::o;28077:419::-;28243:4;28281:2;28270:9;28266:18;28258:26;;28330:9;28324:4;28320:20;28316:1;28305:9;28301:17;28294:47;28358:131;28484:4;28358:131;:::i;:::-;28350:139;;28077:419;;;:::o;28502:225::-;28642:34;28638:1;28630:6;28626:14;28619:58;28711:8;28706:2;28698:6;28694:15;28687:33;28502:225;:::o;28733:366::-;28875:3;28896:67;28960:2;28955:3;28896:67;:::i;:::-;28889:74;;28972:93;29061:3;28972:93;:::i;:::-;29090:2;29085:3;29081:12;29074:19;;28733:366;;;:::o;29105:419::-;29271:4;29309:2;29298:9;29294:18;29286:26;;29358:9;29352:4;29348:20;29344:1;29333:9;29329:17;29322:47;29386:131;29512:4;29386:131;:::i;:::-;29378:139;;29105:419;;;:::o;29530:182::-;29670:34;29666:1;29658:6;29654:14;29647:58;29530:182;:::o;29718:366::-;29860:3;29881:67;29945:2;29940:3;29881:67;:::i;:::-;29874:74;;29957:93;30046:3;29957:93;:::i;:::-;30075:2;30070:3;30066:12;30059:19;;29718:366;;;:::o;30090:419::-;30256:4;30294:2;30283:9;30279:18;30271:26;;30343:9;30337:4;30333:20;30329:1;30318:9;30314:17;30307:47;30371:131;30497:4;30371:131;:::i;:::-;30363:139;;30090:419;;;:::o;30515:98::-;30566:6;30600:5;30594:12;30584:22;;30515:98;;;:::o;30619:168::-;30702:11;30736:6;30731:3;30724:19;30776:4;30771:3;30767:14;30752:29;;30619:168;;;;:::o;30793:373::-;30879:3;30907:38;30939:5;30907:38;:::i;:::-;30961:70;31024:6;31019:3;30961:70;:::i;:::-;30954:77;;31040:65;31098:6;31093:3;31086:4;31079:5;31075:16;31040:65;:::i;:::-;31130:29;31152:6;31130:29;:::i;:::-;31125:3;31121:39;31114:46;;30883:283;30793:373;;;;:::o;31172:640::-;31367:4;31405:3;31394:9;31390:19;31382:27;;31419:71;31487:1;31476:9;31472:17;31463:6;31419:71;:::i;:::-;31500:72;31568:2;31557:9;31553:18;31544:6;31500:72;:::i;:::-;31582;31650:2;31639:9;31635:18;31626:6;31582:72;:::i;:::-;31701:9;31695:4;31691:20;31686:2;31675:9;31671:18;31664:48;31729:76;31800:4;31791:6;31729:76;:::i;:::-;31721:84;;31172:640;;;;;;;:::o;31818:141::-;31874:5;31905:6;31899:13;31890:22;;31921:32;31947:5;31921:32;:::i;:::-;31818:141;;;;:::o;31965:349::-;32034:6;32083:2;32071:9;32062:7;32058:23;32054:32;32051:119;;;32089:79;;:::i;:::-;32051:119;32209:1;32234:63;32289:7;32280:6;32269:9;32265:22;32234:63;:::i;:::-;32224:73;;32180:127;31965:349;;;;:::o;32320:233::-;32359:3;32382:24;32400:5;32382:24;:::i;:::-;32373:33;;32428:66;32421:5;32418:77;32415:103;;32498:18;;:::i;:::-;32415:103;32545:1;32538:5;32534:13;32527:20;;32320:233;;;:::o;32559:180::-;32607:77;32604:1;32597:88;32704:4;32701:1;32694:15;32728:4;32725:1;32718:15;32745:185;32785:1;32802:20;32820:1;32802:20;:::i;:::-;32797:25;;32836:20;32854:1;32836:20;:::i;:::-;32831:25;;32875:1;32865:35;;32880:18;;:::i;:::-;32865:35;32922:1;32919;32915:9;32910:14;;32745:185;;;;:::o;32936:176::-;32968:1;32985:20;33003:1;32985:20;:::i;:::-;32980:25;;33019:20;33037:1;33019:20;:::i;:::-;33014:25;;33058:1;33048:35;;33063:18;;:::i;:::-;33048:35;33104:1;33101;33097:9;33092:14;;32936:176;;;;:::o;33118:180::-;33166:77;33163:1;33156:88;33263:4;33260:1;33253:15;33287:4;33284:1;33277:15
Swarm Source
ipfs://9dccf2828df8fa53a1d88fc27cdab5ebc2c8f160b515b91b3edb243a86989fda
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.