ERC-721
Overview
Max Total Supply
4,105 NODE
Holders
614
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NODELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NodeMarket
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-16 */ // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/lib/Constants.sol pragma solidity ^0.8.13; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // 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(); /** * 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 payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @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 payable; /** * @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.3 // 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 { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). 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 payable 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 { _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].value`. 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 payable 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 payable 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 payable 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. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. 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`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. 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 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; 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_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } 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); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.9.0) (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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File: contracts/contr.sol //SPDX-License-Identifier: MIT /** THIS CONTRACT WAS PROVIDED BY Lochki02 Projects: https://linktr.ee/lochki Portfolio: https://lochki02.it/ */ pragma solidity ^0.8.20; contract NodeMarket is ERC721A, Ownable(msg.sender), ReentrancyGuard, DefaultOperatorFilterer { using Strings for uint256; uint256 public maxSupply = 10000; uint256 public erc20decimals = 6; uint256 public cost; bool public pause = false; string private baseURL = ""; //TEST USDC => 0x07865c6E87B9F70255377e024ace6630C1Eaa37F //ETH USDC => 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 ERC20 public erc20coin = ERC20(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48); constructor( uint256 _decimals, uint256 _usdcCost, string memory _baseUri ) ERC721A("Node", "NODE") { erc20decimals = _decimals; cost = _usdcCost * (10 ** _decimals); baseURL = _baseUri; } function _baseURI() internal view override returns (string memory) { return baseURL; } function setBaseUri(string memory _baseURL) public onlyOwner { baseURL = _baseURL; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function mint(uint256 mintAmount) external payable { require(!pause, "The contract is paused"); require(erc20coin.balanceOf(msg.sender) >= cost * mintAmount, "Insufficient USDC"); //erc20coin.approve(address(this), cost * mintAmount); IERC20(erc20coin).transferFrom(msg.sender, address(this), cost * mintAmount); _safeMint(msg.sender, mintAmount); } function setPublicSupply(uint256 newMaxSupply) external onlyOwner { maxSupply = newMaxSupply; } function testOwner() public view returns(address){ return owner(); } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "That token doesn't exist"); return bytes(_baseURI()).length > 0 ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json")) : ""; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = _startTokenId(); uint256 ownedTokenIndex = 0; address latestOwnerAddress; while ( ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply ) { TokenOwnership memory ownership = _ownershipOf(currentTokenId); if (!ownership.burned && ownership.addr != address(0)) { latestOwnerAddress = ownership.addr; } if (latestOwnerAddress == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function setCost(uint256 _newCost) public onlyOwner{ cost = _newCost * (10 ** erc20decimals); } function setPause(bool _state) public onlyOwner{ pause = _state; } function withdraw() external onlyOwner { IERC20(erc20coin).transfer(owner(), erc20coin.balanceOf(address(this))); (bool success, ) = payable(owner()).call{ value: address(this).balance }(""); require(success); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_decimals","type":"uint256"},{"internalType":"uint256","name":"_usdcCost","type":"uint256"},{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc20coin","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc20decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"payable","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":"payable","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":"_baseURL","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setPublicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"testOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052612710600a556006600b555f600d5f6101000a81548160ff02191690831515021790555060405180602001604052805f815250600e908162000047919062000773565b5073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a8575f80fd5b5060405162004310380380620043108339818101604052810190620000ce9190620009de565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001336040518060400160405280600481526020017f4e6f6465000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e4f444500000000000000000000000000000000000000000000000000000000815250816002908162000163919062000773565b50806003908162000175919062000773565b50620001866200044460201b60201c565b5f8190555050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000200575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001f7919062000a99565b60405180910390fd5b62000211816200044c60201b60201c565b5060016009819055505f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003fe578015620002cf576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200029a92919062000ab4565b5f604051808303815f87803b158015620002b2575f80fd5b505af1158015620002c5573d5f803e3d5ffd5b50505050620003fd565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000383576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200034e92919062000ab4565b5f604051808303815f87803b15801562000366575f80fd5b505af115801562000379573d5f803e3d5ffd5b50505050620003fc565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003cc919062000a99565b5f604051808303815f87803b158015620003e4575f80fd5b505af1158015620003f7573d5f803e3d5ffd5b505050505b5b5b505082600b8190555082600a62000416919062000c5c565b8262000423919062000cac565b600c8190555080600e90816200043a919062000773565b5050505062000cf6565b5f6001905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200058b57607f821691505b602082108103620005a157620005a062000546565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005c8565b620006118683620005c8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200065b620006556200064f8462000629565b62000632565b62000629565b9050919050565b5f819050919050565b62000676836200063b565b6200068e620006858262000662565b848454620005d4565b825550505050565b5f90565b620006a462000696565b620006b18184846200066b565b505050565b5b81811015620006d857620006cc5f826200069a565b600181019050620006b7565b5050565b601f8211156200072757620006f181620005a7565b620006fc84620005b9565b810160208510156200070c578190505b620007246200071b85620005b9565b830182620006b6565b50505b505050565b5f82821c905092915050565b5f620007495f19846008026200072c565b1980831691505092915050565b5f62000763838362000738565b9150826002028217905092915050565b6200077e826200050f565b67ffffffffffffffff8111156200079a576200079962000519565b5b620007a6825462000573565b620007b3828285620006dc565b5f60209050601f831160018114620007e9575f8415620007d4578287015190505b620007e0858262000756565b8655506200084f565b601f198416620007f986620005a7565b5f5b828110156200082257848901518255600182019150602085019450602081019050620007fb565b868310156200084257848901516200083e601f89168262000738565b8355505b6001600288020188555050505b505050505050565b5f604051905090565b5f80fd5b5f80fd5b620008738162000629565b81146200087e575f80fd5b50565b5f81519050620008918162000868565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b620008ba826200089f565b810181811067ffffffffffffffff82111715620008dc57620008db62000519565b5b80604052505050565b5f620008f062000857565b9050620008fe8282620008af565b919050565b5f67ffffffffffffffff82111562000920576200091f62000519565b5b6200092b826200089f565b9050602081019050919050565b5f5b83811015620009575780820151818401526020810190506200093a565b5f8484015250505050565b5f62000978620009728462000903565b620008e5565b9050828152602081018484840111156200099757620009966200089b565b5b620009a484828562000938565b509392505050565b5f82601f830112620009c357620009c262000897565b5b8151620009d584826020860162000962565b91505092915050565b5f805f60608486031215620009f857620009f762000860565b5b5f62000a078682870162000881565b935050602062000a1a8682870162000881565b925050604084015167ffffffffffffffff81111562000a3e5762000a3d62000864565b5b62000a4c86828701620009ac565b9150509250925092565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000a818262000a56565b9050919050565b62000a938162000a75565b82525050565b5f60208201905062000aae5f83018462000a88565b92915050565b5f60408201905062000ac95f83018562000a88565b62000ad8602083018462000a88565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000b695780860481111562000b415762000b4062000adf565b5b600185161562000b515780820291505b808102905062000b618562000b0c565b945062000b21565b94509492505050565b5f8262000b83576001905062000c55565b8162000b92575f905062000c55565b816001811462000bab576002811462000bb65762000bec565b600191505062000c55565b60ff84111562000bcb5762000bca62000adf565b5b8360020a91508482111562000be55762000be462000adf565b5b5062000c55565b5060208310610133831016604e8410600b841016171562000c265782820a90508381111562000c205762000c1f62000adf565b5b62000c55565b62000c35848484600162000b18565b9250905081840481111562000c4f5762000c4e62000adf565b5b81810290505b9392505050565b5f62000c688262000629565b915062000c758362000629565b925062000ca47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b72565b905092915050565b5f62000cb88262000629565b915062000cc58362000629565b925082820262000cd58162000629565b9150828204841483151762000cef5762000cee62000adf565b5b5092915050565b61360c8062000d045f395ff3fe6080604052600436106101d7575f3560e01c8063715018a611610101578063b7cc6bb611610094578063c90fca4311610063578063c90fca431461063d578063d5abeb0114610667578063e985e9c514610691578063f2fde38b146106cd576101d7565b8063b7cc6bb614610593578063b88d4fde146105bd578063bedb86fb146105d9578063c87b56dd14610601576101d7565b80639e535c69116100d05780639e535c69146104fd578063a0712d6814610527578063a0bcfc7f14610543578063a22cb4651461056b576101d7565b8063715018a6146104695780638456cb591461047f5780638da5cb5b146104a957806395d89b41146104d3576101d7565b806326aa420a11610179578063438b630011610148578063438b63001461038d57806344a0d68a146103c95780636352211e146103f157806370a082311461042d576101d7565b806326aa420a146103095780633ccfd60b1461033157806341f434341461034757806342842e0e14610371576101d7565b8063095ea7b3116101b5578063095ea7b31461027d57806313faede61461029957806318160ddd146102c357806323b872dd146102ed576101d7565b806301ffc9a7146101db57806306fdde0314610217578063081812fc14610241575b5f80fd5b3480156101e6575f80fd5b5061020160048036038101906101fc91906124d8565b6106f5565b60405161020e919061251d565b60405180910390f35b348015610222575f80fd5b5061022b610786565b60405161023891906125c0565b60405180910390f35b34801561024c575f80fd5b5061026760048036038101906102629190612613565b610816565b604051610274919061267d565b60405180910390f35b610297600480360381019061029291906126c0565b610890565b005b3480156102a4575f80fd5b506102ad6109cf565b6040516102ba919061270d565b60405180910390f35b3480156102ce575f80fd5b506102d76109d5565b6040516102e4919061270d565b60405180910390f35b61030760048036038101906103029190612726565b6109ea565b005b348015610314575f80fd5b5061032f600480360381019061032a9190612613565b610a39565b005b34801561033c575f80fd5b50610345610a4b565b005b348015610352575f80fd5b5061035b610c0a565b60405161036891906127d1565b60405180910390f35b61038b60048036038101906103869190612726565b610c1c565b005b348015610398575f80fd5b506103b360048036038101906103ae91906127ea565b610c6b565b6040516103c091906128cc565b60405180910390f35b3480156103d4575f80fd5b506103ef60048036038101906103ea9190612613565b610dc5565b005b3480156103fc575f80fd5b5061041760048036038101906104129190612613565b610df0565b604051610424919061267d565b60405180910390f35b348015610438575f80fd5b50610453600480360381019061044e91906127ea565b610e01565b604051610460919061270d565b60405180910390f35b348015610474575f80fd5b5061047d610eb6565b005b34801561048a575f80fd5b50610493610ec9565b6040516104a0919061251d565b60405180910390f35b3480156104b4575f80fd5b506104bd610edb565b6040516104ca919061267d565b60405180910390f35b3480156104de575f80fd5b506104e7610f03565b6040516104f491906125c0565b60405180910390f35b348015610508575f80fd5b50610511610f93565b60405161051e919061267d565b60405180910390f35b610541600480360381019061053c9190612613565b610fa1565b005b34801561054e575f80fd5b5061056960048036038101906105649190612a18565b611191565b005b348015610576575f80fd5b50610591600480360381019061058c9190612a89565b6111ac565b005b34801561059e575f80fd5b506105a76112b2565b6040516105b49190612ae7565b60405180910390f35b6105d760048036038101906105d29190612b9e565b6112d7565b005b3480156105e4575f80fd5b506105ff60048036038101906105fa9190612c1e565b611328565b005b34801561060c575f80fd5b5061062760048036038101906106229190612613565b61134c565b60405161063491906125c0565b60405180910390f35b348015610648575f80fd5b506106516113f2565b60405161065e919061270d565b60405180910390f35b348015610672575f80fd5b5061067b6113f8565b604051610688919061270d565b60405180910390f35b34801561069c575f80fd5b506106b760048036038101906106b29190612c49565b6113fe565b6040516106c4919061251d565b60405180910390f35b3480156106d8575f80fd5b506106f360048036038101906106ee91906127ea565b61148c565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061077f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461079590612cb4565b80601f01602080910402602001604051908101604052809291908181526020018280546107c190612cb4565b801561080c5780601f106107e35761010080835404028352916020019161080c565b820191905f5260205f20905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b5f61082082611510565b610856576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61089a82610df0565b90508073ffffffffffffffffffffffffffffffffffffffff166108bb61156a565b73ffffffffffffffffffffffffffffffffffffffff161461091e576108e7816108e261156a565b6113fe565b61091d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b5f6109de611571565b6001545f540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a2857610a2733611579565b5b610a33848484611673565b50505050565b610a41611981565b80600a8190555050565b610a53611981565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610a98610edb565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610af2919061267d565b602060405180830381865afa158015610b0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b319190612cf8565b6040518363ffffffff1660e01b8152600401610b4e929190612d23565b6020604051808303815f875af1158015610b6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b8e9190612d5e565b505f610b98610edb565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bbb90612db6565b5f6040518083038185875af1925050503d805f8114610bf5576040519150601f19603f3d011682016040523d82523d5f602084013e610bfa565b606091505b5050905080610c07575f80fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5a57610c5933611579565b5b610c65848484611a08565b50505050565b60605f610c7783610e01565b90505f8167ffffffffffffffff811115610c9457610c936128f4565b5b604051908082528060200260200182016040528015610cc25781602001602082028036833780820191505090505b5090505f610cce611571565b90505f805b8482108015610ce45750600a548311155b15610db8575f610cf384611a27565b90508060400151158015610d3657505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614155b15610d4257805f015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da45783858481518110610d8957610d88612dca565b5b6020026020010181815250508280610da090612e24565b9350505b8380610daf90612e24565b94505050610cd3565b8395505050505050919050565b610dcd611981565b600b54600a610ddc9190612f9a565b81610de79190612fe4565b600c8190555050565b5f610dfa82611a47565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e67576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610ebe611981565b610ec75f611b0a565b565b600d5f9054906101000a900460ff1681565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f1290612cb4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3e90612cb4565b8015610f895780601f10610f6057610100808354040283529160200191610f89565b820191905f5260205f20905b815481529060010190602001808311610f6c57829003601f168201915b5050505050905090565b5f610f9c610edb565b905090565b600d5f9054906101000a900460ff1615610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe79061306f565b60405180910390fd5b80600c54610ffe9190612fe4565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611058919061267d565b602060405180830381865afa158015611073573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110979190612cf8565b10156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf906130d7565b60405180910390fd5b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd333084600c546111259190612fe4565b6040518463ffffffff1660e01b8152600401611143939291906130f5565b6020604051808303815f875af115801561115f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111839190612d5e565b5061118e3382611bcd565b50565b611199611981565b80600e90816111a891906132be565b5050565b8060075f6111b861156a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661126161156a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112a6919061251d565b60405180910390a35050565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113155761131433611579565b5b61132185858585611bea565b5050505050565b611330611981565b80600d5f6101000a81548160ff02191690831515021790555050565b606061135782611510565b611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d906133d7565b60405180910390fd5b5f61139f611c5c565b51116113b95760405180602001604052805f8152506113eb565b6113c1611c5c565b6113ca83611cec565b6040516020016113db929190613479565b6040516020818303038152906040525b9050919050565b600b5481565b600a5481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611494611981565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611504575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016114fb919061267d565b60405180910390fd5b61150d81611b0a565b50565b5f8161151a611571565b1115801561152857505f5482105b801561156357505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611670576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016115ef9291906134a7565b602060405180830381865afa15801561160a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061162e9190612d5e565b61166f57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611666919061267d565b60405180910390fd5b5b50565b5f61167d82611a47565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116e4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f806116ef84611db6565b91509150611705818761170061156a565b611dd9565b6117515761171a8661171561156a565b6113fe565b611750576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036117b6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117c38686866001611e1c565b80156117cd575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061189585611871888887611e22565b7c020000000000000000000000000000000000000000000000000000000017611e49565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611911575f6001850190505f60045f8381526020019081526020015f20540361190f575f54811461190e578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119798686866001611e73565b505050505050565b611989611e79565b73ffffffffffffffffffffffffffffffffffffffff166119a7610edb565b73ffffffffffffffffffffffffffffffffffffffff1614611a06576119ca611e79565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119fd919061267d565b60405180910390fd5b565b611a2283838360405180602001604052805f8152506112d7565b505050565b611a2f612427565b611a40611a3b83611a47565b611e80565b9050919050565b5f8082905080611a55611571565b11611ad3575f54811015611ad2575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611ad0575b5f8103611ac65760045f836001900393508381526020019081526020015f20549050611a9f565b8092505050611b05565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611be6828260405180602001604052805f815250611f34565b5050565b611bf58484846109ea565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611c5657611c1f84848484611fcb565b611c55576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600e8054611c6b90612cb4565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9790612cb4565b8015611ce25780601f10611cb957610100808354040283529160200191611ce2565b820191905f5260205f20905b815481529060010190602001808311611cc557829003601f168201915b5050505050905090565b60605f6001611cfa84612116565b0190505f8167ffffffffffffffff811115611d1857611d176128f4565b5b6040519080825280601f01601f191660200182016040528015611d4a5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611dab578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611da057611d9f6134ce565b5b0494505f8503611d57575b819350505050919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611e38868684612267565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f33905090565b611e88612427565b81815f019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff16815250505f7c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b611f3e838361226f565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611fc6575f805490505f83820390505b611f7a5f868380600101945086611fcb565b611fb0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f6857815f5414611fc3575f80fd5b50505b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff061156a565b8786866040518563ffffffff1660e01b8152600401612012949392919061354d565b6020604051808303815f875af192505050801561204d57506040513d601f19601f8201168201806040525081019061204a91906135ab565b60015b6120c3573d805f811461207b576040519150601f19603f3d011682016040523d82523d5f602084013e612080565b606091505b505f8151036120bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612172577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612168576121676134ce565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121af576d04ee2d6d415b85acef810000000083816121a5576121a46134ce565b5b0492506020810190505b662386f26fc1000083106121de57662386f26fc1000083816121d4576121d36134ce565b5b0492506010810190505b6305f5e1008310612207576305f5e10083816121fd576121fc6134ce565b5b0492506008810190505b612710831061222c576127108381612222576122216134ce565b5b0492506004810190505b6064831061224f5760648381612245576122446134ce565b5b0492506002810190505b600a831061225e576001810190505b80915050919050565b5f9392505050565b5f805490505f82036122ad576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b95f848385611e1c565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061232b8361231c5f865f611e22565b61232585612418565b17611e49565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146123c55780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061238c565b505f82036123ff576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506124135f848385611e73565b505050565b5f6001821460e11b9050919050565b60405180608001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581526020015f62ffffff1681525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124b781612483565b81146124c1575f80fd5b50565b5f813590506124d2816124ae565b92915050565b5f602082840312156124ed576124ec61247b565b5b5f6124fa848285016124c4565b91505092915050565b5f8115159050919050565b61251781612503565b82525050565b5f6020820190506125305f83018461250e565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561256d578082015181840152602081019050612552565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61259282612536565b61259c8185612540565b93506125ac818560208601612550565b6125b581612578565b840191505092915050565b5f6020820190508181035f8301526125d88184612588565b905092915050565b5f819050919050565b6125f2816125e0565b81146125fc575f80fd5b50565b5f8135905061260d816125e9565b92915050565b5f602082840312156126285761262761247b565b5b5f612635848285016125ff565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6126678261263e565b9050919050565b6126778161265d565b82525050565b5f6020820190506126905f83018461266e565b92915050565b61269f8161265d565b81146126a9575f80fd5b50565b5f813590506126ba81612696565b92915050565b5f80604083850312156126d6576126d561247b565b5b5f6126e3858286016126ac565b92505060206126f4858286016125ff565b9150509250929050565b612707816125e0565b82525050565b5f6020820190506127205f8301846126fe565b92915050565b5f805f6060848603121561273d5761273c61247b565b5b5f61274a868287016126ac565b935050602061275b868287016126ac565b925050604061276c868287016125ff565b9150509250925092565b5f819050919050565b5f61279961279461278f8461263e565b612776565b61263e565b9050919050565b5f6127aa8261277f565b9050919050565b5f6127bb826127a0565b9050919050565b6127cb816127b1565b82525050565b5f6020820190506127e45f8301846127c2565b92915050565b5f602082840312156127ff576127fe61247b565b5b5f61280c848285016126ac565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612847816125e0565b82525050565b5f612858838361283e565b60208301905092915050565b5f602082019050919050565b5f61287a82612815565b612884818561281f565b935061288f8361282f565b805f5b838110156128bf5781516128a6888261284d565b97506128b183612864565b925050600181019050612892565b5085935050505092915050565b5f6020820190508181035f8301526128e48184612870565b905092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61292a82612578565b810181811067ffffffffffffffff82111715612949576129486128f4565b5b80604052505050565b5f61295b612472565b90506129678282612921565b919050565b5f67ffffffffffffffff821115612986576129856128f4565b5b61298f82612578565b9050602081019050919050565b828183375f83830152505050565b5f6129bc6129b78461296c565b612952565b9050828152602081018484840111156129d8576129d76128f0565b5b6129e384828561299c565b509392505050565b5f82601f8301126129ff576129fe6128ec565b5b8135612a0f8482602086016129aa565b91505092915050565b5f60208284031215612a2d57612a2c61247b565b5b5f82013567ffffffffffffffff811115612a4a57612a4961247f565b5b612a56848285016129eb565b91505092915050565b612a6881612503565b8114612a72575f80fd5b50565b5f81359050612a8381612a5f565b92915050565b5f8060408385031215612a9f57612a9e61247b565b5b5f612aac858286016126ac565b9250506020612abd85828601612a75565b9150509250929050565b5f612ad1826127a0565b9050919050565b612ae181612ac7565b82525050565b5f602082019050612afa5f830184612ad8565b92915050565b5f67ffffffffffffffff821115612b1a57612b196128f4565b5b612b2382612578565b9050602081019050919050565b5f612b42612b3d84612b00565b612952565b905082815260208101848484011115612b5e57612b5d6128f0565b5b612b6984828561299c565b509392505050565b5f82601f830112612b8557612b846128ec565b5b8135612b95848260208601612b30565b91505092915050565b5f805f8060808587031215612bb657612bb561247b565b5b5f612bc3878288016126ac565b9450506020612bd4878288016126ac565b9350506040612be5878288016125ff565b925050606085013567ffffffffffffffff811115612c0657612c0561247f565b5b612c1287828801612b71565b91505092959194509250565b5f60208284031215612c3357612c3261247b565b5b5f612c4084828501612a75565b91505092915050565b5f8060408385031215612c5f57612c5e61247b565b5b5f612c6c858286016126ac565b9250506020612c7d858286016126ac565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612ccb57607f821691505b602082108103612cde57612cdd612c87565b5b50919050565b5f81519050612cf2816125e9565b92915050565b5f60208284031215612d0d57612d0c61247b565b5b5f612d1a84828501612ce4565b91505092915050565b5f604082019050612d365f83018561266e565b612d4360208301846126fe565b9392505050565b5f81519050612d5881612a5f565b92915050565b5f60208284031215612d7357612d7261247b565b5b5f612d8084828501612d4a565b91505092915050565b5f81905092915050565b50565b5f612da15f83612d89565b9150612dac82612d93565b5f82019050919050565b5f612dc082612d96565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612e2e826125e0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e6057612e5f612df7565b5b600182019050919050565b5f8160011c9050919050565b5f808291508390505b6001851115612ec057808604811115612e9c57612e9b612df7565b5b6001851615612eab5780820291505b8081029050612eb985612e6b565b9450612e80565b94509492505050565b5f82612ed85760019050612f93565b81612ee5575f9050612f93565b8160018114612efb5760028114612f0557612f34565b6001915050612f93565b60ff841115612f1757612f16612df7565b5b8360020a915084821115612f2e57612f2d612df7565b5b50612f93565b5060208310610133831016604e8410600b8410161715612f695782820a905083811115612f6457612f63612df7565b5b612f93565b612f768484846001612e77565b92509050818404811115612f8d57612f8c612df7565b5b81810290505b9392505050565b5f612fa4826125e0565b9150612faf836125e0565b9250612fdc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612ec9565b905092915050565b5f612fee826125e0565b9150612ff9836125e0565b9250828202613007816125e0565b9150828204841483151761301e5761301d612df7565b5b5092915050565b7f54686520636f6e747261637420697320706175736564000000000000000000005f82015250565b5f613059601683612540565b915061306482613025565b602082019050919050565b5f6020820190508181035f8301526130868161304d565b9050919050565b7f496e73756666696369656e7420555344430000000000000000000000000000005f82015250565b5f6130c1601183612540565b91506130cc8261308d565b602082019050919050565b5f6020820190508181035f8301526130ee816130b5565b9050919050565b5f6060820190506131085f83018661266e565b613115602083018561266e565b61312260408301846126fe565b949350505050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026131867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261314b565b613190868361314b565b95508019841693508086168417925050509392505050565b5f6131c26131bd6131b8846125e0565b612776565b6125e0565b9050919050565b5f819050919050565b6131db836131a8565b6131ef6131e7826131c9565b848454613157565b825550505050565b5f90565b6132036131f7565b61320e8184846131d2565b505050565b5b81811015613231576132265f826131fb565b600181019050613214565b5050565b601f821115613276576132478161312a565b6132508461313c565b8101602085101561325f578190505b61327361326b8561313c565b830182613213565b50505b505050565b5f82821c905092915050565b5f6132965f198460080261327b565b1980831691505092915050565b5f6132ae8383613287565b9150826002028217905092915050565b6132c782612536565b67ffffffffffffffff8111156132e0576132df6128f4565b5b6132ea8254612cb4565b6132f5828285613235565b5f60209050601f831160018114613326575f8415613314578287015190505b61331e85826132a3565b865550613385565b601f1984166133348661312a565b5f5b8281101561335b57848901518255600182019150602085019450602081019050613336565b868310156133785784890151613374601f891682613287565b8355505b6001600288020188555050505b505050505050565b7f5468617420746f6b656e20646f65736e277420657869737400000000000000005f82015250565b5f6133c1601883612540565b91506133cc8261338d565b602082019050919050565b5f6020820190508181035f8301526133ee816133b5565b9050919050565b5f81905092915050565b5f61340982612536565b61341381856133f5565b9350613423818560208601612550565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6134636005836133f5565b915061346e8261342f565b600582019050919050565b5f61348482856133ff565b915061349082846133ff565b915061349b82613457565b91508190509392505050565b5f6040820190506134ba5f83018561266e565b6134c7602083018461266e565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f61351f826134fb565b6135298185613505565b9350613539818560208601612550565b61354281612578565b840191505092915050565b5f6080820190506135605f83018761266e565b61356d602083018661266e565b61357a60408301856126fe565b818103606083015261358c8184613515565b905095945050505050565b5f815190506135a5816124ae565b92915050565b5f602082840312156135c0576135bf61247b565b5b5f6135cd84828501613597565b9150509291505056fea2646970667358221220edbc24e5665122c5aeedbb4de9716b671da7af1de626b8a535f6945c489e685564736f6c63430008140033000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6455486d4a77506245514a32755775336a316958426e4a5258746734345872705368726946547a6e5676526d2f00000000000000000000
Deployed Bytecode
0x6080604052600436106101d7575f3560e01c8063715018a611610101578063b7cc6bb611610094578063c90fca4311610063578063c90fca431461063d578063d5abeb0114610667578063e985e9c514610691578063f2fde38b146106cd576101d7565b8063b7cc6bb614610593578063b88d4fde146105bd578063bedb86fb146105d9578063c87b56dd14610601576101d7565b80639e535c69116100d05780639e535c69146104fd578063a0712d6814610527578063a0bcfc7f14610543578063a22cb4651461056b576101d7565b8063715018a6146104695780638456cb591461047f5780638da5cb5b146104a957806395d89b41146104d3576101d7565b806326aa420a11610179578063438b630011610148578063438b63001461038d57806344a0d68a146103c95780636352211e146103f157806370a082311461042d576101d7565b806326aa420a146103095780633ccfd60b1461033157806341f434341461034757806342842e0e14610371576101d7565b8063095ea7b3116101b5578063095ea7b31461027d57806313faede61461029957806318160ddd146102c357806323b872dd146102ed576101d7565b806301ffc9a7146101db57806306fdde0314610217578063081812fc14610241575b5f80fd5b3480156101e6575f80fd5b5061020160048036038101906101fc91906124d8565b6106f5565b60405161020e919061251d565b60405180910390f35b348015610222575f80fd5b5061022b610786565b60405161023891906125c0565b60405180910390f35b34801561024c575f80fd5b5061026760048036038101906102629190612613565b610816565b604051610274919061267d565b60405180910390f35b610297600480360381019061029291906126c0565b610890565b005b3480156102a4575f80fd5b506102ad6109cf565b6040516102ba919061270d565b60405180910390f35b3480156102ce575f80fd5b506102d76109d5565b6040516102e4919061270d565b60405180910390f35b61030760048036038101906103029190612726565b6109ea565b005b348015610314575f80fd5b5061032f600480360381019061032a9190612613565b610a39565b005b34801561033c575f80fd5b50610345610a4b565b005b348015610352575f80fd5b5061035b610c0a565b60405161036891906127d1565b60405180910390f35b61038b60048036038101906103869190612726565b610c1c565b005b348015610398575f80fd5b506103b360048036038101906103ae91906127ea565b610c6b565b6040516103c091906128cc565b60405180910390f35b3480156103d4575f80fd5b506103ef60048036038101906103ea9190612613565b610dc5565b005b3480156103fc575f80fd5b5061041760048036038101906104129190612613565b610df0565b604051610424919061267d565b60405180910390f35b348015610438575f80fd5b50610453600480360381019061044e91906127ea565b610e01565b604051610460919061270d565b60405180910390f35b348015610474575f80fd5b5061047d610eb6565b005b34801561048a575f80fd5b50610493610ec9565b6040516104a0919061251d565b60405180910390f35b3480156104b4575f80fd5b506104bd610edb565b6040516104ca919061267d565b60405180910390f35b3480156104de575f80fd5b506104e7610f03565b6040516104f491906125c0565b60405180910390f35b348015610508575f80fd5b50610511610f93565b60405161051e919061267d565b60405180910390f35b610541600480360381019061053c9190612613565b610fa1565b005b34801561054e575f80fd5b5061056960048036038101906105649190612a18565b611191565b005b348015610576575f80fd5b50610591600480360381019061058c9190612a89565b6111ac565b005b34801561059e575f80fd5b506105a76112b2565b6040516105b49190612ae7565b60405180910390f35b6105d760048036038101906105d29190612b9e565b6112d7565b005b3480156105e4575f80fd5b506105ff60048036038101906105fa9190612c1e565b611328565b005b34801561060c575f80fd5b5061062760048036038101906106229190612613565b61134c565b60405161063491906125c0565b60405180910390f35b348015610648575f80fd5b506106516113f2565b60405161065e919061270d565b60405180910390f35b348015610672575f80fd5b5061067b6113f8565b604051610688919061270d565b60405180910390f35b34801561069c575f80fd5b506106b760048036038101906106b29190612c49565b6113fe565b6040516106c4919061251d565b60405180910390f35b3480156106d8575f80fd5b506106f360048036038101906106ee91906127ea565b61148c565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061077f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461079590612cb4565b80601f01602080910402602001604051908101604052809291908181526020018280546107c190612cb4565b801561080c5780601f106107e35761010080835404028352916020019161080c565b820191905f5260205f20905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b5f61082082611510565b610856576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61089a82610df0565b90508073ffffffffffffffffffffffffffffffffffffffff166108bb61156a565b73ffffffffffffffffffffffffffffffffffffffff161461091e576108e7816108e261156a565b6113fe565b61091d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b5f6109de611571565b6001545f540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a2857610a2733611579565b5b610a33848484611673565b50505050565b610a41611981565b80600a8190555050565b610a53611981565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610a98610edb565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610af2919061267d565b602060405180830381865afa158015610b0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b319190612cf8565b6040518363ffffffff1660e01b8152600401610b4e929190612d23565b6020604051808303815f875af1158015610b6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b8e9190612d5e565b505f610b98610edb565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bbb90612db6565b5f6040518083038185875af1925050503d805f8114610bf5576040519150601f19603f3d011682016040523d82523d5f602084013e610bfa565b606091505b5050905080610c07575f80fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5a57610c5933611579565b5b610c65848484611a08565b50505050565b60605f610c7783610e01565b90505f8167ffffffffffffffff811115610c9457610c936128f4565b5b604051908082528060200260200182016040528015610cc25781602001602082028036833780820191505090505b5090505f610cce611571565b90505f805b8482108015610ce45750600a548311155b15610db8575f610cf384611a27565b90508060400151158015610d3657505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614155b15610d4257805f015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da45783858481518110610d8957610d88612dca565b5b6020026020010181815250508280610da090612e24565b9350505b8380610daf90612e24565b94505050610cd3565b8395505050505050919050565b610dcd611981565b600b54600a610ddc9190612f9a565b81610de79190612fe4565b600c8190555050565b5f610dfa82611a47565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e67576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610ebe611981565b610ec75f611b0a565b565b600d5f9054906101000a900460ff1681565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f1290612cb4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3e90612cb4565b8015610f895780601f10610f6057610100808354040283529160200191610f89565b820191905f5260205f20905b815481529060010190602001808311610f6c57829003601f168201915b5050505050905090565b5f610f9c610edb565b905090565b600d5f9054906101000a900460ff1615610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe79061306f565b60405180910390fd5b80600c54610ffe9190612fe4565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611058919061267d565b602060405180830381865afa158015611073573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110979190612cf8565b10156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf906130d7565b60405180910390fd5b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd333084600c546111259190612fe4565b6040518463ffffffff1660e01b8152600401611143939291906130f5565b6020604051808303815f875af115801561115f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111839190612d5e565b5061118e3382611bcd565b50565b611199611981565b80600e90816111a891906132be565b5050565b8060075f6111b861156a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661126161156a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112a6919061251d565b60405180910390a35050565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113155761131433611579565b5b61132185858585611bea565b5050505050565b611330611981565b80600d5f6101000a81548160ff02191690831515021790555050565b606061135782611510565b611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d906133d7565b60405180910390fd5b5f61139f611c5c565b51116113b95760405180602001604052805f8152506113eb565b6113c1611c5c565b6113ca83611cec565b6040516020016113db929190613479565b6040516020818303038152906040525b9050919050565b600b5481565b600a5481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611494611981565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611504575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016114fb919061267d565b60405180910390fd5b61150d81611b0a565b50565b5f8161151a611571565b1115801561152857505f5482105b801561156357505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611670576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016115ef9291906134a7565b602060405180830381865afa15801561160a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061162e9190612d5e565b61166f57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611666919061267d565b60405180910390fd5b5b50565b5f61167d82611a47565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116e4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f806116ef84611db6565b91509150611705818761170061156a565b611dd9565b6117515761171a8661171561156a565b6113fe565b611750576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036117b6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117c38686866001611e1c565b80156117cd575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061189585611871888887611e22565b7c020000000000000000000000000000000000000000000000000000000017611e49565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611911575f6001850190505f60045f8381526020019081526020015f20540361190f575f54811461190e578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119798686866001611e73565b505050505050565b611989611e79565b73ffffffffffffffffffffffffffffffffffffffff166119a7610edb565b73ffffffffffffffffffffffffffffffffffffffff1614611a06576119ca611e79565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119fd919061267d565b60405180910390fd5b565b611a2283838360405180602001604052805f8152506112d7565b505050565b611a2f612427565b611a40611a3b83611a47565b611e80565b9050919050565b5f8082905080611a55611571565b11611ad3575f54811015611ad2575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611ad0575b5f8103611ac65760045f836001900393508381526020019081526020015f20549050611a9f565b8092505050611b05565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611be6828260405180602001604052805f815250611f34565b5050565b611bf58484846109ea565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611c5657611c1f84848484611fcb565b611c55576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600e8054611c6b90612cb4565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9790612cb4565b8015611ce25780601f10611cb957610100808354040283529160200191611ce2565b820191905f5260205f20905b815481529060010190602001808311611cc557829003601f168201915b5050505050905090565b60605f6001611cfa84612116565b0190505f8167ffffffffffffffff811115611d1857611d176128f4565b5b6040519080825280601f01601f191660200182016040528015611d4a5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611dab578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611da057611d9f6134ce565b5b0494505f8503611d57575b819350505050919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611e38868684612267565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f33905090565b611e88612427565b81815f019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff16815250505f7c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b611f3e838361226f565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611fc6575f805490505f83820390505b611f7a5f868380600101945086611fcb565b611fb0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f6857815f5414611fc3575f80fd5b50505b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff061156a565b8786866040518563ffffffff1660e01b8152600401612012949392919061354d565b6020604051808303815f875af192505050801561204d57506040513d601f19601f8201168201806040525081019061204a91906135ab565b60015b6120c3573d805f811461207b576040519150601f19603f3d011682016040523d82523d5f602084013e612080565b606091505b505f8151036120bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612172577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612168576121676134ce565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121af576d04ee2d6d415b85acef810000000083816121a5576121a46134ce565b5b0492506020810190505b662386f26fc1000083106121de57662386f26fc1000083816121d4576121d36134ce565b5b0492506010810190505b6305f5e1008310612207576305f5e10083816121fd576121fc6134ce565b5b0492506008810190505b612710831061222c576127108381612222576122216134ce565b5b0492506004810190505b6064831061224f5760648381612245576122446134ce565b5b0492506002810190505b600a831061225e576001810190505b80915050919050565b5f9392505050565b5f805490505f82036122ad576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b95f848385611e1c565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061232b8361231c5f865f611e22565b61232585612418565b17611e49565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146123c55780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061238c565b505f82036123ff576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506124135f848385611e73565b505050565b5f6001821460e11b9050919050565b60405180608001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581526020015f62ffffff1681525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124b781612483565b81146124c1575f80fd5b50565b5f813590506124d2816124ae565b92915050565b5f602082840312156124ed576124ec61247b565b5b5f6124fa848285016124c4565b91505092915050565b5f8115159050919050565b61251781612503565b82525050565b5f6020820190506125305f83018461250e565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561256d578082015181840152602081019050612552565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61259282612536565b61259c8185612540565b93506125ac818560208601612550565b6125b581612578565b840191505092915050565b5f6020820190508181035f8301526125d88184612588565b905092915050565b5f819050919050565b6125f2816125e0565b81146125fc575f80fd5b50565b5f8135905061260d816125e9565b92915050565b5f602082840312156126285761262761247b565b5b5f612635848285016125ff565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6126678261263e565b9050919050565b6126778161265d565b82525050565b5f6020820190506126905f83018461266e565b92915050565b61269f8161265d565b81146126a9575f80fd5b50565b5f813590506126ba81612696565b92915050565b5f80604083850312156126d6576126d561247b565b5b5f6126e3858286016126ac565b92505060206126f4858286016125ff565b9150509250929050565b612707816125e0565b82525050565b5f6020820190506127205f8301846126fe565b92915050565b5f805f6060848603121561273d5761273c61247b565b5b5f61274a868287016126ac565b935050602061275b868287016126ac565b925050604061276c868287016125ff565b9150509250925092565b5f819050919050565b5f61279961279461278f8461263e565b612776565b61263e565b9050919050565b5f6127aa8261277f565b9050919050565b5f6127bb826127a0565b9050919050565b6127cb816127b1565b82525050565b5f6020820190506127e45f8301846127c2565b92915050565b5f602082840312156127ff576127fe61247b565b5b5f61280c848285016126ac565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612847816125e0565b82525050565b5f612858838361283e565b60208301905092915050565b5f602082019050919050565b5f61287a82612815565b612884818561281f565b935061288f8361282f565b805f5b838110156128bf5781516128a6888261284d565b97506128b183612864565b925050600181019050612892565b5085935050505092915050565b5f6020820190508181035f8301526128e48184612870565b905092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61292a82612578565b810181811067ffffffffffffffff82111715612949576129486128f4565b5b80604052505050565b5f61295b612472565b90506129678282612921565b919050565b5f67ffffffffffffffff821115612986576129856128f4565b5b61298f82612578565b9050602081019050919050565b828183375f83830152505050565b5f6129bc6129b78461296c565b612952565b9050828152602081018484840111156129d8576129d76128f0565b5b6129e384828561299c565b509392505050565b5f82601f8301126129ff576129fe6128ec565b5b8135612a0f8482602086016129aa565b91505092915050565b5f60208284031215612a2d57612a2c61247b565b5b5f82013567ffffffffffffffff811115612a4a57612a4961247f565b5b612a56848285016129eb565b91505092915050565b612a6881612503565b8114612a72575f80fd5b50565b5f81359050612a8381612a5f565b92915050565b5f8060408385031215612a9f57612a9e61247b565b5b5f612aac858286016126ac565b9250506020612abd85828601612a75565b9150509250929050565b5f612ad1826127a0565b9050919050565b612ae181612ac7565b82525050565b5f602082019050612afa5f830184612ad8565b92915050565b5f67ffffffffffffffff821115612b1a57612b196128f4565b5b612b2382612578565b9050602081019050919050565b5f612b42612b3d84612b00565b612952565b905082815260208101848484011115612b5e57612b5d6128f0565b5b612b6984828561299c565b509392505050565b5f82601f830112612b8557612b846128ec565b5b8135612b95848260208601612b30565b91505092915050565b5f805f8060808587031215612bb657612bb561247b565b5b5f612bc3878288016126ac565b9450506020612bd4878288016126ac565b9350506040612be5878288016125ff565b925050606085013567ffffffffffffffff811115612c0657612c0561247f565b5b612c1287828801612b71565b91505092959194509250565b5f60208284031215612c3357612c3261247b565b5b5f612c4084828501612a75565b91505092915050565b5f8060408385031215612c5f57612c5e61247b565b5b5f612c6c858286016126ac565b9250506020612c7d858286016126ac565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612ccb57607f821691505b602082108103612cde57612cdd612c87565b5b50919050565b5f81519050612cf2816125e9565b92915050565b5f60208284031215612d0d57612d0c61247b565b5b5f612d1a84828501612ce4565b91505092915050565b5f604082019050612d365f83018561266e565b612d4360208301846126fe565b9392505050565b5f81519050612d5881612a5f565b92915050565b5f60208284031215612d7357612d7261247b565b5b5f612d8084828501612d4a565b91505092915050565b5f81905092915050565b50565b5f612da15f83612d89565b9150612dac82612d93565b5f82019050919050565b5f612dc082612d96565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612e2e826125e0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e6057612e5f612df7565b5b600182019050919050565b5f8160011c9050919050565b5f808291508390505b6001851115612ec057808604811115612e9c57612e9b612df7565b5b6001851615612eab5780820291505b8081029050612eb985612e6b565b9450612e80565b94509492505050565b5f82612ed85760019050612f93565b81612ee5575f9050612f93565b8160018114612efb5760028114612f0557612f34565b6001915050612f93565b60ff841115612f1757612f16612df7565b5b8360020a915084821115612f2e57612f2d612df7565b5b50612f93565b5060208310610133831016604e8410600b8410161715612f695782820a905083811115612f6457612f63612df7565b5b612f93565b612f768484846001612e77565b92509050818404811115612f8d57612f8c612df7565b5b81810290505b9392505050565b5f612fa4826125e0565b9150612faf836125e0565b9250612fdc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612ec9565b905092915050565b5f612fee826125e0565b9150612ff9836125e0565b9250828202613007816125e0565b9150828204841483151761301e5761301d612df7565b5b5092915050565b7f54686520636f6e747261637420697320706175736564000000000000000000005f82015250565b5f613059601683612540565b915061306482613025565b602082019050919050565b5f6020820190508181035f8301526130868161304d565b9050919050565b7f496e73756666696369656e7420555344430000000000000000000000000000005f82015250565b5f6130c1601183612540565b91506130cc8261308d565b602082019050919050565b5f6020820190508181035f8301526130ee816130b5565b9050919050565b5f6060820190506131085f83018661266e565b613115602083018561266e565b61312260408301846126fe565b949350505050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026131867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261314b565b613190868361314b565b95508019841693508086168417925050509392505050565b5f6131c26131bd6131b8846125e0565b612776565b6125e0565b9050919050565b5f819050919050565b6131db836131a8565b6131ef6131e7826131c9565b848454613157565b825550505050565b5f90565b6132036131f7565b61320e8184846131d2565b505050565b5b81811015613231576132265f826131fb565b600181019050613214565b5050565b601f821115613276576132478161312a565b6132508461313c565b8101602085101561325f578190505b61327361326b8561313c565b830182613213565b50505b505050565b5f82821c905092915050565b5f6132965f198460080261327b565b1980831691505092915050565b5f6132ae8383613287565b9150826002028217905092915050565b6132c782612536565b67ffffffffffffffff8111156132e0576132df6128f4565b5b6132ea8254612cb4565b6132f5828285613235565b5f60209050601f831160018114613326575f8415613314578287015190505b61331e85826132a3565b865550613385565b601f1984166133348661312a565b5f5b8281101561335b57848901518255600182019150602085019450602081019050613336565b868310156133785784890151613374601f891682613287565b8355505b6001600288020188555050505b505050505050565b7f5468617420746f6b656e20646f65736e277420657869737400000000000000005f82015250565b5f6133c1601883612540565b91506133cc8261338d565b602082019050919050565b5f6020820190508181035f8301526133ee816133b5565b9050919050565b5f81905092915050565b5f61340982612536565b61341381856133f5565b9350613423818560208601612550565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6134636005836133f5565b915061346e8261342f565b600582019050919050565b5f61348482856133ff565b915061349082846133ff565b915061349b82613457565b91508190509392505050565b5f6040820190506134ba5f83018561266e565b6134c7602083018461266e565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f61351f826134fb565b6135298185613505565b9350613539818560208601612550565b61354281612578565b840191505092915050565b5f6080820190506135605f83018761266e565b61356d602083018661266e565b61357a60408301856126fe565b818103606083015261358c8184613515565b905095945050505050565b5f815190506135a5816124ae565b92915050565b5f602082840312156135c0576135bf61247b565b5b5f6135cd84828501613597565b9150509291505056fea2646970667358221220edbc24e5665122c5aeedbb4de9716b671da7af1de626b8a535f6945c489e685564736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6455486d4a77506245514a32755775336a316958426e4a5258746734345872705368726946547a6e5676526d2f00000000000000000000
-----Decoded View---------------
Arg [0] : _decimals (uint256): 6
Arg [1] : _usdcCost (uint256): 1000
Arg [2] : _baseUri (string): ipfs://QmdUHmJwPbEQJ2uWu3j1iXBnJRXtg44XrpShriFTznVvRm/
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d6455486d4a77506245514a32755775336a316958426e4a
Arg [5] : 5258746734345872705368726946547a6e5676526d2f00000000000000000000
Deployed Bytecode Sourcemap
111908:3987:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40005:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40907:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47398:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46831:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112115:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36658:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;115287:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;113370:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;115024:258;;;;;;;;;;;;;:::i;:::-;;18204:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;115466:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;113893:945;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;114843:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42300:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37842:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107594:103;;;;;;;;;;;;;:::i;:::-;;112140:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106919:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41083:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;113478:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;112973:392;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112771:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47956:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112333:74;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;115653:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;114948:71;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;113566:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;112076:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;112037;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48347:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107852:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40005:639;40090:4;40429:10;40414:25;;:11;:25;;;;:102;;;;40506:10;40491:25;;:11;:25;;;;40414:102;:179;;;;40583:10;40568:25;;:11;:25;;;;40414:179;40394:199;;40005:639;;;:::o;40907:100::-;40961:13;40994:5;40987:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40907:100;:::o;47398:218::-;47474:7;47499:16;47507:7;47499;:16::i;:::-;47494:64;;47524:34;;;;;;;;;;;;;;47494:64;47578:15;:24;47594:7;47578:24;;;;;;;;;;;:30;;;;;;;;;;;;47571:37;;47398:218;;;:::o;46831:408::-;46920:13;46936:16;46944:7;46936;:16::i;:::-;46920:32;;46992:5;46969:28;;:19;:17;:19::i;:::-;:28;;;46965:175;;47017:44;47034:5;47041:19;:17;:19::i;:::-;47017:16;:44::i;:::-;47012:128;;47089:35;;;;;;;;;;;;;;47012:128;46965:175;47185:2;47152:15;:24;47168:7;47152:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;47223:7;47219:2;47203:28;;47212:5;47203:28;;;;;;;;;;;;46909:330;46831:408;;:::o;112115:19::-;;;;:::o;36658:323::-;36719:7;36947:15;:13;:15::i;:::-;36932:12;;36916:13;;:28;:46;36909:53;;36658:323;:::o;115287:171::-;115396:4;19720:10;19712:18;;:4;:18;;;19708:83;;19747:32;19768:10;19747:20;:32::i;:::-;19708:83;115413:37:::1;115432:4;115438:2;115442:7;115413:18;:37::i;:::-;115287:171:::0;;;;:::o;113370:100::-;106805:13;:11;:13::i;:::-;113453:12:::1;113441:9;:24;;;;113370:100:::0;:::o;115024:258::-;106805:13;:11;:13::i;:::-;115081:9:::1;;;;;;;;;;;115074:26;;;115101:7;:5;:7::i;:::-;115110:9;;;;;;;;;;;:19;;;115138:4;115110:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;115074:71;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;115153:12;115179:7;:5;:7::i;:::-;115171:21;;115214;115171:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115152:98;;;115269:7;115261:16;;;::::0;::::1;;115063:219;115024:258::o:0;18204:143::-;10532:42;18204:143;:::o;115466:179::-;115579:4;19720:10;19712:18;;:4;:18;;;19708:83;;19747:32;19768:10;19747:20;:32::i;:::-;19708:83;115596:41:::1;115619:4;115625:2;115629:7;115596:22;:41::i;:::-;115466:179:::0;;;;:::o;113893:945::-;113980:16;114014:23;114040:17;114050:6;114040:9;:17::i;:::-;114014:43;;114068:30;114115:15;114101:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114068:63;;114142:22;114167:15;:13;:15::i;:::-;114142:40;;114193:23;114231:26;114270:528;114309:15;114291;:33;:64;;;;;114346:9;;114328:14;:27;;114291:64;114270:528;;;114382:31;114416:28;114429:14;114416:12;:28::i;:::-;114382:62;;114466:9;:16;;;114465:17;:49;;;;;114512:1;114486:28;;:9;:14;;;:28;;;;114465:49;114461:125;;;114556:9;:14;;;114535:35;;114461:125;114628:6;114606:28;;:18;:28;;;114602:152;;114688:14;114655:13;114669:15;114655:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;114721:17;;;;;:::i;:::-;;;;114602:152;114770:16;;;;;:::i;:::-;;;;114367:431;114270:528;;;114817:13;114810:20;;;;;;;113893:945;;;:::o;114843:100::-;106805:13;:11;:13::i;:::-;114924::::1;;114918:2;:19;;;;:::i;:::-;114906:8;:32;;;;:::i;:::-;114899:4;:39;;;;114843:100:::0;:::o;42300:152::-;42372:7;42415:27;42434:7;42415:18;:27::i;:::-;42392:52;;42300:152;;;:::o;37842:233::-;37914:7;37955:1;37938:19;;:5;:19;;;37934:60;;37966:28;;;;;;;;;;;;;;37934:60;32001:13;38012:18;:25;38031:5;38012:25;;;;;;;;;;;;;;;;:55;38005:62;;37842:233;;;:::o;107594:103::-;106805:13;:11;:13::i;:::-;107659:30:::1;107686:1;107659:18;:30::i;:::-;107594:103::o:0;112140:25::-;;;;;;;;;;;;;:::o;106919:87::-;106965:7;106992:6;;;;;;;;;;;106985:13;;106919:87;:::o;41083:104::-;41139:13;41172:7;41165:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41083:104;:::o;113478:83::-;113519:7;113546;:5;:7::i;:::-;113538:15;;113478:83;:::o;112973:392::-;113044:5;;;;;;;;;;;113043:6;113035:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;113137:10;113130:4;;:17;;;;:::i;:::-;113095:9;;;;;;;;;;;:19;;;113115:10;113095:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:52;;113087:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;113253:9;;;;;;;;;;;113246:30;;;113277:10;113297:4;113311:10;113304:4;;:17;;;;:::i;:::-;113246:76;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;113327:33;113337:10;113349;113327:9;:33::i;:::-;112973:392;:::o;112771:92::-;106805:13;:11;:13::i;:::-;112850:8:::1;112840:7;:18;;;;;;:::i;:::-;;112771:92:::0;:::o;47956:234::-;48103:8;48051:18;:39;48070:19;:17;:19::i;:::-;48051:39;;;;;;;;;;;;;;;:49;48091:8;48051:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;48163:8;48127:55;;48142:19;:17;:19::i;:::-;48127:55;;;48173:8;48127:55;;;;;;:::i;:::-;;;;;;;;47956:234;;:::o;112333:74::-;;;;;;;;;;;;;:::o;115653:239::-;115815:4;19720:10;19712:18;;:4;:18;;;19708:83;;19747:32;19768:10;19747:20;:32::i;:::-;19708:83;115837:47:::1;115860:4;115866:2;115870:7;115879:4;115837:22;:47::i;:::-;115653:239:::0;;;;;:::o;114948:71::-;106805:13;:11;:13::i;:::-;115008:6:::1;115000:5;;:14;;;;;;;;;;;;;;;;;;114948:71:::0;:::o;113566:319::-;113643:13;113679:16;113687:7;113679;:16::i;:::-;113671:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;113779:1;113758:10;:8;:10::i;:::-;113752:24;:28;:128;;;;;;;;;;;;;;;;;113821:10;:8;:10::i;:::-;113833:18;:7;:16;:18::i;:::-;113804:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;113752:128;113745:135;;113566:319;;;:::o;112076:32::-;;;;:::o;112037:::-;;;;:::o;48347:164::-;48444:4;48468:18;:25;48487:5;48468:25;;;;;;;;;;;;;;;:35;48494:8;48468:35;;;;;;;;;;;;;;;;;;;;;;;;;48461:42;;48347:164;;;;:::o;107852:220::-;106805:13;:11;:13::i;:::-;107957:1:::1;107937:22;;:8;:22;;::::0;107933:93:::1;;108011:1;107983:31;;;;;;;;;;;:::i;:::-;;;;;;;;107933:93;108036:28;108055:8;108036:18;:28::i;:::-;107852:220:::0;:::o;48769:282::-;48834:4;48890:7;48871:15;:13;:15::i;:::-;:26;;:66;;;;;48924:13;;48914:7;:23;48871:66;:153;;;;;49023:1;32777:8;48975:17;:26;48993:7;48975:26;;;;;;;;;;;;:44;:49;48871:153;48851:173;;48769:282;;;:::o;71077:105::-;71137:7;71164:10;71157:17;;71077:105;:::o;112868:97::-;112933:7;112957:1;112950:8;;112868:97;:::o;20129:647::-;20368:1;10532:42;20320:45;;;:49;20316:453;;;10532:42;20619;;;20670:4;20677:8;20619:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20614:144;;20733:8;20714:28;;;;;;;;;;;:::i;:::-;;;;;;;;20614:144;20316:453;20129:647;:::o;51037:2825::-;51179:27;51209;51228:7;51209:18;:27::i;:::-;51179:57;;51294:4;51253:45;;51269:19;51253:45;;;51249:86;;51307:28;;;;;;;;;;;;;;51249:86;51349:27;51378:23;51405:35;51432:7;51405:26;:35::i;:::-;51348:92;;;;51540:68;51565:15;51582:4;51588:19;:17;:19::i;:::-;51540:24;:68::i;:::-;51535:180;;51628:43;51645:4;51651:19;:17;:19::i;:::-;51628:16;:43::i;:::-;51623:92;;51680:35;;;;;;;;;;;;;;51623:92;51535:180;51746:1;51732:16;;:2;:16;;;51728:52;;51757:23;;;;;;;;;;;;;;51728:52;51793:43;51815:4;51821:2;51825:7;51834:1;51793:21;:43::i;:::-;51929:15;51926:160;;;52069:1;52048:19;52041:30;51926:160;52466:18;:24;52485:4;52466:24;;;;;;;;;;;;;;;;52464:26;;;;;;;;;;;;52535:18;:22;52554:2;52535:22;;;;;;;;;;;;;;;;52533:24;;;;;;;;;;;52857:146;52894:2;52943:45;52958:4;52964:2;52968:19;52943:14;:45::i;:::-;33057:8;52915:73;52857:18;:146::i;:::-;52828:17;:26;52846:7;52828:26;;;;;;;;;;;:175;;;;53174:1;33057:8;53123:19;:47;:52;53119:627;;53196:19;53228:1;53218:7;:11;53196:33;;53385:1;53351:17;:30;53369:11;53351:30;;;;;;;;;;;;:35;53347:384;;53489:13;;53474:11;:28;53470:242;;53669:19;53636:17;:30;53654:11;53636:30;;;;;;;;;;;:52;;;;53470:242;53347:384;53177:569;53119:627;53793:7;53789:2;53774:27;;53783:4;53774:27;;;;;;;;;;;;53812:42;53833:4;53839:2;53843:7;53852:1;53812:20;:42::i;:::-;51168:2694;;;51037:2825;;;:::o;107084:166::-;107155:12;:10;:12::i;:::-;107144:23;;:7;:5;:7::i;:::-;:23;;;107140:103;;107218:12;:10;:12::i;:::-;107191:40;;;;;;;;;;;:::i;:::-;;;;;;;;107140:103;107084:166::o;53958:193::-;54104:39;54121:4;54127:2;54131:7;54104:39;;;;;;;;;;;;:16;:39::i;:::-;53958:193;;;:::o;42641:166::-;42711:21;;:::i;:::-;42752:47;42771:27;42790:7;42771:18;:27::i;:::-;42752:18;:47::i;:::-;42745:54;;42641:166;;;:::o;43455:1275::-;43522:7;43542:12;43557:7;43542:22;;43625:4;43606:15;:13;:15::i;:::-;:23;43602:1061;;43659:13;;43652:4;:20;43648:1015;;;43697:14;43714:17;:23;43732:4;43714:23;;;;;;;;;;;;43697:40;;43831:1;32777:8;43803:6;:24;:29;43799:845;;44468:113;44485:1;44475:6;:11;44468:113;;44528:17;:25;44546:6;;;;;;;44528:25;;;;;;;;;;;;44519:34;;44468:113;;;44614:6;44607:13;;;;;;43799:845;43674:989;43648:1015;43602:1061;44691:31;;;;;;;;;;;;;;43455:1275;;;;:::o;108232:191::-;108306:16;108325:6;;;;;;;;;;;108306:25;;108351:8;108342:6;;:17;;;;;;;;;;;;;;;;;;108406:8;108375:40;;108396:8;108375:40;;;;;;;;;;;;108295:128;108232:191;:::o;64909:112::-;64986:27;64996:2;65000:8;64986:27;;;;;;;;;;;;:9;:27::i;:::-;64909:112;;:::o;54749:407::-;54924:31;54937:4;54943:2;54947:7;54924:12;:31::i;:::-;54988:1;54970:2;:14;;;:19;54966:183;;55009:56;55040:4;55046:2;55050:7;55059:5;55009:30;:56::i;:::-;55004:145;;55093:40;;;;;;;;;;;;;;55004:145;54966:183;54749:407;;;;:::o;112672:91::-;112724:13;112751:7;112744:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112672:91;:::o;90531:718::-;90587:13;90638:14;90675:1;90655:17;90666:5;90655:10;:17::i;:::-;:21;90638:38;;90691:20;90725:6;90714:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90691:41;;90747:11;90876:6;90872:2;90868:15;90860:6;90856:28;90849:35;;90913:290;90920:4;90913:290;;;90945:5;;;;;;;;91087:10;91082:2;91075:5;91071:14;91066:32;91061:3;91053:46;91145:2;91136:11;;;;;;:::i;:::-;;;;;91179:1;91170:5;:10;90913:290;91166:21;90913:290;91224:6;91217:13;;;;;90531:718;;;:::o;49932:485::-;50034:27;50063:23;50104:38;50145:15;:24;50161:7;50145:24;;;;;;;;;;;50104:65;;50322:18;50299:41;;50379:19;50373:26;50354:45;;50284:126;49932:485;;;:::o;49160:659::-;49309:11;49474:16;49467:5;49463:28;49454:37;;49634:16;49623:9;49619:32;49606:45;;49784:15;49773:9;49770:30;49762:5;49751:9;49748:20;49745:56;49735:66;;49160:659;;;;;:::o;55818:159::-;;;;;:::o;70386:311::-;70521:7;70541:16;33181:3;70567:19;:41;;70541:68;;33181:3;70635:31;70646:4;70652:2;70656:9;70635:10;:31::i;:::-;70627:40;;:62;;70620:69;;;70386:311;;;;;:::o;45278:450::-;45358:14;45526:16;45519:5;45515:28;45506:37;;45703:5;45689:11;45664:23;45660:41;45657:52;45650:5;45647:63;45637:73;;45278:450;;;;:::o;56642:158::-;;;;;:::o;93761:98::-;93814:7;93841:10;93834:17;;93761:98;:::o;44829:366::-;44895:31;;:::i;:::-;44972:6;44939:9;:14;;:41;;;;;;;;;;;32660:3;45025:6;:33;;44991:9;:24;;:68;;;;;;;;;;;45117:1;32777:8;45089:6;:24;:29;;45070:9;:16;;:48;;;;;;;;;;;33181:3;45158:6;:28;;45129:9;:19;;:58;;;;;;;;;;;44829:366;;;:::o;64136:689::-;64267:19;64273:2;64277:8;64267:5;:19::i;:::-;64346:1;64328:2;:14;;;:19;64324:483;;64368:11;64382:13;;64368:27;;64414:13;64436:8;64430:3;:14;64414:30;;64463:233;64494:62;64533:1;64537:2;64541:7;;;;;;64550:5;64494:30;:62::i;:::-;64489:167;;64592:40;;;;;;;;;;;;;;64489:167;64691:3;64683:5;:11;64463:233;;64778:3;64761:13;;:20;64757:34;;64783:8;;;64757:34;64349:458;;64324:483;64136:689;;;:::o;57240:716::-;57403:4;57449:2;57424:45;;;57470:19;:17;:19::i;:::-;57491:4;57497:7;57506:5;57424:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57420:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57724:1;57707:6;:13;:18;57703:235;;57753:40;;;;;;;;;;;;;;57703:235;57896:6;57890:13;57881:6;57877:2;57873:15;57866:38;57420:529;57593:54;;;57583:64;;;:6;:64;;;;57576:71;;;57240:716;;;;;;:::o;86935:948::-;86988:7;87008:14;87025:1;87008:18;;87075:8;87066:5;:17;87062:106;;87113:8;87104:17;;;;;;:::i;:::-;;;;;87150:2;87140:12;;;;87062:106;87195:8;87186:5;:17;87182:106;;87233:8;87224:17;;;;;;:::i;:::-;;;;;87270:2;87260:12;;;;87182:106;87315:8;87306:5;:17;87302:106;;87353:8;87344:17;;;;;;:::i;:::-;;;;;87390:2;87380:12;;;;87302:106;87435:7;87426:5;:16;87422:103;;87472:7;87463:16;;;;;;:::i;:::-;;;;;87508:1;87498:11;;;;87422:103;87552:7;87543:5;:16;87539:103;;87589:7;87580:16;;;;;;:::i;:::-;;;;;87625:1;87615:11;;;;87539:103;87669:7;87660:5;:16;87656:103;;87706:7;87697:16;;;;;;:::i;:::-;;;;;87742:1;87732:11;;;;87656:103;87786:7;87777:5;:16;87773:68;;87824:1;87814:11;;;;87773:68;87869:6;87862:13;;;86935:948;;;:::o;70087:147::-;70224:6;70087:147;;;;;:::o;58418:2966::-;58491:20;58514:13;;58491:36;;58554:1;58542:8;:13;58538:44;;58564:18;;;;;;;;;;;;;;58538:44;58595:61;58625:1;58629:2;58633:12;58647:8;58595:21;:61::i;:::-;59139:1;32139:2;59109:1;:26;;59108:32;59096:8;:45;59070:18;:22;59089:2;59070:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;59418:139;59455:2;59509:33;59532:1;59536:2;59540:1;59509:14;:33::i;:::-;59476:30;59497:8;59476:20;:30::i;:::-;:66;59418:18;:139::i;:::-;59384:17;:31;59402:12;59384:31;;;;;;;;;;;:173;;;;59574:16;59605:11;59634:8;59619:12;:23;59605:37;;60155:16;60151:2;60147:25;60135:37;;60527:12;60487:8;60446:1;60384:25;60325:1;60264;60237:335;60898:1;60884:12;60880:20;60838:346;60939:3;60930:7;60927:16;60838:346;;61157:7;61147:8;61144:1;61117:25;61114:1;61111;61106:59;60992:1;60983:7;60979:15;60968:26;;60838:346;;;60842:77;61229:1;61217:8;:13;61213:45;;61239:19;;;;;;;;;;;;;;61213:45;61291:3;61275:13;:19;;;;58844:2462;;61316:60;61345:1;61349:2;61353:12;61367:8;61316:20;:60::i;:::-;58480:2904;58418:2966;;:::o;45830:324::-;45900:14;46133:1;46123:8;46120:15;46094:24;46090:46;46080:56;;45830:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:329::-;6924:6;6973:2;6961:9;6952:7;6948:23;6944:32;6941:119;;;6979:79;;:::i;:::-;6941:119;7099:1;7124:53;7169:7;7160:6;7149:9;7145:22;7124:53;:::i;:::-;7114:63;;7070:117;6865:329;;;;:::o;7200:114::-;7267:6;7301:5;7295:12;7285:22;;7200:114;;;:::o;7320:184::-;7419:11;7453:6;7448:3;7441:19;7493:4;7488:3;7484:14;7469:29;;7320:184;;;;:::o;7510:132::-;7577:4;7600:3;7592:11;;7630:4;7625:3;7621:14;7613:22;;7510:132;;;:::o;7648:108::-;7725:24;7743:5;7725:24;:::i;:::-;7720:3;7713:37;7648:108;;:::o;7762:179::-;7831:10;7852:46;7894:3;7886:6;7852:46;:::i;:::-;7930:4;7925:3;7921:14;7907:28;;7762:179;;;;:::o;7947:113::-;8017:4;8049;8044:3;8040:14;8032:22;;7947:113;;;:::o;8096:732::-;8215:3;8244:54;8292:5;8244:54;:::i;:::-;8314:86;8393:6;8388:3;8314:86;:::i;:::-;8307:93;;8424:56;8474:5;8424:56;:::i;:::-;8503:7;8534:1;8519:284;8544:6;8541:1;8538:13;8519:284;;;8620:6;8614:13;8647:63;8706:3;8691:13;8647:63;:::i;:::-;8640:70;;8733:60;8786:6;8733:60;:::i;:::-;8723:70;;8579:224;8566:1;8563;8559:9;8554:14;;8519:284;;;8523:14;8819:3;8812:10;;8220:608;;;8096:732;;;;:::o;8834:373::-;8977:4;9015:2;9004:9;9000:18;8992:26;;9064:9;9058:4;9054:20;9050:1;9039:9;9035:17;9028:47;9092:108;9195:4;9186:6;9092:108;:::i;:::-;9084:116;;8834:373;;;;:::o;9213:117::-;9322:1;9319;9312:12;9336:117;9445:1;9442;9435:12;9459:180;9507:77;9504:1;9497:88;9604:4;9601:1;9594:15;9628:4;9625:1;9618:15;9645:281;9728:27;9750:4;9728:27;:::i;:::-;9720:6;9716:40;9858:6;9846:10;9843:22;9822:18;9810:10;9807:34;9804:62;9801:88;;;9869:18;;:::i;:::-;9801:88;9909:10;9905:2;9898:22;9688:238;9645:281;;:::o;9932:129::-;9966:6;9993:20;;:::i;:::-;9983:30;;10022:33;10050:4;10042:6;10022:33;:::i;:::-;9932:129;;;:::o;10067:308::-;10129:4;10219:18;10211:6;10208:30;10205:56;;;10241:18;;:::i;:::-;10205:56;10279:29;10301:6;10279:29;:::i;:::-;10271:37;;10363:4;10357;10353:15;10345:23;;10067:308;;;:::o;10381:146::-;10478:6;10473:3;10468;10455:30;10519:1;10510:6;10505:3;10501:16;10494:27;10381:146;;;:::o;10533:425::-;10611:5;10636:66;10652:49;10694:6;10652:49;:::i;:::-;10636:66;:::i;:::-;10627:75;;10725:6;10718:5;10711:21;10763:4;10756:5;10752:16;10801:3;10792:6;10787:3;10783:16;10780:25;10777:112;;;10808:79;;:::i;:::-;10777:112;10898:54;10945:6;10940:3;10935;10898:54;:::i;:::-;10617:341;10533:425;;;;;:::o;10978:340::-;11034:5;11083:3;11076:4;11068:6;11064:17;11060:27;11050:122;;11091:79;;:::i;:::-;11050:122;11208:6;11195:20;11233:79;11308:3;11300:6;11293:4;11285:6;11281:17;11233:79;:::i;:::-;11224:88;;11040:278;10978:340;;;;:::o;11324:509::-;11393:6;11442:2;11430:9;11421:7;11417:23;11413:32;11410:119;;;11448:79;;:::i;:::-;11410:119;11596:1;11585:9;11581:17;11568:31;11626:18;11618:6;11615:30;11612:117;;;11648:79;;:::i;:::-;11612:117;11753:63;11808:7;11799:6;11788:9;11784:22;11753:63;:::i;:::-;11743:73;;11539:287;11324:509;;;;:::o;11839:116::-;11909:21;11924:5;11909:21;:::i;:::-;11902:5;11899:32;11889:60;;11945:1;11942;11935:12;11889:60;11839:116;:::o;11961:133::-;12004:5;12042:6;12029:20;12020:29;;12058:30;12082:5;12058:30;:::i;:::-;11961:133;;;;:::o;12100:468::-;12165:6;12173;12222:2;12210:9;12201:7;12197:23;12193:32;12190:119;;;12228:79;;:::i;:::-;12190:119;12348:1;12373:53;12418:7;12409:6;12398:9;12394:22;12373:53;:::i;:::-;12363:63;;12319:117;12475:2;12501:50;12543:7;12534:6;12523:9;12519:22;12501:50;:::i;:::-;12491:60;;12446:115;12100:468;;;;;:::o;12574:140::-;12638:9;12671:37;12702:5;12671:37;:::i;:::-;12658:50;;12574:140;;;:::o;12720:159::-;12821:51;12866:5;12821:51;:::i;:::-;12816:3;12809:64;12720:159;;:::o;12885:250::-;12992:4;13030:2;13019:9;13015:18;13007:26;;13043:85;13125:1;13114:9;13110:17;13101:6;13043:85;:::i;:::-;12885:250;;;;:::o;13141:307::-;13202:4;13292:18;13284:6;13281:30;13278:56;;;13314:18;;:::i;:::-;13278:56;13352:29;13374:6;13352:29;:::i;:::-;13344:37;;13436:4;13430;13426:15;13418:23;;13141:307;;;:::o;13454:423::-;13531:5;13556:65;13572:48;13613:6;13572:48;:::i;:::-;13556:65;:::i;:::-;13547:74;;13644:6;13637:5;13630:21;13682:4;13675:5;13671:16;13720:3;13711:6;13706:3;13702:16;13699:25;13696:112;;;13727:79;;:::i;:::-;13696:112;13817:54;13864:6;13859:3;13854;13817:54;:::i;:::-;13537:340;13454:423;;;;;:::o;13896:338::-;13951:5;14000:3;13993:4;13985:6;13981:17;13977:27;13967:122;;14008:79;;:::i;:::-;13967:122;14125:6;14112:20;14150:78;14224:3;14216:6;14209:4;14201:6;14197:17;14150:78;:::i;:::-;14141:87;;13957:277;13896:338;;;;:::o;14240:943::-;14335:6;14343;14351;14359;14408:3;14396:9;14387:7;14383:23;14379:33;14376:120;;;14415:79;;:::i;:::-;14376:120;14535:1;14560:53;14605:7;14596:6;14585:9;14581:22;14560:53;:::i;:::-;14550:63;;14506:117;14662:2;14688:53;14733:7;14724:6;14713:9;14709:22;14688:53;:::i;:::-;14678:63;;14633:118;14790:2;14816:53;14861:7;14852:6;14841:9;14837:22;14816:53;:::i;:::-;14806:63;;14761:118;14946:2;14935:9;14931:18;14918:32;14977:18;14969:6;14966:30;14963:117;;;14999:79;;:::i;:::-;14963:117;15104:62;15158:7;15149:6;15138:9;15134:22;15104:62;:::i;:::-;15094:72;;14889:287;14240:943;;;;;;;:::o;15189:323::-;15245:6;15294:2;15282:9;15273:7;15269:23;15265:32;15262:119;;;15300:79;;:::i;:::-;15262:119;15420:1;15445:50;15487:7;15478:6;15467:9;15463:22;15445:50;:::i;:::-;15435:60;;15391:114;15189:323;;;;:::o;15518:474::-;15586:6;15594;15643:2;15631:9;15622:7;15618:23;15614:32;15611:119;;;15649:79;;:::i;:::-;15611:119;15769:1;15794:53;15839:7;15830:6;15819:9;15815:22;15794:53;:::i;:::-;15784:63;;15740:117;15896:2;15922:53;15967:7;15958:6;15947:9;15943:22;15922:53;:::i;:::-;15912:63;;15867:118;15518:474;;;;;:::o;15998:180::-;16046:77;16043:1;16036:88;16143:4;16140:1;16133:15;16167:4;16164:1;16157:15;16184:320;16228:6;16265:1;16259:4;16255:12;16245:22;;16312:1;16306:4;16302:12;16333:18;16323:81;;16389:4;16381:6;16377:17;16367:27;;16323:81;16451:2;16443:6;16440:14;16420:18;16417:38;16414:84;;16470:18;;:::i;:::-;16414:84;16235:269;16184:320;;;:::o;16510:143::-;16567:5;16598:6;16592:13;16583:22;;16614:33;16641:5;16614:33;:::i;:::-;16510:143;;;;:::o;16659:351::-;16729:6;16778:2;16766:9;16757:7;16753:23;16749:32;16746:119;;;16784:79;;:::i;:::-;16746:119;16904:1;16929:64;16985:7;16976:6;16965:9;16961:22;16929:64;:::i;:::-;16919:74;;16875:128;16659:351;;;;:::o;17016:332::-;17137:4;17175:2;17164:9;17160:18;17152:26;;17188:71;17256:1;17245:9;17241:17;17232:6;17188:71;:::i;:::-;17269:72;17337:2;17326:9;17322:18;17313:6;17269:72;:::i;:::-;17016:332;;;;;:::o;17354:137::-;17408:5;17439:6;17433:13;17424:22;;17455:30;17479:5;17455:30;:::i;:::-;17354:137;;;;:::o;17497:345::-;17564:6;17613:2;17601:9;17592:7;17588:23;17584:32;17581:119;;;17619:79;;:::i;:::-;17581:119;17739:1;17764:61;17817:7;17808:6;17797:9;17793:22;17764:61;:::i;:::-;17754:71;;17710:125;17497:345;;;;:::o;17848:147::-;17949:11;17986:3;17971:18;;17848:147;;;;:::o;18001:114::-;;:::o;18121:398::-;18280:3;18301:83;18382:1;18377:3;18301:83;:::i;:::-;18294:90;;18393:93;18482:3;18393:93;:::i;:::-;18511:1;18506:3;18502:11;18495:18;;18121:398;;;:::o;18525:379::-;18709:3;18731:147;18874:3;18731:147;:::i;:::-;18724:154;;18895:3;18888:10;;18525:379;;;:::o;18910:180::-;18958:77;18955:1;18948:88;19055:4;19052:1;19045:15;19079:4;19076:1;19069:15;19096:180;19144:77;19141:1;19134:88;19241:4;19238:1;19231:15;19265:4;19262:1;19255:15;19282:233;19321:3;19344:24;19362:5;19344:24;:::i;:::-;19335:33;;19390:66;19383:5;19380:77;19377:103;;19460:18;;:::i;:::-;19377:103;19507:1;19500:5;19496:13;19489:20;;19282:233;;;:::o;19521:102::-;19563:8;19610:5;19607:1;19603:13;19582:34;;19521:102;;;:::o;19629:848::-;19690:5;19697:4;19721:6;19712:15;;19745:5;19736:14;;19759:712;19780:1;19770:8;19767:15;19759:712;;;19875:4;19870:3;19866:14;19860:4;19857:24;19854:50;;;19884:18;;:::i;:::-;19854:50;19934:1;19924:8;19920:16;19917:451;;;20349:4;20342:5;20338:16;20329:25;;19917:451;20399:4;20393;20389:15;20381:23;;20429:32;20452:8;20429:32;:::i;:::-;20417:44;;19759:712;;;19629:848;;;;;;;:::o;20483:1073::-;20537:5;20728:8;20718:40;;20749:1;20740:10;;20751:5;;20718:40;20777:4;20767:36;;20794:1;20785:10;;20796:5;;20767:36;20863:4;20911:1;20906:27;;;;20947:1;20942:191;;;;20856:277;;20906:27;20924:1;20915:10;;20926:5;;;20942:191;20987:3;20977:8;20974:17;20971:43;;;20994:18;;:::i;:::-;20971:43;21043:8;21040:1;21036:16;21027:25;;21078:3;21071:5;21068:14;21065:40;;;21085:18;;:::i;:::-;21065:40;21118:5;;;20856:277;;21242:2;21232:8;21229:16;21223:3;21217:4;21214:13;21210:36;21192:2;21182:8;21179:16;21174:2;21168:4;21165:12;21161:35;21145:111;21142:246;;;21298:8;21292:4;21288:19;21279:28;;21333:3;21326:5;21323:14;21320:40;;;21340:18;;:::i;:::-;21320:40;21373:5;;21142:246;21413:42;21451:3;21441:8;21435:4;21432:1;21413:42;:::i;:::-;21398:57;;;;21487:4;21482:3;21478:14;21471:5;21468:25;21465:51;;;21496:18;;:::i;:::-;21465:51;21545:4;21538:5;21534:16;21525:25;;20483:1073;;;;;;:::o;21562:285::-;21622:5;21646:23;21664:4;21646:23;:::i;:::-;21638:31;;21690:27;21708:8;21690:27;:::i;:::-;21678:39;;21736:104;21773:66;21763:8;21757:4;21736:104;:::i;:::-;21727:113;;21562:285;;;;:::o;21853:410::-;21893:7;21916:20;21934:1;21916:20;:::i;:::-;21911:25;;21950:20;21968:1;21950:20;:::i;:::-;21945:25;;22005:1;22002;21998:9;22027:30;22045:11;22027:30;:::i;:::-;22016:41;;22206:1;22197:7;22193:15;22190:1;22187:22;22167:1;22160:9;22140:83;22117:139;;22236:18;;:::i;:::-;22117:139;21901:362;21853:410;;;;:::o;22269:172::-;22409:24;22405:1;22397:6;22393:14;22386:48;22269:172;:::o;22447:366::-;22589:3;22610:67;22674:2;22669:3;22610:67;:::i;:::-;22603:74;;22686:93;22775:3;22686:93;:::i;:::-;22804:2;22799:3;22795:12;22788:19;;22447:366;;;:::o;22819:419::-;22985:4;23023:2;23012:9;23008:18;23000:26;;23072:9;23066:4;23062:20;23058:1;23047:9;23043:17;23036:47;23100:131;23226:4;23100:131;:::i;:::-;23092:139;;22819:419;;;:::o;23244:167::-;23384:19;23380:1;23372:6;23368:14;23361:43;23244:167;:::o;23417:366::-;23559:3;23580:67;23644:2;23639:3;23580:67;:::i;:::-;23573:74;;23656:93;23745:3;23656:93;:::i;:::-;23774:2;23769:3;23765:12;23758:19;;23417:366;;;:::o;23789:419::-;23955:4;23993:2;23982:9;23978:18;23970:26;;24042:9;24036:4;24032:20;24028:1;24017:9;24013:17;24006:47;24070:131;24196:4;24070:131;:::i;:::-;24062:139;;23789:419;;;:::o;24214:442::-;24363:4;24401:2;24390:9;24386:18;24378:26;;24414:71;24482:1;24471:9;24467:17;24458:6;24414:71;:::i;:::-;24495:72;24563:2;24552:9;24548:18;24539:6;24495:72;:::i;:::-;24577;24645:2;24634:9;24630:18;24621:6;24577:72;:::i;:::-;24214:442;;;;;;:::o;24662:141::-;24711:4;24734:3;24726:11;;24757:3;24754:1;24747:14;24791:4;24788:1;24778:18;24770:26;;24662:141;;;:::o;24809:93::-;24846:6;24893:2;24888;24881:5;24877:14;24873:23;24863:33;;24809:93;;;:::o;24908:107::-;24952:8;25002:5;24996:4;24992:16;24971:37;;24908:107;;;;:::o;25021:393::-;25090:6;25140:1;25128:10;25124:18;25163:97;25193:66;25182:9;25163:97;:::i;:::-;25281:39;25311:8;25300:9;25281:39;:::i;:::-;25269:51;;25353:4;25349:9;25342:5;25338:21;25329:30;;25402:4;25392:8;25388:19;25381:5;25378:30;25368:40;;25097:317;;25021:393;;;;;:::o;25420:142::-;25470:9;25503:53;25521:34;25530:24;25548:5;25530:24;:::i;:::-;25521:34;:::i;:::-;25503:53;:::i;:::-;25490:66;;25420:142;;;:::o;25568:75::-;25611:3;25632:5;25625:12;;25568:75;;;:::o;25649:269::-;25759:39;25790:7;25759:39;:::i;:::-;25820:91;25869:41;25893:16;25869:41;:::i;:::-;25861:6;25854:4;25848:11;25820:91;:::i;:::-;25814:4;25807:105;25725:193;25649:269;;;:::o;25924:73::-;25969:3;25924:73;:::o;26003:189::-;26080:32;;:::i;:::-;26121:65;26179:6;26171;26165:4;26121:65;:::i;:::-;26056:136;26003:189;;:::o;26198:186::-;26258:120;26275:3;26268:5;26265:14;26258:120;;;26329:39;26366:1;26359:5;26329:39;:::i;:::-;26302:1;26295:5;26291:13;26282:22;;26258:120;;;26198:186;;:::o;26390:543::-;26491:2;26486:3;26483:11;26480:446;;;26525:38;26557:5;26525:38;:::i;:::-;26609:29;26627:10;26609:29;:::i;:::-;26599:8;26595:44;26792:2;26780:10;26777:18;26774:49;;;26813:8;26798:23;;26774:49;26836:80;26892:22;26910:3;26892:22;:::i;:::-;26882:8;26878:37;26865:11;26836:80;:::i;:::-;26495:431;;26480:446;26390:543;;;:::o;26939:117::-;26993:8;27043:5;27037:4;27033:16;27012:37;;26939:117;;;;:::o;27062:169::-;27106:6;27139:51;27187:1;27183:6;27175:5;27172:1;27168:13;27139:51;:::i;:::-;27135:56;27220:4;27214;27210:15;27200:25;;27113:118;27062:169;;;;:::o;27236:295::-;27312:4;27458:29;27483:3;27477:4;27458:29;:::i;:::-;27450:37;;27520:3;27517:1;27513:11;27507:4;27504:21;27496:29;;27236:295;;;;:::o;27536:1395::-;27653:37;27686:3;27653:37;:::i;:::-;27755:18;27747:6;27744:30;27741:56;;;27777:18;;:::i;:::-;27741:56;27821:38;27853:4;27847:11;27821:38;:::i;:::-;27906:67;27966:6;27958;27952:4;27906:67;:::i;:::-;28000:1;28024:4;28011:17;;28056:2;28048:6;28045:14;28073:1;28068:618;;;;28730:1;28747:6;28744:77;;;28796:9;28791:3;28787:19;28781:26;28772:35;;28744:77;28847:67;28907:6;28900:5;28847:67;:::i;:::-;28841:4;28834:81;28703:222;28038:887;;28068:618;28120:4;28116:9;28108:6;28104:22;28154:37;28186:4;28154:37;:::i;:::-;28213:1;28227:208;28241:7;28238:1;28235:14;28227:208;;;28320:9;28315:3;28311:19;28305:26;28297:6;28290:42;28371:1;28363:6;28359:14;28349:24;;28418:2;28407:9;28403:18;28390:31;;28264:4;28261:1;28257:12;28252:17;;28227:208;;;28463:6;28454:7;28451:19;28448:179;;;28521:9;28516:3;28512:19;28506:26;28564:48;28606:4;28598:6;28594:17;28583:9;28564:48;:::i;:::-;28556:6;28549:64;28471:156;28448:179;28673:1;28669;28661:6;28657:14;28653:22;28647:4;28640:36;28075:611;;;28038:887;;27628:1303;;;27536:1395;;:::o;28937:174::-;29077:26;29073:1;29065:6;29061:14;29054:50;28937:174;:::o;29117:366::-;29259:3;29280:67;29344:2;29339:3;29280:67;:::i;:::-;29273:74;;29356:93;29445:3;29356:93;:::i;:::-;29474:2;29469:3;29465:12;29458:19;;29117:366;;;:::o;29489:419::-;29655:4;29693:2;29682:9;29678:18;29670:26;;29742:9;29736:4;29732:20;29728:1;29717:9;29713:17;29706:47;29770:131;29896:4;29770:131;:::i;:::-;29762:139;;29489:419;;;:::o;29914:148::-;30016:11;30053:3;30038:18;;29914:148;;;;:::o;30068:390::-;30174:3;30202:39;30235:5;30202:39;:::i;:::-;30257:89;30339:6;30334:3;30257:89;:::i;:::-;30250:96;;30355:65;30413:6;30408:3;30401:4;30394:5;30390:16;30355:65;:::i;:::-;30445:6;30440:3;30436:16;30429:23;;30178:280;30068:390;;;;:::o;30464:155::-;30604:7;30600:1;30592:6;30588:14;30581:31;30464:155;:::o;30625:400::-;30785:3;30806:84;30888:1;30883:3;30806:84;:::i;:::-;30799:91;;30899:93;30988:3;30899:93;:::i;:::-;31017:1;31012:3;31008:11;31001:18;;30625:400;;;:::o;31031:701::-;31312:3;31334:95;31425:3;31416:6;31334:95;:::i;:::-;31327:102;;31446:95;31537:3;31528:6;31446:95;:::i;:::-;31439:102;;31558:148;31702:3;31558:148;:::i;:::-;31551:155;;31723:3;31716:10;;31031:701;;;;;:::o;31738:332::-;31859:4;31897:2;31886:9;31882:18;31874:26;;31910:71;31978:1;31967:9;31963:17;31954:6;31910:71;:::i;:::-;31991:72;32059:2;32048:9;32044:18;32035:6;31991:72;:::i;:::-;31738:332;;;;;:::o;32076:180::-;32124:77;32121:1;32114:88;32221:4;32218:1;32211:15;32245:4;32242:1;32235:15;32262:98;32313:6;32347:5;32341:12;32331:22;;32262:98;;;:::o;32366:168::-;32449:11;32483:6;32478:3;32471:19;32523:4;32518:3;32514:14;32499:29;;32366:168;;;;:::o;32540:373::-;32626:3;32654:38;32686:5;32654:38;:::i;:::-;32708:70;32771:6;32766:3;32708:70;:::i;:::-;32701:77;;32787:65;32845:6;32840:3;32833:4;32826:5;32822:16;32787:65;:::i;:::-;32877:29;32899:6;32877:29;:::i;:::-;32872:3;32868:39;32861:46;;32630:283;32540:373;;;;:::o;32919:640::-;33114:4;33152:3;33141:9;33137:19;33129:27;;33166:71;33234:1;33223:9;33219:17;33210:6;33166:71;:::i;:::-;33247:72;33315:2;33304:9;33300:18;33291:6;33247:72;:::i;:::-;33329;33397:2;33386:9;33382:18;33373:6;33329:72;:::i;:::-;33448:9;33442:4;33438:20;33433:2;33422:9;33418:18;33411:48;33476:76;33547:4;33538:6;33476:76;:::i;:::-;33468:84;;32919:640;;;;;;;:::o;33565:141::-;33621:5;33652:6;33646:13;33637:22;;33668:32;33694:5;33668:32;:::i;:::-;33565:141;;;;:::o;33712:349::-;33781:6;33830:2;33818:9;33809:7;33805:23;33801:32;33798:119;;;33836:79;;:::i;:::-;33798:119;33956:1;33981:63;34036:7;34027:6;34016:9;34012:22;33981:63;:::i;:::-;33971:73;;33927:127;33712:349;;;;:::o
Swarm Source
ipfs://edbc24e5665122c5aeedbb4de9716b671da7af1de626b8a535f6945c489e6855
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.