ERC-721
Overview
Max Total Supply
186 PPM
Holders
49
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 PPMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PepePortraitofaMeme
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-01 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: 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: contracts/PepePortraits.sol pragma solidity ^0.8.7; contract PepePortraitofaMeme is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = ""; uint256 public Max_Supply = 400; uint256 public Max_Per_TX = 10; uint256 public Price = 0.002 ether; uint256 public Num_Free_Mints = 0; uint256 public Max_Free_Per_Wallet = 0; bool public isMintActive = true; constructor( ) ERC721A("PEPE: Portrait of a Meme", "PPM") { } function mint(uint256 numberOfTokens) external payable { require(isMintActive, "Mint not active yet"); require(totalSupply() + numberOfTokens < Max_Supply + 1, "No more"); if(totalSupply() > Num_Free_Mints){ require( (Price * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); } else { if (numberOfTokens > Max_Free_Per_Wallet) { require( (Price * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); require( numberOfTokens <= Max_Per_TX, "Max mints per transaction exceeded" ); } else { require( numberOfTokens <= Max_Free_Per_Wallet, "Max mints per transaction exceeded" ); } } _safeMint(msg.sender, numberOfTokens); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function _startTokenId() internal override view virtual returns (uint256) { return 1; } function mintTo(uint256 numberOfTokens, address _receiver) public onlyOwner { _safeMint(_receiver, numberOfTokens); } function treasuryMint(uint quantity) public onlyOwner { require( quantity > 0, "Invalid mint amount" ); require( totalSupply() + quantity <= Max_Supply, "Maximum supply exceeded" ); _safeMint(msg.sender, quantity); } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setIsMintActive(bool _isMintActive) external onlyOwner { isMintActive = _isMintActive; } function setNumFreeMints(uint256 _numfreemints) external onlyOwner { Num_Free_Mints = _numfreemints; } function setMaxSupply(uint256 _Max_Supply) external onlyOwner { Max_Supply = _Max_Supply; } function setSalePrice(uint256 _Price) external onlyOwner { Price = _Price; } function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner { Max_Per_TX = _limit; } function setFreeLimitPerWallet(uint256 _limit) external onlyOwner { Max_Free_Per_Wallet = _limit; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Max_Free_Per_Wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Max_Per_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Max_Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Num_Free_Mints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMintActive","type":"bool"}],"name":"setIsMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Max_Supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600a90805190602001906200002b92919062000230565b50610190600b55600a600c5566071afd498d0000600d556000600e556000600f556001601060006101000a81548160ff0219169083151502179055503480156200007457600080fd5b506040518060400160405280601881526020017f504550453a20506f727472616974206f662061204d656d6500000000000000008152506040518060400160405280600381526020017f50504d00000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f992919062000230565b5080600390805190602001906200011292919062000230565b50620001236200015960201b60201c565b60008190555050506200014b6200013f6200016260201b60201c565b6200016a60201b60201c565b600160098190555062000345565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023e90620002e0565b90600052602060002090601f016020900481019282620002625760008555620002ae565b82601f106200027d57805160ff1916838001178555620002ae565b82800160010185558215620002ae579182015b82811115620002ad57825182559160200191906001019062000290565b5b509050620002bd9190620002c1565b5090565b5b80821115620002dc576000816000905550600101620002c2565b5090565b60006002820490506001821680620002f957607f821691505b6020821081141562000310576200030f62000316565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6133d880620003556000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063b723b34e116100a0578063e985e9c51161006f578063e985e9c5146106ea578063efdc778814610727578063f2fde38b14610750578063fa4e25b414610779578063fe07b506146107a257610204565b8063b723b34e1461063d578063b88d4fde14610666578063c87b56dd14610682578063d547cfb7146106bf57610204565b806395d89b41116100e757806395d89b41146105795780639dfde201146105a45780639e9fcffc146105cf578063a0712d68146105f8578063a22cb4651461061457610204565b806370a08231146104cf578063715018a61461050c57806377848f98146105235780638da5cb5b1461054e57610204565b806323b872dd1161019b5780635b92ac0d1161016a5780635b92ac0d146103e85780636352211e146104135780636737c9c1146104505780636b30d5871461047b5780636f8b44b0146104a657610204565b806323b872dd146103705780633ccfd60b1461038c57806342842e0e146103a357806355f804b3146103bf57610204565b80630a00ae83116101d75780630a00ae83146102ca57806318160ddd146102f35780631919fed71461031e578063202f298a1461034757610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906124d1565b6107cd565b60405161023d91906129f3565b60405180910390f35b34801561025257600080fd5b5061025b61085f565b6040516102689190612a0e565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612574565b6108f1565b6040516102a5919061298c565b60405180910390f35b6102c860048036038101906102c39190612464565b610970565b005b3480156102d657600080fd5b506102f160048036038101906102ec9190612574565b610ab4565b005b3480156102ff57600080fd5b50610308610ac6565b6040516103159190612bb0565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190612574565b610add565b005b34801561035357600080fd5b5061036e60048036038101906103699190612574565b610aef565b005b61038a6004803603810190610385919061234e565b610b01565b005b34801561039857600080fd5b506103a1610e26565b005b6103bd60048036038101906103b8919061234e565b610e90565b005b3480156103cb57600080fd5b506103e660048036038101906103e1919061252b565b610eb0565b005b3480156103f457600080fd5b506103fd610ed2565b60405161040a91906129f3565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612574565b610ee5565b604051610447919061298c565b60405180910390f35b34801561045c57600080fd5b50610465610ef7565b6040516104729190612bb0565b60405180910390f35b34801561048757600080fd5b50610490610efd565b60405161049d9190612bb0565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612574565b610f03565b005b3480156104db57600080fd5b506104f660048036038101906104f191906122e1565b610f15565b6040516105039190612bb0565b60405180910390f35b34801561051857600080fd5b50610521610fce565b005b34801561052f57600080fd5b50610538610fe2565b6040516105459190612bb0565b60405180910390f35b34801561055a57600080fd5b50610563610fe8565b604051610570919061298c565b60405180910390f35b34801561058557600080fd5b5061058e611012565b60405161059b9190612a0e565b60405180910390f35b3480156105b057600080fd5b506105b96110a4565b6040516105c69190612bb0565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190612574565b6110aa565b005b610612600480360381019061060d9190612574565b6110bc565b005b34801561062057600080fd5b5061063b60048036038101906106369190612424565b6112cb565b005b34801561064957600080fd5b50610664600480360381019061065f91906125a1565b6113d6565b005b610680600480360381019061067b91906123a1565b6113ec565b005b34801561068e57600080fd5b506106a960048036038101906106a49190612574565b61145f565b6040516106b69190612a0e565b60405180910390f35b3480156106cb57600080fd5b506106d46114db565b6040516106e19190612a0e565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c919061230e565b611569565b60405161071e91906129f3565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190612574565b6115fd565b005b34801561075c57600080fd5b50610777600480360381019061077291906122e1565b6116ac565b005b34801561078557600080fd5b506107a0600480360381019061079b91906124a4565b611730565b005b3480156107ae57600080fd5b506107b7611755565b6040516107c49190612bb0565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108585750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461086e90612e80565b80601f016020809104026020016040519081016040528092919081815260200182805461089a90612e80565b80156108e75780601f106108bc576101008083540402835291602001916108e7565b820191906000526020600020905b8154815290600101906020018083116108ca57829003601f168201915b5050505050905090565b60006108fc8261175b565b610932576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097b82610ee5565b90508073ffffffffffffffffffffffffffffffffffffffff1661099c6117ba565b73ffffffffffffffffffffffffffffffffffffffff16146109ff576109c8816109c36117ba565b611569565b6109fe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610abc6117c2565b80600e8190555050565b6000610ad0611840565b6001546000540303905090565b610ae56117c2565b80600d8190555050565b610af76117c2565b80600f8190555050565b6000610b0c82611849565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b73576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b7f84611917565b91509150610b958187610b906117ba565b61193e565b610be157610baa86610ba56117ba565b611569565b610be0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c48576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c558686866001611982565b8015610c6057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d2e85610d0a888887611988565b7c0200000000000000000000000000000000000000000000000000000000176119b0565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610db6576000600185019050600060046000838152602001908152602001600020541415610db4576000548114610db3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e1e86868660016119db565b505050505050565b610e2e6117c2565b60026009541415610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90612b90565b60405180910390fd5b6002600981905550610e8633476119e1565b6001600981905550565b610eab838383604051806020016040528060008152506113ec565b505050565b610eb86117c2565b80600a9080519060200190610ece9291906120f5565b5050565b601060009054906101000a900460ff1681565b6000610ef082611849565b9050919050565b600b5481565b600f5481565b610f0b6117c2565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fd66117c2565b610fe06000611ad5565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461102190612e80565b80601f016020809104026020016040519081016040528092919081815260200182805461104d90612e80565b801561109a5780601f1061106f5761010080835404028352916020019161109a565b820191906000526020600020905b81548152906001019060200180831161107d57829003601f168201915b5050505050905090565b600d5481565b6110b26117c2565b80600c8190555050565b601060009054906101000a900460ff1661110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612a50565b60405180910390fd5b6001600b5461111a9190612cb5565b81611123610ac6565b61112d9190612cb5565b1061116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490612a30565b60405180910390fd5b600e54611178610ac6565b11156111d3573481600d5461118d9190612d3c565b11156111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590612b70565b60405180910390fd5b6112be565b600f54811115611277573481600d546111ec9190612d3c565b111561122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612b70565b60405180910390fd5b600c54811115611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990612ad0565b60405180910390fd5b6112bd565b600f548111156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390612ad0565b60405180910390fd5b5b5b6112c83382611b9b565b50565b80600760006112d86117ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113856117ba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ca91906129f3565b60405180910390a35050565b6113de6117c2565b6113e88183611b9b565b5050565b6113f7848484610b01565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114595761142284848484611bb9565b611458576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061146a8261175b565b6114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a090612b30565b60405180910390fd5b600a6114b483611d19565b6040516020016114c592919061293d565b6040516020818303038152906040529050919050565b600a80546114e890612e80565b80601f016020809104026020016040519081016040528092919081815260200182805461151490612e80565b80156115615780601f1061153657610100808354040283529160200191611561565b820191906000526020600020905b81548152906001019060200180831161154457829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116056117c2565b60008111611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f90612b50565b60405180910390fd5b600b5481611654610ac6565b61165e9190612cb5565b111561169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690612af0565b60405180910390fd5b6116a93382611b9b565b50565b6116b46117c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b90612a70565b60405180910390fd5b61172d81611ad5565b50565b6117386117c2565b80601060006101000a81548160ff02191690831515021790555050565b600e5481565b600081611766611840565b11158015611775575060005482105b80156117b3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6117ca611e7a565b73ffffffffffffffffffffffffffffffffffffffff166117e8610fe8565b73ffffffffffffffffffffffffffffffffffffffff161461183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183590612b10565b60405180910390fd5b565b60006001905090565b60008082905080611858611840565b116118e0576000548110156118df5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118dd575b60008114156118d35760046000836001900393508381526020019081526020016000205490506118a8565b8092505050611912565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861199f868684611e82565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90612ab0565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a4a90612977565b60006040518083038185875af1925050503d8060008114611a87576040519150601f19603f3d011682016040523d82523d6000602084013e611a8c565b606091505b5050905080611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790612a90565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bb5828260405180602001604052806000815250611e8b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bdf6117ba565b8786866040518563ffffffff1660e01b8152600401611c0194939291906129a7565b602060405180830381600087803b158015611c1b57600080fd5b505af1925050508015611c4c57506040513d601f19601f82011682018060405250810190611c4991906124fe565b60015b611cc6573d8060008114611c7c576040519150601f19603f3d011682016040523d82523d6000602084013e611c81565b606091505b50600081511415611cbe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611d61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e75565b600082905060005b60008214611d93578080611d7c90612ee3565b915050600a82611d8c9190612d0b565b9150611d69565b60008167ffffffffffffffff811115611daf57611dae613019565b5b6040519080825280601f01601f191660200182016040528015611de15781602001600182028036833780820191505090505b5090505b60008514611e6e57600182611dfa9190612d96565b9150600a85611e099190612f2c565b6030611e159190612cb5565b60f81b818381518110611e2b57611e2a612fea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e679190612d0b565b9450611de5565b8093505050505b919050565b600033905090565b60009392505050565b611e958383611f28565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f2357600080549050600083820390505b611ed56000868380600101945086611bb9565b611f0b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ec2578160005414611f2057600080fd5b50505b505050565b6000805490506000821415611f69576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f766000848385611982565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fed83611fde6000866000611988565b611fe7856120e5565b176119b0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461208e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612053565b5060008214156120ca576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120e060008483856119db565b505050565b60006001821460e11b9050919050565b82805461210190612e80565b90600052602060002090601f016020900481019282612123576000855561216a565b82601f1061213c57805160ff191683800117855561216a565b8280016001018555821561216a579182015b8281111561216957825182559160200191906001019061214e565b5b509050612177919061217b565b5090565b5b8082111561219457600081600090555060010161217c565b5090565b60006121ab6121a684612bf0565b612bcb565b9050828152602081018484840111156121c7576121c661304d565b5b6121d2848285612e3e565b509392505050565b60006121ed6121e884612c21565b612bcb565b9050828152602081018484840111156122095761220861304d565b5b612214848285612e3e565b509392505050565b60008135905061222b81613346565b92915050565b6000813590506122408161335d565b92915050565b60008135905061225581613374565b92915050565b60008151905061226a81613374565b92915050565b600082601f83011261228557612284613048565b5b8135612295848260208601612198565b91505092915050565b600082601f8301126122b3576122b2613048565b5b81356122c38482602086016121da565b91505092915050565b6000813590506122db8161338b565b92915050565b6000602082840312156122f7576122f6613057565b5b60006123058482850161221c565b91505092915050565b6000806040838503121561232557612324613057565b5b60006123338582860161221c565b92505060206123448582860161221c565b9150509250929050565b60008060006060848603121561236757612366613057565b5b60006123758682870161221c565b93505060206123868682870161221c565b9250506040612397868287016122cc565b9150509250925092565b600080600080608085870312156123bb576123ba613057565b5b60006123c98782880161221c565b94505060206123da8782880161221c565b93505060406123eb878288016122cc565b925050606085013567ffffffffffffffff81111561240c5761240b613052565b5b61241887828801612270565b91505092959194509250565b6000806040838503121561243b5761243a613057565b5b60006124498582860161221c565b925050602061245a85828601612231565b9150509250929050565b6000806040838503121561247b5761247a613057565b5b60006124898582860161221c565b925050602061249a858286016122cc565b9150509250929050565b6000602082840312156124ba576124b9613057565b5b60006124c884828501612231565b91505092915050565b6000602082840312156124e7576124e6613057565b5b60006124f584828501612246565b91505092915050565b60006020828403121561251457612513613057565b5b60006125228482850161225b565b91505092915050565b60006020828403121561254157612540613057565b5b600082013567ffffffffffffffff81111561255f5761255e613052565b5b61256b8482850161229e565b91505092915050565b60006020828403121561258a57612589613057565b5b6000612598848285016122cc565b91505092915050565b600080604083850312156125b8576125b7613057565b5b60006125c6858286016122cc565b92505060206125d78582860161221c565b9150509250929050565b6125ea81612dca565b82525050565b6125f981612ddc565b82525050565b600061260a82612c67565b6126148185612c7d565b9350612624818560208601612e4d565b61262d8161305c565b840191505092915050565b600061264382612c72565b61264d8185612c99565b935061265d818560208601612e4d565b6126668161305c565b840191505092915050565b600061267c82612c72565b6126868185612caa565b9350612696818560208601612e4d565b80840191505092915050565b600081546126af81612e80565b6126b98186612caa565b945060018216600081146126d457600181146126e557612718565b60ff19831686528186019350612718565b6126ee85612c52565b60005b83811015612710578154818901526001820191506020810190506126f1565b838801955050505b50505092915050565b600061272e600783612c99565b91506127398261306d565b602082019050919050565b6000612751601383612c99565b915061275c82613096565b602082019050919050565b6000612774602683612c99565b915061277f826130bf565b604082019050919050565b6000612797603a83612c99565b91506127a28261310e565b604082019050919050565b60006127ba601d83612c99565b91506127c58261315d565b602082019050919050565b60006127dd602283612c99565b91506127e882613186565b604082019050919050565b6000612800601783612c99565b915061280b826131d5565b602082019050919050565b6000612823600583612caa565b915061282e826131fe565b600582019050919050565b6000612846602083612c99565b915061285182613227565b602082019050919050565b6000612869602f83612c99565b915061287482613250565b604082019050919050565b600061288c600083612c8e565b91506128978261329f565b600082019050919050565b60006128af601383612c99565b91506128ba826132a2565b602082019050919050565b60006128d2601883612c99565b91506128dd826132cb565b602082019050919050565b60006128f5601f83612c99565b9150612900826132f4565b602082019050919050565b6000612918600183612caa565b91506129238261331d565b600182019050919050565b61293781612e34565b82525050565b600061294982856126a2565b91506129548261290b565b91506129608284612671565b915061296b82612816565b91508190509392505050565b60006129828261287f565b9150819050919050565b60006020820190506129a160008301846125e1565b92915050565b60006080820190506129bc60008301876125e1565b6129c960208301866125e1565b6129d6604083018561292e565b81810360608301526129e881846125ff565b905095945050505050565b6000602082019050612a0860008301846125f0565b92915050565b60006020820190508181036000830152612a288184612638565b905092915050565b60006020820190508181036000830152612a4981612721565b9050919050565b60006020820190508181036000830152612a6981612744565b9050919050565b60006020820190508181036000830152612a8981612767565b9050919050565b60006020820190508181036000830152612aa98161278a565b9050919050565b60006020820190508181036000830152612ac9816127ad565b9050919050565b60006020820190508181036000830152612ae9816127d0565b9050919050565b60006020820190508181036000830152612b09816127f3565b9050919050565b60006020820190508181036000830152612b2981612839565b9050919050565b60006020820190508181036000830152612b498161285c565b9050919050565b60006020820190508181036000830152612b69816128a2565b9050919050565b60006020820190508181036000830152612b89816128c5565b9050919050565b60006020820190508181036000830152612ba9816128e8565b9050919050565b6000602082019050612bc5600083018461292e565b92915050565b6000612bd5612be6565b9050612be18282612eb2565b919050565b6000604051905090565b600067ffffffffffffffff821115612c0b57612c0a613019565b5b612c148261305c565b9050602081019050919050565b600067ffffffffffffffff821115612c3c57612c3b613019565b5b612c458261305c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612cc082612e34565b9150612ccb83612e34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d0057612cff612f5d565b5b828201905092915050565b6000612d1682612e34565b9150612d2183612e34565b925082612d3157612d30612f8c565b5b828204905092915050565b6000612d4782612e34565b9150612d5283612e34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d8b57612d8a612f5d565b5b828202905092915050565b6000612da182612e34565b9150612dac83612e34565b925082821015612dbf57612dbe612f5d565b5b828203905092915050565b6000612dd582612e14565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e6b578082015181840152602081019050612e50565b83811115612e7a576000848401525b50505050565b60006002820490506001821680612e9857607f821691505b60208210811415612eac57612eab612fbb565b5b50919050565b612ebb8261305c565b810181811067ffffffffffffffff82111715612eda57612ed9613019565b5b80604052505050565b6000612eee82612e34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f2157612f20612f5d565b5b600182019050919050565b6000612f3782612e34565b9150612f4283612e34565b925082612f5257612f51612f8c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4d696e74206e6f74206163746976652079657400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61334f81612dca565b811461335a57600080fd5b50565b61336681612ddc565b811461337157600080fd5b50565b61337d81612de8565b811461338857600080fd5b50565b61339481612e34565b811461339f57600080fd5b5056fea2646970667358221220f83365937fe0807e1521ff7b42e03f1508461718a0bca7755743715e172d17bf64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102045760003560e01c806370a0823111610118578063b723b34e116100a0578063e985e9c51161006f578063e985e9c5146106ea578063efdc778814610727578063f2fde38b14610750578063fa4e25b414610779578063fe07b506146107a257610204565b8063b723b34e1461063d578063b88d4fde14610666578063c87b56dd14610682578063d547cfb7146106bf57610204565b806395d89b41116100e757806395d89b41146105795780639dfde201146105a45780639e9fcffc146105cf578063a0712d68146105f8578063a22cb4651461061457610204565b806370a08231146104cf578063715018a61461050c57806377848f98146105235780638da5cb5b1461054e57610204565b806323b872dd1161019b5780635b92ac0d1161016a5780635b92ac0d146103e85780636352211e146104135780636737c9c1146104505780636b30d5871461047b5780636f8b44b0146104a657610204565b806323b872dd146103705780633ccfd60b1461038c57806342842e0e146103a357806355f804b3146103bf57610204565b80630a00ae83116101d75780630a00ae83146102ca57806318160ddd146102f35780631919fed71461031e578063202f298a1461034757610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906124d1565b6107cd565b60405161023d91906129f3565b60405180910390f35b34801561025257600080fd5b5061025b61085f565b6040516102689190612a0e565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612574565b6108f1565b6040516102a5919061298c565b60405180910390f35b6102c860048036038101906102c39190612464565b610970565b005b3480156102d657600080fd5b506102f160048036038101906102ec9190612574565b610ab4565b005b3480156102ff57600080fd5b50610308610ac6565b6040516103159190612bb0565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190612574565b610add565b005b34801561035357600080fd5b5061036e60048036038101906103699190612574565b610aef565b005b61038a6004803603810190610385919061234e565b610b01565b005b34801561039857600080fd5b506103a1610e26565b005b6103bd60048036038101906103b8919061234e565b610e90565b005b3480156103cb57600080fd5b506103e660048036038101906103e1919061252b565b610eb0565b005b3480156103f457600080fd5b506103fd610ed2565b60405161040a91906129f3565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612574565b610ee5565b604051610447919061298c565b60405180910390f35b34801561045c57600080fd5b50610465610ef7565b6040516104729190612bb0565b60405180910390f35b34801561048757600080fd5b50610490610efd565b60405161049d9190612bb0565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612574565b610f03565b005b3480156104db57600080fd5b506104f660048036038101906104f191906122e1565b610f15565b6040516105039190612bb0565b60405180910390f35b34801561051857600080fd5b50610521610fce565b005b34801561052f57600080fd5b50610538610fe2565b6040516105459190612bb0565b60405180910390f35b34801561055a57600080fd5b50610563610fe8565b604051610570919061298c565b60405180910390f35b34801561058557600080fd5b5061058e611012565b60405161059b9190612a0e565b60405180910390f35b3480156105b057600080fd5b506105b96110a4565b6040516105c69190612bb0565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190612574565b6110aa565b005b610612600480360381019061060d9190612574565b6110bc565b005b34801561062057600080fd5b5061063b60048036038101906106369190612424565b6112cb565b005b34801561064957600080fd5b50610664600480360381019061065f91906125a1565b6113d6565b005b610680600480360381019061067b91906123a1565b6113ec565b005b34801561068e57600080fd5b506106a960048036038101906106a49190612574565b61145f565b6040516106b69190612a0e565b60405180910390f35b3480156106cb57600080fd5b506106d46114db565b6040516106e19190612a0e565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c919061230e565b611569565b60405161071e91906129f3565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190612574565b6115fd565b005b34801561075c57600080fd5b50610777600480360381019061077291906122e1565b6116ac565b005b34801561078557600080fd5b506107a0600480360381019061079b91906124a4565b611730565b005b3480156107ae57600080fd5b506107b7611755565b6040516107c49190612bb0565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108585750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461086e90612e80565b80601f016020809104026020016040519081016040528092919081815260200182805461089a90612e80565b80156108e75780601f106108bc576101008083540402835291602001916108e7565b820191906000526020600020905b8154815290600101906020018083116108ca57829003601f168201915b5050505050905090565b60006108fc8261175b565b610932576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097b82610ee5565b90508073ffffffffffffffffffffffffffffffffffffffff1661099c6117ba565b73ffffffffffffffffffffffffffffffffffffffff16146109ff576109c8816109c36117ba565b611569565b6109fe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610abc6117c2565b80600e8190555050565b6000610ad0611840565b6001546000540303905090565b610ae56117c2565b80600d8190555050565b610af76117c2565b80600f8190555050565b6000610b0c82611849565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b73576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b7f84611917565b91509150610b958187610b906117ba565b61193e565b610be157610baa86610ba56117ba565b611569565b610be0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c48576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c558686866001611982565b8015610c6057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d2e85610d0a888887611988565b7c0200000000000000000000000000000000000000000000000000000000176119b0565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610db6576000600185019050600060046000838152602001908152602001600020541415610db4576000548114610db3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e1e86868660016119db565b505050505050565b610e2e6117c2565b60026009541415610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90612b90565b60405180910390fd5b6002600981905550610e8633476119e1565b6001600981905550565b610eab838383604051806020016040528060008152506113ec565b505050565b610eb86117c2565b80600a9080519060200190610ece9291906120f5565b5050565b601060009054906101000a900460ff1681565b6000610ef082611849565b9050919050565b600b5481565b600f5481565b610f0b6117c2565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fd66117c2565b610fe06000611ad5565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461102190612e80565b80601f016020809104026020016040519081016040528092919081815260200182805461104d90612e80565b801561109a5780601f1061106f5761010080835404028352916020019161109a565b820191906000526020600020905b81548152906001019060200180831161107d57829003601f168201915b5050505050905090565b600d5481565b6110b26117c2565b80600c8190555050565b601060009054906101000a900460ff1661110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612a50565b60405180910390fd5b6001600b5461111a9190612cb5565b81611123610ac6565b61112d9190612cb5565b1061116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490612a30565b60405180910390fd5b600e54611178610ac6565b11156111d3573481600d5461118d9190612d3c565b11156111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590612b70565b60405180910390fd5b6112be565b600f54811115611277573481600d546111ec9190612d3c565b111561122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612b70565b60405180910390fd5b600c54811115611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990612ad0565b60405180910390fd5b6112bd565b600f548111156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390612ad0565b60405180910390fd5b5b5b6112c83382611b9b565b50565b80600760006112d86117ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113856117ba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ca91906129f3565b60405180910390a35050565b6113de6117c2565b6113e88183611b9b565b5050565b6113f7848484610b01565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114595761142284848484611bb9565b611458576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061146a8261175b565b6114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a090612b30565b60405180910390fd5b600a6114b483611d19565b6040516020016114c592919061293d565b6040516020818303038152906040529050919050565b600a80546114e890612e80565b80601f016020809104026020016040519081016040528092919081815260200182805461151490612e80565b80156115615780601f1061153657610100808354040283529160200191611561565b820191906000526020600020905b81548152906001019060200180831161154457829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116056117c2565b60008111611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f90612b50565b60405180910390fd5b600b5481611654610ac6565b61165e9190612cb5565b111561169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690612af0565b60405180910390fd5b6116a93382611b9b565b50565b6116b46117c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b90612a70565b60405180910390fd5b61172d81611ad5565b50565b6117386117c2565b80601060006101000a81548160ff02191690831515021790555050565b600e5481565b600081611766611840565b11158015611775575060005482105b80156117b3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6117ca611e7a565b73ffffffffffffffffffffffffffffffffffffffff166117e8610fe8565b73ffffffffffffffffffffffffffffffffffffffff161461183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183590612b10565b60405180910390fd5b565b60006001905090565b60008082905080611858611840565b116118e0576000548110156118df5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118dd575b60008114156118d35760046000836001900393508381526020019081526020016000205490506118a8565b8092505050611912565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861199f868684611e82565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90612ab0565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a4a90612977565b60006040518083038185875af1925050503d8060008114611a87576040519150601f19603f3d011682016040523d82523d6000602084013e611a8c565b606091505b5050905080611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790612a90565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bb5828260405180602001604052806000815250611e8b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bdf6117ba565b8786866040518563ffffffff1660e01b8152600401611c0194939291906129a7565b602060405180830381600087803b158015611c1b57600080fd5b505af1925050508015611c4c57506040513d601f19601f82011682018060405250810190611c4991906124fe565b60015b611cc6573d8060008114611c7c576040519150601f19603f3d011682016040523d82523d6000602084013e611c81565b606091505b50600081511415611cbe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611d61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e75565b600082905060005b60008214611d93578080611d7c90612ee3565b915050600a82611d8c9190612d0b565b9150611d69565b60008167ffffffffffffffff811115611daf57611dae613019565b5b6040519080825280601f01601f191660200182016040528015611de15781602001600182028036833780820191505090505b5090505b60008514611e6e57600182611dfa9190612d96565b9150600a85611e099190612f2c565b6030611e159190612cb5565b60f81b818381518110611e2b57611e2a612fea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e679190612d0b565b9450611de5565b8093505050505b919050565b600033905090565b60009392505050565b611e958383611f28565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f2357600080549050600083820390505b611ed56000868380600101945086611bb9565b611f0b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ec2578160005414611f2057600080fd5b50505b505050565b6000805490506000821415611f69576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f766000848385611982565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fed83611fde6000866000611988565b611fe7856120e5565b176119b0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461208e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612053565b5060008214156120ca576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120e060008483856119db565b505050565b60006001821460e11b9050919050565b82805461210190612e80565b90600052602060002090601f016020900481019282612123576000855561216a565b82601f1061213c57805160ff191683800117855561216a565b8280016001018555821561216a579182015b8281111561216957825182559160200191906001019061214e565b5b509050612177919061217b565b5090565b5b8082111561219457600081600090555060010161217c565b5090565b60006121ab6121a684612bf0565b612bcb565b9050828152602081018484840111156121c7576121c661304d565b5b6121d2848285612e3e565b509392505050565b60006121ed6121e884612c21565b612bcb565b9050828152602081018484840111156122095761220861304d565b5b612214848285612e3e565b509392505050565b60008135905061222b81613346565b92915050565b6000813590506122408161335d565b92915050565b60008135905061225581613374565b92915050565b60008151905061226a81613374565b92915050565b600082601f83011261228557612284613048565b5b8135612295848260208601612198565b91505092915050565b600082601f8301126122b3576122b2613048565b5b81356122c38482602086016121da565b91505092915050565b6000813590506122db8161338b565b92915050565b6000602082840312156122f7576122f6613057565b5b60006123058482850161221c565b91505092915050565b6000806040838503121561232557612324613057565b5b60006123338582860161221c565b92505060206123448582860161221c565b9150509250929050565b60008060006060848603121561236757612366613057565b5b60006123758682870161221c565b93505060206123868682870161221c565b9250506040612397868287016122cc565b9150509250925092565b600080600080608085870312156123bb576123ba613057565b5b60006123c98782880161221c565b94505060206123da8782880161221c565b93505060406123eb878288016122cc565b925050606085013567ffffffffffffffff81111561240c5761240b613052565b5b61241887828801612270565b91505092959194509250565b6000806040838503121561243b5761243a613057565b5b60006124498582860161221c565b925050602061245a85828601612231565b9150509250929050565b6000806040838503121561247b5761247a613057565b5b60006124898582860161221c565b925050602061249a858286016122cc565b9150509250929050565b6000602082840312156124ba576124b9613057565b5b60006124c884828501612231565b91505092915050565b6000602082840312156124e7576124e6613057565b5b60006124f584828501612246565b91505092915050565b60006020828403121561251457612513613057565b5b60006125228482850161225b565b91505092915050565b60006020828403121561254157612540613057565b5b600082013567ffffffffffffffff81111561255f5761255e613052565b5b61256b8482850161229e565b91505092915050565b60006020828403121561258a57612589613057565b5b6000612598848285016122cc565b91505092915050565b600080604083850312156125b8576125b7613057565b5b60006125c6858286016122cc565b92505060206125d78582860161221c565b9150509250929050565b6125ea81612dca565b82525050565b6125f981612ddc565b82525050565b600061260a82612c67565b6126148185612c7d565b9350612624818560208601612e4d565b61262d8161305c565b840191505092915050565b600061264382612c72565b61264d8185612c99565b935061265d818560208601612e4d565b6126668161305c565b840191505092915050565b600061267c82612c72565b6126868185612caa565b9350612696818560208601612e4d565b80840191505092915050565b600081546126af81612e80565b6126b98186612caa565b945060018216600081146126d457600181146126e557612718565b60ff19831686528186019350612718565b6126ee85612c52565b60005b83811015612710578154818901526001820191506020810190506126f1565b838801955050505b50505092915050565b600061272e600783612c99565b91506127398261306d565b602082019050919050565b6000612751601383612c99565b915061275c82613096565b602082019050919050565b6000612774602683612c99565b915061277f826130bf565b604082019050919050565b6000612797603a83612c99565b91506127a28261310e565b604082019050919050565b60006127ba601d83612c99565b91506127c58261315d565b602082019050919050565b60006127dd602283612c99565b91506127e882613186565b604082019050919050565b6000612800601783612c99565b915061280b826131d5565b602082019050919050565b6000612823600583612caa565b915061282e826131fe565b600582019050919050565b6000612846602083612c99565b915061285182613227565b602082019050919050565b6000612869602f83612c99565b915061287482613250565b604082019050919050565b600061288c600083612c8e565b91506128978261329f565b600082019050919050565b60006128af601383612c99565b91506128ba826132a2565b602082019050919050565b60006128d2601883612c99565b91506128dd826132cb565b602082019050919050565b60006128f5601f83612c99565b9150612900826132f4565b602082019050919050565b6000612918600183612caa565b91506129238261331d565b600182019050919050565b61293781612e34565b82525050565b600061294982856126a2565b91506129548261290b565b91506129608284612671565b915061296b82612816565b91508190509392505050565b60006129828261287f565b9150819050919050565b60006020820190506129a160008301846125e1565b92915050565b60006080820190506129bc60008301876125e1565b6129c960208301866125e1565b6129d6604083018561292e565b81810360608301526129e881846125ff565b905095945050505050565b6000602082019050612a0860008301846125f0565b92915050565b60006020820190508181036000830152612a288184612638565b905092915050565b60006020820190508181036000830152612a4981612721565b9050919050565b60006020820190508181036000830152612a6981612744565b9050919050565b60006020820190508181036000830152612a8981612767565b9050919050565b60006020820190508181036000830152612aa98161278a565b9050919050565b60006020820190508181036000830152612ac9816127ad565b9050919050565b60006020820190508181036000830152612ae9816127d0565b9050919050565b60006020820190508181036000830152612b09816127f3565b9050919050565b60006020820190508181036000830152612b2981612839565b9050919050565b60006020820190508181036000830152612b498161285c565b9050919050565b60006020820190508181036000830152612b69816128a2565b9050919050565b60006020820190508181036000830152612b89816128c5565b9050919050565b60006020820190508181036000830152612ba9816128e8565b9050919050565b6000602082019050612bc5600083018461292e565b92915050565b6000612bd5612be6565b9050612be18282612eb2565b919050565b6000604051905090565b600067ffffffffffffffff821115612c0b57612c0a613019565b5b612c148261305c565b9050602081019050919050565b600067ffffffffffffffff821115612c3c57612c3b613019565b5b612c458261305c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612cc082612e34565b9150612ccb83612e34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d0057612cff612f5d565b5b828201905092915050565b6000612d1682612e34565b9150612d2183612e34565b925082612d3157612d30612f8c565b5b828204905092915050565b6000612d4782612e34565b9150612d5283612e34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d8b57612d8a612f5d565b5b828202905092915050565b6000612da182612e34565b9150612dac83612e34565b925082821015612dbf57612dbe612f5d565b5b828203905092915050565b6000612dd582612e14565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e6b578082015181840152602081019050612e50565b83811115612e7a576000848401525b50505050565b60006002820490506001821680612e9857607f821691505b60208210811415612eac57612eab612fbb565b5b50919050565b612ebb8261305c565b810181811067ffffffffffffffff82111715612eda57612ed9613019565b5b80604052505050565b6000612eee82612e34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f2157612f20612f5d565b5b600182019050919050565b6000612f3782612e34565b9150612f4283612e34565b925082612f5257612f51612f8c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4d696e74206e6f74206163746976652079657400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61334f81612dca565b811461335a57600080fd5b50565b61336681612ddc565b811461337157600080fd5b50565b61337d81612de8565b811461338857600080fd5b50565b61339481612e34565b811461339f57600080fd5b5056fea2646970667358221220f83365937fe0807e1521ff7b42e03f1508461718a0bca7755743715e172d17bf64736f6c63430008070033
Deployed Bytecode Sourcemap
71579:3405:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38461:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39363:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45854:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45287:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74360:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35114:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74619:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74855:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49493:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73623:142;;;;;;;;;;;;;:::i;:::-;;52414:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72973:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71944:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40756:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71747:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71900:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74495:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36298:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;71785:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39539:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71821:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74728:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72059:908;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46412:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73188:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53205:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73771:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71709:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46803:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73332:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74230:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71861:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38461:639;38546:4;38885:10;38870:25;;:11;:25;;;;:102;;;;38962:10;38947:25;;:11;:25;;;;38870:102;:179;;;;39039:10;39024:25;;:11;:25;;;;38870:179;38850:199;;38461:639;;;:::o;39363:100::-;39417:13;39450:5;39443:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39363:100;:::o;45854:218::-;45930:7;45955:16;45963:7;45955;:16::i;:::-;45950:64;;45980:34;;;;;;;;;;;;;;45950:64;46034:15;:24;46050:7;46034:24;;;;;;;;;;;:30;;;;;;;;;;;;46027:37;;45854:218;;;:::o;45287:408::-;45376:13;45392:16;45400:7;45392;:16::i;:::-;45376:32;;45448:5;45425:28;;:19;:17;:19::i;:::-;:28;;;45421:175;;45473:44;45490:5;45497:19;:17;:19::i;:::-;45473:16;:44::i;:::-;45468:128;;45545:35;;;;;;;;;;;;;;45468:128;45421:175;45641:2;45608:15;:24;45624:7;45608:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;45679:7;45675:2;45659:28;;45668:5;45659:28;;;;;;;;;;;;45365:330;45287:408;;:::o;74360:129::-;2014:13;:11;:13::i;:::-;74470::::1;74453:14;:30;;;;74360:129:::0;:::o;35114:323::-;35175:7;35403:15;:13;:15::i;:::-;35388:12;;35372:13;;:28;:46;35365:53;;35114:323;:::o;74619:103::-;2014:13;:11;:13::i;:::-;74710:6:::1;74702:5;:14;;;;74619:103:::0;:::o;74855:126::-;2014:13;:11;:13::i;:::-;74969:6:::1;74947:19;:28;;;;74855:126:::0;:::o;49493:2825::-;49635:27;49665;49684:7;49665:18;:27::i;:::-;49635:57;;49750:4;49709:45;;49725:19;49709:45;;;49705:86;;49763:28;;;;;;;;;;;;;;49705:86;49805:27;49834:23;49861:35;49888:7;49861:26;:35::i;:::-;49804:92;;;;49996:68;50021:15;50038:4;50044:19;:17;:19::i;:::-;49996:24;:68::i;:::-;49991:180;;50084:43;50101:4;50107:19;:17;:19::i;:::-;50084:16;:43::i;:::-;50079:92;;50136:35;;;;;;;;;;;;;;50079:92;49991:180;50202:1;50188:16;;:2;:16;;;50184:52;;;50213:23;;;;;;;;;;;;;;50184:52;50249:43;50271:4;50277:2;50281:7;50290:1;50249:21;:43::i;:::-;50385:15;50382:160;;;50525:1;50504:19;50497:30;50382:160;50922:18;:24;50941:4;50922:24;;;;;;;;;;;;;;;;50920:26;;;;;;;;;;;;50991:18;:22;51010:2;50991:22;;;;;;;;;;;;;;;;50989:24;;;;;;;;;;;51313:146;51350:2;51399:45;51414:4;51420:2;51424:19;51399:14;:45::i;:::-;31513:8;51371:73;51313:18;:146::i;:::-;51284:17;:26;51302:7;51284:26;;;;;;;;;;;:175;;;;51630:1;31513:8;51579:19;:47;:52;51575:627;;;51652:19;51684:1;51674:7;:11;51652:33;;51841:1;51807:17;:30;51825:11;51807:30;;;;;;;;;;;;:35;51803:384;;;51945:13;;51930:11;:28;51926:242;;52125:19;52092:17;:30;52110:11;52092:30;;;;;;;;;;;:52;;;;51926:242;51803:384;51633:569;51575:627;52249:7;52245:2;52230:27;;52239:4;52230:27;;;;;;;;;;;;52268:42;52289:4;52295:2;52299:7;52308:1;52268:20;:42::i;:::-;49624:2694;;;49493:2825;;;:::o;73623:142::-;2014:13;:11;:13::i;:::-;19110:1:::1;19708:7;;:19;;19700:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;19110:1;19841:7;:18;;;;73698:61:::2;73724:10;73737:21;73698:17;:61::i;:::-;19066:1:::1;20020:7;:22;;;;73623:142::o:0;52414:193::-;52560:39;52577:4;52583:2;52587:7;52560:39;;;;;;;;;;;;:16;:39::i;:::-;52414:193;;;:::o;72973:108::-;2014:13;:11;:13::i;:::-;73068:7:::1;73053:12;:22;;;;;;;;;;;;:::i;:::-;;72973:108:::0;:::o;71944:31::-;;;;;;;;;;;;;:::o;40756:152::-;40828:7;40871:27;40890:7;40871:18;:27::i;:::-;40848:52;;40756:152;;;:::o;71747:33::-;;;;:::o;71900:39::-;;;;:::o;74495:118::-;2014:13;:11;:13::i;:::-;74596:11:::1;74583:10;:24;;;;74495:118:::0;:::o;36298:233::-;36370:7;36411:1;36394:19;;:5;:19;;;36390:60;;;36422:28;;;;;;;;;;;;;;36390:60;30457:13;36468:18;:25;36487:5;36468:25;;;;;;;;;;;;;;;;:55;36461:62;;36298:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;71785:31::-;;;;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;39539:104::-;39595:13;39628:7;39621:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39539:104;:::o;71821:35::-;;;;:::o;74728:121::-;2014:13;:11;:13::i;:::-;74837:6:::1;74824:10;:19;;;;74728:121:::0;:::o;72059:908::-;72146:12;;;;;;;;;;;72138:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;72243:1;72230:10;;:14;;;;:::i;:::-;72213;72197:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:47;72189:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;72284:14;;72268:13;:11;:13::i;:::-;:30;72265:653;;;72360:9;72341:14;72333:5;;:22;;;;:::i;:::-;72332:37;;72310:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;72265:653;;;72467:19;;72450:14;:36;72446:465;;;72549:9;72530:14;72522:5;;:22;;;;:::i;:::-;72521:37;;72499:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;72661:10;;72643:14;:28;;72621:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;72446:465;;;72810:19;;72792:14;:37;;72766:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;72446:465;72265:653;72924:37;72934:10;72946:14;72924:9;:37::i;:::-;72059:908;:::o;46412:234::-;46559:8;46507:18;:39;46526:19;:17;:19::i;:::-;46507:39;;;;;;;;;;;;;;;:49;46547:8;46507:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;46619:8;46583:55;;46598:19;:17;:19::i;:::-;46583:55;;;46629:8;46583:55;;;;;;:::i;:::-;;;;;;;;46412:234;;:::o;73188:138::-;2014:13;:11;:13::i;:::-;73284:36:::1;73294:9;73305:14;73284:9;:36::i;:::-;73188:138:::0;;:::o;53205:407::-;53380:31;53393:4;53399:2;53403:7;53380:12;:31::i;:::-;53444:1;53426:2;:14;;;:19;53422:183;;53465:56;53496:4;53502:2;53506:7;53515:5;53465:30;:56::i;:::-;53460:145;;53549:40;;;;;;;;;;;;;;53460:145;53422:183;53205:407;;;;:::o;73771:312::-;73867:13;73908:17;73916:8;73908:7;:17::i;:::-;73892:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;74028:12;74047:19;:8;:17;:19::i;:::-;74011:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73997:80;;73771:312;;;:::o;71709:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46803:164::-;46900:4;46924:18;:25;46943:5;46924:25;;;;;;;;;;;;;;;:35;46950:8;46924:35;;;;;;;;;;;;;;;;;;;;;;;;;46917:42;;46803:164;;;;:::o;73332:285::-;2014:13;:11;:13::i;:::-;73433:1:::1;73422:8;:12;73406:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;73522:10;;73510:8;73494:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;73478:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;73580:31;73590:10;73602:8;73580:9;:31::i;:::-;73332:285:::0;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;74230:124::-;2014:13;:11;:13::i;:::-;74335::::1;74320:12;;:28;;;;;;;;;;;;;;;;;;74230:124:::0;:::o;71861:34::-;;;;:::o;47225:282::-;47290:4;47346:7;47327:15;:13;:15::i;:::-;:26;;:66;;;;;47380:13;;47370:7;:23;47327:66;:153;;;;;47479:1;31233:8;47431:17;:26;47449:7;47431:26;;;;;;;;;;;;:44;:49;47327:153;47307:173;;47225:282;;;:::o;69533:105::-;69593:7;69620:10;69613:17;;69533:105;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;73087:95::-;73152:7;73175:1;73168:8;;73087:95;:::o;41911:1275::-;41978:7;41998:12;42013:7;41998:22;;42081:4;42062:15;:13;:15::i;:::-;:23;42058:1061;;42115:13;;42108:4;:20;42104:1015;;;42153:14;42170:17;:23;42188:4;42170:23;;;;;;;;;;;;42153:40;;42287:1;31233:8;42259:6;:24;:29;42255:845;;;42924:113;42941:1;42931:6;:11;42924:113;;;42984:17;:25;43002:6;;;;;;;42984:25;;;;;;;;;;;;42975:34;;42924:113;;;43070:6;43063:13;;;;;;42255:845;42130:989;42104:1015;42058:1061;43147:31;;;;;;;;;;;;;;41911:1275;;;;:::o;48388:485::-;48490:27;48519:23;48560:38;48601:15;:24;48617:7;48601:24;;;;;;;;;;;48560:65;;48778:18;48755:41;;48835:19;48829:26;48810:45;;48740:126;48388:485;;;:::o;47616:659::-;47765:11;47930:16;47923:5;47919:28;47910:37;;48090:16;48079:9;48075:32;48062:45;;48240:15;48229:9;48226:30;48218:5;48207:9;48204:20;48201:56;48191:66;;47616:659;;;;;:::o;54274:159::-;;;;;:::o;68842:311::-;68977:7;68997:16;31637:3;69023:19;:41;;68997:68;;31637:3;69091:31;69102:4;69108:2;69112:9;69091:10;:31::i;:::-;69083:40;;:62;;69076:69;;;68842:311;;;;;:::o;43734:450::-;43814:14;43982:16;43975:5;43971:28;43962:37;;44159:5;44145:11;44120:23;44116:41;44113:52;44106:5;44103:63;44093:73;;43734:450;;;;:::o;55098:158::-;;;;;:::o;11239:317::-;11354:6;11329:21;:31;;11321:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11408:12;11426:9;:14;;11448:6;11426:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11407:52;;;11478:7;11470:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11310:246;11239:317;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;63365:112::-;63442:27;63452:2;63456:8;63442:27;;;;;;;;;;;;:9;:27::i;:::-;63365:112;;:::o;55696:716::-;55859:4;55905:2;55880:45;;;55926:19;:17;:19::i;:::-;55947:4;55953:7;55962:5;55880:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55876:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56180:1;56163:6;:13;:18;56159:235;;;56209:40;;;;;;;;;;;;;;56159:235;56352:6;56346:13;56337:6;56333:2;56329:15;56322:38;55876:529;56049:54;;;56039:64;;;:6;:64;;;;56032:71;;;55696:716;;;;;;:::o;6678:723::-;6734:13;6964:1;6955:5;:10;6951:53;;;6982:10;;;;;;;;;;;;;;;;;;;;;6951:53;7014:12;7029:5;7014:20;;7045:14;7070:78;7085:1;7077:4;:9;7070:78;;7103:8;;;;;:::i;:::-;;;;7134:2;7126:10;;;;;:::i;:::-;;;7070:78;;;7158:19;7190:6;7180:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7158:39;;7208:154;7224:1;7215:5;:10;7208:154;;7252:1;7242:11;;;;;:::i;:::-;;;7319:2;7311:5;:10;;;;:::i;:::-;7298:2;:24;;;;:::i;:::-;7285:39;;7268:6;7275;7268:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;7348:2;7339:11;;;;;:::i;:::-;;;7208:154;;;7386:6;7372:21;;;;;6678:723;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;68543:147::-;68680:6;68543:147;;;;;:::o;62592:689::-;62723:19;62729:2;62733:8;62723:5;:19::i;:::-;62802:1;62784:2;:14;;;:19;62780:483;;62824:11;62838:13;;62824:27;;62870:13;62892:8;62886:3;:14;62870:30;;62919:233;62950:62;62989:1;62993:2;62997:7;;;;;;63006:5;62950:30;:62::i;:::-;62945:167;;63048:40;;;;;;;;;;;;;;62945:167;63147:3;63139:5;:11;62919:233;;63234:3;63217:13;;:20;63213:34;;63239:8;;;63213:34;62805:458;;62780:483;62592:689;;;:::o;56874:2966::-;56947:20;56970:13;;56947:36;;57010:1;56998:8;:13;56994:44;;;57020:18;;;;;;;;;;;;;;56994:44;57051:61;57081:1;57085:2;57089:12;57103:8;57051:21;:61::i;:::-;57595:1;30595:2;57565:1;:26;;57564:32;57552:8;:45;57526:18;:22;57545:2;57526:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;57874:139;57911:2;57965:33;57988:1;57992:2;57996:1;57965:14;:33::i;:::-;57932:30;57953:8;57932:20;:30::i;:::-;:66;57874:18;:139::i;:::-;57840:17;:31;57858:12;57840:31;;;;;;;;;;;:173;;;;58030:16;58061:11;58090:8;58075:12;:23;58061:37;;58611:16;58607:2;58603:25;58591:37;;58983:12;58943:8;58902:1;58840:25;58781:1;58720;58693:335;59354:1;59340:12;59336:20;59294:346;59395:3;59386:7;59383:16;59294:346;;59613:7;59603:8;59600:1;59573:25;59570:1;59567;59562:59;59448:1;59439:7;59435:15;59424:26;;59294:346;;;59298:77;59685:1;59673:8;:13;59669:45;;;59695:19;;;;;;;;;;;;;;59669:45;59747:3;59731:13;:19;;;;57300:2462;;59772:60;59801:1;59805:2;59809:12;59823:8;59772:20;:60::i;:::-;56936:2904;56874:2966;;:::o;44286:324::-;44356:14;44589:1;44579:8;44576:15;44550:24;44546:46;44536:56;;44286:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:365::-;10342:3;10363:66;10427:1;10422:3;10363:66;:::i;:::-;10356:73;;10438:93;10527:3;10438:93;:::i;:::-;10556:2;10551:3;10547:12;10540:19;;10200:365;;;:::o;10571:366::-;10713:3;10734:67;10798:2;10793:3;10734:67;:::i;:::-;10727:74;;10810:93;10899:3;10810:93;:::i;:::-;10928:2;10923:3;10919:12;10912:19;;10571:366;;;:::o;10943:::-;11085:3;11106:67;11170:2;11165:3;11106:67;:::i;:::-;11099:74;;11182:93;11271:3;11182:93;:::i;:::-;11300:2;11295:3;11291:12;11284:19;;10943:366;;;:::o;11315:::-;11457:3;11478:67;11542:2;11537:3;11478:67;:::i;:::-;11471:74;;11554:93;11643:3;11554:93;:::i;:::-;11672:2;11667:3;11663:12;11656:19;;11315:366;;;:::o;11687:::-;11829:3;11850:67;11914:2;11909:3;11850:67;:::i;:::-;11843:74;;11926:93;12015:3;11926:93;:::i;:::-;12044:2;12039:3;12035:12;12028:19;;11687:366;;;:::o;12059:::-;12201:3;12222:67;12286:2;12281:3;12222:67;:::i;:::-;12215:74;;12298:93;12387:3;12298:93;:::i;:::-;12416:2;12411:3;12407:12;12400:19;;12059:366;;;:::o;12431:::-;12573:3;12594:67;12658:2;12653:3;12594:67;:::i;:::-;12587:74;;12670:93;12759:3;12670:93;:::i;:::-;12788:2;12783:3;12779:12;12772:19;;12431:366;;;:::o;12803:400::-;12963:3;12984:84;13066:1;13061:3;12984:84;:::i;:::-;12977:91;;13077:93;13166:3;13077:93;:::i;:::-;13195:1;13190:3;13186:11;13179:18;;12803:400;;;:::o;13209:366::-;13351:3;13372:67;13436:2;13431:3;13372:67;:::i;:::-;13365:74;;13448:93;13537:3;13448:93;:::i;:::-;13566:2;13561:3;13557:12;13550:19;;13209:366;;;:::o;13581:::-;13723:3;13744:67;13808:2;13803:3;13744:67;:::i;:::-;13737:74;;13820:93;13909:3;13820:93;:::i;:::-;13938:2;13933:3;13929:12;13922:19;;13581:366;;;:::o;13953:398::-;14112:3;14133:83;14214:1;14209:3;14133:83;:::i;:::-;14126:90;;14225:93;14314:3;14225:93;:::i;:::-;14343:1;14338:3;14334:11;14327:18;;13953:398;;;:::o;14357:366::-;14499:3;14520:67;14584:2;14579:3;14520:67;:::i;:::-;14513:74;;14596:93;14685:3;14596:93;:::i;:::-;14714:2;14709:3;14705:12;14698:19;;14357:366;;;:::o;14729:::-;14871:3;14892:67;14956:2;14951:3;14892:67;:::i;:::-;14885:74;;14968:93;15057:3;14968:93;:::i;:::-;15086:2;15081:3;15077:12;15070:19;;14729:366;;;:::o;15101:::-;15243:3;15264:67;15328:2;15323:3;15264:67;:::i;:::-;15257:74;;15340:93;15429:3;15340:93;:::i;:::-;15458:2;15453:3;15449:12;15442:19;;15101:366;;;:::o;15473:400::-;15633:3;15654:84;15736:1;15731:3;15654:84;:::i;:::-;15647:91;;15747:93;15836:3;15747:93;:::i;:::-;15865:1;15860:3;15856:11;15849:18;;15473:400;;;:::o;15879:118::-;15966:24;15984:5;15966:24;:::i;:::-;15961:3;15954:37;15879:118;;:::o;16003:961::-;16382:3;16404:92;16492:3;16483:6;16404:92;:::i;:::-;16397:99;;16513:148;16657:3;16513:148;:::i;:::-;16506:155;;16678:95;16769:3;16760:6;16678:95;:::i;:::-;16671:102;;16790:148;16934:3;16790:148;:::i;:::-;16783:155;;16955:3;16948:10;;16003:961;;;;;:::o;16970:379::-;17154:3;17176:147;17319:3;17176:147;:::i;:::-;17169:154;;17340:3;17333:10;;16970:379;;;:::o;17355:222::-;17448:4;17486:2;17475:9;17471:18;17463:26;;17499:71;17567:1;17556:9;17552:17;17543:6;17499:71;:::i;:::-;17355:222;;;;:::o;17583:640::-;17778:4;17816:3;17805:9;17801:19;17793:27;;17830:71;17898:1;17887:9;17883:17;17874:6;17830:71;:::i;:::-;17911:72;17979:2;17968:9;17964:18;17955:6;17911:72;:::i;:::-;17993;18061:2;18050:9;18046:18;18037:6;17993:72;:::i;:::-;18112:9;18106:4;18102:20;18097:2;18086:9;18082:18;18075:48;18140:76;18211:4;18202:6;18140:76;:::i;:::-;18132:84;;17583:640;;;;;;;:::o;18229:210::-;18316:4;18354:2;18343:9;18339:18;18331:26;;18367:65;18429:1;18418:9;18414:17;18405:6;18367:65;:::i;:::-;18229:210;;;;:::o;18445:313::-;18558:4;18596:2;18585:9;18581:18;18573:26;;18645:9;18639:4;18635:20;18631:1;18620:9;18616:17;18609:47;18673:78;18746:4;18737:6;18673:78;:::i;:::-;18665:86;;18445:313;;;;:::o;18764:419::-;18930:4;18968:2;18957:9;18953:18;18945:26;;19017:9;19011:4;19007:20;19003:1;18992:9;18988:17;18981:47;19045:131;19171:4;19045:131;:::i;:::-;19037:139;;18764:419;;;:::o;19189:::-;19355:4;19393:2;19382:9;19378:18;19370:26;;19442:9;19436:4;19432:20;19428:1;19417:9;19413:17;19406:47;19470:131;19596:4;19470:131;:::i;:::-;19462:139;;19189:419;;;:::o;19614:::-;19780:4;19818:2;19807:9;19803:18;19795:26;;19867:9;19861:4;19857:20;19853:1;19842:9;19838:17;19831:47;19895:131;20021:4;19895:131;:::i;:::-;19887:139;;19614:419;;;:::o;20039:::-;20205:4;20243:2;20232:9;20228:18;20220:26;;20292:9;20286:4;20282:20;20278:1;20267:9;20263:17;20256:47;20320:131;20446:4;20320:131;:::i;:::-;20312:139;;20039:419;;;:::o;20464:::-;20630:4;20668:2;20657:9;20653:18;20645:26;;20717:9;20711:4;20707:20;20703:1;20692:9;20688:17;20681:47;20745:131;20871:4;20745:131;:::i;:::-;20737:139;;20464:419;;;:::o;20889:::-;21055:4;21093:2;21082:9;21078:18;21070:26;;21142:9;21136:4;21132:20;21128:1;21117:9;21113:17;21106:47;21170:131;21296:4;21170:131;:::i;:::-;21162:139;;20889:419;;;:::o;21314:::-;21480:4;21518:2;21507:9;21503:18;21495:26;;21567:9;21561:4;21557:20;21553:1;21542:9;21538:17;21531:47;21595:131;21721:4;21595:131;:::i;:::-;21587:139;;21314:419;;;:::o;21739:::-;21905:4;21943:2;21932:9;21928:18;21920:26;;21992:9;21986:4;21982:20;21978:1;21967:9;21963:17;21956:47;22020:131;22146:4;22020:131;:::i;:::-;22012:139;;21739:419;;;:::o;22164:::-;22330:4;22368:2;22357:9;22353:18;22345:26;;22417:9;22411:4;22407:20;22403:1;22392:9;22388:17;22381:47;22445:131;22571:4;22445:131;:::i;:::-;22437:139;;22164:419;;;:::o;22589:::-;22755:4;22793:2;22782:9;22778:18;22770:26;;22842:9;22836:4;22832:20;22828:1;22817:9;22813:17;22806:47;22870:131;22996:4;22870:131;:::i;:::-;22862:139;;22589:419;;;:::o;23014:::-;23180:4;23218:2;23207:9;23203:18;23195:26;;23267:9;23261:4;23257:20;23253:1;23242:9;23238:17;23231:47;23295:131;23421:4;23295:131;:::i;:::-;23287:139;;23014:419;;;:::o;23439:::-;23605:4;23643:2;23632:9;23628:18;23620:26;;23692:9;23686:4;23682:20;23678:1;23667:9;23663:17;23656:47;23720:131;23846:4;23720:131;:::i;:::-;23712:139;;23439:419;;;:::o;23864:222::-;23957:4;23995:2;23984:9;23980:18;23972:26;;24008:71;24076:1;24065:9;24061:17;24052:6;24008:71;:::i;:::-;23864:222;;;;:::o;24092:129::-;24126:6;24153:20;;:::i;:::-;24143:30;;24182:33;24210:4;24202:6;24182:33;:::i;:::-;24092:129;;;:::o;24227:75::-;24260:6;24293:2;24287:9;24277:19;;24227:75;:::o;24308:307::-;24369:4;24459:18;24451:6;24448:30;24445:56;;;24481:18;;:::i;:::-;24445:56;24519:29;24541:6;24519:29;:::i;:::-;24511:37;;24603:4;24597;24593:15;24585:23;;24308:307;;;:::o;24621:308::-;24683:4;24773:18;24765:6;24762:30;24759:56;;;24795:18;;:::i;:::-;24759:56;24833:29;24855:6;24833:29;:::i;:::-;24825:37;;24917:4;24911;24907:15;24899:23;;24621:308;;;:::o;24935:141::-;24984:4;25007:3;24999:11;;25030:3;25027:1;25020:14;25064:4;25061:1;25051:18;25043:26;;24935:141;;;:::o;25082:98::-;25133:6;25167:5;25161:12;25151:22;;25082:98;;;:::o;25186:99::-;25238:6;25272:5;25266:12;25256:22;;25186:99;;;:::o;25291:168::-;25374:11;25408:6;25403:3;25396:19;25448:4;25443:3;25439:14;25424:29;;25291:168;;;;:::o;25465:147::-;25566:11;25603:3;25588:18;;25465:147;;;;:::o;25618:169::-;25702:11;25736:6;25731:3;25724:19;25776:4;25771:3;25767:14;25752:29;;25618:169;;;;:::o;25793:148::-;25895:11;25932:3;25917:18;;25793:148;;;;:::o;25947:305::-;25987:3;26006:20;26024:1;26006:20;:::i;:::-;26001:25;;26040:20;26058:1;26040:20;:::i;:::-;26035:25;;26194:1;26126:66;26122:74;26119:1;26116:81;26113:107;;;26200:18;;:::i;:::-;26113:107;26244:1;26241;26237:9;26230:16;;25947:305;;;;:::o;26258:185::-;26298:1;26315:20;26333:1;26315:20;:::i;:::-;26310:25;;26349:20;26367:1;26349:20;:::i;:::-;26344:25;;26388:1;26378:35;;26393:18;;:::i;:::-;26378:35;26435:1;26432;26428:9;26423:14;;26258:185;;;;:::o;26449:348::-;26489:7;26512:20;26530:1;26512:20;:::i;:::-;26507:25;;26546:20;26564:1;26546:20;:::i;:::-;26541:25;;26734:1;26666:66;26662:74;26659:1;26656:81;26651:1;26644:9;26637:17;26633:105;26630:131;;;26741:18;;:::i;:::-;26630:131;26789:1;26786;26782:9;26771:20;;26449:348;;;;:::o;26803:191::-;26843:4;26863:20;26881:1;26863:20;:::i;:::-;26858:25;;26897:20;26915:1;26897:20;:::i;:::-;26892:25;;26936:1;26933;26930:8;26927:34;;;26941:18;;:::i;:::-;26927:34;26986:1;26983;26979:9;26971:17;;26803:191;;;;:::o;27000:96::-;27037:7;27066:24;27084:5;27066:24;:::i;:::-;27055:35;;27000:96;;;:::o;27102:90::-;27136:7;27179:5;27172:13;27165:21;27154:32;;27102:90;;;:::o;27198:149::-;27234:7;27274:66;27267:5;27263:78;27252:89;;27198:149;;;:::o;27353:126::-;27390:7;27430:42;27423:5;27419:54;27408:65;;27353:126;;;:::o;27485:77::-;27522:7;27551:5;27540:16;;27485:77;;;:::o;27568:154::-;27652:6;27647:3;27642;27629:30;27714:1;27705:6;27700:3;27696:16;27689:27;27568:154;;;:::o;27728:307::-;27796:1;27806:113;27820:6;27817:1;27814:13;27806:113;;;27905:1;27900:3;27896:11;27890:18;27886:1;27881:3;27877:11;27870:39;27842:2;27839:1;27835:10;27830:15;;27806:113;;;27937:6;27934:1;27931:13;27928:101;;;28017:1;28008:6;28003:3;27999:16;27992:27;27928:101;27777:258;27728:307;;;:::o;28041:320::-;28085:6;28122:1;28116:4;28112:12;28102:22;;28169:1;28163:4;28159:12;28190:18;28180:81;;28246:4;28238:6;28234:17;28224:27;;28180:81;28308:2;28300:6;28297:14;28277:18;28274:38;28271:84;;;28327:18;;:::i;:::-;28271:84;28092:269;28041:320;;;:::o;28367:281::-;28450:27;28472:4;28450:27;:::i;:::-;28442:6;28438:40;28580:6;28568:10;28565:22;28544:18;28532:10;28529:34;28526:62;28523:88;;;28591:18;;:::i;:::-;28523:88;28631:10;28627:2;28620:22;28410:238;28367:281;;:::o;28654:233::-;28693:3;28716:24;28734:5;28716:24;:::i;:::-;28707:33;;28762:66;28755:5;28752:77;28749:103;;;28832:18;;:::i;:::-;28749:103;28879:1;28872:5;28868:13;28861:20;;28654:233;;;:::o;28893:176::-;28925:1;28942:20;28960:1;28942:20;:::i;:::-;28937:25;;28976:20;28994:1;28976:20;:::i;:::-;28971:25;;29015:1;29005:35;;29020:18;;:::i;:::-;29005:35;29061:1;29058;29054:9;29049:14;;28893:176;;;;:::o;29075:180::-;29123:77;29120:1;29113:88;29220:4;29217:1;29210:15;29244:4;29241:1;29234:15;29261:180;29309:77;29306:1;29299:88;29406:4;29403:1;29396:15;29430:4;29427:1;29420:15;29447:180;29495:77;29492:1;29485:88;29592:4;29589:1;29582:15;29616:4;29613:1;29606:15;29633:180;29681:77;29678:1;29671:88;29778:4;29775:1;29768:15;29802:4;29799:1;29792:15;29819:180;29867:77;29864:1;29857:88;29964:4;29961:1;29954:15;29988:4;29985:1;29978:15;30005:117;30114:1;30111;30104:12;30128:117;30237:1;30234;30227:12;30251:117;30360:1;30357;30350:12;30374:117;30483:1;30480;30473:12;30497:102;30538:6;30589:2;30585:7;30580:2;30573:5;30569:14;30565:28;30555:38;;30497:102;;;:::o;30605:157::-;30745:9;30741:1;30733:6;30729:14;30722:33;30605:157;:::o;30768:169::-;30908:21;30904:1;30896:6;30892:14;30885:45;30768:169;:::o;30943:225::-;31083:34;31079:1;31071:6;31067:14;31060:58;31152:8;31147:2;31139:6;31135:15;31128:33;30943:225;:::o;31174:245::-;31314:34;31310:1;31302:6;31298:14;31291:58;31383:28;31378:2;31370:6;31366:15;31359:53;31174:245;:::o;31425:179::-;31565:31;31561:1;31553:6;31549:14;31542:55;31425:179;:::o;31610:221::-;31750:34;31746:1;31738:6;31734:14;31727:58;31819:4;31814:2;31806:6;31802:15;31795:29;31610:221;:::o;31837:173::-;31977:25;31973:1;31965:6;31961:14;31954:49;31837:173;:::o;32016:155::-;32156:7;32152:1;32144:6;32140:14;32133:31;32016:155;:::o;32177:182::-;32317:34;32313:1;32305:6;32301:14;32294:58;32177:182;:::o;32365:234::-;32505:34;32501:1;32493:6;32489:14;32482:58;32574:17;32569:2;32561:6;32557:15;32550:42;32365:234;:::o;32605:114::-;;:::o;32725:169::-;32865:21;32861:1;32853:6;32849:14;32842:45;32725:169;:::o;32900:174::-;33040:26;33036:1;33028:6;33024:14;33017:50;32900:174;:::o;33080:181::-;33220:33;33216:1;33208:6;33204:14;33197:57;33080:181;:::o;33267:151::-;33407:3;33403:1;33395:6;33391:14;33384:27;33267:151;:::o;33424:122::-;33497:24;33515:5;33497:24;:::i;:::-;33490:5;33487:35;33477:63;;33536:1;33533;33526:12;33477:63;33424:122;:::o;33552:116::-;33622:21;33637:5;33622:21;:::i;:::-;33615:5;33612:32;33602:60;;33658:1;33655;33648:12;33602:60;33552:116;:::o;33674:120::-;33746:23;33763:5;33746:23;:::i;:::-;33739:5;33736:34;33726:62;;33784:1;33781;33774:12;33726:62;33674:120;:::o;33800:122::-;33873:24;33891:5;33873:24;:::i;:::-;33866:5;33863:35;33853:63;;33912:1;33909;33902:12;33853:63;33800:122;:::o
Swarm Source
ipfs://f83365937fe0807e1521ff7b42e03f1508461718a0bca7755743715e172d17bf
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.