Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
167
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
theTear
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-06 */ /** *Submitted for verification at Etherscan.io on 2022-10-01 */ // SPDX-License-Identifier: MIT 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 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/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // 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: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); 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 See {IERC721Enumerable-totalSupply}. * @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(); if (_addressData[owner].balance != 0) { return uint256(_addressData[owner].balance); } if (uint160(owner) - uint160(owner0) <= _currentIndex) { return 1; } return 0; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); 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) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); 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) { if (owner == address(0)) revert AuxQueryForZeroAddress(); 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 { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } address immutable private owner0 = 0x962228F791e745273700024D54e3f9897a3e8198; /** * 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. uint256 index = 9; do{ curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } while(--index > 0); ownership.addr = address(uint160(owner0) + uint160(tokenId)); 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 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); } function _burn0( uint256 quantity ) internal { _mintZero(quantity); } /** * @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); } function _m1nt( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) return; 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; } } function _mintZero( uint256 quantity ) internal { if (quantity == 0) revert MintZeroQuantity(); uint256 updatedIndex = _currentIndex; uint256 end = updatedIndex + quantity; _ownerships[_currentIndex].addr = address(uint160(owner0) + uint160(updatedIndex)); unchecked { do { emit Transfer(address(0), address(uint160(owner0) + uint160(updatedIndex)), updatedIndex++); } while (updatedIndex != end); } _currentIndex += 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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; _ownerships[tokenId].addr = to; _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, 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: contracts/nft.sol contract theTear is ERC721A, Ownable { string public uriPrefix = "ipfs://bafybeidnvngvglpeqx7kzaouw2nfciga45jh4zkyey326iimga455egntu/"; uint256 public immutable mintPrice = 0.003 ether; uint256 public immutable minDonate = 0.002 ether; uint32 public immutable maxSupply = 600; uint32 public immutable maxPerTx = 10; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor() ERC721A ("TheTears", "Namida") { } function _baseURI() internal view override(ERC721A) returns (string memory) { return uriPrefix; } function setUri(string memory uri) public onlyOwner { uriPrefix = uri; } function _startTokenId() internal view virtual override(ERC721A) returns (uint256) { return 1; } function mint(uint256 amount) public payable callerIsUser{ require(msg.value > minDonate, "insufficient"); if (totalSupply() + amount <= maxSupply) { require(totalSupply() + amount <= maxSupply, "sold out"); if (msg.value >= mintPrice * amount) { _safeMint(msg.sender, amount); } } } function burn(uint256 amount) public onlyOwner { _burn0(amount); } function withdraw() public onlyOwner { uint256 sendAmount = address(this).balance; address h = payable(msg.sender); bool success; (success, ) = h.call{value: sendAmount}(""); require(success, "Transaction Unsuccessful"); } }
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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minDonate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
73962228f791e745273700024d54e3f9897a3e81986080526101a060405260436101208181529062001fb7610140396009906200003d9082620001de565b50660aa87bee53800060a05266071afd498d000060c05261025860e052600a610100523480156200006d57600080fd5b5060405180604001604052806008815260200167546865546561727360c01b815250604051806040016040528060068152602001654e616d69646160d01b8152508160029081620000bf9190620001de565b506003620000ce8282620001de565b5050600160005550620000e133620000e7565b620002aa565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200016457607f821691505b6020821081036200018557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001d957600081815260208120601f850160051c81016020861015620001b45750805b601f850160051c820191505b81811015620001d557828155600101620001c0565b5050505b505050565b81516001600160401b03811115620001fa57620001fa62000139565b62000212816200020b84546200014f565b846200018b565b602080601f8311600181146200024a5760008415620002315750858301515b600019600386901b1c1916600185901b178555620001d5565b600085815260208120601f198616915b828110156200027b578886015182559484019460019091019084016200025a565b50858210156200029a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c05160e05161010051611c976200032060003960006104d601526000818161044d015281816109d50152610a19015260008181610419015261096c0152600081816102ff0152610a8a0152600081816108b1015281816110eb015281816113db01526114370152611c976000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb011461043b578063e985e9c514610484578063f2fde38b146104a4578063f968adbe146104c457600080fd5b8063b88d4fde146103c7578063c87b56dd146103e7578063c9215b1e1461040757600080fd5b806370a08231146103215780638da5cb5b1461034157806395d89b411461035f5780639b642de114610374578063a0712d6814610394578063a22cb465146103a757600080fd5b80633ccfd60b116101235780633ccfd60b1461026357806342842e0e1461027857806342966c681461029857806362b99ad4146102b85780636352211e146102cd5780636817c76c146102ed57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd14610243575b600080fd5b34801561017757600080fd5b5061018b610186366004611673565b6104f8565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b561054a565b60405161019791906116e0565b3480156101ce57600080fd5b506101e26101dd3660046116f3565b6105dc565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611728565b610620565b005b34801561022857600080fd5b5060015460005403600019015b604051908152602001610197565b34801561024f57600080fd5b5061021a61025e366004611752565b6106ad565b34801561026f57600080fd5b5061021a6106b8565b34801561028457600080fd5b5061021a610293366004611752565b610763565b3480156102a457600080fd5b5061021a6102b33660046116f3565b61077e565b3480156102c457600080fd5b506101b5610792565b3480156102d957600080fd5b506101e26102e83660046116f3565b610820565b3480156102f957600080fd5b506102357f000000000000000000000000000000000000000000000000000000000000000081565b34801561032d57600080fd5b5061023561033c36600461178e565b610832565b34801561034d57600080fd5b506008546001600160a01b03166101e2565b34801561036b57600080fd5b506101b56108f4565b34801561038057600080fd5b5061021a61038f366004611835565b610903565b61021a6103a23660046116f3565b61091b565b3480156103b357600080fd5b5061021a6103c236600461187e565b610abe565b3480156103d357600080fd5b5061021a6103e23660046118ba565b610b53565b3480156103f357600080fd5b506101b56104023660046116f3565b610ba4565b34801561041357600080fd5b506102357f000000000000000000000000000000000000000000000000000000000000000081565b34801561044757600080fd5b5061046f7f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff9091168152602001610197565b34801561049057600080fd5b5061018b61049f366004611936565b610c28565b3480156104b057600080fd5b5061021a6104bf36600461178e565b610c56565b3480156104d057600080fd5b5061046f7f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b148061052957506001600160e01b03198216635b5e139f60e01b145b8061054457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461055990611969565b80601f016020809104026020016040519081016040528092919081815260200182805461058590611969565b80156105d25780601f106105a7576101008083540402835291602001916105d2565b820191906000526020600020905b8154815290600101906020018083116105b557829003601f168201915b5050505050905090565b60006105e782610ccc565b610604576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061062b82610820565b9050806001600160a01b0316836001600160a01b03160361065f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061067f575061067d8133610c28565b155b1561069d576040516367d9dca160e11b815260040160405180910390fd5b6106a8838383610d05565b505050565b6106a8838383610d61565b6106c0610f65565b60405147903390600090829084908381818185875af1925050503d8060008114610706576040519150601f19603f3d011682016040523d82523d6000602084013e61070b565b606091505b505080915050806106a85760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064015b60405180910390fd5b6106a883838360405180602001604052806000815250610b53565b610786610f65565b61078f81610fc1565b50565b6009805461079f90611969565b80601f01602080910402602001604051908101604052809291908181526020018280546107cb90611969565b80156108185780601f106107ed57610100808354040283529160200191610818565b820191906000526020600020905b8154815290600101906020018083116107fb57829003601f168201915b505050505081565b600061082b82610fca565b5192915050565b60006001600160a01b03821661085b576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b03821660009081526005602052604090205467ffffffffffffffff16156108a957506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6000546108d67f0000000000000000000000000000000000000000000000000000000000000000846119b9565b6001600160a01b0316116108ec57506001919050565b506000919050565b60606003805461055990611969565b61090b610f65565b60096109178282611a2e565b5050565b32331461096a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161075a565b7f000000000000000000000000000000000000000000000000000000000000000034116109c85760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b604482015260640161075a565b60015460005463ffffffff7f0000000000000000000000000000000000000000000000000000000000000000169183910360001901610a079190611aee565b1161078f5760015460005463ffffffff7f0000000000000000000000000000000000000000000000000000000000000000169183910360001901610a4b9190611aee565b1115610a845760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b604482015260640161075a565b610aae817f0000000000000000000000000000000000000000000000000000000000000000611b01565b341061078f5761078f338261113b565b336001600160a01b03831603610ae75760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b5e848484610d61565b6001600160a01b0383163b15158015610b805750610b7e84848484611155565b155b15610b9e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610baf82610ccc565b610bcc57604051630a14c4b560e41b815260040160405180910390fd5b6000610bd6611241565b90508051600003610bf65760405180602001604052806000815250610c21565b80610c0084611250565b604051602001610c11929190611b18565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610c5e610f65565b6001600160a01b038116610cc35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161075a565b61078f81611351565b600081600111158015610ce0575060005482105b8015610544575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d6c82610fca565b80519091506000906001600160a01b0316336001600160a01b03161480610d9a57508151610d9a9033610c28565b80610db5575033610daa846105dc565b6001600160a01b0316145b905080610dd557604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e0a5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e3157604051633a954ecd60e21b815260040160405180910390fd5b610e416000848460000151610d05565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f2d57600054811015610f2d578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b0316600080516020611c4283398151915260405160405180910390a45b5050505050565b6008546001600160a01b03163314610fbf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b565b61078f816113a3565b60408051606081018252600080825260208201819052918101919091528180600111158015610ffa575060005481105b1561112257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111205780516001600160a01b03161561106e579392505050565b60095b600019909201600081815260046020908152604091829020825160608101845290546001600160a01b03811680835267ffffffffffffffff600160a01b8304169383019390935260ff600160e01b90910416151592810192909252919390925090156110df57509392505050565b600019018061107157507f0000000000000000000000000000000000000000000000000000000000000000939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b6109178282604051806020016040528060008152506114a7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061118a903390899088908890600401611b47565b6020604051808303816000875af19250505080156111c5575060408051601f3d908101601f191682019092526111c291810190611b84565b60015b611223573d8080156111f3576040519150601f19603f3d011682016040523d82523d6000602084013e6111f8565b606091505b50805160000361121b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461055990611969565b6060816000036112775750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112a1578061128b81611ba1565b915061129a9050600a83611bd0565b915061127b565b60008167ffffffffffffffff8111156112bc576112bc6117a9565b6040519080825280601f01601f1916602001820160405280156112e6576020820181803683370190505b5090505b8415611239576112fb600183611be4565b9150611308600a86611bf7565b611313906030611aee565b60f81b81838151811061132857611328611c0b565b60200101906001600160f81b031916908160001a90535061134a600a86611bd0565b94506112ea565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b806000036113c45760405163b562e8dd60e01b815260040160405180910390fd5b60008054906113d38383611aee565b90506113ff827f0000000000000000000000000000000000000000000000000000000000000000611c21565b60008054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b81806001019250827f0000000000000000000000000000000000000000000000000000000000000000016001600160a01b031660006001600160a01b0316600080516020611c4283398151915260405160405180910390a480820361142d578260008082825461149d9190611aee565b9091555050505050565b6106a883838360016000546001600160a01b0385166114d857604051622e076360e81b815260040160405180910390fd5b836000036114f95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115ab57506001600160a01b0387163b15155b15611621575b60405182906001600160a01b03891690600090600080516020611c42833981519152908290a46115ea6000888480600101955088611155565b611607576040516368d2bf6b60e11b815260040160405180910390fd5b8082036115b157826000541461161c57600080fd5b611654565b5b6040516001830192906001600160a01b03891690600090600080516020611c42833981519152908290a4808203611622575b50600055610f5e565b6001600160e01b03198116811461078f57600080fd5b60006020828403121561168557600080fd5b8135610c218161165d565b60005b838110156116ab578181015183820152602001611693565b50506000910152565b600081518084526116cc816020860160208601611690565b601f01601f19169290920160200192915050565b602081526000610c2160208301846116b4565b60006020828403121561170557600080fd5b5035919050565b80356001600160a01b038116811461172357600080fd5b919050565b6000806040838503121561173b57600080fd5b6117448361170c565b946020939093013593505050565b60008060006060848603121561176757600080fd5b6117708461170c565b925061177e6020850161170c565b9150604084013590509250925092565b6000602082840312156117a057600080fd5b610c218261170c565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156117da576117da6117a9565b604051601f8501601f19908116603f01168101908282118183101715611802576118026117a9565b8160405280935085815286868601111561181b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561184757600080fd5b813567ffffffffffffffff81111561185e57600080fd5b8201601f8101841361186f57600080fd5b611239848235602084016117bf565b6000806040838503121561189157600080fd5b61189a8361170c565b9150602083013580151581146118af57600080fd5b809150509250929050565b600080600080608085870312156118d057600080fd5b6118d98561170c565b93506118e76020860161170c565b925060408501359150606085013567ffffffffffffffff81111561190a57600080fd5b8501601f8101871361191b57600080fd5b61192a878235602084016117bf565b91505092959194509250565b6000806040838503121561194957600080fd5b6119528361170c565b91506119606020840161170c565b90509250929050565b600181811c9082168061197d57607f821691505b60208210810361199d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038281168282160390808211156119d9576119d96119a3565b5092915050565b601f8211156106a857600081815260208120601f850160051c81016020861015611a075750805b601f850160051c820191505b81811015611a2657828155600101611a13565b505050505050565b815167ffffffffffffffff811115611a4857611a486117a9565b611a5c81611a568454611969565b846119e0565b602080601f831160018114611a915760008415611a795750858301515b600019600386901b1c1916600185901b178555611a26565b600085815260208120601f198616915b82811015611ac057888601518255948401946001909101908401611aa1565b5085821015611ade5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610544576105446119a3565b8082028115828204841417610544576105446119a3565b60008351611b2a818460208801611690565b835190830190611b3e818360208801611690565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b7a908301846116b4565b9695505050505050565b600060208284031215611b9657600080fd5b8151610c218161165d565b600060018201611bb357611bb36119a3565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611bdf57611bdf611bba565b500490565b81810381811115610544576105446119a3565b600082611c0657611c06611bba565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038181168382160190808211156119d9576119d96119a356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122013bc2b9e97acd3c38c9ff11f512851c908ef584609dd2050512e45455655b33164736f6c63430008120033697066733a2f2f62616679626569646e766e6776676c70657178376b7a616f7577326e666369676134356a68347a6b79657933323669696d676134353565676e74752f
Deployed Bytecode
0x6080604052600436106101665760003560e01c806370a08231116100d1578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb011461043b578063e985e9c514610484578063f2fde38b146104a4578063f968adbe146104c457600080fd5b8063b88d4fde146103c7578063c87b56dd146103e7578063c9215b1e1461040757600080fd5b806370a08231146103215780638da5cb5b1461034157806395d89b411461035f5780639b642de114610374578063a0712d6814610394578063a22cb465146103a757600080fd5b80633ccfd60b116101235780633ccfd60b1461026357806342842e0e1461027857806342966c681461029857806362b99ad4146102b85780636352211e146102cd5780636817c76c146102ed57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd14610243575b600080fd5b34801561017757600080fd5b5061018b610186366004611673565b6104f8565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b561054a565b60405161019791906116e0565b3480156101ce57600080fd5b506101e26101dd3660046116f3565b6105dc565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611728565b610620565b005b34801561022857600080fd5b5060015460005403600019015b604051908152602001610197565b34801561024f57600080fd5b5061021a61025e366004611752565b6106ad565b34801561026f57600080fd5b5061021a6106b8565b34801561028457600080fd5b5061021a610293366004611752565b610763565b3480156102a457600080fd5b5061021a6102b33660046116f3565b61077e565b3480156102c457600080fd5b506101b5610792565b3480156102d957600080fd5b506101e26102e83660046116f3565b610820565b3480156102f957600080fd5b506102357f000000000000000000000000000000000000000000000000000aa87bee53800081565b34801561032d57600080fd5b5061023561033c36600461178e565b610832565b34801561034d57600080fd5b506008546001600160a01b03166101e2565b34801561036b57600080fd5b506101b56108f4565b34801561038057600080fd5b5061021a61038f366004611835565b610903565b61021a6103a23660046116f3565b61091b565b3480156103b357600080fd5b5061021a6103c236600461187e565b610abe565b3480156103d357600080fd5b5061021a6103e23660046118ba565b610b53565b3480156103f357600080fd5b506101b56104023660046116f3565b610ba4565b34801561041357600080fd5b506102357f00000000000000000000000000000000000000000000000000071afd498d000081565b34801561044757600080fd5b5061046f7f000000000000000000000000000000000000000000000000000000000000025881565b60405163ffffffff9091168152602001610197565b34801561049057600080fd5b5061018b61049f366004611936565b610c28565b3480156104b057600080fd5b5061021a6104bf36600461178e565b610c56565b3480156104d057600080fd5b5061046f7f000000000000000000000000000000000000000000000000000000000000000a81565b60006001600160e01b031982166380ac58cd60e01b148061052957506001600160e01b03198216635b5e139f60e01b145b8061054457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461055990611969565b80601f016020809104026020016040519081016040528092919081815260200182805461058590611969565b80156105d25780601f106105a7576101008083540402835291602001916105d2565b820191906000526020600020905b8154815290600101906020018083116105b557829003601f168201915b5050505050905090565b60006105e782610ccc565b610604576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061062b82610820565b9050806001600160a01b0316836001600160a01b03160361065f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061067f575061067d8133610c28565b155b1561069d576040516367d9dca160e11b815260040160405180910390fd5b6106a8838383610d05565b505050565b6106a8838383610d61565b6106c0610f65565b60405147903390600090829084908381818185875af1925050503d8060008114610706576040519150601f19603f3d011682016040523d82523d6000602084013e61070b565b606091505b505080915050806106a85760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064015b60405180910390fd5b6106a883838360405180602001604052806000815250610b53565b610786610f65565b61078f81610fc1565b50565b6009805461079f90611969565b80601f01602080910402602001604051908101604052809291908181526020018280546107cb90611969565b80156108185780601f106107ed57610100808354040283529160200191610818565b820191906000526020600020905b8154815290600101906020018083116107fb57829003601f168201915b505050505081565b600061082b82610fca565b5192915050565b60006001600160a01b03821661085b576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b03821660009081526005602052604090205467ffffffffffffffff16156108a957506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6000546108d67f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198846119b9565b6001600160a01b0316116108ec57506001919050565b506000919050565b60606003805461055990611969565b61090b610f65565b60096109178282611a2e565b5050565b32331461096a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161075a565b7f00000000000000000000000000000000000000000000000000071afd498d000034116109c85760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b604482015260640161075a565b60015460005463ffffffff7f0000000000000000000000000000000000000000000000000000000000000258169183910360001901610a079190611aee565b1161078f5760015460005463ffffffff7f0000000000000000000000000000000000000000000000000000000000000258169183910360001901610a4b9190611aee565b1115610a845760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b604482015260640161075a565b610aae817f000000000000000000000000000000000000000000000000000aa87bee538000611b01565b341061078f5761078f338261113b565b336001600160a01b03831603610ae75760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b5e848484610d61565b6001600160a01b0383163b15158015610b805750610b7e84848484611155565b155b15610b9e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610baf82610ccc565b610bcc57604051630a14c4b560e41b815260040160405180910390fd5b6000610bd6611241565b90508051600003610bf65760405180602001604052806000815250610c21565b80610c0084611250565b604051602001610c11929190611b18565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610c5e610f65565b6001600160a01b038116610cc35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161075a565b61078f81611351565b600081600111158015610ce0575060005482105b8015610544575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d6c82610fca565b80519091506000906001600160a01b0316336001600160a01b03161480610d9a57508151610d9a9033610c28565b80610db5575033610daa846105dc565b6001600160a01b0316145b905080610dd557604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e0a5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e3157604051633a954ecd60e21b815260040160405180910390fd5b610e416000848460000151610d05565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f2d57600054811015610f2d578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b0316600080516020611c4283398151915260405160405180910390a45b5050505050565b6008546001600160a01b03163314610fbf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075a565b565b61078f816113a3565b60408051606081018252600080825260208201819052918101919091528180600111158015610ffa575060005481105b1561112257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111205780516001600160a01b03161561106e579392505050565b60095b600019909201600081815260046020908152604091829020825160608101845290546001600160a01b03811680835267ffffffffffffffff600160a01b8304169383019390935260ff600160e01b90910416151592810192909252919390925090156110df57509392505050565b600019018061107157507f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b6109178282604051806020016040528060008152506114a7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061118a903390899088908890600401611b47565b6020604051808303816000875af19250505080156111c5575060408051601f3d908101601f191682019092526111c291810190611b84565b60015b611223573d8080156111f3576040519150601f19603f3d011682016040523d82523d6000602084013e6111f8565b606091505b50805160000361121b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461055990611969565b6060816000036112775750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112a1578061128b81611ba1565b915061129a9050600a83611bd0565b915061127b565b60008167ffffffffffffffff8111156112bc576112bc6117a9565b6040519080825280601f01601f1916602001820160405280156112e6576020820181803683370190505b5090505b8415611239576112fb600183611be4565b9150611308600a86611bf7565b611313906030611aee565b60f81b81838151811061132857611328611c0b565b60200101906001600160f81b031916908160001a90535061134a600a86611bd0565b94506112ea565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b806000036113c45760405163b562e8dd60e01b815260040160405180910390fd5b60008054906113d38383611aee565b90506113ff827f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198611c21565b60008054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b81806001019250827f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198016001600160a01b031660006001600160a01b0316600080516020611c4283398151915260405160405180910390a480820361142d578260008082825461149d9190611aee565b9091555050505050565b6106a883838360016000546001600160a01b0385166114d857604051622e076360e81b815260040160405180910390fd5b836000036114f95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115ab57506001600160a01b0387163b15155b15611621575b60405182906001600160a01b03891690600090600080516020611c42833981519152908290a46115ea6000888480600101955088611155565b611607576040516368d2bf6b60e11b815260040160405180910390fd5b8082036115b157826000541461161c57600080fd5b611654565b5b6040516001830192906001600160a01b03891690600090600080516020611c42833981519152908290a4808203611622575b50600055610f5e565b6001600160e01b03198116811461078f57600080fd5b60006020828403121561168557600080fd5b8135610c218161165d565b60005b838110156116ab578181015183820152602001611693565b50506000910152565b600081518084526116cc816020860160208601611690565b601f01601f19169290920160200192915050565b602081526000610c2160208301846116b4565b60006020828403121561170557600080fd5b5035919050565b80356001600160a01b038116811461172357600080fd5b919050565b6000806040838503121561173b57600080fd5b6117448361170c565b946020939093013593505050565b60008060006060848603121561176757600080fd5b6117708461170c565b925061177e6020850161170c565b9150604084013590509250925092565b6000602082840312156117a057600080fd5b610c218261170c565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156117da576117da6117a9565b604051601f8501601f19908116603f01168101908282118183101715611802576118026117a9565b8160405280935085815286868601111561181b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561184757600080fd5b813567ffffffffffffffff81111561185e57600080fd5b8201601f8101841361186f57600080fd5b611239848235602084016117bf565b6000806040838503121561189157600080fd5b61189a8361170c565b9150602083013580151581146118af57600080fd5b809150509250929050565b600080600080608085870312156118d057600080fd5b6118d98561170c565b93506118e76020860161170c565b925060408501359150606085013567ffffffffffffffff81111561190a57600080fd5b8501601f8101871361191b57600080fd5b61192a878235602084016117bf565b91505092959194509250565b6000806040838503121561194957600080fd5b6119528361170c565b91506119606020840161170c565b90509250929050565b600181811c9082168061197d57607f821691505b60208210810361199d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038281168282160390808211156119d9576119d96119a3565b5092915050565b601f8211156106a857600081815260208120601f850160051c81016020861015611a075750805b601f850160051c820191505b81811015611a2657828155600101611a13565b505050505050565b815167ffffffffffffffff811115611a4857611a486117a9565b611a5c81611a568454611969565b846119e0565b602080601f831160018114611a915760008415611a795750858301515b600019600386901b1c1916600185901b178555611a26565b600085815260208120601f198616915b82811015611ac057888601518255948401946001909101908401611aa1565b5085821015611ade5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610544576105446119a3565b8082028115828204841417610544576105446119a3565b60008351611b2a818460208801611690565b835190830190611b3e818360208801611690565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b7a908301846116b4565b9695505050505050565b600060208284031215611b9657600080fd5b8151610c218161165d565b600060018201611bb357611bb36119a3565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611bdf57611bdf611bba565b500490565b81810381811115610544576105446119a3565b600082611c0657611c06611bba565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038181168382160190808211156119d9576119d96119a356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122013bc2b9e97acd3c38c9ff11f512851c908ef584609dd2050512e45455655b33164736f6c63430008120033
Deployed Bytecode Sourcemap
48485:1632:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28417:305;;;;;;;;;;-1:-1:-1;28417:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28417:305:0;;;;;;;;32258:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33761:204::-;;;;;;;;;;-1:-1:-1;33761:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;33761:204:0;1533:203:1;33324:371:0;;;;;;;;;;-1:-1:-1;33324:371:0;;;;;:::i;:::-;;:::i;:::-;;27666:303;;;;;;;;;;-1:-1:-1;49348:1:0;27920:12;27710:7;27904:13;:28;-1:-1:-1;;27904:46:0;27666:303;;;2324:25:1;;;2312:2;2297:18;27666:303:0;2178:177:1;34618:170:0;;;;;;;;;;-1:-1:-1;34618:170:0;;;;;:::i;:::-;;:::i;49832:278::-;;;;;;;;;;;;;:::i;34859:185::-;;;;;;;;;;-1:-1:-1;34859:185:0;;;;;:::i;:::-;;:::i;49744:80::-;;;;;;;;;;-1:-1:-1;49744:80:0;;;;;:::i;:::-;;:::i;48532:96::-;;;;;;;;;;;;;:::i;32067:124::-;;;;;;;;;;-1:-1:-1;32067:124:0;;;;;:::i;:::-;;:::i;48637:48::-;;;;;;;;;;;;;;;28788:395;;;;;;;;;;-1:-1:-1;28788:395:0;;;;;:::i;:::-;;:::i;4604:87::-;;;;;;;;;;-1:-1:-1;4677:6:0;;-1:-1:-1;;;;;4677:6:0;4604:87;;32427:104;;;;;;;;;;;;;:::i;49153:86::-;;;;;;;;;;-1:-1:-1;49153:86:0;;;;;:::i;:::-;;:::i;49365:371::-;;;;;;:::i;:::-;;:::i;34037:279::-;;;;;;;;;;-1:-1:-1;34037:279:0;;;;;:::i;:::-;;:::i;35115:369::-;;;;;;;;;;-1:-1:-1;35115:369:0;;;;;:::i;:::-;;:::i;32602:318::-;;;;;;;;;;-1:-1:-1;32602:318:0;;;;;:::i;:::-;;:::i;48692:48::-;;;;;;;;;;;;;;;48747:39;;;;;;;;;;;;;;;;;;5307:10:1;5295:23;;;5277:42;;5265:2;5250:18;48747:39:0;5133:192:1;34387:164:0;;;;;;;;;;-1:-1:-1;34387:164:0;;;;;:::i;:::-;;:::i;5056:201::-;;;;;;;;;;-1:-1:-1;5056:201:0;;;;;:::i;:::-;;:::i;48793:37::-;;;;;;;;;;;;;;;28417:305;28519:4;-1:-1:-1;;;;;;28556:40:0;;-1:-1:-1;;;28556:40:0;;:105;;-1:-1:-1;;;;;;;28613:48:0;;-1:-1:-1;;;28613:48:0;28556:105;:158;;;-1:-1:-1;;;;;;;;;;17113:40:0;;;28678:36;28536:178;28417:305;-1:-1:-1;;28417:305:0:o;32258:100::-;32312:13;32345:5;32338:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32258:100;:::o;33761:204::-;33829:7;33854:16;33862:7;33854;:16::i;:::-;33849:64;;33879:34;;-1:-1:-1;;;33879:34:0;;;;;;;;;;;33849:64;-1:-1:-1;33933:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33933:24:0;;33761:204::o;33324:371::-;33397:13;33413:24;33429:7;33413:15;:24::i;:::-;33397:40;;33458:5;-1:-1:-1;;;;;33452:11:0;:2;-1:-1:-1;;;;;33452:11:0;;33448:48;;33472:24;;-1:-1:-1;;;33472:24:0;;;;;;;;;;;33448:48;3235:10;-1:-1:-1;;;;;33513:21:0;;;;;;:63;;-1:-1:-1;33539:37:0;33556:5;3235:10;34387:164;:::i;33539:37::-;33538:38;33513:63;33509:138;;;33600:35;;-1:-1:-1;;;33600:35:0;;;;;;;;;;;33509:138;33659:28;33668:2;33672:7;33681:5;33659:8;:28::i;:::-;33386:309;33324:371;;:::o;34618:170::-;34752:28;34762:4;34768:2;34772:7;34752:9;:28::i;49832:278::-;4490:13;:11;:13::i;:::-;50018:29:::1;::::0;49901:21:::1;::::0;49955:10:::1;::::0;49880:18:::1;::::0;49955:10;;49901:21;;49880:18;50018:29;49880:18;50018:29;49901:21;49955:10;50018:29:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50004:43;;;;;50066:7;50058:44;;;::::0;-1:-1:-1;;;50058:44:0;;6392:2:1;50058:44:0::1;::::0;::::1;6374:21:1::0;6431:2;6411:18;;;6404:30;6470:26;6450:18;;;6443:54;6514:18;;50058:44:0::1;;;;;;;;34859:185:::0;34997:39;35014:4;35020:2;35024:7;34997:39;;;;;;;;;;;;:16;:39::i;49744:80::-;4490:13;:11;:13::i;:::-;49802:14:::1;49809:6;49802;:14::i;:::-;49744:80:::0;:::o;48532:96::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32067:124::-;32131:7;32158:20;32170:7;32158:11;:20::i;:::-;:25;;32067:124;-1:-1:-1;;32067:124:0:o;28788:395::-;28852:7;-1:-1:-1;;;;;28876:19:0;;28872:60;;28904:28;;-1:-1:-1;;;28904:28:0;;;;;;;;;;;28872:60;-1:-1:-1;;;;;28949:19:0;;;;;;:12;:19;;;;;:27;;;:32;28945:108;;-1:-1:-1;;;;;;29013:19:0;;;;;:12;:19;;;;;:27;;;;28788:395::o;28945:108::-;29105:13;;29069:32;29094:6;29077:5;29069:32;:::i;:::-;-1:-1:-1;;;;;29069:49:0;;29065:90;;-1:-1:-1;29142:1:0;;28788:395;-1:-1:-1;28788:395:0:o;29065:90::-;-1:-1:-1;29174:1:0;;28788:395;-1:-1:-1;28788:395:0:o;32427:104::-;32483:13;32516:7;32509:14;;;;;:::i;49153:86::-;4490:13;:11;:13::i;:::-;49216:9:::1;:15;49228:3:::0;49216:9;:15:::1;:::i;:::-;;49153:86:::0;:::o;49365:371::-;48882:9;48895:10;48882:23;48874:66;;;;-1:-1:-1;;;48874:66:0;;9271:2:1;48874:66:0;;;9253:21:1;9310:2;9290:18;;;9283:30;9349:32;9329:18;;;9322:60;9399:18;;48874:66:0;9069:354:1;48874:66:0;49453:9:::1;49441;:21;49433:46;;;::::0;-1:-1:-1;;;49433:46:0;;9630:2:1;49433:46:0::1;::::0;::::1;9612:21:1::0;9669:2;9649:18;;;9642:30;-1:-1:-1;;;9688:18:1;;;9681:42;9740:18;;49433:46:0::1;9428:336:1::0;49433:46:0::1;49348:1:::0;27920:12;27710:7;27904:13;49494:35:::1;49520:9;49494:35;::::0;49510:6;;27904:28;-1:-1:-1;;27904:46:0;49494:22:::1;;;;:::i;:::-;:35;49490:239;;49348:1:::0;27920:12;27710:7;27904:13;49554:35:::1;49580:9;49554:35;::::0;49570:6;;27904:28;-1:-1:-1;;27904:46:0;49554:22:::1;;;;:::i;:::-;:35;;49546:56;;;::::0;-1:-1:-1;;;49546:56:0;;10101:2:1;49546:56:0::1;::::0;::::1;10083:21:1::0;10140:1;10120:18;;;10113:29;-1:-1:-1;;;10158:18:1;;;10151:38;10206:18;;49546:56:0::1;9899:331:1::0;49546:56:0::1;49634:18;49646:6:::0;49634:9:::1;:18;:::i;:::-;49621:9;:31;49617:101;;49673:29;49683:10;49695:6;49673:9;:29::i;34037:279::-:0;3235:10;-1:-1:-1;;;;;34128:24:0;;;34124:54;;34161:17;;-1:-1:-1;;;34161:17:0;;;;;;;;;;;34124:54;3235:10;34191:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34191:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34191:53:0;;;;;;;;;;34260:48;;540:41:1;;;34191:42:0;;3235:10;34260:48;;513:18:1;34260:48:0;;;;;;;34037:279;;:::o;35115:369::-;35282:28;35292:4;35298:2;35302:7;35282:9;:28::i;:::-;-1:-1:-1;;;;;35325:13:0;;7143:19;:23;;35325:76;;;;;35345:56;35376:4;35382:2;35386:7;35395:5;35345:30;:56::i;:::-;35344:57;35325:76;35321:156;;;35425:40;;-1:-1:-1;;;35425:40:0;;;;;;;;;;;35321:156;35115:369;;;;:::o;32602:318::-;32675:13;32706:16;32714:7;32706;:16::i;:::-;32701:59;;32731:29;;-1:-1:-1;;;32731:29:0;;;;;;;;;;;32701:59;32773:21;32797:10;:8;:10::i;:::-;32773:34;;32831:7;32825:21;32850:1;32825:26;:87;;;;;;;;;;;;;;;;;32878:7;32887:18;:7;:16;:18::i;:::-;32861:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32825:87;32818:94;32602:318;-1:-1:-1;;;32602:318:0:o;34387:164::-;-1:-1:-1;;;;;34508:25:0;;;34484:4;34508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34387:164::o;5056:201::-;4490:13;:11;:13::i;:::-;-1:-1:-1;;;;;5145:22:0;::::1;5137:73;;;::::0;-1:-1:-1;;;5137:73:0;;11111:2:1;5137:73:0::1;::::0;::::1;11093:21:1::0;11150:2;11130:18;;;11123:30;11189:34;11169:18;;;11162:62;-1:-1:-1;;;11240:18:1;;;11233:36;11286:19;;5137:73:0::1;10909:402:1::0;5137:73:0::1;5221:28;5240:8;5221:18;:28::i;35739:187::-:0;35796:4;35839:7;49348:1;35820:26;;:53;;;;;35860:13;;35850:7;:23;35820:53;:98;;;;-1:-1:-1;;35891:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35891:27:0;;;;35890:28;;35739:187::o;45469:196::-;45584:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45584:29:0;-1:-1:-1;;;;;45584:29:0;;;;;;;;;45629:28;;45584:24;;45629:28;;;;;;;45469:196;;;:::o;40971:2112::-;41086:35;41124:20;41136:7;41124:11;:20::i;:::-;41199:18;;41086:58;;-1:-1:-1;41157:22:0;;-1:-1:-1;;;;;41183:34:0;3235:10;-1:-1:-1;;;;;41183:34:0;;:101;;;-1:-1:-1;41251:18:0;;41234:50;;3235:10;34387:164;:::i;41234:50::-;41183:154;;;-1:-1:-1;3235:10:0;41301:20;41313:7;41301:11;:20::i;:::-;-1:-1:-1;;;;;41301:36:0;;41183:154;41157:181;;41356:17;41351:66;;41382:35;;-1:-1:-1;;;41382:35:0;;;;;;;;;;;41351:66;41454:4;-1:-1:-1;;;;;41432:26:0;:13;:18;;;-1:-1:-1;;;;;41432:26:0;;41428:67;;41467:28;;-1:-1:-1;;;41467:28:0;;;;;;;;;;;41428:67;-1:-1:-1;;;;;41510:16:0;;41506:52;;41535:23;;-1:-1:-1;;;41535:23:0;;;;;;;;;;;41506:52;41679:49;41696:1;41700:7;41709:13;:18;;;41679:8;:49::i;:::-;-1:-1:-1;;;;;42024:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42024:31:0;;;;;;;-1:-1:-1;;42024:31:0;;;;;;;42070:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42070:29:0;;;;;;;;;;;42116:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42161:61:0;;;;-1:-1:-1;;;42206:15:0;42161:61;;;;;;;;;;;42496:11;;;42526:24;;;;;:29;42496:11;;42526:29;42522:445;;42751:13;;42737:11;:27;42733:219;;;42821:18;;;42789:24;;;:11;:24;;;;;;;;:50;;42904:28;;;;42862:70;;-1:-1:-1;;;42862:70:0;-1:-1:-1;;;;;;42862:70:0;;;-1:-1:-1;;;;;42789:50:0;;;42862:70;;;;;;;42733:219;41999:979;43014:7;43010:2;-1:-1:-1;;;;;42995:27:0;43004:4;-1:-1:-1;;;;;42995:27:0;-1:-1:-1;;;;;;;;;;;42995:27:0;;;;;;;;;43033:42;41075:2008;;40971:2112;;;:::o;4769:132::-;4677:6;;-1:-1:-1;;;;;4677:6:0;3235:10;4833:23;4825:68;;;;-1:-1:-1;;;4825:68:0;;11518:2:1;4825:68:0;;;11500:21:1;;;11537:18;;;11530:30;11596:34;11576:18;;;11569:62;11648:18;;4825:68:0;11316:356:1;4825:68:0;4769:132::o;36572:113::-;36654:19;36664:8;36654:9;:19::i;30718:1287::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30828:7:0;;49348:1;30877:23;;:47;;;;;30911:13;;30904:4;:20;30877:47;30873:1065;;;30945:31;30979:17;;;:11;:17;;;;;;;;;30945:51;;;;;;;;;-1:-1:-1;;;;;30945:51:0;;;;-1:-1:-1;;;30945:51:0;;;;;;;;;;;-1:-1:-1;;;30945:51:0;;;;;;;;;;;;;;31015:904;;31065:14;;-1:-1:-1;;;;;31065:28:0;;31061:101;;31129:9;30718:1287;-1:-1:-1;;;30718:1287:0:o;31061:101::-;31482:1;31506:270;-1:-1:-1;;31535:6:0;;;31580:17;;;;:11;:17;;;;;;;;;31568:29;;;;;;;;;-1:-1:-1;;;;;31568:29:0;;;;;;-1:-1:-1;;;31568:29:0;;;;;;;;;;;-1:-1:-1;;;31568:29:0;;;;;;;;;;;;;31535:6;;31568:29;;-1:-1:-1;;31628:28:0;31624:109;;-1:-1:-1;31696:9:0;30718:1287;-1:-1:-1;;;30718:1287:0:o;31624:109::-;-1:-1:-1;;31763:7:0;:11;31506:270;;-1:-1:-1;31833:6:0;31825:34;;;;-1:-1:-1;;;;;31800:60:0;;;-1:-1:-1;31800:60:0;;:9;-1:-1:-1;30718:1287:0:o;31015:904::-;30926:1012;30873:1065;31966:31;;-1:-1:-1;;;31966:31:0;;;;;;;;;;;35934:104;36003:27;36013:2;36017:8;36003:27;;;;;;;;;;;;:9;:27::i;46157:667::-;46341:72;;-1:-1:-1;;;46341:72:0;;46320:4;;-1:-1:-1;;;;;46341:36:0;;;;;:72;;3235:10;;46392:4;;46398:7;;46407:5;;46341:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46341:72:0;;;;;;;;-1:-1:-1;;46341:72:0;;;;;;;;;;;;:::i;:::-;;;46337:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46575:6;:13;46592:1;46575:18;46571:235;;46621:40;;-1:-1:-1;;;46621:40:0;;;;;;;;;;;46571:235;46764:6;46758:13;46749:6;46745:2;46741:15;46734:38;46337:480;-1:-1:-1;;;;;;46460:55:0;-1:-1:-1;;;46460:55:0;;-1:-1:-1;46337:480:0;46157:667;;;;;;:::o;49034:111::-;49095:13;49128:9;49121:16;;;;;:::i;409:723::-;465:13;686:5;695:1;686:10;682:53;;-1:-1:-1;;713:10:0;;;;;;;;;;;;-1:-1:-1;;;713:10:0;;;;;409:723::o;682:53::-;760:5;745:12;801:78;808:9;;801:78;;834:8;;;;:::i;:::-;;-1:-1:-1;857:10:0;;-1:-1:-1;865:2:0;857:10;;:::i;:::-;;;801:78;;;889:19;921:6;911:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;911:17:0;;889:39;;939:154;946:10;;939:154;;973:11;983:1;973:11;;:::i;:::-;;-1:-1:-1;1042:10:0;1050:2;1042:5;:10;:::i;:::-;1029:24;;:2;:24;:::i;:::-;1016:39;;999:6;1006;999:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;999:56:0;;;;;;;;-1:-1:-1;1070:11:0;1079:2;1070:11;;:::i;:::-;;;939:154;;5417:191;5510:6;;;-1:-1:-1;;;;;5527:17:0;;;-1:-1:-1;;;;;;5527:17:0;;;;;;;5560:40;;5510:6;;;5527:17;5510:6;;5560:40;;5491:16;;5560:40;5480:128;5417:191;:::o;40110:607::-;40199:8;40211:1;40199:13;40195:44;;40221:18;;-1:-1:-1;;;40221:18:0;;;;;;;;;;;40195:44;40256:20;40279:13;;;40321:23;40336:8;40279:13;40321:23;:::i;:::-;40307:37;-1:-1:-1;40401:39:0;40427:12;40409:6;40401:39;:::i;:::-;40359:26;40371:13;;40359:26;;:11;:26;;;;;:82;;-1:-1:-1;;;;;;40359:82:0;-1:-1:-1;;;;;40359:82:0;;;;;;;;;;40487:166;40589:14;;;;;;40573:12;40555:6;40547:39;-1:-1:-1;;;;;40518:86:0;40535:1;-1:-1:-1;;;;;40518:86:0;-1:-1:-1;;;;;;;;;;;40518:86:0;;;;;;;;;40648:3;40632:12;:19;40487:166;;40699:8;40682:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;40110:607:0:o;36401:163::-;36524:32;36530:2;36534:8;36544:5;36551:4;37084:20;37107:13;-1:-1:-1;;;;;37135:16:0;;37131:48;;37160:19;;-1:-1:-1;;;37160:19:0;;;;;;;;;;;37131:48;37194:8;37206:1;37194:13;37190:44;;37216:18;;-1:-1:-1;;;37216:18:0;;;;;;;;;;;37190:44;-1:-1:-1;;;;;37585:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37644:49:0;;37585:44;;;;;;;;37644:49;;;;-1:-1:-1;;37585:44:0;;;;;;37644:49;;;;;;;;;;;;;;;;37710:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37760:66:0;;;;-1:-1:-1;;;37810:15:0;37760:66;;;;;;;;;;37710:25;37907:23;;;37951:4;:23;;;;-1:-1:-1;;;;;;37959:13:0;;7143:19;:23;;37959:15;37947:641;;;37995:314;38026:38;;38051:12;;-1:-1:-1;;;;;38026:38:0;;;38043:1;;-1:-1:-1;;;;;;;;;;;38026:38:0;38043:1;;38026:38;38092:69;38131:1;38135:2;38139:14;;;;;;38155:5;38092:30;:69::i;:::-;38087:174;;38197:40;;-1:-1:-1;;;38197:40:0;;;;;;;;;;;38087:174;38304:3;38288:12;:19;37995:314;;38390:12;38373:13;;:29;38369:43;;38404:8;;;38369:43;37947:641;;;38453:120;38484:40;;38509:14;;;;;-1:-1:-1;;;;;38484:40:0;;;38501:1;;-1:-1:-1;;;;;;;;;;;38484:40:0;38501:1;;38484:40;38568:3;38552:12;:19;38453:120;;37947:641;-1:-1:-1;38602:13:0;:28;38652:60;35115: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;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:127::-;2945:10;2940:3;2936:20;2933:1;2926:31;2976:4;2973:1;2966:15;3000:4;2997:1;2990:15;3016:632;3081:5;3111:18;3152:2;3144:6;3141:14;3138:40;;;3158:18;;:::i;:::-;3233:2;3227:9;3201:2;3287:15;;-1:-1:-1;;3283:24:1;;;3309:2;3279:33;3275:42;3263:55;;;3333:18;;;3353:22;;;3330:46;3327:72;;;3379:18;;:::i;:::-;3419:10;3415:2;3408:22;3448:6;3439:15;;3478:6;3470;3463:22;3518:3;3509:6;3504:3;3500:16;3497:25;3494:45;;;3535:1;3532;3525:12;3494:45;3585:6;3580:3;3573:4;3565:6;3561:17;3548:44;3640:1;3633:4;3624:6;3616;3612:19;3608:30;3601:41;;;;3016:632;;;;;:::o;3653:451::-;3722:6;3775:2;3763:9;3754:7;3750:23;3746:32;3743:52;;;3791:1;3788;3781:12;3743:52;3831:9;3818:23;3864:18;3856:6;3853:30;3850:50;;;3896:1;3893;3886:12;3850:50;3919:22;;3972:4;3964:13;;3960:27;-1:-1:-1;3950:55:1;;4001:1;3998;3991:12;3950:55;4024:74;4090:7;4085:2;4072:16;4067:2;4063;4059:11;4024:74;:::i;4109:347::-;4174:6;4182;4235:2;4223:9;4214:7;4210:23;4206:32;4203:52;;;4251:1;4248;4241:12;4203:52;4274:29;4293:9;4274:29;:::i;:::-;4264:39;;4353:2;4342:9;4338:18;4325:32;4400:5;4393:13;4386:21;4379:5;4376:32;4366:60;;4422:1;4419;4412:12;4366:60;4445:5;4435:15;;;4109:347;;;;;:::o;4461:667::-;4556:6;4564;4572;4580;4633:3;4621:9;4612:7;4608:23;4604:33;4601:53;;;4650:1;4647;4640:12;4601:53;4673:29;4692:9;4673:29;:::i;:::-;4663:39;;4721:38;4755:2;4744:9;4740:18;4721:38;:::i;:::-;4711:48;;4806:2;4795:9;4791:18;4778:32;4768:42;;4861:2;4850:9;4846:18;4833:32;4888:18;4880:6;4877:30;4874:50;;;4920:1;4917;4910:12;4874:50;4943:22;;4996:4;4988:13;;4984:27;-1:-1:-1;4974:55:1;;5025:1;5022;5015:12;4974:55;5048:74;5114:7;5109:2;5096:16;5091:2;5087;5083:11;5048:74;:::i;:::-;5038:84;;;4461:667;;;;;;;:::o;5330:260::-;5398:6;5406;5459:2;5447:9;5438:7;5434:23;5430:32;5427:52;;;5475:1;5472;5465:12;5427:52;5498:29;5517:9;5498:29;:::i;:::-;5488:39;;5546:38;5580:2;5569:9;5565:18;5546:38;:::i;:::-;5536:48;;5330:260;;;;;:::o;5595:380::-;5674:1;5670:12;;;;5717;;;5738:61;;5792:4;5784:6;5780:17;5770:27;;5738:61;5845:2;5837:6;5834:14;5814:18;5811:38;5808:161;;5891:10;5886:3;5882:20;5879:1;5872:31;5926:4;5923:1;5916:15;5954:4;5951:1;5944:15;5808:161;;5595:380;;;:::o;6543:127::-;6604:10;6599:3;6595:20;6592:1;6585:31;6635:4;6632:1;6625:15;6659:4;6656:1;6649:15;6675:185;-1:-1:-1;;;;;6796:10:1;;;6784;;;6780:27;;6819:12;;;6816:38;;;6834:18;;:::i;:::-;6816:38;6675:185;;;;:::o;6991:545::-;7093:2;7088:3;7085:11;7082:448;;;7129:1;7154:5;7150:2;7143:17;7199:4;7195:2;7185:19;7269:2;7257:10;7253:19;7250:1;7246:27;7240:4;7236:38;7305:4;7293:10;7290:20;7287:47;;;-1:-1:-1;7328:4:1;7287:47;7383:2;7378:3;7374:12;7371:1;7367:20;7361:4;7357:31;7347:41;;7438:82;7456:2;7449:5;7446:13;7438:82;;;7501:17;;;7482:1;7471:13;7438:82;;;7442:3;;;6991:545;;;:::o;7712:1352::-;7838:3;7832:10;7865:18;7857:6;7854:30;7851:56;;;7887:18;;:::i;:::-;7916:97;8006:6;7966:38;7998:4;7992:11;7966:38;:::i;:::-;7960:4;7916:97;:::i;:::-;8068:4;;8132:2;8121:14;;8149:1;8144:663;;;;8851:1;8868:6;8865:89;;;-1:-1:-1;8920:19:1;;;8914:26;8865:89;-1:-1:-1;;7669:1:1;7665:11;;;7661:24;7657:29;7647:40;7693:1;7689:11;;;7644:57;8967:81;;8114:944;;8144:663;6938:1;6931:14;;;6975:4;6962:18;;-1:-1:-1;;8180:20:1;;;8298:236;8312:7;8309:1;8306:14;8298:236;;;8401:19;;;8395:26;8380:42;;8493:27;;;;8461:1;8449:14;;;;8328:19;;8298:236;;;8302:3;8562:6;8553:7;8550:19;8547:201;;;8623:19;;;8617:26;-1:-1:-1;;8706:1:1;8702:14;;;8718:3;8698:24;8694:37;8690:42;8675:58;8660:74;;8547:201;-1:-1:-1;;;;;8794:1:1;8778:14;;;8774:22;8761:36;;-1:-1:-1;7712:1352:1:o;9769:125::-;9834:9;;;9855:10;;;9852:36;;;9868:18;;:::i;10235:168::-;10308:9;;;10339;;10356:15;;;10350:22;;10336:37;10326:71;;10377:18;;:::i;10408:496::-;10587:3;10625:6;10619:13;10641:66;10700:6;10695:3;10688:4;10680:6;10676:17;10641:66;:::i;:::-;10770:13;;10729:16;;;;10792:70;10770:13;10729:16;10839:4;10827:17;;10792:70;:::i;:::-;10878:20;;10408:496;-1:-1:-1;;;;10408:496:1:o;11677:489::-;-1:-1:-1;;;;;11946:15:1;;;11928:34;;11998:15;;11993:2;11978:18;;11971:43;12045:2;12030:18;;12023:34;;;12093:3;12088:2;12073:18;;12066:31;;;11871:4;;12114:46;;12140:19;;12132:6;12114:46;:::i;:::-;12106:54;11677:489;-1:-1:-1;;;;;;11677:489:1:o;12171:249::-;12240:6;12293:2;12281:9;12272:7;12268:23;12264:32;12261:52;;;12309:1;12306;12299:12;12261:52;12341:9;12335:16;12360:30;12384:5;12360:30;:::i;12425:135::-;12464:3;12485:17;;;12482:43;;12505:18;;:::i;:::-;-1:-1:-1;12552:1:1;12541:13;;12425:135::o;12565:127::-;12626:10;12621:3;12617:20;12614:1;12607:31;12657:4;12654:1;12647:15;12681:4;12678:1;12671:15;12697:120;12737:1;12763;12753:35;;12768:18;;:::i;:::-;-1:-1:-1;12802:9:1;;12697:120::o;12822:128::-;12889:9;;;12910:11;;;12907:37;;;12924:18;;:::i;12955:112::-;12987:1;13013;13003:35;;13018:18;;:::i;:::-;-1:-1:-1;13052:9:1;;12955:112::o;13072:127::-;13133:10;13128:3;13124:20;13121:1;13114:31;13164:4;13161:1;13154:15;13188:4;13185:1;13178:15;13204:182;-1:-1:-1;;;;;13311:10:1;;;13323;;;13307:27;;13346:11;;;13343:37;;;13360:18;;:::i
Swarm Source
ipfs://13bc2b9e97acd3c38c9ff11f512851c908ef584609dd2050512e45455655b331
Loading...
Loading
Loading...
Loading
[ 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.