ERC-721
Overview
Max Total Supply
354 REGRETTHISPURCHASE
Holders
204
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 REGRETTHISPURCHASELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
nft
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-30 */ // 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/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/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/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/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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 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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); } // File: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. 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; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * 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 See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary 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 { _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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, tokenId.toString())) : ''; } /** * @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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), 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-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @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 { _transfer(from, to, tokenId); if (to.isContract() && !_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 && !_ownerships[tokenId].burned; } 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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @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. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) 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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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 _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } 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 Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @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 {} } // File: RegretThisPurchase.sol pragma solidity >=0.8.12 <0.9.0; contract nft is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; uint constant public supply = 355; string[supply] public sqOrRect; string constant private square = "square"; string constant private rectangle = "rectangle"; string private uriPrefix; string private uriSuffix = ".json"; string private hiddenMetadataUri; uint public cost; uint public maxSupply; bool private paused = true; bool private revealed = true; constructor() ERC721A("Regret This Purchase", "REGRETTHISPURCHASE"){ cost = 0; maxSupply = supply; hiddenMetadataUri = ""; uriPrefix = "ipfs://"; } function makeSqOrRect(uint256 _mintAmount) internal { string[supply] storage _sor = sqOrRect; uint _indexIncrement = 1; for (uint i = 0; i < _mintAmount; i++){ uint current = uint(block.number); string memory _sqOrRect = uint(current % 2) == 0 ? square : rectangle; _sor[_currentIndex - _indexIncrement] = _sqOrRect; _indexIncrement++; } } function _baseURI() internal view virtual override returns (string memory){ return uriPrefix; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount){ require(!paused, "Minting is paused."); _safeMint(_msgSender(), _mintAmount); makeSqOrRect(_mintAmount); if (_currentIndex == 100){ paused = true; } } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256){ return 1; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory){ require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (revealed == false){ return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); string memory sor = sqOrRect[_tokenId]; currentBaseURI = string.concat(currentBaseURI, _tokenId.toString(), "-", sor); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, uriSuffix)) : ''; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } modifier mintCompliance(uint256 _mintAmount){ require(_mintAmount > 0, "Invalid mint amount."); require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded."); _; } modifier mintPriceCompliance(uint256 _mintAmount){ require(msg.value >= cost * _mintAmount, "Insufficient funds."); _; } }
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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"sqOrRect","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608090815264173539b7b760d91b60a05261016e9062000027908262000239565b50610172805461ffff19166101011790553480156200004557600080fd5b506040518060400160405280601481526020017f52656772657420546869732050757263686173650000000000000000000000008152506040518060400160405280601281526020017152454752455454484953505552434841534560701b8152508160029081620000b8919062000239565b506003620000c7828262000239565b5050600160005550620000da3362000142565b6001600955600061017081905561016361017155604080516020810190915290815261016f906200010c908262000239565b50604080518082019091526007815266697066733a2f2f60c81b602082015261016d906200013b908262000239565b5062000305565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001bf57607f821691505b602082108103620001e057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023457600081815260208120601f850160051c810160208610156200020f5750805b601f850160051c820191505b8181101562000230578281556001016200021b565b5050505b505050565b81516001600160401b0381111562000255576200025562000194565b6200026d81620002668454620001aa565b84620001e6565b602080601f831160018114620002a557600084156200028c5750858301515b600019600386901b1c1916600185901b17855562000230565b600085815260208120601f198616915b82811015620002d657888601518255948401946001909101908401620002b5565b5085821015620002f55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611fb580620003156000396000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f7578063a22cb46511610095578063e0a8085311610064578063e0a8085314610502578063e985e9c514610522578063efbd73f414610542578063f2fde38b1461056257600080fd5b8063a22cb4651461048b578063b88d4fde146104ab578063c87b56dd146104cb578063d5abeb01146104eb57600080fd5b80637ec4a659116100d15780637ec4a659146104255780638da5cb5b1461044557806395d89b4114610463578063a0712d681461047857600080fd5b80636352211e146103d057806370a08231146103f0578063715018a61461041057600080fd5b806316c38b3c1161016f57806342842e0e1161013e57806342842e0e1461035057806344a0d68a146103705780634fdd43cb1461039057806358a3df40146103b057600080fd5b806316c38b3c146102de57806318160ddd146102fe57806323b872dd1461031b5780633ccfd60b1461033b57600080fd5b8063081812fc116101ab578063081812fc1461024d578063095ea7b31461028557806313faede6146102a757806316ba10e0146102be57600080fd5b806301ffc9a7146101d2578063047fc9aa1461020757806306fdde031461022b575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611907565b610582565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021d61016381565b6040519081526020016101fe565b34801561023757600080fd5b506102406105d4565b6040516101fe919061197b565b34801561025957600080fd5b5061026d61026836600461198e565b610666565b6040516001600160a01b0390911681526020016101fe565b34801561029157600080fd5b506102a56102a03660046119c3565b6106aa565b005b3480156102b357600080fd5b5061021d6101705481565b3480156102ca57600080fd5b506102a56102d9366004611a79565b610737565b3480156102ea57600080fd5b506102a56102f9366004611ad2565b610750565b34801561030a57600080fd5b50600154600054036000190161021d565b34801561032757600080fd5b506102a5610336366004611aed565b61076c565b34801561034757600080fd5b506102a5610777565b34801561035c57600080fd5b506102a561036b366004611aed565b610854565b34801561037c57600080fd5b506102a561038b36600461198e565b61086f565b34801561039c57600080fd5b506102a56103ab366004611a79565b61087d565b3480156103bc57600080fd5b506102406103cb36600461198e565b610892565b3480156103dc57600080fd5b5061026d6103eb36600461198e565b610933565b3480156103fc57600080fd5b5061021d61040b366004611b29565b610945565b34801561041c57600080fd5b506102a5610994565b34801561043157600080fd5b506102a5610440366004611a79565b6109a8565b34801561045157600080fd5b506008546001600160a01b031661026d565b34801561046f57600080fd5b506102406109bd565b6102a561048636600461198e565b6109cc565b34801561049757600080fd5b506102a56104a6366004611b44565b610b43565b3480156104b757600080fd5b506102a56104c6366004611b77565b610bd8565b3480156104d757600080fd5b506102406104e636600461198e565b610c29565b3480156104f757600080fd5b5061021d6101715481565b34801561050e57600080fd5b506102a561051d366004611ad2565b610e67565b34801561052e57600080fd5b506101f261053d366004611bf3565b610e8a565b34801561054e57600080fd5b506102a561055d366004611c1d565b610eb8565b34801561056e57600080fd5b506102a561057d366004611b29565b610f73565b60006001600160e01b031982166380ac58cd60e01b14806105b357506001600160e01b03198216635b5e139f60e01b145b806105ce57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105e390611c40565b80601f016020809104026020016040519081016040528092919081815260200182805461060f90611c40565b801561065c5780601f106106315761010080835404028352916020019161065c565b820191906000526020600020905b81548152906001019060200180831161063f57829003601f168201915b5050505050905090565b600061067182610fec565b61068e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106b582610933565b9050806001600160a01b0316836001600160a01b0316036106e95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061070957506107078133610e8a565b155b15610727576040516367d9dca160e11b815260040160405180910390fd5b610732838383611025565b505050565b61073f611081565b61016e61074c8282611cc8565b5050565b610758611081565b610172805460ff1916911515919091179055565b6107328383836110db565b61077f611081565b6002600954036107d65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260095560006107ef6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610839576040519150601f19603f3d011682016040523d82523d6000602084013e61083e565b606091505b505090508061084c57600080fd5b506001600955565b61073283838360405180602001604052806000815250610bd8565b610877611081565b61017055565b610885611081565b61016f61074c8282611cc8565b600a8161016381106108a357600080fd5b0180549091506108b290611c40565b80601f01602080910402602001604051908101604052809291908181526020018280546108de90611c40565b801561092b5780601f106109005761010080835404028352916020019161092b565b820191906000526020600020905b81548152906001019060200180831161090e57829003601f168201915b505050505081565b600061093e826112cb565b5192915050565b60006001600160a01b03821661096e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61099c611081565b6109a660006113f4565b565b6109b0611081565b61016d61074c8282611cc8565b6060600380546105e390611c40565b8060008111610a145760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b60448201526064016107cd565b610171546001546000548391900360001901610a309190611d9e565b1115610a755760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016107cd565b818061017054610a859190611db1565b341015610aca5760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b60448201526064016107cd565b6101725460ff1615610b135760405162461bcd60e51b815260206004820152601260248201527126b4b73a34b7339034b9903830bab9b2b21760711b60448201526064016107cd565b610b1d3384611446565b610b2683611460565b60005460640361073257610172805460ff19166001179055505050565b336001600160a01b03831603610b6c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610be38484846110db565b6001600160a01b0383163b15158015610c055750610c038484848461151b565b155b15610c23576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c3482610fec565b610c985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107cd565b61017254610100900460ff161515600003610d405761016f8054610cbb90611c40565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce790611c40565b8015610d345780601f10610d0957610100808354040283529160200191610d34565b820191906000526020600020905b815481529060010190602001808311610d1757829003601f168201915b50505050509050919050565b6000610d4a611606565b90506000600a846101638110610d6257610d62611dc8565b018054610d6e90611c40565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9a90611c40565b8015610de75780601f10610dbc57610100808354040283529160200191610de7565b820191906000526020600020905b815481529060010190602001808311610dca57829003601f168201915b5050505050905081610df885611616565b82604051602001610e0b93929190611dde565b60405160208183030381529060405291506000825111610e3a5760405180602001604052806000815250610e5f565b8161016e604051602001610e4f929190611e2e565b6040516020818303038152906040525b949350505050565b610e6f611081565b61017280549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b8160008111610f005760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b60448201526064016107cd565b610171546001546000548391900360001901610f1c9190611d9e565b1115610f615760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016107cd565b610f69611081565b6107328284611446565b610f7b611081565b6001600160a01b038116610fe05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cd565b610fe9816113f4565b50565b600081600111158015611000575060005482105b80156105ce575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146109a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107cd565b60006110e6826112cb565b9050836001600160a01b031681600001516001600160a01b03161461111d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061113b575061113b8533610e8a565b8061115657503361114b84610666565b6001600160a01b0316145b90508061117657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661119d57604051633a954ecd60e21b815260040160405180910390fd5b6111a960008487611025565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661127f57600054821461127f578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156112fb575060005481105b156113db57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113d95780516001600160a01b03161561136f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156113d4579392505050565b61136f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61074c828260405180602001604052806000815250611717565b600a600160005b83811015610c235743600061147d600283611ed1565b156114a9576040518060400160405280600981526020016872656374616e676c6560b81b8152506114c9565b6040518060400160405280600681526020016573717561726560d01b8152505b90508085856000546114db9190611ee5565b61016381106114ec576114ec611dc8565b01906114f89082611cc8565b508361150381611ef8565b9450505050808061151390611ef8565b915050611467565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611550903390899088908890600401611f11565b6020604051808303816000875af192505050801561158b575060408051601f3d908101601f1916820190925261158891810190611f4e565b60015b6115e9573d8080156115b9576040519150601f19603f3d011682016040523d82523d6000602084013e6115be565b606091505b5080516000036115e1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606061016d80546105e390611c40565b60608160000361163d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611667578061165181611ef8565b91506116609050600a83611f6b565b9150611641565b60008167ffffffffffffffff811115611682576116826119ed565b6040519080825280601f01601f1916602001820160405280156116ac576020820181803683370190505b5090505b8415610e5f576116c1600183611ee5565b91506116ce600a86611ed1565b6116d9906030611d9e565b60f81b8183815181106116ee576116ee611dc8565b60200101906001600160f81b031916908160001a905350611710600a86611f6b565b94506116b0565b61073283838360016000546001600160a01b03851661174857604051622e076360e81b815260040160405180910390fd5b836000036117695760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561181b57506001600160a01b0387163b15155b156118a3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461186c600088848060010195508861151b565b611889576040516368d2bf6b60e11b815260040160405180910390fd5b80820361182157826000541461189e57600080fd5b6118e8565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036118a4575b506000556112c4565b6001600160e01b031981168114610fe957600080fd5b60006020828403121561191957600080fd5b8135611924816118f1565b9392505050565b60005b8381101561194657818101518382015260200161192e565b50506000910152565b6000815180845261196781602086016020860161192b565b601f01601f19169290920160200192915050565b602081526000611924602083018461194f565b6000602082840312156119a057600080fd5b5035919050565b80356001600160a01b03811681146119be57600080fd5b919050565b600080604083850312156119d657600080fd5b6119df836119a7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a1e57611a1e6119ed565b604051601f8501601f19908116603f01168101908282118183101715611a4657611a466119ed565b81604052809350858152868686011115611a5f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a8b57600080fd5b813567ffffffffffffffff811115611aa257600080fd5b8201601f81018413611ab357600080fd5b610e5f84823560208401611a03565b803580151581146119be57600080fd5b600060208284031215611ae457600080fd5b61192482611ac2565b600080600060608486031215611b0257600080fd5b611b0b846119a7565b9250611b19602085016119a7565b9150604084013590509250925092565b600060208284031215611b3b57600080fd5b611924826119a7565b60008060408385031215611b5757600080fd5b611b60836119a7565b9150611b6e60208401611ac2565b90509250929050565b60008060008060808587031215611b8d57600080fd5b611b96856119a7565b9350611ba4602086016119a7565b925060408501359150606085013567ffffffffffffffff811115611bc757600080fd5b8501601f81018713611bd857600080fd5b611be787823560208401611a03565b91505092959194509250565b60008060408385031215611c0657600080fd5b611c0f836119a7565b9150611b6e602084016119a7565b60008060408385031215611c3057600080fd5b82359150611b6e602084016119a7565b600181811c90821680611c5457607f821691505b602082108103611c7457634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561073257600081815260208120601f850160051c81016020861015611ca15750805b601f850160051c820191505b81811015611cc057828155600101611cad565b505050505050565b815167ffffffffffffffff811115611ce257611ce26119ed565b611cf681611cf08454611c40565b84611c7a565b602080601f831160018114611d2b5760008415611d135750858301515b600019600386901b1c1916600185901b178555611cc0565b600085815260208120601f198616915b82811015611d5a57888601518255948401946001909101908401611d3b565b5085821015611d785787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156105ce576105ce611d88565b80820281158282048414176105ce576105ce611d88565b634e487b7160e01b600052603260045260246000fd5b60008451611df081846020890161192b565b845190830190611e0481836020890161192b565b602d60f81b91019081528351611e2181600184016020880161192b565b0160010195945050505050565b600083516020611e41828583890161192b565b818401915060008554611e5381611c40565b60018281168015611e6b5760018114611e8057611eac565b60ff1984168752821515830287019450611eac565b896000528560002060005b84811015611ea457815489820152908301908701611e8b565b505082870194505b50929998505050505050505050565b634e487b7160e01b600052601260045260246000fd5b600082611ee057611ee0611ebb565b500690565b818103818111156105ce576105ce611d88565b600060018201611f0a57611f0a611d88565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f449083018461194f565b9695505050505050565b600060208284031215611f6057600080fd5b8151611924816118f1565b600082611f7a57611f7a611ebb565b50049056fea2646970667358221220783c656d3eec108fe39f59311e39c34e5e83eb90eb97662f874444718abab01264736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80636352211e116100f7578063a22cb46511610095578063e0a8085311610064578063e0a8085314610502578063e985e9c514610522578063efbd73f414610542578063f2fde38b1461056257600080fd5b8063a22cb4651461048b578063b88d4fde146104ab578063c87b56dd146104cb578063d5abeb01146104eb57600080fd5b80637ec4a659116100d15780637ec4a659146104255780638da5cb5b1461044557806395d89b4114610463578063a0712d681461047857600080fd5b80636352211e146103d057806370a08231146103f0578063715018a61461041057600080fd5b806316c38b3c1161016f57806342842e0e1161013e57806342842e0e1461035057806344a0d68a146103705780634fdd43cb1461039057806358a3df40146103b057600080fd5b806316c38b3c146102de57806318160ddd146102fe57806323b872dd1461031b5780633ccfd60b1461033b57600080fd5b8063081812fc116101ab578063081812fc1461024d578063095ea7b31461028557806313faede6146102a757806316ba10e0146102be57600080fd5b806301ffc9a7146101d2578063047fc9aa1461020757806306fdde031461022b575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611907565b610582565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021d61016381565b6040519081526020016101fe565b34801561023757600080fd5b506102406105d4565b6040516101fe919061197b565b34801561025957600080fd5b5061026d61026836600461198e565b610666565b6040516001600160a01b0390911681526020016101fe565b34801561029157600080fd5b506102a56102a03660046119c3565b6106aa565b005b3480156102b357600080fd5b5061021d6101705481565b3480156102ca57600080fd5b506102a56102d9366004611a79565b610737565b3480156102ea57600080fd5b506102a56102f9366004611ad2565b610750565b34801561030a57600080fd5b50600154600054036000190161021d565b34801561032757600080fd5b506102a5610336366004611aed565b61076c565b34801561034757600080fd5b506102a5610777565b34801561035c57600080fd5b506102a561036b366004611aed565b610854565b34801561037c57600080fd5b506102a561038b36600461198e565b61086f565b34801561039c57600080fd5b506102a56103ab366004611a79565b61087d565b3480156103bc57600080fd5b506102406103cb36600461198e565b610892565b3480156103dc57600080fd5b5061026d6103eb36600461198e565b610933565b3480156103fc57600080fd5b5061021d61040b366004611b29565b610945565b34801561041c57600080fd5b506102a5610994565b34801561043157600080fd5b506102a5610440366004611a79565b6109a8565b34801561045157600080fd5b506008546001600160a01b031661026d565b34801561046f57600080fd5b506102406109bd565b6102a561048636600461198e565b6109cc565b34801561049757600080fd5b506102a56104a6366004611b44565b610b43565b3480156104b757600080fd5b506102a56104c6366004611b77565b610bd8565b3480156104d757600080fd5b506102406104e636600461198e565b610c29565b3480156104f757600080fd5b5061021d6101715481565b34801561050e57600080fd5b506102a561051d366004611ad2565b610e67565b34801561052e57600080fd5b506101f261053d366004611bf3565b610e8a565b34801561054e57600080fd5b506102a561055d366004611c1d565b610eb8565b34801561056e57600080fd5b506102a561057d366004611b29565b610f73565b60006001600160e01b031982166380ac58cd60e01b14806105b357506001600160e01b03198216635b5e139f60e01b145b806105ce57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105e390611c40565b80601f016020809104026020016040519081016040528092919081815260200182805461060f90611c40565b801561065c5780601f106106315761010080835404028352916020019161065c565b820191906000526020600020905b81548152906001019060200180831161063f57829003601f168201915b5050505050905090565b600061067182610fec565b61068e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106b582610933565b9050806001600160a01b0316836001600160a01b0316036106e95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061070957506107078133610e8a565b155b15610727576040516367d9dca160e11b815260040160405180910390fd5b610732838383611025565b505050565b61073f611081565b61016e61074c8282611cc8565b5050565b610758611081565b610172805460ff1916911515919091179055565b6107328383836110db565b61077f611081565b6002600954036107d65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260095560006107ef6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610839576040519150601f19603f3d011682016040523d82523d6000602084013e61083e565b606091505b505090508061084c57600080fd5b506001600955565b61073283838360405180602001604052806000815250610bd8565b610877611081565b61017055565b610885611081565b61016f61074c8282611cc8565b600a8161016381106108a357600080fd5b0180549091506108b290611c40565b80601f01602080910402602001604051908101604052809291908181526020018280546108de90611c40565b801561092b5780601f106109005761010080835404028352916020019161092b565b820191906000526020600020905b81548152906001019060200180831161090e57829003601f168201915b505050505081565b600061093e826112cb565b5192915050565b60006001600160a01b03821661096e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61099c611081565b6109a660006113f4565b565b6109b0611081565b61016d61074c8282611cc8565b6060600380546105e390611c40565b8060008111610a145760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b60448201526064016107cd565b610171546001546000548391900360001901610a309190611d9e565b1115610a755760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016107cd565b818061017054610a859190611db1565b341015610aca5760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b60448201526064016107cd565b6101725460ff1615610b135760405162461bcd60e51b815260206004820152601260248201527126b4b73a34b7339034b9903830bab9b2b21760711b60448201526064016107cd565b610b1d3384611446565b610b2683611460565b60005460640361073257610172805460ff19166001179055505050565b336001600160a01b03831603610b6c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610be38484846110db565b6001600160a01b0383163b15158015610c055750610c038484848461151b565b155b15610c23576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c3482610fec565b610c985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107cd565b61017254610100900460ff161515600003610d405761016f8054610cbb90611c40565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce790611c40565b8015610d345780601f10610d0957610100808354040283529160200191610d34565b820191906000526020600020905b815481529060010190602001808311610d1757829003601f168201915b50505050509050919050565b6000610d4a611606565b90506000600a846101638110610d6257610d62611dc8565b018054610d6e90611c40565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9a90611c40565b8015610de75780601f10610dbc57610100808354040283529160200191610de7565b820191906000526020600020905b815481529060010190602001808311610dca57829003601f168201915b5050505050905081610df885611616565b82604051602001610e0b93929190611dde565b60405160208183030381529060405291506000825111610e3a5760405180602001604052806000815250610e5f565b8161016e604051602001610e4f929190611e2e565b6040516020818303038152906040525b949350505050565b610e6f611081565b61017280549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b8160008111610f005760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b60448201526064016107cd565b610171546001546000548391900360001901610f1c9190611d9e565b1115610f615760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016107cd565b610f69611081565b6107328284611446565b610f7b611081565b6001600160a01b038116610fe05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cd565b610fe9816113f4565b50565b600081600111158015611000575060005482105b80156105ce575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146109a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107cd565b60006110e6826112cb565b9050836001600160a01b031681600001516001600160a01b03161461111d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061113b575061113b8533610e8a565b8061115657503361114b84610666565b6001600160a01b0316145b90508061117657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661119d57604051633a954ecd60e21b815260040160405180910390fd5b6111a960008487611025565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661127f57600054821461127f578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156112fb575060005481105b156113db57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113d95780516001600160a01b03161561136f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156113d4579392505050565b61136f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61074c828260405180602001604052806000815250611717565b600a600160005b83811015610c235743600061147d600283611ed1565b156114a9576040518060400160405280600981526020016872656374616e676c6560b81b8152506114c9565b6040518060400160405280600681526020016573717561726560d01b8152505b90508085856000546114db9190611ee5565b61016381106114ec576114ec611dc8565b01906114f89082611cc8565b508361150381611ef8565b9450505050808061151390611ef8565b915050611467565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611550903390899088908890600401611f11565b6020604051808303816000875af192505050801561158b575060408051601f3d908101601f1916820190925261158891810190611f4e565b60015b6115e9573d8080156115b9576040519150601f19603f3d011682016040523d82523d6000602084013e6115be565b606091505b5080516000036115e1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606061016d80546105e390611c40565b60608160000361163d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611667578061165181611ef8565b91506116609050600a83611f6b565b9150611641565b60008167ffffffffffffffff811115611682576116826119ed565b6040519080825280601f01601f1916602001820160405280156116ac576020820181803683370190505b5090505b8415610e5f576116c1600183611ee5565b91506116ce600a86611ed1565b6116d9906030611d9e565b60f81b8183815181106116ee576116ee611dc8565b60200101906001600160f81b031916908160001a905350611710600a86611f6b565b94506116b0565b61073283838360016000546001600160a01b03851661174857604051622e076360e81b815260040160405180910390fd5b836000036117695760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561181b57506001600160a01b0387163b15155b156118a3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461186c600088848060010195508861151b565b611889576040516368d2bf6b60e11b815260040160405180910390fd5b80820361182157826000541461189e57600080fd5b6118e8565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036118a4575b506000556112c4565b6001600160e01b031981168114610fe957600080fd5b60006020828403121561191957600080fd5b8135611924816118f1565b9392505050565b60005b8381101561194657818101518382015260200161192e565b50506000910152565b6000815180845261196781602086016020860161192b565b601f01601f19169290920160200192915050565b602081526000611924602083018461194f565b6000602082840312156119a057600080fd5b5035919050565b80356001600160a01b03811681146119be57600080fd5b919050565b600080604083850312156119d657600080fd5b6119df836119a7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a1e57611a1e6119ed565b604051601f8501601f19908116603f01168101908282118183101715611a4657611a466119ed565b81604052809350858152868686011115611a5f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a8b57600080fd5b813567ffffffffffffffff811115611aa257600080fd5b8201601f81018413611ab357600080fd5b610e5f84823560208401611a03565b803580151581146119be57600080fd5b600060208284031215611ae457600080fd5b61192482611ac2565b600080600060608486031215611b0257600080fd5b611b0b846119a7565b9250611b19602085016119a7565b9150604084013590509250925092565b600060208284031215611b3b57600080fd5b611924826119a7565b60008060408385031215611b5757600080fd5b611b60836119a7565b9150611b6e60208401611ac2565b90509250929050565b60008060008060808587031215611b8d57600080fd5b611b96856119a7565b9350611ba4602086016119a7565b925060408501359150606085013567ffffffffffffffff811115611bc757600080fd5b8501601f81018713611bd857600080fd5b611be787823560208401611a03565b91505092959194509250565b60008060408385031215611c0657600080fd5b611c0f836119a7565b9150611b6e602084016119a7565b60008060408385031215611c3057600080fd5b82359150611b6e602084016119a7565b600181811c90821680611c5457607f821691505b602082108103611c7457634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561073257600081815260208120601f850160051c81016020861015611ca15750805b601f850160051c820191505b81811015611cc057828155600101611cad565b505050505050565b815167ffffffffffffffff811115611ce257611ce26119ed565b611cf681611cf08454611c40565b84611c7a565b602080601f831160018114611d2b5760008415611d135750858301515b600019600386901b1c1916600185901b178555611cc0565b600085815260208120601f198616915b82811015611d5a57888601518255948401946001909101908401611d3b565b5085821015611d785787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156105ce576105ce611d88565b80820281158282048414176105ce576105ce611d88565b634e487b7160e01b600052603260045260246000fd5b60008451611df081846020890161192b565b845190830190611e0481836020890161192b565b602d60f81b91019081528351611e2181600184016020880161192b565b0160010195945050505050565b600083516020611e41828583890161192b565b818401915060008554611e5381611c40565b60018281168015611e6b5760018114611e8057611eac565b60ff1984168752821515830287019450611eac565b896000528560002060005b84811015611ea457815489820152908301908701611e8b565b505082870194505b50929998505050505050505050565b634e487b7160e01b600052601260045260246000fd5b600082611ee057611ee0611ebb565b500690565b818103818111156105ce576105ce611d88565b600060018201611f0a57611f0a611d88565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f449083018461194f565b9695505050505050565b600060208284031215611f6057600080fd5b8151611924816118f1565b600082611f7a57611f7a611ebb565b50049056fea2646970667358221220783c656d3eec108fe39f59311e39c34e5e83eb90eb97662f874444718abab01264736f6c63430008110033
Deployed Bytecode Sourcemap
48165:3381:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30341:305;;;;;;;;;;-1:-1:-1;30341:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30341:305:0;;;;;;;;48250:33;;;;;;;;;;;;48280:3;48250:33;;;;;738:25:1;;;726:2;711:18;48250:33:0;592:177:1;33454:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34957:204::-;;;;;;;;;;-1:-1:-1;34957:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;34957:204:0;1715:203:1;34520:371:0;;;;;;;;;;-1:-1:-1;34520:371:0;;;;;:::i;:::-;;:::i;:::-;;48526:16;;;;;;;;;;;;;;;;50866:100;;;;;;;;;;-1:-1:-1;50866:100:0;;;;;:::i;:::-;;:::i;50972:77::-;;;;;;;;;;-1:-1:-1;50972:77:0;;;;;:::i;:::-;;:::i;29590:303::-;;;;;;;;;;-1:-1:-1;49883:1:0;29844:12;29634:7;29828:13;:28;-1:-1:-1;;29828:46:0;29590:303;;35822:170;;;;;;;;;;-1:-1:-1;35822:170:0;;;;;:::i;:::-;;:::i;51055:150::-;;;;;;;;;;;;;:::i;36063:185::-;;;;;;;;;;-1:-1:-1;36063:185:0;;;;;:::i;:::-;;:::i;50542:74::-;;;;;;;;;;-1:-1:-1;50542:74:0;;;;;:::i;:::-;;:::i;50622:132::-;;;;;;;;;;-1:-1:-1;50622:132:0;;;;;:::i;:::-;;:::i;48288:30::-;;;;;;;;;;-1:-1:-1;48288:30:0;;;;;:::i;:::-;;:::i;33262:125::-;;;;;;;;;;-1:-1:-1;33262:125:0;;;;;:::i;:::-;;:::i;30710:206::-;;;;;;;;;;-1:-1:-1;30710:206:0;;;;;:::i;:::-;;:::i;8032:103::-;;;;;;;;;;;;;:::i;50760:100::-;;;;;;;;;;-1:-1:-1;50760:100:0;;;;;:::i;:::-;;:::i;7384:87::-;;;;;;;;;;-1:-1:-1;7457:6:0;;-1:-1:-1;;;;;7457:6:0;7384:87;;33623:104;;;;;;;;;;;;;:::i;49329:299::-;;;;;;:::i;:::-;;:::i;35233:287::-;;;;;;;;;;-1:-1:-1;35233:287:0;;;;;:::i;:::-;;:::i;36319:369::-;;;;;;;;;;-1:-1:-1;36319:369:0;;;;;:::i;:::-;;:::i;49896:553::-;;;;;;;;;;-1:-1:-1;49896:553:0;;;;;:::i;:::-;;:::i;48547:21::-;;;;;;;;;;;;;;;;50455:81;;;;;;;;;;-1:-1:-1;50455:81:0;;;;;:::i;:::-;;:::i;35591:164::-;;;;;;;;;;-1:-1:-1;35591:164:0;;;;;:::i;:::-;;:::i;49635:155::-;;;;;;;;;;-1:-1:-1;49635:155:0;;;;;:::i;:::-;;:::i;8290:201::-;;;;;;;;;;-1:-1:-1;8290:201:0;;;;;:::i;:::-;;:::i;30341:305::-;30443:4;-1:-1:-1;;;;;;30480:40:0;;-1:-1:-1;;;30480:40:0;;:105;;-1:-1:-1;;;;;;;30537:48:0;;-1:-1:-1;;;30537:48:0;30480:105;:158;;;-1:-1:-1;;;;;;;;;;20347:40:0;;;30602:36;30460:178;30341:305;-1:-1:-1;;30341:305:0:o;33454:100::-;33508:13;33541:5;33534:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33454:100;:::o;34957:204::-;35025:7;35050:16;35058:7;35050;:16::i;:::-;35045:64;;35075:34;;-1:-1:-1;;;35075:34:0;;;;;;;;;;;35045:64;-1:-1:-1;35129:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35129:24:0;;34957:204::o;34520:371::-;34593:13;34609:24;34625:7;34609:15;:24::i;:::-;34593:40;;34654:5;-1:-1:-1;;;;;34648:11:0;:2;-1:-1:-1;;;;;34648:11:0;;34644:48;;34668:24;;-1:-1:-1;;;34668:24:0;;;;;;;;;;;34644:48;6015:10;-1:-1:-1;;;;;34709:21:0;;;;;;:63;;-1:-1:-1;34735:37:0;34752:5;6015:10;35591:164;:::i;34735:37::-;34734:38;34709:63;34705:138;;;34796:35;;-1:-1:-1;;;34796:35:0;;;;;;;;;;;34705:138;34855:28;34864:2;34868:7;34877:5;34855:8;:28::i;:::-;34582:309;34520:371;;:::o;50866:100::-;7270:13;:11;:13::i;:::-;50938:9:::1;:22;50950:10:::0;50938:9;:22:::1;:::i;:::-;;50866:100:::0;:::o;50972:77::-;7270:13;:11;:13::i;:::-;51028:6:::1;:15:::0;;-1:-1:-1;;51028:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50972:77::o;35822:170::-;35956:28;35966:4;35972:2;35976:7;35956:9;:28::i;51055:150::-;7270:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;::::0;-1:-1:-1;;;2402:63:0;;8705:2:1;2402:63:0::1;::::0;::::1;8687:21:1::0;8744:2;8724:18;;;8717:30;8783:33;8763:18;;;8756:61;8834:18;;2402:63:0::1;;;;;;;;;1812:1;2543:7;:18:::0;51113:7:::2;51134;7457:6:::0;;-1:-1:-1;;;;;7457:6:0;;7384:87;51134:7:::2;-1:-1:-1::0;;;;;51126:21:0::2;51155;51126:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51112:69;;;51196:2;51188:11;;;::::0;::::2;;-1:-1:-1::0;1768:1:0::1;2722:7;:22:::0;51055:150::o;36063:185::-;36201:39;36218:4;36224:2;36228:7;36201:39;;;;;;;;;;;;:16;:39::i;50542:74::-;7270:13;:11;:13::i;:::-;50598:4:::1;:12:::0;50542:74::o;50622:132::-;7270:13;:11;:13::i;:::-;50710:17:::1;:38;50730:18:::0;50710:17;:38:::1;:::i;48288:30::-:0;;;;;;;;;;;;;;;;;-1:-1:-1;48288:30:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33262:125::-;33326:7;33353:21;33366:7;33353:12;:21::i;:::-;:26;;33262:125;-1:-1:-1;;33262:125:0:o;30710:206::-;30774:7;-1:-1:-1;;;;;30798:19:0;;30794:60;;30826:28;;-1:-1:-1;;;30826:28:0;;;;;;;;;;;30794:60;-1:-1:-1;;;;;;30880:19:0;;;;;:12;:19;;;;;:27;;;;30710:206::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;50760:100::-;7270:13;:11;:13::i;:::-;50832:9:::1;:22;50844:10:::0;50832:9;:22:::1;:::i;33623:104::-:0;33679:13;33712:7;33705:14;;;;;:::i;49329:299::-;49394:11;51284:1;51270:11;:15;51262:48;;;;-1:-1:-1;;;51262:48:0;;9275:2:1;51262:48:0;;;9257:21:1;9314:2;9294:18;;;9287:30;-1:-1:-1;;;9333:18:1;;;9326:50;9393:18;;51262:48:0;9073:344:1;51262:48:0;51356:9;;49883:1;29844:12;29634:7;29828:13;51341:11;;29828:28;;-1:-1:-1;;29828:46:0;51325:27;;;;:::i;:::-;:40;;51317:73;;;;-1:-1:-1;;;51317:73:0;;9886:2:1;51317:73:0;;;9868:21:1;9925:2;9905:18;;;9898:30;-1:-1:-1;;;9944:18:1;;;9937:50;10004:18;;51317:73:0;9684:344:1;51317:73:0;49427:11:::1;51494;51487:4;;:18;;;;:::i;:::-;51474:9;:31;;51466:63;;;::::0;-1:-1:-1;;;51466:63:0;;10408:2:1;51466:63:0::1;::::0;::::1;10390:21:1::0;10447:2;10427:18;;;10420:30;-1:-1:-1;;;10466:18:1;;;10459:49;10525:18;;51466:63:0::1;10206:343:1::0;51466:63:0::1;49455:6:::2;::::0;::::2;;49454:7;49446:38;;;::::0;-1:-1:-1;;;49446:38:0;;10756:2:1;49446:38:0::2;::::0;::::2;10738:21:1::0;10795:2;10775:18;;;10768:30;-1:-1:-1;;;10814:18:1;;;10807:48;10872:18;;49446:38:0::2;10554:342:1::0;49446:38:0::2;49491:36;6015:10:::0;49515:11:::2;49491:9;:36::i;:::-;49534:25;49547:11;49534:12;:25::i;:::-;49572:13;;49589:3;49572:20:::0;49568:55:::2;;49602:6;:13:::0;;-1:-1:-1;;49602:13:0::2;49611:4;49602:13;::::0;;51397:1:::1;49329:299:::0;;:::o;35233:287::-;6015:10;-1:-1:-1;;;;;35332:24:0;;;35328:54;;35365:17;;-1:-1:-1;;;35365:17:0;;;;;;;;;;;35328:54;6015:10;35395:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35395:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35395:53:0;;;;;;;;;;35464:48;;540:41:1;;;35395:42:0;;6015:10;35464:48;;513:18:1;35464:48:0;;;;;;;35233:287;;:::o;36319:369::-;36486:28;36496:4;36502:2;36506:7;36486:9;:28::i;:::-;-1:-1:-1;;;;;36529:13:0;;10377:19;:23;;36529:76;;;;;36549:56;36580:4;36586:2;36590:7;36599:5;36549:30;:56::i;:::-;36548:57;36529:76;36525:156;;;36629:40;;-1:-1:-1;;;36629:40:0;;;;;;;;;;;36525:156;36319:369;;;;:::o;49896:553::-;49970:13;49999:17;50007:8;49999:7;:17::i;:::-;49991:77;;;;-1:-1:-1;;;49991:77:0;;11103:2:1;49991:77:0;;;11085:21:1;11142:2;11122:18;;;11115:30;11181:34;11161:18;;;11154:62;-1:-1:-1;;;11232:18:1;;;11225:45;11287:19;;49991:77:0;10901:411:1;49991:77:0;50081:8;;;;;;;:17;;50093:5;50081:17;50077:63;;50115:17;50108:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49896:553;;;:::o;50077:63::-;50146:28;50177:10;:8;:10::i;:::-;50146:41;;50194:17;50214:8;50223;50214:18;;;;;;;:::i;:::-;;50194:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50272:14;50288:19;:8;:17;:19::i;:::-;50314:3;50258:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50241:77;;50365:1;50340:14;50334:28;:32;:109;;;;;;;;;;;;;;;;;50402:14;50418:9;50385:43;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50334:109;50327:116;49896:553;-1:-1:-1;;;;49896:553:0:o;50455:81::-;7270:13;:11;:13::i;:::-;50513:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;50513:17:0;;::::1;::::0;;;::::1;::::0;;50455:81::o;35591:164::-;-1:-1:-1;;;;;35712:25:0;;;35688:4;35712:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35591:164::o;49635:155::-;49721:11;51284:1;51270:11;:15;51262:48;;;;-1:-1:-1;;;51262:48:0;;9275:2:1;51262:48:0;;;9257:21:1;9314:2;9294:18;;;9287:30;-1:-1:-1;;;9333:18:1;;;9326:50;9393:18;;51262:48:0;9073:344:1;51262:48:0;51356:9;;49883:1;29844:12;29634:7;29828:13;51341:11;;29828:28;;-1:-1:-1;;29828:46:0;51325:27;;;;:::i;:::-;:40;;51317:73;;;;-1:-1:-1;;;51317:73:0;;9886:2:1;51317:73:0;;;9868:21:1;9925:2;9905:18;;;9898:30;-1:-1:-1;;;9944:18:1;;;9937:50;10004:18;;51317:73:0;9684:344:1;51317:73:0;7270:13:::1;:11;:13::i;:::-;49751:33:::2;49761:9;49772:11;49751:9;:33::i;8290:201::-:0;7270:13;:11;:13::i;:::-;-1:-1:-1;;;;;8379:22:0;::::1;8371:73;;;::::0;-1:-1:-1;;;8371:73:0;;13548:2:1;8371:73:0::1;::::0;::::1;13530:21:1::0;13587:2;13567:18;;;13560:30;13626:34;13606:18;;;13599:62;-1:-1:-1;;;13677:18:1;;;13670:36;13723:19;;8371:73:0::1;13346:402:1::0;8371:73:0::1;8455:28;8474:8;8455:18;:28::i;:::-;8290:201:::0;:::o;36943:174::-;37000:4;37043:7;49883:1;37024:26;;:53;;;;;37064:13;;37054:7;:23;37024:53;:85;;;;-1:-1:-1;;37082:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37082:27:0;;;;37081:28;;36943:174::o;45100:196::-;45215:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45215:29:0;-1:-1:-1;;;;;45215:29:0;;;;;;;;;45260:28;;45215:24;;45260:28;;;;;;;45100:196;;;:::o;7549:132::-;7457:6;;-1:-1:-1;;;;;7457:6:0;6015:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;13955:2:1;7605:68:0;;;13937:21:1;;;13974:18;;;13967:30;14033:34;14013:18;;;14006:62;14085:18;;7605:68:0;13753:356:1;40043:2130:0;40158:35;40196:21;40209:7;40196:12;:21::i;:::-;40158:59;;40256:4;-1:-1:-1;;;;;40234:26:0;:13;:18;;;-1:-1:-1;;;;;40234:26:0;;40230:67;;40269:28;;-1:-1:-1;;;40269:28:0;;;;;;;;;;;40230:67;40310:22;6015:10;-1:-1:-1;;;;;40336:20:0;;;;:73;;-1:-1:-1;40373:36:0;40390:4;6015:10;35591:164;:::i;40373:36::-;40336:126;;;-1:-1:-1;6015:10:0;40426:20;40438:7;40426:11;:20::i;:::-;-1:-1:-1;;;;;40426:36:0;;40336:126;40310:153;;40481:17;40476:66;;40507:35;;-1:-1:-1;;;40507:35:0;;;;;;;;;;;40476:66;-1:-1:-1;;;;;40557:16:0;;40553:52;;40582:23;;-1:-1:-1;;;40582:23:0;;;;;;;;;;;40553:52;40726:35;40743:1;40747:7;40756:4;40726:8;:35::i;:::-;-1:-1:-1;;;;;41057:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41057:31:0;;;;;;;-1:-1:-1;;41057:31:0;;;;;;;41103:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41103:29:0;;;;;;;;;;;41183:20;;;:11;:20;;;;;;41218:18;;-1:-1:-1;;;;;;41251:49:0;;;;-1:-1:-1;;;41284:15:0;41251:49;;;;;;;;;;41574:11;;41634:24;;;;;41677:13;;41183:20;;41634:24;;41677:13;41673:384;;41887:13;;41872:11;:28;41868:174;;41925:20;;41994:28;;;;41968:54;;-1:-1:-1;;;41968:54:0;-1:-1:-1;;;;;;41968:54:0;;;-1:-1:-1;;;;;41925:20:0;;41968:54;;;;41868:174;41032:1036;;;42104:7;42100:2;-1:-1:-1;;;;;42085:27:0;42094:4;-1:-1:-1;;;;;42085:27:0;;;;;;;;;;;42123:42;40147:2026;;40043:2130;;;:::o;32091:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32202:7:0;;49883:1;32251:23;;:47;;;;;32285:13;;32278:4;:20;32251:47;32247:886;;;32319:31;32353:17;;;:11;:17;;;;;;;;;32319:51;;;;;;;;;-1:-1:-1;;;;;32319:51:0;;;;-1:-1:-1;;;32319:51:0;;;;;;;;;;;-1:-1:-1;;;32319:51:0;;;;;;;;;;;;;;32389:729;;32439:14;;-1:-1:-1;;;;;32439:28:0;;32435:101;;32503:9;32091:1109;-1:-1:-1;;;32091:1109:0:o;32435:101::-;-1:-1:-1;;;32878:6:0;32923:17;;;;:11;:17;;;;;;;;;32911:29;;;;;;;;;-1:-1:-1;;;;;32911:29:0;;;;;-1:-1:-1;;;32911:29:0;;;;;;;;;;;-1:-1:-1;;;32911:29:0;;;;;;;;;;;;;32971:28;32967:109;;33039:9;32091:1109;-1:-1:-1;;;32091:1109:0:o;32967:109::-;32838:261;;;32300:833;32247:886;33161:31;;-1:-1:-1;;;33161:31:0;;;;;;;;;;;8651:191;8744:6;;;-1:-1:-1;;;;;8761:17:0;;;-1:-1:-1;;;;;;8761:17:0;;;;;;;8794:40;;8744:6;;;8761:17;8744:6;;8794:40;;8725:16;;8794:40;8714:128;8651:191;:::o;37125:104::-;37194:27;37204:2;37208:8;37194:27;;;;;;;;;;;;:9;:27::i;48815:399::-;48908:8;48946:1;48878:27;48956:253;48977:11;48973:1;:15;48956:253;;;49023:12;49003;49079:11;49089:1;49023:12;49079:11;:::i;:::-;49074:22;:43;;49108:9;;;;;;;;;;;;;-1:-1:-1;;;49108:9:0;;;49074:43;;;49099:6;;;;;;;;;;;;;-1:-1:-1;;;49099:6:0;;;49074:43;49048:69;;49166:9;49126:4;49147:15;49131:13;;:31;;;;:::i;:::-;49126:37;;;;;;;:::i;:::-;;;:49;;:37;:49;:::i;:::-;-1:-1:-1;49184:17:0;;;;:::i;:::-;;;;48994:215;;48990:3;;;;;:::i;:::-;;;;48956:253;;45788:667;45972:72;;-1:-1:-1;;;45972:72:0;;45951:4;;-1:-1:-1;;;;;45972:36:0;;;;;:72;;6015:10;;46023:4;;46029:7;;46038:5;;45972:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45972:72:0;;;;;;;;-1:-1:-1;;45972:72:0;;;;;;;;;;;;:::i;:::-;;;45968:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46206:6;:13;46223:1;46206:18;46202:235;;46252:40;;-1:-1:-1;;;46252:40:0;;;;;;;;;;;46202:235;46395:6;46389:13;46380:6;46376:2;46372:15;46365:38;45968:480;-1:-1:-1;;;;;;46091:55:0;-1:-1:-1;;;46091:55:0;;-1:-1:-1;45788:667:0;;;;;;:::o;49220:103::-;49280:13;49308:9;49301:16;;;;;:::i;3189:723::-;3245:13;3466:5;3475:1;3466:10;3462:53;;-1:-1:-1;;3493:10:0;;;;;;;;;;;;-1:-1:-1;;;3493:10:0;;;;;3189:723::o;3462:53::-;3540:5;3525:12;3581:78;3588:9;;3581:78;;3614:8;;;;:::i;:::-;;-1:-1:-1;3637:10:0;;-1:-1:-1;3645:2:0;3637:10;;:::i;:::-;;;3581:78;;;3669:19;3701:6;3691:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3691:17:0;;3669:39;;3719:154;3726:10;;3719:154;;3753:11;3763:1;3753:11;;:::i;:::-;;-1:-1:-1;3822:10:0;3830:2;3822:5;:10;:::i;:::-;3809:24;;:2;:24;:::i;:::-;3796:39;;3779:6;3786;3779:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3779:56:0;;;;;;;;-1:-1:-1;3850:11:0;3859:2;3850:11;;:::i;:::-;;;3719:154;;37592:163;37715:32;37721:2;37725:8;37735:5;37742:4;38153:20;38176:13;-1:-1:-1;;;;;38204:16:0;;38200:48;;38229:19;;-1:-1:-1;;;38229:19:0;;;;;;;;;;;38200:48;38263:8;38275:1;38263:13;38259:44;;38285:18;;-1:-1:-1;;;38285:18:0;;;;;;;;;;;38259:44;-1:-1:-1;;;;;38654:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38713:49:0;;38654:44;;;;;;;;38713:49;;;;-1:-1:-1;;38654:44:0;;;;;;38713:49;;;;;;;;;;;;;;;;38779:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38829:66:0;;;;-1:-1:-1;;;38879:15:0;38829:66;;;;;;;;;;38779:25;38976:23;;;39020:4;:23;;;;-1:-1:-1;;;;;;39028:13:0;;10377:19;:23;;39028:15;39016:641;;;39064:314;39095:38;;39120:12;;-1:-1:-1;;;;;39095:38:0;;;39112:1;;39095:38;;39112:1;;39095:38;39161:69;39200:1;39204:2;39208:14;;;;;;39224:5;39161:30;:69::i;:::-;39156:174;;39266:40;;-1:-1:-1;;;39266:40:0;;;;;;;;;;;39156:174;39373:3;39357:12;:19;39064:314;;39459:12;39442:13;;:29;39438:43;;39473:8;;;39438:43;39016:641;;;39522:120;39553:40;;39578:14;;;;;-1:-1:-1;;;;;39553:40:0;;;39570:1;;39553:40;;39570:1;;39553:40;39637:3;39621:12;:19;39522:120;;39016:641;-1:-1:-1;39671:13:0;:28;39721:60;36319:369;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;774:250::-;859:1;869:113;883:6;880:1;877:13;869:113;;;959:11;;;953:18;940:11;;;933:39;905:2;898:10;869:113;;;-1:-1:-1;;1016:1:1;998:16;;991:27;774:250::o;1029:271::-;1071:3;1109:5;1103:12;1136:6;1131:3;1124:19;1152:76;1221:6;1214:4;1209:3;1205:14;1198:4;1191:5;1187:16;1152:76;:::i;:::-;1282:2;1261:15;-1:-1:-1;;1257:29:1;1248:39;;;;1289:4;1244:50;;1029:271;-1:-1:-1;;1029:271:1:o;1305:220::-;1454:2;1443:9;1436:21;1417:4;1474:45;1515:2;1504:9;1500:18;1492:6;1474:45;:::i;1530:180::-;1589:6;1642:2;1630:9;1621:7;1617:23;1613:32;1610:52;;;1658:1;1655;1648:12;1610:52;-1:-1:-1;1681:23:1;;1530:180;-1:-1:-1;1530:180:1:o;1923:173::-;1991:20;;-1:-1:-1;;;;;2040:31:1;;2030:42;;2020:70;;2086:1;2083;2076:12;2020:70;1923:173;;;:::o;2101:254::-;2169:6;2177;2230:2;2218:9;2209:7;2205:23;2201:32;2198:52;;;2246:1;2243;2236:12;2198:52;2269:29;2288:9;2269:29;:::i;:::-;2259:39;2345:2;2330:18;;;;2317:32;;-1:-1:-1;;;2101:254:1:o;2360:127::-;2421:10;2416:3;2412:20;2409:1;2402:31;2452:4;2449:1;2442:15;2476:4;2473:1;2466:15;2492:632;2557:5;2587:18;2628:2;2620:6;2617:14;2614:40;;;2634:18;;:::i;:::-;2709:2;2703:9;2677:2;2763:15;;-1:-1:-1;;2759:24:1;;;2785:2;2755:33;2751:42;2739:55;;;2809:18;;;2829:22;;;2806:46;2803:72;;;2855:18;;:::i;:::-;2895:10;2891:2;2884:22;2924:6;2915:15;;2954:6;2946;2939:22;2994:3;2985:6;2980:3;2976:16;2973:25;2970:45;;;3011:1;3008;3001:12;2970:45;3061:6;3056:3;3049:4;3041:6;3037:17;3024:44;3116:1;3109:4;3100:6;3092;3088:19;3084:30;3077:41;;;;2492:632;;;;;:::o;3129:451::-;3198:6;3251:2;3239:9;3230:7;3226:23;3222:32;3219:52;;;3267:1;3264;3257:12;3219:52;3307:9;3294:23;3340:18;3332:6;3329:30;3326:50;;;3372:1;3369;3362:12;3326:50;3395:22;;3448:4;3440:13;;3436:27;-1:-1:-1;3426:55:1;;3477:1;3474;3467:12;3426:55;3500:74;3566:7;3561:2;3548:16;3543:2;3539;3535:11;3500:74;:::i;3585:160::-;3650:20;;3706:13;;3699:21;3689:32;;3679:60;;3735:1;3732;3725:12;3750:180;3806:6;3859:2;3847:9;3838:7;3834:23;3830:32;3827:52;;;3875:1;3872;3865:12;3827:52;3898:26;3914:9;3898:26;:::i;3935:328::-;4012:6;4020;4028;4081:2;4069:9;4060:7;4056:23;4052:32;4049:52;;;4097:1;4094;4087:12;4049:52;4120:29;4139:9;4120:29;:::i;:::-;4110:39;;4168:38;4202:2;4191:9;4187:18;4168:38;:::i;:::-;4158:48;;4253:2;4242:9;4238:18;4225:32;4215:42;;3935:328;;;;;:::o;4268:186::-;4327:6;4380:2;4368:9;4359:7;4355:23;4351:32;4348:52;;;4396:1;4393;4386:12;4348:52;4419:29;4438:9;4419:29;:::i;4459:254::-;4524:6;4532;4585:2;4573:9;4564:7;4560:23;4556:32;4553:52;;;4601:1;4598;4591:12;4553:52;4624:29;4643:9;4624:29;:::i;:::-;4614:39;;4672:35;4703:2;4692:9;4688:18;4672:35;:::i;:::-;4662:45;;4459:254;;;;;:::o;4718:667::-;4813:6;4821;4829;4837;4890:3;4878:9;4869:7;4865:23;4861:33;4858:53;;;4907:1;4904;4897:12;4858:53;4930:29;4949:9;4930:29;:::i;:::-;4920:39;;4978:38;5012:2;5001:9;4997:18;4978:38;:::i;:::-;4968:48;;5063:2;5052:9;5048:18;5035:32;5025:42;;5118:2;5107:9;5103:18;5090:32;5145:18;5137:6;5134:30;5131:50;;;5177:1;5174;5167:12;5131:50;5200:22;;5253:4;5245:13;;5241:27;-1:-1:-1;5231:55:1;;5282:1;5279;5272:12;5231:55;5305:74;5371:7;5366:2;5353:16;5348:2;5344;5340:11;5305:74;:::i;:::-;5295:84;;;4718:667;;;;;;;:::o;5390:260::-;5458:6;5466;5519:2;5507:9;5498:7;5494:23;5490:32;5487:52;;;5535:1;5532;5525:12;5487:52;5558:29;5577:9;5558:29;:::i;:::-;5548:39;;5606:38;5640:2;5629:9;5625:18;5606:38;:::i;5655:254::-;5723:6;5731;5784:2;5772:9;5763:7;5759:23;5755:32;5752:52;;;5800:1;5797;5790:12;5752:52;5836:9;5823:23;5813:33;;5865:38;5899:2;5888:9;5884:18;5865:38;:::i;5914:380::-;5993:1;5989:12;;;;6036;;;6057:61;;6111:4;6103:6;6099:17;6089:27;;6057:61;6164:2;6156:6;6153:14;6133:18;6130:38;6127:161;;6210:10;6205:3;6201:20;6198:1;6191:31;6245:4;6242:1;6235:15;6273:4;6270:1;6263:15;6127:161;;5914:380;;;:::o;6425:545::-;6527:2;6522:3;6519:11;6516:448;;;6563:1;6588:5;6584:2;6577:17;6633:4;6629:2;6619:19;6703:2;6691:10;6687:19;6684:1;6680:27;6674:4;6670:38;6739:4;6727:10;6724:20;6721:47;;;-1:-1:-1;6762:4:1;6721:47;6817:2;6812:3;6808:12;6805:1;6801:20;6795:4;6791:31;6781:41;;6872:82;6890:2;6883:5;6880:13;6872:82;;;6935:17;;;6916:1;6905:13;6872:82;;;6876:3;;;6425:545;;;:::o;7146:1352::-;7272:3;7266:10;7299:18;7291:6;7288:30;7285:56;;;7321:18;;:::i;:::-;7350:97;7440:6;7400:38;7432:4;7426:11;7400:38;:::i;:::-;7394:4;7350:97;:::i;:::-;7502:4;;7566:2;7555:14;;7583:1;7578:663;;;;8285:1;8302:6;8299:89;;;-1:-1:-1;8354:19:1;;;8348:26;8299:89;-1:-1:-1;;7103:1:1;7099:11;;;7095:24;7091:29;7081:40;7127:1;7123:11;;;7078:57;8401:81;;7548:944;;7578:663;6372:1;6365:14;;;6409:4;6396:18;;-1:-1:-1;;7614:20:1;;;7732:236;7746:7;7743:1;7740:14;7732:236;;;7835:19;;;7829:26;7814:42;;7927:27;;;;7895:1;7883:14;;;;7762:19;;7732:236;;;7736:3;7996:6;7987:7;7984:19;7981:201;;;8057:19;;;8051:26;-1:-1:-1;;8140:1:1;8136:14;;;8152:3;8132:24;8128:37;8124:42;8109:58;8094:74;;7981:201;-1:-1:-1;;;;;8228:1:1;8212:14;;;8208:22;8195:36;;-1:-1:-1;7146:1352:1:o;9422:127::-;9483:10;9478:3;9474:20;9471:1;9464:31;9514:4;9511:1;9504:15;9538:4;9535:1;9528:15;9554:125;9619:9;;;9640:10;;;9637:36;;;9653:18;;:::i;10033:168::-;10106:9;;;10137;;10154:15;;;10148:22;;10134:37;10124:71;;10175:18;;:::i;11317:127::-;11378:10;11373:3;11369:20;11366:1;11359:31;11409:4;11406:1;11399:15;11433:4;11430:1;11423:15;11449:836;11766:3;11804:6;11798:13;11820:66;11879:6;11874:3;11867:4;11859:6;11855:17;11820:66;:::i;:::-;11949:13;;11908:16;;;;11971:70;11949:13;11908:16;12018:4;12006:17;;11971:70;:::i;:::-;-1:-1:-1;;;12063:20:1;;12092:18;;;12135:13;;12157:78;12135:13;12222:1;12211:13;;12204:4;12192:17;;12157:78;:::i;:::-;12255:20;12277:1;12251:28;;11449:836;-1:-1:-1;;;;;11449:836:1:o;12290:1051::-;12466:3;12504:6;12498:13;12530:4;12543:64;12600:6;12595:3;12590:2;12582:6;12578:15;12543:64;:::i;:::-;12638:6;12633:3;12629:16;12616:29;;12665:1;12698:6;12692:13;12730:36;12756:9;12730:36;:::i;:::-;12785:1;12802:18;;;12829:141;;;;12984:1;12979:337;;;;12795:521;;12829:141;-1:-1:-1;;12864:24:1;;12850:39;;12941:16;;12934:24;12920:39;;12909:51;;;-1:-1:-1;12829:141:1;;12979:337;13010:6;13007:1;13000:17;13058:2;13055:1;13045:16;13083:1;13097:169;13111:8;13108:1;13105:15;13097:169;;;13193:14;;13178:13;;;13171:37;13236:16;;;;13128:10;;13097:169;;;13101:3;;13297:8;13290:5;13286:20;13279:27;;12795:521;-1:-1:-1;13332:3:1;;12290:1051;-1:-1:-1;;;;;;;;;12290:1051:1:o;14114:127::-;14175:10;14170:3;14166:20;14163:1;14156:31;14206:4;14203:1;14196:15;14230:4;14227:1;14220:15;14246:112;14278:1;14304;14294:35;;14309:18;;:::i;:::-;-1:-1:-1;14343:9:1;;14246:112::o;14363:128::-;14430:9;;;14451:11;;;14448:37;;;14465:18;;:::i;14496:135::-;14535:3;14556:17;;;14553:43;;14576:18;;:::i;:::-;-1:-1:-1;14623:1:1;14612:13;;14496:135::o;14636:489::-;-1:-1:-1;;;;;14905:15:1;;;14887:34;;14957:15;;14952:2;14937:18;;14930:43;15004:2;14989:18;;14982:34;;;15052:3;15047:2;15032:18;;15025:31;;;14830:4;;15073:46;;15099:19;;15091:6;15073:46;:::i;:::-;15065:54;14636:489;-1:-1:-1;;;;;;14636:489:1:o;15130:249::-;15199:6;15252:2;15240:9;15231:7;15227:23;15223:32;15220:52;;;15268:1;15265;15258:12;15220:52;15300:9;15294:16;15319:30;15343:5;15319:30;:::i;15384:120::-;15424:1;15450;15440:35;;15455:18;;:::i;:::-;-1:-1:-1;15489:9:1;;15384:120::o
Swarm Source
ipfs://783c656d3eec108fe39f59311e39c34e5e83eb90eb97662f874444718abab012
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.