ERC-721
Overview
Max Total Supply
2,000 FTXG
Holders
1,849
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FTXGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FTXGERMS
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-12 */ // SPDX-License-Identifier: MIT // 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: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } pragma solidity ^0.8.0; contract FTXGERMS is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = "ipfs://bafybeib3n4fz7jnkcxiaddmuvdsfh5puvd34yjqukj3xg4ajzowfkl3kga/"; uint256 public price = 0.005 ether; uint256 public maxPerTransaction = 10; uint256 public maxFreePerWallet = 1; uint256 public totalFree = 2000; uint256 public maxSupply = 2000; bool public mintEnabled = false; mapping(address => uint256) private _mintedFreeAmount; constructor() ERC721A("FTX GERMS", "FTXG"){ } // -FUNCTIONS- function mint(uint256 count) external payable { uint256 cost = price; bool isFree = ((totalSupply() + count < totalFree + 1) && (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet)); if (isFree) { cost = 0; _mintedFreeAmount[msg.sender] += count; } require(msg.value >= count * cost, "Please send the right amount."); require(totalSupply() + count <= maxSupply, "Gone."); require(mintEnabled, "Minting hasn't started yet."); require(count <= maxPerTransaction, "Max per transaction reached."); _safeMint(msg.sender, count); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function ownerfunction(uint256 amt) external onlyOwner { require(totalSupply() + amt < maxSupply + 1,"too many!"); _safeMint(msg.sender, amt); } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } 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 toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } function setPrice(uint256 price_) external onlyOwner { price = price_; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"ownerfunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060800160405280604381526020016200381f60439139600a90816200002e9190620004a0565b506611c37937e08000600b55600a600c556001600d556107d0600e556107d0600f556000601060006101000a81548160ff0219169083151502179055503480156200007857600080fd5b506040518060400160405280600981526020017f465458204745524d5300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f46545847000000000000000000000000000000000000000000000000000000008152508160029081620000f69190620004a0565b508060039081620001089190620004a0565b50620001196200014f60201b60201c565b600081905550505062000141620001356200015860201b60201c565b6200016060201b60201c565b600160098190555062000587565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002a857607f821691505b602082108103620002be57620002bd62000260565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003287fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002e9565b620003348683620002e9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003816200037b62000375846200034c565b62000356565b6200034c565b9050919050565b6000819050919050565b6200039d8362000360565b620003b5620003ac8262000388565b848454620002f6565b825550505050565b600090565b620003cc620003bd565b620003d981848462000392565b505050565b5b818110156200040157620003f5600082620003c2565b600181019050620003df565b5050565b601f82111562000450576200041a81620002c4565b6200042584620002d9565b8101602085101562000435578190505b6200044d6200044485620002d9565b830182620003de565b50505b505050565b600082821c905092915050565b6000620004756000198460080262000455565b1980831691505092915050565b600062000490838362000462565b9150826002028217905092915050565b620004ab8262000226565b67ffffffffffffffff811115620004c757620004c662000231565b5b620004d382546200028f565b620004e082828562000405565b600060209050601f83116001811462000518576000841562000503578287015190505b6200050f858262000482565b8655506200057f565b601f1984166200052886620002c4565b60005b8281101562000552578489015182556001820191506020850194506020810190506200052b565b868310156200057257848901516200056e601f89168262000462565b8355505b6001600288020188555050505b505050505050565b61328880620005976000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610631578063dad039831461065c578063e985e9c514610685578063f2fde38b146106c2576101cd565b8063b88d4fde14610575578063c87b56dd1461059e578063d1239730146105db578063d547cfb714610606576101cd565b8063a035b1fe116100d1578063a035b1fe146104da578063a0712d6814610505578063a22cb46514610521578063a70273571461054a576101cd565b80638da5cb5b1461045b57806391b7f5ed1461048657806395d89b41146104af576101cd565b80633ccfd60b1161016f5780636352211e1161013e5780636352211e146103b357806370a08231146103f0578063715018a61461042d5780637d55094d14610444576101cd565b80633ccfd60b1461031f57806342842e0e146103365780634b980d671461035f57806355f804b31461038a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb578063333e44e6146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061201d565b6106eb565b6040516102069190612065565b60405180910390f35b34801561021b57600080fd5b5061022461077d565b6040516102319190612110565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612168565b61080f565b60405161026e91906121d6565b60405180910390f35b34801561028357600080fd5b5061029e6004803603810190610299919061221d565b61088b565b005b3480156102ac57600080fd5b506102b56109cc565b6040516102c2919061226c565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612287565b6109e3565b005b34801561030057600080fd5b50610309610d05565b604051610316919061226c565b60405180910390f35b34801561032b57600080fd5b50610334610d0b565b005b34801561034257600080fd5b5061035d60048036038101906103589190612287565b610e17565b005b34801561036b57600080fd5b50610374610e37565b604051610381919061226c565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061240f565b610e3d565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612168565b610e58565b6040516103e791906121d6565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612458565b610e6a565b604051610424919061226c565b60405180910390f35b34801561043957600080fd5b50610442610f22565b005b34801561045057600080fd5b50610459610f36565b005b34801561046757600080fd5b50610470610f6a565b60405161047d91906121d6565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190612168565b610f94565b005b3480156104bb57600080fd5b506104c4610fa6565b6040516104d19190612110565b60405180910390f35b3480156104e657600080fd5b506104ef611038565b6040516104fc919061226c565b60405180910390f35b61051f600480360381019061051a9190612168565b61103e565b005b34801561052d57600080fd5b50610548600480360381019061054391906124b1565b61126d565b005b34801561055657600080fd5b5061055f6113e4565b60405161056c919061226c565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190612592565b6113ea565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190612168565b61145d565b6040516105d29190612110565b60405180910390f35b3480156105e757600080fd5b506105f06114d9565b6040516105fd9190612065565b60405180910390f35b34801561061257600080fd5b5061061b6114ec565b6040516106289190612110565b60405180910390f35b34801561063d57600080fd5b5061064661157a565b604051610653919061226c565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190612168565b611580565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612615565b6115f7565b6040516106b99190612065565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e49190612458565b61168b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078c90612684565b80601f01602080910402602001604051908101604052809291908181526020018280546107b890612684565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b5050505050905090565b600061081a8261170e565b610850576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089682610e58565b90508073ffffffffffffffffffffffffffffffffffffffff166108b761176d565b73ffffffffffffffffffffffffffffffffffffffff161461091a576108e3816108de61176d565b6115f7565b610919576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109d6611775565b6001546000540303905090565b60006109ee8261177e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a55576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a618461184a565b91509150610a778187610a7261176d565b61186c565b610ac357610a8c86610a8761176d565b6115f7565b610ac2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b29576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b3686868660016118b0565b8015610b4157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c0f85610beb8888876118b6565b7c0200000000000000000000000000000000000000000000000000000000176118de565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c955760006001850190506000600460008381526020019081526020016000205403610c93576000548114610c92578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cfd8686866001611909565b505050505050565b600e5481565b610d1361190f565b600260095403610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90612701565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d8690612752565b60006040518083038185875af1925050503d8060008114610dc3576040519150601f19603f3d011682016040523d82523d6000602084013e610dc8565b606091505b5050905080610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e03906127b3565b60405180910390fd5b506001600981905550565b610e32838383604051806020016040528060008152506113ea565b505050565b600c5481565b610e4561190f565b80600a9081610e54919061297f565b5050565b6000610e638261177e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f2a61190f565b610f34600061198d565b565b610f3e61190f565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f9c61190f565b80600b8190555050565b606060038054610fb590612684565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe190612684565b801561102e5780601f106110035761010080835404028352916020019161102e565b820191906000526020600020905b81548152906001019060200180831161101157829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e546110569190612a80565b8361105f6109cc565b6110699190612a80565b1080156110c25750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110bf9190612a80565b11155b90508015611125576000915082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461111d9190612a80565b925050819055505b81836111319190612ab4565b341015611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90612b42565b60405180910390fd5b600f548361117f6109cc565b6111899190612a80565b11156111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190612bae565b60405180910390fd5b601060009054906101000a900460ff16611219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121090612c1a565b60405180910390fd5b600c5483111561125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590612c86565b60405180910390fd5b6112683384611a53565b505050565b61127561176d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112d9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112e661176d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661139361176d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d89190612065565b60405180910390a35050565b600d5481565b6113f58484846109e3565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114575761142084848484611a71565b611456576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114688261170e565b6114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90612d18565b60405180910390fd5b600a6114b283611bc1565b6040516020016114c3929190612e8f565b6040516020818303038152906040529050919050565b601060009054906101000a900460ff1681565b600a80546114f990612684565b80601f016020809104026020016040519081016040528092919081815260200182805461152590612684565b80156115725780601f1061154757610100808354040283529160200191611572565b820191906000526020600020905b81548152906001019060200180831161155557829003601f168201915b505050505081565b600f5481565b61158861190f565b6001600f546115979190612a80565b816115a06109cc565b6115aa9190612a80565b106115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190612f15565b60405180910390fd5b6115f43382611a53565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61169361190f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990612fa7565b60405180910390fd5b61170b8161198d565b50565b600081611719611775565b11158015611728575060005482105b8015611766575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061178d611775565b11611813576000548110156118125760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611810575b600081036118065760046000836001900393508381526020019081526020016000205490506117dc565b8092505050611845565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118cd868684611d21565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611917611d2a565b73ffffffffffffffffffffffffffffffffffffffff16611935610f6a565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613013565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a6d828260405180602001604052806000815250611d32565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a9761176d565b8786866040518563ffffffff1660e01b8152600401611ab99493929190613088565b6020604051808303816000875af1925050508015611af557506040513d601f19601f82011682018060405250810190611af291906130e9565b60015b611b6e573d8060008114611b25576040519150601f19603f3d011682016040523d82523d6000602084013e611b2a565b606091505b506000815103611b66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611c08576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d1c565b600082905060005b60008214611c3a578080611c2390613116565b915050600a82611c33919061318d565b9150611c10565b60008167ffffffffffffffff811115611c5657611c556122e4565b5b6040519080825280601f01601f191660200182016040528015611c885781602001600182028036833780820191505090505b5090505b60008514611d1557600182611ca191906131be565b9150600a85611cb091906131f2565b6030611cbc9190612a80565b60f81b818381518110611cd257611cd1613223565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d0e919061318d565b9450611c8c565b8093505050505b919050565b60009392505050565b600033905090565b611d3c8383611dcf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dca57600080549050600083820390505b611d7c6000868380600101945086611a71565b611db2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d69578160005414611dc757600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e3b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611e75576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e8260008483856118b0565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ef983611eea60008660006118b6565b611ef385611fa1565b176118de565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f1d57806000819055505050611f9c6000848385611909565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ffa81611fc5565b811461200557600080fd5b50565b60008135905061201781611ff1565b92915050565b60006020828403121561203357612032611fbb565b5b600061204184828501612008565b91505092915050565b60008115159050919050565b61205f8161204a565b82525050565b600060208201905061207a6000830184612056565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120ba57808201518184015260208101905061209f565b60008484015250505050565b6000601f19601f8301169050919050565b60006120e282612080565b6120ec818561208b565b93506120fc81856020860161209c565b612105816120c6565b840191505092915050565b6000602082019050818103600083015261212a81846120d7565b905092915050565b6000819050919050565b61214581612132565b811461215057600080fd5b50565b6000813590506121628161213c565b92915050565b60006020828403121561217e5761217d611fbb565b5b600061218c84828501612153565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121c082612195565b9050919050565b6121d0816121b5565b82525050565b60006020820190506121eb60008301846121c7565b92915050565b6121fa816121b5565b811461220557600080fd5b50565b600081359050612217816121f1565b92915050565b6000806040838503121561223457612233611fbb565b5b600061224285828601612208565b925050602061225385828601612153565b9150509250929050565b61226681612132565b82525050565b6000602082019050612281600083018461225d565b92915050565b6000806000606084860312156122a05761229f611fbb565b5b60006122ae86828701612208565b93505060206122bf86828701612208565b92505060406122d086828701612153565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61231c826120c6565b810181811067ffffffffffffffff8211171561233b5761233a6122e4565b5b80604052505050565b600061234e611fb1565b905061235a8282612313565b919050565b600067ffffffffffffffff82111561237a576123796122e4565b5b612383826120c6565b9050602081019050919050565b82818337600083830152505050565b60006123b26123ad8461235f565b612344565b9050828152602081018484840111156123ce576123cd6122df565b5b6123d9848285612390565b509392505050565b600082601f8301126123f6576123f56122da565b5b813561240684826020860161239f565b91505092915050565b60006020828403121561242557612424611fbb565b5b600082013567ffffffffffffffff81111561244357612442611fc0565b5b61244f848285016123e1565b91505092915050565b60006020828403121561246e5761246d611fbb565b5b600061247c84828501612208565b91505092915050565b61248e8161204a565b811461249957600080fd5b50565b6000813590506124ab81612485565b92915050565b600080604083850312156124c8576124c7611fbb565b5b60006124d685828601612208565b92505060206124e78582860161249c565b9150509250929050565b600067ffffffffffffffff82111561250c5761250b6122e4565b5b612515826120c6565b9050602081019050919050565b6000612535612530846124f1565b612344565b905082815260208101848484011115612551576125506122df565b5b61255c848285612390565b509392505050565b600082601f830112612579576125786122da565b5b8135612589848260208601612522565b91505092915050565b600080600080608085870312156125ac576125ab611fbb565b5b60006125ba87828801612208565b94505060206125cb87828801612208565b93505060406125dc87828801612153565b925050606085013567ffffffffffffffff8111156125fd576125fc611fc0565b5b61260987828801612564565b91505092959194509250565b6000806040838503121561262c5761262b611fbb565b5b600061263a85828601612208565b925050602061264b85828601612208565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061269c57607f821691505b6020821081036126af576126ae612655565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006126eb601f8361208b565b91506126f6826126b5565b602082019050919050565b6000602082019050818103600083015261271a816126de565b9050919050565b600081905092915050565b50565b600061273c600083612721565b91506127478261272c565b600082019050919050565b600061275d8261272f565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061279d60108361208b565b91506127a882612767565b602082019050919050565b600060208201905081810360008301526127cc81612790565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127f8565b61283f86836127f8565b95508019841693508086168417925050509392505050565b6000819050919050565b600061287c61287761287284612132565b612857565b612132565b9050919050565b6000819050919050565b61289683612861565b6128aa6128a282612883565b848454612805565b825550505050565b600090565b6128bf6128b2565b6128ca81848461288d565b505050565b5b818110156128ee576128e36000826128b7565b6001810190506128d0565b5050565b601f82111561293357612904816127d3565b61290d846127e8565b8101602085101561291c578190505b612930612928856127e8565b8301826128cf565b50505b505050565b600082821c905092915050565b600061295660001984600802612938565b1980831691505092915050565b600061296f8383612945565b9150826002028217905092915050565b61298882612080565b67ffffffffffffffff8111156129a1576129a06122e4565b5b6129ab8254612684565b6129b68282856128f2565b600060209050601f8311600181146129e957600084156129d7578287015190505b6129e18582612963565b865550612a49565b601f1984166129f7866127d3565b60005b82811015612a1f578489015182556001820191506020850194506020810190506129fa565b86831015612a3c5784890151612a38601f891682612945565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a8b82612132565b9150612a9683612132565b9250828201905080821115612aae57612aad612a51565b5b92915050565b6000612abf82612132565b9150612aca83612132565b9250828202612ad881612132565b91508282048414831517612aef57612aee612a51565b5b5092915050565b7f506c656173652073656e642074686520726967687420616d6f756e742e000000600082015250565b6000612b2c601d8361208b565b9150612b3782612af6565b602082019050919050565b60006020820190508181036000830152612b5b81612b1f565b9050919050565b7f476f6e652e000000000000000000000000000000000000000000000000000000600082015250565b6000612b9860058361208b565b9150612ba382612b62565b602082019050919050565b60006020820190508181036000830152612bc781612b8b565b9050919050565b7f4d696e74696e67206861736e27742073746172746564207965742e0000000000600082015250565b6000612c04601b8361208b565b9150612c0f82612bce565b602082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b7f4d617820706572207472616e73616374696f6e20726561636865642e00000000600082015250565b6000612c70601c8361208b565b9150612c7b82612c3a565b602082019050919050565b60006020820190508181036000830152612c9f81612c63565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d02602f8361208b565b9150612d0d82612ca6565b604082019050919050565b60006020820190508181036000830152612d3181612cf5565b9050919050565b600081905092915050565b60008154612d5081612684565b612d5a8186612d38565b94506001821660008114612d755760018114612d8a57612dbd565b60ff1983168652811515820286019350612dbd565b612d93856127d3565b60005b83811015612db557815481890152600182019150602081019050612d96565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612dfc600183612d38565b9150612e0782612dc6565b600182019050919050565b6000612e1d82612080565b612e278185612d38565b9350612e3781856020860161209c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e79600583612d38565b9150612e8482612e43565b600582019050919050565b6000612e9b8285612d43565b9150612ea682612def565b9150612eb28284612e12565b9150612ebd82612e6c565b91508190509392505050565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b6000612eff60098361208b565b9150612f0a82612ec9565b602082019050919050565b60006020820190508181036000830152612f2e81612ef2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f9160268361208b565b9150612f9c82612f35565b604082019050919050565b60006020820190508181036000830152612fc081612f84565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ffd60208361208b565b915061300882612fc7565b602082019050919050565b6000602082019050818103600083015261302c81612ff0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061305a82613033565b613064818561303e565b935061307481856020860161209c565b61307d816120c6565b840191505092915050565b600060808201905061309d60008301876121c7565b6130aa60208301866121c7565b6130b7604083018561225d565b81810360608301526130c9818461304f565b905095945050505050565b6000815190506130e381611ff1565b92915050565b6000602082840312156130ff576130fe611fbb565b5b600061310d848285016130d4565b91505092915050565b600061312182612132565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361315357613152612a51565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061319882612132565b91506131a383612132565b9250826131b3576131b261315e565b5b828204905092915050565b60006131c982612132565b91506131d483612132565b92508282039050818111156131ec576131eb612a51565b5b92915050565b60006131fd82612132565b915061320883612132565b9250826132185761321761315e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220334321281c3fe9a028510f77dfd7288815ad14cb8fcb785d224078f26ad1495d64736f6c63430008110033697066733a2f2f6261667962656962336e34667a376a6e6b6378696164646d75766473666835707576643334796a71756b6a33786734616a7a6f77666b6c336b67612f
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610631578063dad039831461065c578063e985e9c514610685578063f2fde38b146106c2576101cd565b8063b88d4fde14610575578063c87b56dd1461059e578063d1239730146105db578063d547cfb714610606576101cd565b8063a035b1fe116100d1578063a035b1fe146104da578063a0712d6814610505578063a22cb46514610521578063a70273571461054a576101cd565b80638da5cb5b1461045b57806391b7f5ed1461048657806395d89b41146104af576101cd565b80633ccfd60b1161016f5780636352211e1161013e5780636352211e146103b357806370a08231146103f0578063715018a61461042d5780637d55094d14610444576101cd565b80633ccfd60b1461031f57806342842e0e146103365780634b980d671461035f57806355f804b31461038a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb578063333e44e6146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061201d565b6106eb565b6040516102069190612065565b60405180910390f35b34801561021b57600080fd5b5061022461077d565b6040516102319190612110565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612168565b61080f565b60405161026e91906121d6565b60405180910390f35b34801561028357600080fd5b5061029e6004803603810190610299919061221d565b61088b565b005b3480156102ac57600080fd5b506102b56109cc565b6040516102c2919061226c565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612287565b6109e3565b005b34801561030057600080fd5b50610309610d05565b604051610316919061226c565b60405180910390f35b34801561032b57600080fd5b50610334610d0b565b005b34801561034257600080fd5b5061035d60048036038101906103589190612287565b610e17565b005b34801561036b57600080fd5b50610374610e37565b604051610381919061226c565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061240f565b610e3d565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612168565b610e58565b6040516103e791906121d6565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612458565b610e6a565b604051610424919061226c565b60405180910390f35b34801561043957600080fd5b50610442610f22565b005b34801561045057600080fd5b50610459610f36565b005b34801561046757600080fd5b50610470610f6a565b60405161047d91906121d6565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190612168565b610f94565b005b3480156104bb57600080fd5b506104c4610fa6565b6040516104d19190612110565b60405180910390f35b3480156104e657600080fd5b506104ef611038565b6040516104fc919061226c565b60405180910390f35b61051f600480360381019061051a9190612168565b61103e565b005b34801561052d57600080fd5b50610548600480360381019061054391906124b1565b61126d565b005b34801561055657600080fd5b5061055f6113e4565b60405161056c919061226c565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190612592565b6113ea565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190612168565b61145d565b6040516105d29190612110565b60405180910390f35b3480156105e757600080fd5b506105f06114d9565b6040516105fd9190612065565b60405180910390f35b34801561061257600080fd5b5061061b6114ec565b6040516106289190612110565b60405180910390f35b34801561063d57600080fd5b5061064661157a565b604051610653919061226c565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190612168565b611580565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612615565b6115f7565b6040516106b99190612065565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e49190612458565b61168b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078c90612684565b80601f01602080910402602001604051908101604052809291908181526020018280546107b890612684565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b5050505050905090565b600061081a8261170e565b610850576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089682610e58565b90508073ffffffffffffffffffffffffffffffffffffffff166108b761176d565b73ffffffffffffffffffffffffffffffffffffffff161461091a576108e3816108de61176d565b6115f7565b610919576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109d6611775565b6001546000540303905090565b60006109ee8261177e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a55576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a618461184a565b91509150610a778187610a7261176d565b61186c565b610ac357610a8c86610a8761176d565b6115f7565b610ac2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b29576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b3686868660016118b0565b8015610b4157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c0f85610beb8888876118b6565b7c0200000000000000000000000000000000000000000000000000000000176118de565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c955760006001850190506000600460008381526020019081526020016000205403610c93576000548114610c92578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cfd8686866001611909565b505050505050565b600e5481565b610d1361190f565b600260095403610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90612701565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d8690612752565b60006040518083038185875af1925050503d8060008114610dc3576040519150601f19603f3d011682016040523d82523d6000602084013e610dc8565b606091505b5050905080610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e03906127b3565b60405180910390fd5b506001600981905550565b610e32838383604051806020016040528060008152506113ea565b505050565b600c5481565b610e4561190f565b80600a9081610e54919061297f565b5050565b6000610e638261177e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f2a61190f565b610f34600061198d565b565b610f3e61190f565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f9c61190f565b80600b8190555050565b606060038054610fb590612684565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe190612684565b801561102e5780601f106110035761010080835404028352916020019161102e565b820191906000526020600020905b81548152906001019060200180831161101157829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e546110569190612a80565b8361105f6109cc565b6110699190612a80565b1080156110c25750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110bf9190612a80565b11155b90508015611125576000915082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461111d9190612a80565b925050819055505b81836111319190612ab4565b341015611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90612b42565b60405180910390fd5b600f548361117f6109cc565b6111899190612a80565b11156111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190612bae565b60405180910390fd5b601060009054906101000a900460ff16611219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121090612c1a565b60405180910390fd5b600c5483111561125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590612c86565b60405180910390fd5b6112683384611a53565b505050565b61127561176d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112d9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112e661176d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661139361176d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d89190612065565b60405180910390a35050565b600d5481565b6113f58484846109e3565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114575761142084848484611a71565b611456576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114688261170e565b6114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90612d18565b60405180910390fd5b600a6114b283611bc1565b6040516020016114c3929190612e8f565b6040516020818303038152906040529050919050565b601060009054906101000a900460ff1681565b600a80546114f990612684565b80601f016020809104026020016040519081016040528092919081815260200182805461152590612684565b80156115725780601f1061154757610100808354040283529160200191611572565b820191906000526020600020905b81548152906001019060200180831161155557829003601f168201915b505050505081565b600f5481565b61158861190f565b6001600f546115979190612a80565b816115a06109cc565b6115aa9190612a80565b106115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190612f15565b60405180910390fd5b6115f43382611a53565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61169361190f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990612fa7565b60405180910390fd5b61170b8161198d565b50565b600081611719611775565b11158015611728575060005482105b8015611766575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061178d611775565b11611813576000548110156118125760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611810575b600081036118065760046000836001900393508381526020019081526020016000205490506117dc565b8092505050611845565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118cd868684611d21565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611917611d2a565b73ffffffffffffffffffffffffffffffffffffffff16611935610f6a565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613013565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a6d828260405180602001604052806000815250611d32565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a9761176d565b8786866040518563ffffffff1660e01b8152600401611ab99493929190613088565b6020604051808303816000875af1925050508015611af557506040513d601f19601f82011682018060405250810190611af291906130e9565b60015b611b6e573d8060008114611b25576040519150601f19603f3d011682016040523d82523d6000602084013e611b2a565b606091505b506000815103611b66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611c08576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d1c565b600082905060005b60008214611c3a578080611c2390613116565b915050600a82611c33919061318d565b9150611c10565b60008167ffffffffffffffff811115611c5657611c556122e4565b5b6040519080825280601f01601f191660200182016040528015611c885781602001600182028036833780820191505090505b5090505b60008514611d1557600182611ca191906131be565b9150600a85611cb091906131f2565b6030611cbc9190612a80565b60f81b818381518110611cd257611cd1613223565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d0e919061318d565b9450611c8c565b8093505050505b919050565b60009392505050565b600033905090565b611d3c8383611dcf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dca57600080549050600083820390505b611d7c6000868380600101945086611a71565b611db2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d69578160005414611dc757600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e3b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611e75576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e8260008483856118b0565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ef983611eea60008660006118b6565b611ef385611fa1565b176118de565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f1d57806000819055505050611f9c6000848385611909565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ffa81611fc5565b811461200557600080fd5b50565b60008135905061201781611ff1565b92915050565b60006020828403121561203357612032611fbb565b5b600061204184828501612008565b91505092915050565b60008115159050919050565b61205f8161204a565b82525050565b600060208201905061207a6000830184612056565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120ba57808201518184015260208101905061209f565b60008484015250505050565b6000601f19601f8301169050919050565b60006120e282612080565b6120ec818561208b565b93506120fc81856020860161209c565b612105816120c6565b840191505092915050565b6000602082019050818103600083015261212a81846120d7565b905092915050565b6000819050919050565b61214581612132565b811461215057600080fd5b50565b6000813590506121628161213c565b92915050565b60006020828403121561217e5761217d611fbb565b5b600061218c84828501612153565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121c082612195565b9050919050565b6121d0816121b5565b82525050565b60006020820190506121eb60008301846121c7565b92915050565b6121fa816121b5565b811461220557600080fd5b50565b600081359050612217816121f1565b92915050565b6000806040838503121561223457612233611fbb565b5b600061224285828601612208565b925050602061225385828601612153565b9150509250929050565b61226681612132565b82525050565b6000602082019050612281600083018461225d565b92915050565b6000806000606084860312156122a05761229f611fbb565b5b60006122ae86828701612208565b93505060206122bf86828701612208565b92505060406122d086828701612153565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61231c826120c6565b810181811067ffffffffffffffff8211171561233b5761233a6122e4565b5b80604052505050565b600061234e611fb1565b905061235a8282612313565b919050565b600067ffffffffffffffff82111561237a576123796122e4565b5b612383826120c6565b9050602081019050919050565b82818337600083830152505050565b60006123b26123ad8461235f565b612344565b9050828152602081018484840111156123ce576123cd6122df565b5b6123d9848285612390565b509392505050565b600082601f8301126123f6576123f56122da565b5b813561240684826020860161239f565b91505092915050565b60006020828403121561242557612424611fbb565b5b600082013567ffffffffffffffff81111561244357612442611fc0565b5b61244f848285016123e1565b91505092915050565b60006020828403121561246e5761246d611fbb565b5b600061247c84828501612208565b91505092915050565b61248e8161204a565b811461249957600080fd5b50565b6000813590506124ab81612485565b92915050565b600080604083850312156124c8576124c7611fbb565b5b60006124d685828601612208565b92505060206124e78582860161249c565b9150509250929050565b600067ffffffffffffffff82111561250c5761250b6122e4565b5b612515826120c6565b9050602081019050919050565b6000612535612530846124f1565b612344565b905082815260208101848484011115612551576125506122df565b5b61255c848285612390565b509392505050565b600082601f830112612579576125786122da565b5b8135612589848260208601612522565b91505092915050565b600080600080608085870312156125ac576125ab611fbb565b5b60006125ba87828801612208565b94505060206125cb87828801612208565b93505060406125dc87828801612153565b925050606085013567ffffffffffffffff8111156125fd576125fc611fc0565b5b61260987828801612564565b91505092959194509250565b6000806040838503121561262c5761262b611fbb565b5b600061263a85828601612208565b925050602061264b85828601612208565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061269c57607f821691505b6020821081036126af576126ae612655565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006126eb601f8361208b565b91506126f6826126b5565b602082019050919050565b6000602082019050818103600083015261271a816126de565b9050919050565b600081905092915050565b50565b600061273c600083612721565b91506127478261272c565b600082019050919050565b600061275d8261272f565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061279d60108361208b565b91506127a882612767565b602082019050919050565b600060208201905081810360008301526127cc81612790565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127f8565b61283f86836127f8565b95508019841693508086168417925050509392505050565b6000819050919050565b600061287c61287761287284612132565b612857565b612132565b9050919050565b6000819050919050565b61289683612861565b6128aa6128a282612883565b848454612805565b825550505050565b600090565b6128bf6128b2565b6128ca81848461288d565b505050565b5b818110156128ee576128e36000826128b7565b6001810190506128d0565b5050565b601f82111561293357612904816127d3565b61290d846127e8565b8101602085101561291c578190505b612930612928856127e8565b8301826128cf565b50505b505050565b600082821c905092915050565b600061295660001984600802612938565b1980831691505092915050565b600061296f8383612945565b9150826002028217905092915050565b61298882612080565b67ffffffffffffffff8111156129a1576129a06122e4565b5b6129ab8254612684565b6129b68282856128f2565b600060209050601f8311600181146129e957600084156129d7578287015190505b6129e18582612963565b865550612a49565b601f1984166129f7866127d3565b60005b82811015612a1f578489015182556001820191506020850194506020810190506129fa565b86831015612a3c5784890151612a38601f891682612945565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a8b82612132565b9150612a9683612132565b9250828201905080821115612aae57612aad612a51565b5b92915050565b6000612abf82612132565b9150612aca83612132565b9250828202612ad881612132565b91508282048414831517612aef57612aee612a51565b5b5092915050565b7f506c656173652073656e642074686520726967687420616d6f756e742e000000600082015250565b6000612b2c601d8361208b565b9150612b3782612af6565b602082019050919050565b60006020820190508181036000830152612b5b81612b1f565b9050919050565b7f476f6e652e000000000000000000000000000000000000000000000000000000600082015250565b6000612b9860058361208b565b9150612ba382612b62565b602082019050919050565b60006020820190508181036000830152612bc781612b8b565b9050919050565b7f4d696e74696e67206861736e27742073746172746564207965742e0000000000600082015250565b6000612c04601b8361208b565b9150612c0f82612bce565b602082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b7f4d617820706572207472616e73616374696f6e20726561636865642e00000000600082015250565b6000612c70601c8361208b565b9150612c7b82612c3a565b602082019050919050565b60006020820190508181036000830152612c9f81612c63565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d02602f8361208b565b9150612d0d82612ca6565b604082019050919050565b60006020820190508181036000830152612d3181612cf5565b9050919050565b600081905092915050565b60008154612d5081612684565b612d5a8186612d38565b94506001821660008114612d755760018114612d8a57612dbd565b60ff1983168652811515820286019350612dbd565b612d93856127d3565b60005b83811015612db557815481890152600182019150602081019050612d96565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612dfc600183612d38565b9150612e0782612dc6565b600182019050919050565b6000612e1d82612080565b612e278185612d38565b9350612e3781856020860161209c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e79600583612d38565b9150612e8482612e43565b600582019050919050565b6000612e9b8285612d43565b9150612ea682612def565b9150612eb28284612e12565b9150612ebd82612e6c565b91508190509392505050565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b6000612eff60098361208b565b9150612f0a82612ec9565b602082019050919050565b60006020820190508181036000830152612f2e81612ef2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f9160268361208b565b9150612f9c82612f35565b604082019050919050565b60006020820190508181036000830152612fc081612f84565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ffd60208361208b565b915061300882612fc7565b602082019050919050565b6000602082019050818103600083015261302c81612ff0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061305a82613033565b613064818561303e565b935061307481856020860161209c565b61307d816120c6565b840191505092915050565b600060808201905061309d60008301876121c7565b6130aa60208301866121c7565b6130b7604083018561225d565b81810360608301526130c9818461304f565b905095945050505050565b6000815190506130e381611ff1565b92915050565b6000602082840312156130ff576130fe611fbb565b5b600061310d848285016130d4565b91505092915050565b600061312182612132565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361315357613152612a51565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061319882612132565b91506131a383612132565b9250826131b3576131b261315e565b5b828204905092915050565b60006131c982612132565b91506131d483612132565b92508282039050818111156131ec576131eb612a51565b5b92915050565b60006131fd82612132565b915061320883612132565b9250826132185761321761315e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220334321281c3fe9a028510f77dfd7288815ad14cb8fcb785d224078f26ad1495d64736f6c63430008110033
Deployed Bytecode Sourcemap
62629:2552:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32470:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38117:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40063:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39611:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31524:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49328:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62994:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64345:186;;;;;;;;;;;;;:::i;:::-;;40953:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62904:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63946:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37906:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33149:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17061:103;;;;;;;;;;;;;:::i;:::-;;64995:87;;;;;;;;;;;;;:::i;:::-;;16413;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65090:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38286:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62861:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63277:663;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40339:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62950:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41209:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64537:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63074:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62754:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63034:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64171:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40718:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17319:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32470:615;32555:4;32870:10;32855:25;;:11;:25;;;;:102;;;;32947:10;32932:25;;:11;:25;;;;32855:102;:179;;;;33024:10;33009:25;;:11;:25;;;;32855:179;32835:199;;32470:615;;;:::o;38117:100::-;38171:13;38204:5;38197:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38117:100;:::o;40063:204::-;40131:7;40156:16;40164:7;40156;:16::i;:::-;40151:64;;40181:34;;;;;;;;;;;;;;40151:64;40235:15;:24;40251:7;40235:24;;;;;;;;;;;;;;;;;;;;;40228:31;;40063:204;;;:::o;39611:386::-;39684:13;39700:16;39708:7;39700;:16::i;:::-;39684:32;;39756:5;39733:28;;:19;:17;:19::i;:::-;:28;;;39729:175;;39781:44;39798:5;39805:19;:17;:19::i;:::-;39781:16;:44::i;:::-;39776:128;;39853:35;;;;;;;;;;;;;;39776:128;39729:175;39943:2;39916:15;:24;39932:7;39916:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39981:7;39977:2;39961:28;;39970:5;39961:28;;;;;;;;;;;;39673:324;39611:386;;:::o;31524:315::-;31577:7;31805:15;:13;:15::i;:::-;31790:12;;31774:13;;:28;:46;31767:53;;31524:315;:::o;49328:2800::-;49462:27;49492;49511:7;49492:18;:27::i;:::-;49462:57;;49577:4;49536:45;;49552:19;49536:45;;;49532:86;;49590:28;;;;;;;;;;;;;;49532:86;49632:27;49661:23;49688:28;49708:7;49688:19;:28::i;:::-;49631:85;;;;49816:62;49835:15;49852:4;49858:19;:17;:19::i;:::-;49816:18;:62::i;:::-;49811:174;;49898:43;49915:4;49921:19;:17;:19::i;:::-;49898:16;:43::i;:::-;49893:92;;49950:35;;;;;;;;;;;;;;49893:92;49811:174;50016:1;50002:16;;:2;:16;;;49998:52;;50027:23;;;;;;;;;;;;;;49998:52;50063:43;50085:4;50091:2;50095:7;50104:1;50063:21;:43::i;:::-;50199:15;50196:160;;;50339:1;50318:19;50311:30;50196:160;50734:18;:24;50753:4;50734:24;;;;;;;;;;;;;;;;50732:26;;;;;;;;;;;;50803:18;:22;50822:2;50803:22;;;;;;;;;;;;;;;;50801:24;;;;;;;;;;;51125:145;51162:2;51210:45;51225:4;51231:2;51235:19;51210:14;:45::i;:::-;28752:8;51183:72;51125:18;:145::i;:::-;51096:17;:26;51114:7;51096:26;;;;;;;;;;;:174;;;;51440:1;28752:8;51390:19;:46;:51;51386:626;;51462:19;51494:1;51484:7;:11;51462:33;;51651:1;51617:17;:30;51635:11;51617:30;;;;;;;;;;;;:35;51613:384;;51755:13;;51740:11;:28;51736:242;;51935:19;51902:17;:30;51920:11;51902:30;;;;;;;;;;;:52;;;;51736:242;51613:384;51443:569;51386:626;52059:7;52055:2;52040:27;;52049:4;52040:27;;;;;;;;;;;;52078:42;52099:4;52105:2;52109:7;52118:1;52078:20;:42::i;:::-;49451:2677;;;49328:2800;;;:::o;62994:33::-;;;;:::o;64345:186::-;16299:13;:11;:13::i;:::-;13338:1:::1;13936:7;;:19:::0;13928:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;13338:1;14069:7;:18;;;;64409:12:::2;64427:10;:15;;64450:21;64427:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64408:68;;;64495:7;64487:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;64397:134;13294:1:::1;14248:7;:22;;;;64345:186::o:0;40953:185::-;41091:39;41108:4;41114:2;41118:7;41091:39;;;;;;;;;;;;:16;:39::i;:::-;40953:185;;;:::o;62904:39::-;;;;:::o;63946:108::-;16299:13;:11;:13::i;:::-;64041:7:::1;64026:12;:22;;;;;;:::i;:::-;;63946:108:::0;:::o;37906:144::-;37970:7;38013:27;38032:7;38013:18;:27::i;:::-;37990:52;;37906:144;;;:::o;33149:224::-;33213:7;33254:1;33237:19;;:5;:19;;;33233:60;;33265:28;;;;;;;;;;;;;;33233:60;27704:13;33311:18;:25;33330:5;33311:25;;;;;;;;;;;;;;;;:54;33304:61;;33149:224;;;:::o;17061:103::-;16299:13;:11;:13::i;:::-;17126:30:::1;17153:1;17126:18;:30::i;:::-;17061:103::o:0;64995:87::-;16299:13;:11;:13::i;:::-;65063:11:::1;;;;;;;;;;;65062:12;65048:11;;:26;;;;;;;;;;;;;;;;;;64995:87::o:0;16413:::-;16459:7;16486:6;;;;;;;;;;;16479:13;;16413:87;:::o;65090:86::-;16299:13;:11;:13::i;:::-;65162:6:::1;65154:5;:14;;;;65090:86:::0;:::o;38286:104::-;38342:13;38375:7;38368:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38286:104;:::o;62861:36::-;;;;:::o;63277:663::-;63334:12;63349:5;;63334:20;;63365:11;63417:1;63405:9;;:13;;;;:::i;:::-;63397:5;63381:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;63380:115;;;;;63478:16;;63469:5;63437:17;:29;63455:10;63437:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;63380:115;63365:131;;63513:6;63509:100;;;63543:1;63536:8;;63592:5;63559:17;:29;63577:10;63559:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;63509:100;63650:4;63642:5;:12;;;;:::i;:::-;63629:9;:25;;63621:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;63732:9;;63723:5;63707:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;63699:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;63770:11;;;;;;;;;;;63762:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;63841:17;;63832:5;:26;;63824:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;63904:28;63914:10;63926:5;63904:9;:28::i;:::-;63323:617;;63277:663;:::o;40339:308::-;40450:19;:17;:19::i;:::-;40438:31;;:8;:31;;;40434:61;;40478:17;;;;;;;;;;;;;;40434:61;40560:8;40508:18;:39;40527:19;:17;:19::i;:::-;40508:39;;;;;;;;;;;;;;;:49;40548:8;40508:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;40620:8;40584:55;;40599:19;:17;:19::i;:::-;40584:55;;;40630:8;40584:55;;;;;;:::i;:::-;;;;;;;;40339:308;;:::o;62950:37::-;;;;:::o;41209:399::-;41376:31;41389:4;41395:2;41399:7;41376:12;:31::i;:::-;41440:1;41422:2;:14;;;:19;41418:183;;41461:56;41492:4;41498:2;41502:7;41511:5;41461:30;:56::i;:::-;41456:145;;41545:40;;;;;;;;;;;;;;41456:145;41418:183;41209:399;;;;:::o;64537:312::-;64633:13;64674:17;64682:8;64674:7;:17::i;:::-;64658:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;64794:12;64813:19;:8;:17;:19::i;:::-;64777:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64763:80;;64537:312;;;:::o;63074:33::-;;;;;;;;;;;;;:::o;62754:98::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63034:33::-;;;;:::o;64171:166::-;16299:13;:11;:13::i;:::-;64280:1:::1;64268:9;;:13;;;;:::i;:::-;64262:3;64246:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;64238:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;64303:26;64313:10;64325:3;64303:9;:26::i;:::-;64171:166:::0;:::o;40718:164::-;40815:4;40839:18;:25;40858:5;40839:25;;;;;;;;;;;;;;;:35;40865:8;40839:35;;;;;;;;;;;;;;;;;;;;;;;;;40832:42;;40718:164;;;;:::o;17319:201::-;16299:13;:11;:13::i;:::-;17428:1:::1;17408:22;;:8;:22;;::::0;17400:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;17484:28;17503:8;17484:18;:28::i;:::-;17319:201:::0;:::o;41863:273::-;41920:4;41976:7;41957:15;:13;:15::i;:::-;:26;;:66;;;;;42010:13;;42000:7;:23;41957:66;:152;;;;;42108:1;28474:8;42061:17;:26;42079:7;42061:26;;;;;;;;;;;;:43;:48;41957:152;41937:172;;41863:273;;;:::o;60424:105::-;60484:7;60511:10;60504:17;;60424:105;:::o;64062:101::-;64127:7;64154:1;64147:8;;64062:101;:::o;34823:1129::-;34890:7;34910:12;34925:7;34910:22;;34993:4;34974:15;:13;:15::i;:::-;:23;34970:915;;35027:13;;35020:4;:20;35016:869;;;35065:14;35082:17;:23;35100:4;35082:23;;;;;;;;;;;;35065:40;;35198:1;28474:8;35171:6;:23;:28;35167:699;;35690:113;35707:1;35697:6;:11;35690:113;;35750:17;:25;35768:6;;;;;;;35750:25;;;;;;;;;;;;35741:34;;35690:113;;;35836:6;35829:13;;;;;;35167:699;35042:843;35016:869;34970:915;35913:31;;;;;;;;;;;;;;34823:1129;;;;:::o;47664:652::-;47759:27;47788:23;47829:53;47885:15;47829:71;;48071:7;48065:4;48058:21;48106:22;48100:4;48093:36;48182:4;48176;48166:21;48143:44;;48278:19;48272:26;48253:45;;48009:300;47664:652;;;:::o;48429:645::-;48571:11;48733:15;48727:4;48723:26;48715:34;;48892:15;48881:9;48877:31;48864:44;;49039:15;49028:9;49025:30;49018:4;49007:9;49004:19;49001:55;48991:65;;48429:645;;;;;:::o;59257:159::-;;;;;:::o;57569:309::-;57704:7;57724:16;28875:3;57750:19;:40;;57724:67;;28875:3;57817:31;57828:4;57834:2;57838:9;57817:10;:31::i;:::-;57809:40;;:61;;57802:68;;;57569:309;;;;;:::o;37397:447::-;37477:14;37645:15;37638:5;37634:27;37625:36;;37819:5;37805:11;37781:22;37777:40;37774:51;37767:5;37764:62;37754:72;;37397:447;;;;:::o;60075:158::-;;;;;:::o;16578:132::-;16653:12;:10;:12::i;:::-;16642:23;;:7;:5;:7::i;:::-;:23;;;16634:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16578:132::o;17680:191::-;17754:16;17773:6;;;;;;;;;;;17754:25;;17799:8;17790:6;;:17;;;;;;;;;;;;;;;;;;17854:8;17823:40;;17844:8;17823:40;;;;;;;;;;;;17743:128;17680:191;:::o;42220:104::-;42289:27;42299:2;42303:8;42289:27;;;;;;;;;;;;:9;:27::i;:::-;42220:104;;:::o;56079:716::-;56242:4;56288:2;56263:45;;;56309:19;:17;:19::i;:::-;56330:4;56336:7;56345:5;56263:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;56259:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56563:1;56546:6;:13;:18;56542:235;;56592:40;;;;;;;;;;;;;;56542:235;56735:6;56729:13;56720:6;56716:2;56712:15;56705:38;56259:529;56432:54;;;56422:64;;;:6;:64;;;;56415:71;;;56079:716;;;;;;:::o;906:723::-;962:13;1192:1;1183:5;:10;1179:53;;1210:10;;;;;;;;;;;;;;;;;;;;;1179:53;1242:12;1257:5;1242:20;;1273:14;1298:78;1313:1;1305:4;:9;1298:78;;1331:8;;;;;:::i;:::-;;;;1362:2;1354:10;;;;;:::i;:::-;;;1298:78;;;1386:19;1418:6;1408:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1386:39;;1436:154;1452:1;1443:5;:10;1436:154;;1480:1;1470:11;;;;;:::i;:::-;;;1547:2;1539:5;:10;;;;:::i;:::-;1526:2;:24;;;;:::i;:::-;1513:39;;1496:6;1503;1496:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1576:2;1567:11;;;;;:::i;:::-;;;1436:154;;;1614:6;1600:21;;;;;906:723;;;;:::o;58454:147::-;58591:6;58454:147;;;;;:::o;14964:98::-;15017:7;15044:10;15037:17;;14964:98;:::o;42740:681::-;42863:19;42869:2;42873:8;42863:5;:19::i;:::-;42942:1;42924:2;:14;;;:19;42920:483;;42964:11;42978:13;;42964:27;;43010:13;43032:8;43026:3;:14;43010:30;;43059:233;43090:62;43129:1;43133:2;43137:7;;;;;;43146:5;43090:30;:62::i;:::-;43085:167;;43188:40;;;;;;;;;;;;;;43085:167;43287:3;43279:5;:11;43059:233;;43374:3;43357:13;;:20;43353:34;;43379:8;;;43353:34;42945:458;;42920:483;42740:681;;;:::o;43694:1529::-;43759:20;43782:13;;43759:36;;43824:1;43810:16;;:2;:16;;;43806:48;;43835:19;;;;;;;;;;;;;;43806:48;43881:1;43869:8;:13;43865:44;;43891:18;;;;;;;;;;;;;;43865:44;43922:61;43952:1;43956:2;43960:12;43974:8;43922:21;:61::i;:::-;44465:1;27841:2;44436:1;:25;;44435:31;44423:8;:44;44397:18;:22;44416:2;44397:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;44744:139;44781:2;44835:33;44858:1;44862:2;44866:1;44835:14;:33::i;:::-;44802:30;44823:8;44802:20;:30::i;:::-;:66;44744:18;:139::i;:::-;44710:17;:31;44728:12;44710:31;;;;;;;;;;;:173;;;;44900:15;44918:12;44900:30;;44945:11;44974:8;44959:12;:23;44945:37;;44997:101;45049:9;;;;;;45045:2;45024:35;;45041:1;45024:35;;;;;;;;;;;;45093:3;45083:7;:13;44997:101;;45130:3;45114:13;:19;;;;44171:974;;45155:60;45184:1;45188:2;45192:12;45206:8;45155:20;:60::i;:::-;43748:1475;43694:1529;;:::o;39227:322::-;39297:14;39528:1;39518:8;39515:15;39490:23;39486:45;39476:55;;39227:322;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:181::-;12743:33;12739:1;12731:6;12727:14;12720:57;12603:181;:::o;12790:366::-;12932:3;12953:67;13017:2;13012:3;12953:67;:::i;:::-;12946:74;;13029:93;13118:3;13029:93;:::i;:::-;13147:2;13142:3;13138:12;13131:19;;12790:366;;;:::o;13162:419::-;13328:4;13366:2;13355:9;13351:18;13343:26;;13415:9;13409:4;13405:20;13401:1;13390:9;13386:17;13379:47;13443:131;13569:4;13443:131;:::i;:::-;13435:139;;13162:419;;;:::o;13587:147::-;13688:11;13725:3;13710:18;;13587:147;;;;:::o;13740:114::-;;:::o;13860:398::-;14019:3;14040:83;14121:1;14116:3;14040:83;:::i;:::-;14033:90;;14132:93;14221:3;14132:93;:::i;:::-;14250:1;14245:3;14241:11;14234:18;;13860:398;;;:::o;14264:379::-;14448:3;14470:147;14613:3;14470:147;:::i;:::-;14463:154;;14634:3;14627:10;;14264:379;;;:::o;14649:166::-;14789:18;14785:1;14777:6;14773:14;14766:42;14649:166;:::o;14821:366::-;14963:3;14984:67;15048:2;15043:3;14984:67;:::i;:::-;14977:74;;15060:93;15149:3;15060:93;:::i;:::-;15178:2;15173:3;15169:12;15162:19;;14821:366;;;:::o;15193:419::-;15359:4;15397:2;15386:9;15382:18;15374:26;;15446:9;15440:4;15436:20;15432:1;15421:9;15417:17;15410:47;15474:131;15600:4;15474:131;:::i;:::-;15466:139;;15193:419;;;:::o;15618:141::-;15667:4;15690:3;15682:11;;15713:3;15710:1;15703:14;15747:4;15744:1;15734:18;15726:26;;15618:141;;;:::o;15765:93::-;15802:6;15849:2;15844;15837:5;15833:14;15829:23;15819:33;;15765:93;;;:::o;15864:107::-;15908:8;15958:5;15952:4;15948:16;15927:37;;15864:107;;;;:::o;15977:393::-;16046:6;16096:1;16084:10;16080:18;16119:97;16149:66;16138:9;16119:97;:::i;:::-;16237:39;16267:8;16256:9;16237:39;:::i;:::-;16225:51;;16309:4;16305:9;16298:5;16294:21;16285:30;;16358:4;16348:8;16344:19;16337:5;16334:30;16324:40;;16053:317;;15977:393;;;;;:::o;16376:60::-;16404:3;16425:5;16418:12;;16376:60;;;:::o;16442:142::-;16492:9;16525:53;16543:34;16552:24;16570:5;16552:24;:::i;:::-;16543:34;:::i;:::-;16525:53;:::i;:::-;16512:66;;16442:142;;;:::o;16590:75::-;16633:3;16654:5;16647:12;;16590:75;;;:::o;16671:269::-;16781:39;16812:7;16781:39;:::i;:::-;16842:91;16891:41;16915:16;16891:41;:::i;:::-;16883:6;16876:4;16870:11;16842:91;:::i;:::-;16836:4;16829:105;16747:193;16671:269;;;:::o;16946:73::-;16991:3;16946:73;:::o;17025:189::-;17102:32;;:::i;:::-;17143:65;17201:6;17193;17187:4;17143:65;:::i;:::-;17078:136;17025:189;;:::o;17220:186::-;17280:120;17297:3;17290:5;17287:14;17280:120;;;17351:39;17388:1;17381:5;17351:39;:::i;:::-;17324:1;17317:5;17313:13;17304:22;;17280:120;;;17220:186;;:::o;17412:543::-;17513:2;17508:3;17505:11;17502:446;;;17547:38;17579:5;17547:38;:::i;:::-;17631:29;17649:10;17631:29;:::i;:::-;17621:8;17617:44;17814:2;17802:10;17799:18;17796:49;;;17835:8;17820:23;;17796:49;17858:80;17914:22;17932:3;17914:22;:::i;:::-;17904:8;17900:37;17887:11;17858:80;:::i;:::-;17517:431;;17502:446;17412:543;;;:::o;17961:117::-;18015:8;18065:5;18059:4;18055:16;18034:37;;17961:117;;;;:::o;18084:169::-;18128:6;18161:51;18209:1;18205:6;18197:5;18194:1;18190:13;18161:51;:::i;:::-;18157:56;18242:4;18236;18232:15;18222:25;;18135:118;18084:169;;;;:::o;18258:295::-;18334:4;18480:29;18505:3;18499:4;18480:29;:::i;:::-;18472:37;;18542:3;18539:1;18535:11;18529:4;18526:21;18518:29;;18258:295;;;;:::o;18558:1395::-;18675:37;18708:3;18675:37;:::i;:::-;18777:18;18769:6;18766:30;18763:56;;;18799:18;;:::i;:::-;18763:56;18843:38;18875:4;18869:11;18843:38;:::i;:::-;18928:67;18988:6;18980;18974:4;18928:67;:::i;:::-;19022:1;19046:4;19033:17;;19078:2;19070:6;19067:14;19095:1;19090:618;;;;19752:1;19769:6;19766:77;;;19818:9;19813:3;19809:19;19803:26;19794:35;;19766:77;19869:67;19929:6;19922:5;19869:67;:::i;:::-;19863:4;19856:81;19725:222;19060:887;;19090:618;19142:4;19138:9;19130:6;19126:22;19176:37;19208:4;19176:37;:::i;:::-;19235:1;19249:208;19263:7;19260:1;19257:14;19249:208;;;19342:9;19337:3;19333:19;19327:26;19319:6;19312:42;19393:1;19385:6;19381:14;19371:24;;19440:2;19429:9;19425:18;19412:31;;19286:4;19283:1;19279:12;19274:17;;19249:208;;;19485:6;19476:7;19473:19;19470:179;;;19543:9;19538:3;19534:19;19528:26;19586:48;19628:4;19620:6;19616:17;19605:9;19586:48;:::i;:::-;19578:6;19571:64;19493:156;19470:179;19695:1;19691;19683:6;19679:14;19675:22;19669:4;19662:36;19097:611;;;19060:887;;18650:1303;;;18558:1395;;:::o;19959:180::-;20007:77;20004:1;19997:88;20104:4;20101:1;20094:15;20128:4;20125:1;20118:15;20145:191;20185:3;20204:20;20222:1;20204:20;:::i;:::-;20199:25;;20238:20;20256:1;20238:20;:::i;:::-;20233:25;;20281:1;20278;20274:9;20267:16;;20302:3;20299:1;20296:10;20293:36;;;20309:18;;:::i;:::-;20293:36;20145:191;;;;:::o;20342:410::-;20382:7;20405:20;20423:1;20405:20;:::i;:::-;20400:25;;20439:20;20457:1;20439:20;:::i;:::-;20434:25;;20494:1;20491;20487:9;20516:30;20534:11;20516:30;:::i;:::-;20505:41;;20695:1;20686:7;20682:15;20679:1;20676:22;20656:1;20649:9;20629:83;20606:139;;20725:18;;:::i;:::-;20606:139;20390:362;20342:410;;;;:::o;20758:179::-;20898:31;20894:1;20886:6;20882:14;20875:55;20758:179;:::o;20943:366::-;21085:3;21106:67;21170:2;21165:3;21106:67;:::i;:::-;21099:74;;21182:93;21271:3;21182:93;:::i;:::-;21300:2;21295:3;21291:12;21284:19;;20943:366;;;:::o;21315:419::-;21481:4;21519:2;21508:9;21504:18;21496:26;;21568:9;21562:4;21558:20;21554:1;21543:9;21539:17;21532:47;21596:131;21722:4;21596:131;:::i;:::-;21588:139;;21315:419;;;:::o;21740:155::-;21880:7;21876:1;21868:6;21864:14;21857:31;21740:155;:::o;21901:365::-;22043:3;22064:66;22128:1;22123:3;22064:66;:::i;:::-;22057:73;;22139:93;22228:3;22139:93;:::i;:::-;22257:2;22252:3;22248:12;22241:19;;21901:365;;;:::o;22272:419::-;22438:4;22476:2;22465:9;22461:18;22453:26;;22525:9;22519:4;22515:20;22511:1;22500:9;22496:17;22489:47;22553:131;22679:4;22553:131;:::i;:::-;22545:139;;22272:419;;;:::o;22697:177::-;22837:29;22833:1;22825:6;22821:14;22814:53;22697:177;:::o;22880:366::-;23022:3;23043:67;23107:2;23102:3;23043:67;:::i;:::-;23036:74;;23119:93;23208:3;23119:93;:::i;:::-;23237:2;23232:3;23228:12;23221:19;;22880:366;;;:::o;23252:419::-;23418:4;23456:2;23445:9;23441:18;23433:26;;23505:9;23499:4;23495:20;23491:1;23480:9;23476:17;23469:47;23533:131;23659:4;23533:131;:::i;:::-;23525:139;;23252:419;;;:::o;23677:178::-;23817:30;23813:1;23805:6;23801:14;23794:54;23677:178;:::o;23861:366::-;24003:3;24024:67;24088:2;24083:3;24024:67;:::i;:::-;24017:74;;24100:93;24189:3;24100:93;:::i;:::-;24218:2;24213:3;24209:12;24202:19;;23861:366;;;:::o;24233:419::-;24399:4;24437:2;24426:9;24422:18;24414:26;;24486:9;24480:4;24476:20;24472:1;24461:9;24457:17;24450:47;24514:131;24640:4;24514:131;:::i;:::-;24506:139;;24233:419;;;:::o;24658:234::-;24798:34;24794:1;24786:6;24782:14;24775:58;24867:17;24862:2;24854:6;24850:15;24843:42;24658:234;:::o;24898:366::-;25040:3;25061:67;25125:2;25120:3;25061:67;:::i;:::-;25054:74;;25137:93;25226:3;25137:93;:::i;:::-;25255:2;25250:3;25246:12;25239:19;;24898:366;;;:::o;25270:419::-;25436:4;25474:2;25463:9;25459:18;25451:26;;25523:9;25517:4;25513:20;25509:1;25498:9;25494:17;25487:47;25551:131;25677:4;25551:131;:::i;:::-;25543:139;;25270:419;;;:::o;25695:148::-;25797:11;25834:3;25819:18;;25695:148;;;;:::o;25873:874::-;25976:3;26013:5;26007:12;26042:36;26068:9;26042:36;:::i;:::-;26094:89;26176:6;26171:3;26094:89;:::i;:::-;26087:96;;26214:1;26203:9;26199:17;26230:1;26225:166;;;;26405:1;26400:341;;;;26192:549;;26225:166;26309:4;26305:9;26294;26290:25;26285:3;26278:38;26371:6;26364:14;26357:22;26349:6;26345:35;26340:3;26336:45;26329:52;;26225:166;;26400:341;26467:38;26499:5;26467:38;:::i;:::-;26527:1;26541:154;26555:6;26552:1;26549:13;26541:154;;;26629:7;26623:14;26619:1;26614:3;26610:11;26603:35;26679:1;26670:7;26666:15;26655:26;;26577:4;26574:1;26570:12;26565:17;;26541:154;;;26724:6;26719:3;26715:16;26708:23;;26407:334;;26192:549;;25980:767;;25873:874;;;;:::o;26753:151::-;26893:3;26889:1;26881:6;26877:14;26870:27;26753:151;:::o;26910:400::-;27070:3;27091:84;27173:1;27168:3;27091:84;:::i;:::-;27084:91;;27184:93;27273:3;27184:93;:::i;:::-;27302:1;27297:3;27293:11;27286:18;;26910:400;;;:::o;27316:390::-;27422:3;27450:39;27483:5;27450:39;:::i;:::-;27505:89;27587:6;27582:3;27505:89;:::i;:::-;27498:96;;27603:65;27661:6;27656:3;27649:4;27642:5;27638:16;27603:65;:::i;:::-;27693:6;27688:3;27684:16;27677:23;;27426:280;27316:390;;;;:::o;27712:155::-;27852:7;27848:1;27840:6;27836:14;27829:31;27712:155;:::o;27873:400::-;28033:3;28054:84;28136:1;28131:3;28054:84;:::i;:::-;28047:91;;28147:93;28236:3;28147:93;:::i;:::-;28265:1;28260:3;28256:11;28249:18;;27873:400;;;:::o;28279:961::-;28658:3;28680:92;28768:3;28759:6;28680:92;:::i;:::-;28673:99;;28789:148;28933:3;28789:148;:::i;:::-;28782:155;;28954:95;29045:3;29036:6;28954:95;:::i;:::-;28947:102;;29066:148;29210:3;29066:148;:::i;:::-;29059:155;;29231:3;29224:10;;28279:961;;;;;:::o;29246:159::-;29386:11;29382:1;29374:6;29370:14;29363:35;29246:159;:::o;29411:365::-;29553:3;29574:66;29638:1;29633:3;29574:66;:::i;:::-;29567:73;;29649:93;29738:3;29649:93;:::i;:::-;29767:2;29762:3;29758:12;29751:19;;29411:365;;;:::o;29782:419::-;29948:4;29986:2;29975:9;29971:18;29963:26;;30035:9;30029:4;30025:20;30021:1;30010:9;30006:17;29999:47;30063:131;30189:4;30063:131;:::i;:::-;30055:139;;29782:419;;;:::o;30207:225::-;30347:34;30343:1;30335:6;30331:14;30324:58;30416:8;30411:2;30403:6;30399:15;30392:33;30207:225;:::o;30438:366::-;30580:3;30601:67;30665:2;30660:3;30601:67;:::i;:::-;30594:74;;30677:93;30766:3;30677:93;:::i;:::-;30795:2;30790:3;30786:12;30779:19;;30438:366;;;:::o;30810:419::-;30976:4;31014:2;31003:9;30999:18;30991:26;;31063:9;31057:4;31053:20;31049:1;31038:9;31034:17;31027:47;31091:131;31217:4;31091:131;:::i;:::-;31083:139;;30810:419;;;:::o;31235:182::-;31375:34;31371:1;31363:6;31359:14;31352:58;31235:182;:::o;31423:366::-;31565:3;31586:67;31650:2;31645:3;31586:67;:::i;:::-;31579:74;;31662:93;31751:3;31662:93;:::i;:::-;31780:2;31775:3;31771:12;31764:19;;31423:366;;;:::o;31795:419::-;31961:4;31999:2;31988:9;31984:18;31976:26;;32048:9;32042:4;32038:20;32034:1;32023:9;32019:17;32012:47;32076:131;32202:4;32076:131;:::i;:::-;32068:139;;31795:419;;;:::o;32220:98::-;32271:6;32305:5;32299:12;32289:22;;32220:98;;;:::o;32324:168::-;32407:11;32441:6;32436:3;32429:19;32481:4;32476:3;32472:14;32457:29;;32324:168;;;;:::o;32498:373::-;32584:3;32612:38;32644:5;32612:38;:::i;:::-;32666:70;32729:6;32724:3;32666:70;:::i;:::-;32659:77;;32745:65;32803:6;32798:3;32791:4;32784:5;32780:16;32745:65;:::i;:::-;32835:29;32857:6;32835:29;:::i;:::-;32830:3;32826:39;32819:46;;32588:283;32498:373;;;;:::o;32877:640::-;33072:4;33110:3;33099:9;33095:19;33087:27;;33124:71;33192:1;33181:9;33177:17;33168:6;33124:71;:::i;:::-;33205:72;33273:2;33262:9;33258:18;33249:6;33205:72;:::i;:::-;33287;33355:2;33344:9;33340:18;33331:6;33287:72;:::i;:::-;33406:9;33400:4;33396:20;33391:2;33380:9;33376:18;33369:48;33434:76;33505:4;33496:6;33434:76;:::i;:::-;33426:84;;32877:640;;;;;;;:::o;33523:141::-;33579:5;33610:6;33604:13;33595:22;;33626:32;33652:5;33626:32;:::i;:::-;33523:141;;;;:::o;33670:349::-;33739:6;33788:2;33776:9;33767:7;33763:23;33759:32;33756:119;;;33794:79;;:::i;:::-;33756:119;33914:1;33939:63;33994:7;33985:6;33974:9;33970:22;33939:63;:::i;:::-;33929:73;;33885:127;33670:349;;;;:::o;34025:233::-;34064:3;34087:24;34105:5;34087:24;:::i;:::-;34078:33;;34133:66;34126:5;34123:77;34120:103;;34203:18;;:::i;:::-;34120:103;34250:1;34243:5;34239:13;34232:20;;34025:233;;;:::o;34264:180::-;34312:77;34309:1;34302:88;34409:4;34406:1;34399:15;34433:4;34430:1;34423:15;34450:185;34490:1;34507:20;34525:1;34507:20;:::i;:::-;34502:25;;34541:20;34559:1;34541:20;:::i;:::-;34536:25;;34580:1;34570:35;;34585:18;;:::i;:::-;34570:35;34627:1;34624;34620:9;34615:14;;34450:185;;;;:::o;34641:194::-;34681:4;34701:20;34719:1;34701:20;:::i;:::-;34696:25;;34735:20;34753:1;34735:20;:::i;:::-;34730:25;;34779:1;34776;34772:9;34764:17;;34803:1;34797:4;34794:11;34791:37;;;34808:18;;:::i;:::-;34791:37;34641:194;;;;:::o;34841:176::-;34873:1;34890:20;34908:1;34890:20;:::i;:::-;34885:25;;34924:20;34942:1;34924:20;:::i;:::-;34919:25;;34963:1;34953:35;;34968:18;;:::i;:::-;34953:35;35009:1;35006;35002:9;34997:14;;34841:176;;;;:::o;35023:180::-;35071:77;35068:1;35061:88;35168:4;35165:1;35158:15;35192:4;35189:1;35182:15
Swarm Source
ipfs://334321281c3fe9a028510f77dfd7288815ad14cb8fcb785d224078f26ad1495d
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.