Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
10,000 NOUNBIRDS
Holders
3,827
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NOUNBIRDSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NOUNBIRDS
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-21 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } } // 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 v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (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 `IERC721.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 v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // 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: https://github.com/chiru-labs/ERC721A/blob/v3.1.0/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contract.sol pragma solidity 0.8.13; contract NOUNBIRDS is ERC721A, Ownable { uint16 public constant MAX_SUPPLY = 10000; uint8 public constant MAX_PER_WALLET = 3; bool private revealed = false; string private baseUri = "https://gateway.pinata.cloud/ipfs/QmQFFP5qiJTRQUFs5jby5Ff79U9XRftwE4wmXerVmNdg61/"; uint96 private royaltyBasisPoints = 750; constructor() ERC721A("Nounbirds", "NOUNBIRDS") {} function soldOut() external view returns (bool) { return totalSupply() == MAX_SUPPLY; } function numberMinted(address owner) external view returns (uint256) { return _numberMinted(owner); } function mint(uint256 _quantity) external { require(_quantity > 0, "INCORRECT_QUANTITY"); require(_numberMinted(msg.sender) + _quantity <= MAX_PER_WALLET, "INCORRECT_QUANTITY"); require(totalSupply() + _quantity <= MAX_SUPPLY, "SALE_MAXED"); _safeMint(msg.sender, _quantity); } function devMint(uint256 _quantity) external onlyOwner { require(_quantity > 0, "INCORRECT_QUANTITY"); require(totalSupply() + _quantity <= MAX_SUPPLY, "SALE_MAXED"); _safeMint(msg.sender, _quantity); } function _startTokenId() internal view virtual override returns (uint256) { return 0; } function setBaseUri(string calldata _baseUri) external onlyOwner { baseUri = _baseUri; } function reveal(string calldata _baseUri) external onlyOwner { revealed = true; baseUri = _baseUri; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory filename = revealed ? Strings.toString(tokenId) : "hidden"; return bytes(baseUri).length != 0 ? string(abi.encodePacked(baseUri, filename, ".json")) : ''; } function setRoyalty(uint96 _royaltyBasisPoints) external onlyOwner { royaltyBasisPoints = _royaltyBasisPoints; } function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount) { require(_exists(_tokenId), "Cannot query non-existent token"); return (owner(), (_salePrice * royaltyBasisPoints) / 10000); } function transferFunds() external onlyOwner { payable(owner()).transfer(address(this).balance); } }
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":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"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":"_quantity","type":"uint256"}],"name":"devMint","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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"_royaltyBasisPoints","type":"uint96"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6008805460ff60a01b19169055610100604052605160808181529062001e4160a0398051620000379160099160209091019062000136565b50600a80546001600160601b0319166102ee1790553480156200005957600080fd5b50604051806040016040528060098152602001684e6f756e626972647360b81b815250604051806040016040528060098152602001684e4f554e424952445360b81b8152508160029080519060200190620000b692919062000136565b508051620000cc90600390602084019062000136565b50506000805550620000de33620000e4565b62000218565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014490620001dc565b90600052602060002090601f016020900481019282620001685760008555620001b3565b82601f106200018357805160ff1916838001178555620001b3565b82800160010185558215620001b3579182015b82811115620001b357825182559160200191906001019062000196565b50620001c1929150620001c5565b5090565b5b80821115620001c15760008155600101620001c6565b600181811c90821680620001f157607f821691505b6020821081036200021257634e487b7160e01b600052602260045260246000fd5b50919050565b611c1980620002286000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a22cb46511610097578063cac9266911610071578063cac92669146103c6578063dc33e681146103d9578063e985e9c5146103ec578063f2fde38b1461042857600080fd5b8063a22cb4651461038d578063b88d4fde146103a0578063c87b56dd146103b357600080fd5b80638da5cb5b116100d35780638da5cb5b1461034e57806395d89b411461035f578063a0712d6814610367578063a0bcfc7f1461037a57600080fd5b806370a082311461032b578063715018a61461033e578063893da6c91461034657600080fd5b80632a55205a116101665780633c68eb81116101405780633c68eb81146102ea57806342842e0e146102f25780634c261247146103055780636352211e1461031857600080fd5b80632a55205a1461028957806332cb6b0c146102bb578063375a069a146102d757600080fd5b8063095ea7b3116101a2578063095ea7b3146102315780630f2cdd6c1461024657806318160ddd1461026057806323b872dd1461027657600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611628565b61043b565b60405190151581526020015b60405180910390f35b6101f961048d565b6040516101e8919061169d565b6102196102143660046116b0565b61051f565b6040516001600160a01b0390911681526020016101e8565b61024461023f3660046116e5565b610563565b005b61024e600381565b60405160ff90911681526020016101e8565b600154600054035b6040519081526020016101e8565b61024461028436600461170f565b6105f0565b61029c61029736600461174b565b6105fb565b604080516001600160a01b0390931683526020830191909152016101e8565b6102c461271081565b60405161ffff90911681526020016101e8565b6102446102e53660046116b0565b610698565b610244610788565b61024461030036600461170f565b610809565b61024461031336600461176d565b610824565b6102196103263660046116b0565b61088b565b6102686103393660046117df565b61089d565b6102446108ec565b6101dc610940565b6008546001600160a01b0316610219565b6101f9610958565b6102446103753660046116b0565b610967565b61024461038836600461176d565b610a24565b61024461039b3660046117fa565b610a78565b6102446103ae36600461184c565b610b0d565b6101f96103c13660046116b0565b610b5e565b6102446103d4366004611928565b610c1f565b6102686103e73660046117df565b610c93565b6101dc6103fa366004611956565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102446104363660046117df565b610cc7565b60006001600160e01b031982166380ac58cd60e01b148061046c57506001600160e01b03198216635b5e139f60e01b145b8061048757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461049c90611989565b80601f01602080910402602001604051908101604052809291908181526020018280546104c890611989565b80156105155780601f106104ea57610100808354040283529160200191610515565b820191906000526020600020905b8154815290600101906020018083116104f857829003601f168201915b5050505050905090565b600061052a82610d7d565b610547576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061056e8261088b565b9050806001600160a01b0316836001600160a01b0316036105a25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105c257506105c081336103fa565b155b156105e0576040516367d9dca160e11b815260040160405180910390fd5b6105eb838383610da8565b505050565b6105eb838383610e11565b60008061060784610d7d565b6106585760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b6008546001600160a01b0316600a5461271090610683906bffffffffffffffffffffffff16866119d9565b61068d9190611a0e565b915091509250929050565b6008546001600160a01b031633146106e05760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b600081116107255760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b604482015260640161064f565b612710816107366001546000540390565b6107409190611a22565b111561077b5760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b604482015260640161064f565b6107853382611001565b50565b6008546001600160a01b031633146107d05760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610785573d6000803e3d6000fd5b6105eb83838360405180602001604052806000815250610b0d565b6008546001600160a01b0316331461086c5760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b6008805460ff60a01b1916600160a01b1790556105eb60098383611579565b60006108968261101f565b5192915050565b60006001600160a01b0382166108c6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109345760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b61093e600061113b565b565b60006127106109526001546000540390565b14905090565b60606003805461049c90611989565b600081116109ac5760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b604482015260640161064f565b33600090815260056020526040902054600390829068010000000000000000900467ffffffffffffffff166109e19190611a22565b11156107255760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b604482015260640161064f565b6008546001600160a01b03163314610a6c5760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b6105eb60098383611579565b336001600160a01b03831603610aa15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b18848484610e11565b6001600160a01b0383163b15158015610b3a5750610b388484848461119a565b155b15610b58576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b6982610d7d565b610b8657604051630a14c4b560e41b815260040160405180910390fd5b600854600090600160a01b900460ff16610bbe57604051806040016040528060068152602001653434b23232b760d11b815250610bc7565b610bc783611286565b905060098054610bd690611989565b9050600003610bf45760405180602001604052806000815250610c18565b600981604051602001610c08929190611a56565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610c675760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b600a80546bffffffffffffffffffffffff19166bffffffffffffffffffffffff92909216919091179055565b6001600160a01b03811660009081526005602052604081205468010000000000000000900467ffffffffffffffff16610487565b6008546001600160a01b03163314610d0f5760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b6001600160a01b038116610d745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064f565b6107858161113b565b6000805482108015610487575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e1c8261101f565b9050836001600160a01b031681600001516001600160a01b031614610e535760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e715750610e7185336103fa565b80610e8c575033610e818461051f565b6001600160a01b0316145b905080610eac57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ed357604051633a954ecd60e21b815260040160405180910390fd5b610edf60008487610da8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610fb5576000548214610fb5578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61101b82826040518060200160405280600081525061139f565b5050565b60408051606081018252600080825260208201819052918101919091528160005481101561112257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111205780516001600160a01b0316156110b6579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561111b579392505050565b6110b6565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111cf903390899088908890600401611b10565b6020604051808303816000875af192505050801561120a575060408051601f3d908101601f1916820190925261120791810190611b4c565b60015b611268573d808015611238576040519150601f19603f3d011682016040523d82523d6000602084013e61123d565b606091505b508051600003611260576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036112ad5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112d757806112c181611b69565b91506112d09050600a83611a0e565b91506112b1565b60008167ffffffffffffffff8111156112f2576112f2611836565b6040519080825280601f01601f19166020018201604052801561131c576020820181803683370190505b5090505b841561127e57611331600183611b82565b915061133e600a86611b99565b611349906030611a22565b60f81b81838151811061135e5761135e611bad565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611398600a86611a0e565b9450611320565b6105eb83838360016000546001600160a01b0385166113d057604051622e076360e81b815260040160405180910390fd5b836000036113f15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156114a357506001600160a01b0387163b15155b1561152b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114f4600088848060010195508861119a565b611511576040516368d2bf6b60e11b815260040160405180910390fd5b8082036114a957826000541461152657600080fd5b611570565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361152c575b50600055610ffa565b82805461158590611989565b90600052602060002090601f0160209004810192826115a757600085556115ed565b82601f106115c05782800160ff198235161785556115ed565b828001600101855582156115ed579182015b828111156115ed5782358255916020019190600101906115d2565b506115f99291506115fd565b5090565b5b808211156115f957600081556001016115fe565b6001600160e01b03198116811461078557600080fd5b60006020828403121561163a57600080fd5b8135610c1881611612565b60005b83811015611660578181015183820152602001611648565b83811115610b585750506000910152565b60008151808452611689816020860160208601611645565b601f01601f19169290920160200192915050565b602081526000610c186020830184611671565b6000602082840312156116c257600080fd5b5035919050565b80356001600160a01b03811681146116e057600080fd5b919050565b600080604083850312156116f857600080fd5b611701836116c9565b946020939093013593505050565b60008060006060848603121561172457600080fd5b61172d846116c9565b925061173b602085016116c9565b9150604084013590509250925092565b6000806040838503121561175e57600080fd5b50508035926020909101359150565b6000806020838503121561178057600080fd5b823567ffffffffffffffff8082111561179857600080fd5b818501915085601f8301126117ac57600080fd5b8135818111156117bb57600080fd5b8660208285010111156117cd57600080fd5b60209290920196919550909350505050565b6000602082840312156117f157600080fd5b610c18826116c9565b6000806040838503121561180d57600080fd5b611816836116c9565b91506020830135801515811461182b57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561186257600080fd5b61186b856116c9565b9350611879602086016116c9565b925060408501359150606085013567ffffffffffffffff8082111561189d57600080fd5b818701915087601f8301126118b157600080fd5b8135818111156118c3576118c3611836565b604051601f8201601f19908116603f011681019083821181831017156118eb576118eb611836565b816040528281528a602084870101111561190457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60006020828403121561193a57600080fd5b81356bffffffffffffffffffffffff81168114610c1857600080fd5b6000806040838503121561196957600080fd5b611972836116c9565b9150611980602084016116c9565b90509250929050565b600181811c9082168061199d57607f821691505b6020821081036119bd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156119f3576119f36119c3565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611a1d57611a1d6119f8565b500490565b60008219821115611a3557611a356119c3565b500190565b60008151611a4c818560208601611645565b9290920192915050565b600080845481600182811c915080831680611a7257607f831692505b60208084108203611a9157634e487b7160e01b86526022600452602486fd5b818015611aa55760018114611ab657611ae3565b60ff19861689528489019650611ae3565b60008b81526020902060005b86811015611adb5781548b820152908501908301611ac2565b505084890196505b505050505050611b07611af68286611a3a565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611b426080830184611671565b9695505050505050565b600060208284031215611b5e57600080fd5b8151610c1881611612565b600060018201611b7b57611b7b6119c3565b5060010190565b600082821015611b9457611b946119c3565b500390565b600082611ba857611ba86119f8565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220f7eb256788757bf3d4c7b3ebfc3329d62514dd398e2bcb0084c5ffcfa6d5b18364736f6c634300080d003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d514646503571694a545251554673356a62793546663739553958526674774534776d586572566d4e646736312f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a22cb46511610097578063cac9266911610071578063cac92669146103c6578063dc33e681146103d9578063e985e9c5146103ec578063f2fde38b1461042857600080fd5b8063a22cb4651461038d578063b88d4fde146103a0578063c87b56dd146103b357600080fd5b80638da5cb5b116100d35780638da5cb5b1461034e57806395d89b411461035f578063a0712d6814610367578063a0bcfc7f1461037a57600080fd5b806370a082311461032b578063715018a61461033e578063893da6c91461034657600080fd5b80632a55205a116101665780633c68eb81116101405780633c68eb81146102ea57806342842e0e146102f25780634c261247146103055780636352211e1461031857600080fd5b80632a55205a1461028957806332cb6b0c146102bb578063375a069a146102d757600080fd5b8063095ea7b3116101a2578063095ea7b3146102315780630f2cdd6c1461024657806318160ddd1461026057806323b872dd1461027657600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611628565b61043b565b60405190151581526020015b60405180910390f35b6101f961048d565b6040516101e8919061169d565b6102196102143660046116b0565b61051f565b6040516001600160a01b0390911681526020016101e8565b61024461023f3660046116e5565b610563565b005b61024e600381565b60405160ff90911681526020016101e8565b600154600054035b6040519081526020016101e8565b61024461028436600461170f565b6105f0565b61029c61029736600461174b565b6105fb565b604080516001600160a01b0390931683526020830191909152016101e8565b6102c461271081565b60405161ffff90911681526020016101e8565b6102446102e53660046116b0565b610698565b610244610788565b61024461030036600461170f565b610809565b61024461031336600461176d565b610824565b6102196103263660046116b0565b61088b565b6102686103393660046117df565b61089d565b6102446108ec565b6101dc610940565b6008546001600160a01b0316610219565b6101f9610958565b6102446103753660046116b0565b610967565b61024461038836600461176d565b610a24565b61024461039b3660046117fa565b610a78565b6102446103ae36600461184c565b610b0d565b6101f96103c13660046116b0565b610b5e565b6102446103d4366004611928565b610c1f565b6102686103e73660046117df565b610c93565b6101dc6103fa366004611956565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102446104363660046117df565b610cc7565b60006001600160e01b031982166380ac58cd60e01b148061046c57506001600160e01b03198216635b5e139f60e01b145b8061048757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461049c90611989565b80601f01602080910402602001604051908101604052809291908181526020018280546104c890611989565b80156105155780601f106104ea57610100808354040283529160200191610515565b820191906000526020600020905b8154815290600101906020018083116104f857829003601f168201915b5050505050905090565b600061052a82610d7d565b610547576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061056e8261088b565b9050806001600160a01b0316836001600160a01b0316036105a25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105c257506105c081336103fa565b155b156105e0576040516367d9dca160e11b815260040160405180910390fd5b6105eb838383610da8565b505050565b6105eb838383610e11565b60008061060784610d7d565b6106585760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b6008546001600160a01b0316600a5461271090610683906bffffffffffffffffffffffff16866119d9565b61068d9190611a0e565b915091509250929050565b6008546001600160a01b031633146106e05760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b600081116107255760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b604482015260640161064f565b612710816107366001546000540390565b6107409190611a22565b111561077b5760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b604482015260640161064f565b6107853382611001565b50565b6008546001600160a01b031633146107d05760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610785573d6000803e3d6000fd5b6105eb83838360405180602001604052806000815250610b0d565b6008546001600160a01b0316331461086c5760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b6008805460ff60a01b1916600160a01b1790556105eb60098383611579565b60006108968261101f565b5192915050565b60006001600160a01b0382166108c6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109345760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b61093e600061113b565b565b60006127106109526001546000540390565b14905090565b60606003805461049c90611989565b600081116109ac5760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b604482015260640161064f565b33600090815260056020526040902054600390829068010000000000000000900467ffffffffffffffff166109e19190611a22565b11156107255760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b604482015260640161064f565b6008546001600160a01b03163314610a6c5760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b6105eb60098383611579565b336001600160a01b03831603610aa15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b18848484610e11565b6001600160a01b0383163b15158015610b3a5750610b388484848461119a565b155b15610b58576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b6982610d7d565b610b8657604051630a14c4b560e41b815260040160405180910390fd5b600854600090600160a01b900460ff16610bbe57604051806040016040528060068152602001653434b23232b760d11b815250610bc7565b610bc783611286565b905060098054610bd690611989565b9050600003610bf45760405180602001604052806000815250610c18565b600981604051602001610c08929190611a56565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610c675760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b600a80546bffffffffffffffffffffffff19166bffffffffffffffffffffffff92909216919091179055565b6001600160a01b03811660009081526005602052604081205468010000000000000000900467ffffffffffffffff16610487565b6008546001600160a01b03163314610d0f5760405162461bcd60e51b81526020600482018190526024820152600080516020611bc4833981519152604482015260640161064f565b6001600160a01b038116610d745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064f565b6107858161113b565b6000805482108015610487575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e1c8261101f565b9050836001600160a01b031681600001516001600160a01b031614610e535760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e715750610e7185336103fa565b80610e8c575033610e818461051f565b6001600160a01b0316145b905080610eac57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ed357604051633a954ecd60e21b815260040160405180910390fd5b610edf60008487610da8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610fb5576000548214610fb5578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61101b82826040518060200160405280600081525061139f565b5050565b60408051606081018252600080825260208201819052918101919091528160005481101561112257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111205780516001600160a01b0316156110b6579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561111b579392505050565b6110b6565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111cf903390899088908890600401611b10565b6020604051808303816000875af192505050801561120a575060408051601f3d908101601f1916820190925261120791810190611b4c565b60015b611268573d808015611238576040519150601f19603f3d011682016040523d82523d6000602084013e61123d565b606091505b508051600003611260576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036112ad5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112d757806112c181611b69565b91506112d09050600a83611a0e565b91506112b1565b60008167ffffffffffffffff8111156112f2576112f2611836565b6040519080825280601f01601f19166020018201604052801561131c576020820181803683370190505b5090505b841561127e57611331600183611b82565b915061133e600a86611b99565b611349906030611a22565b60f81b81838151811061135e5761135e611bad565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611398600a86611a0e565b9450611320565b6105eb83838360016000546001600160a01b0385166113d057604051622e076360e81b815260040160405180910390fd5b836000036113f15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156114a357506001600160a01b0387163b15155b1561152b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114f4600088848060010195508861119a565b611511576040516368d2bf6b60e11b815260040160405180910390fd5b8082036114a957826000541461152657600080fd5b611570565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361152c575b50600055610ffa565b82805461158590611989565b90600052602060002090601f0160209004810192826115a757600085556115ed565b82601f106115c05782800160ff198235161785556115ed565b828001600101855582156115ed579182015b828111156115ed5782358255916020019190600101906115d2565b506115f99291506115fd565b5090565b5b808211156115f957600081556001016115fe565b6001600160e01b03198116811461078557600080fd5b60006020828403121561163a57600080fd5b8135610c1881611612565b60005b83811015611660578181015183820152602001611648565b83811115610b585750506000910152565b60008151808452611689816020860160208601611645565b601f01601f19169290920160200192915050565b602081526000610c186020830184611671565b6000602082840312156116c257600080fd5b5035919050565b80356001600160a01b03811681146116e057600080fd5b919050565b600080604083850312156116f857600080fd5b611701836116c9565b946020939093013593505050565b60008060006060848603121561172457600080fd5b61172d846116c9565b925061173b602085016116c9565b9150604084013590509250925092565b6000806040838503121561175e57600080fd5b50508035926020909101359150565b6000806020838503121561178057600080fd5b823567ffffffffffffffff8082111561179857600080fd5b818501915085601f8301126117ac57600080fd5b8135818111156117bb57600080fd5b8660208285010111156117cd57600080fd5b60209290920196919550909350505050565b6000602082840312156117f157600080fd5b610c18826116c9565b6000806040838503121561180d57600080fd5b611816836116c9565b91506020830135801515811461182b57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561186257600080fd5b61186b856116c9565b9350611879602086016116c9565b925060408501359150606085013567ffffffffffffffff8082111561189d57600080fd5b818701915087601f8301126118b157600080fd5b8135818111156118c3576118c3611836565b604051601f8201601f19908116603f011681019083821181831017156118eb576118eb611836565b816040528281528a602084870101111561190457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60006020828403121561193a57600080fd5b81356bffffffffffffffffffffffff81168114610c1857600080fd5b6000806040838503121561196957600080fd5b611972836116c9565b9150611980602084016116c9565b90509250929050565b600181811c9082168061199d57607f821691505b6020821081036119bd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156119f3576119f36119c3565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611a1d57611a1d6119f8565b500490565b60008219821115611a3557611a356119c3565b500190565b60008151611a4c818560208601611645565b9290920192915050565b600080845481600182811c915080831680611a7257607f831692505b60208084108203611a9157634e487b7160e01b86526022600452602486fd5b818015611aa55760018114611ab657611ae3565b60ff19861689528489019650611ae3565b60008b81526020902060005b86811015611adb5781548b820152908501908301611ac2565b505084890196505b505050505050611b07611af68286611a3a565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611b426080830184611671565b9695505050505050565b600060208284031215611b5e57600080fd5b8151610c1881611612565b600060018201611b7b57611b7b6119c3565b5060010190565b600082821015611b9457611b946119c3565b500390565b600082611ba857611ba86119f8565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220f7eb256788757bf3d4c7b3ebfc3329d62514dd398e2bcb0084c5ffcfa6d5b18364736f6c634300080d0033
Deployed Bytecode Sourcemap
44830:2455:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27014:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27014:305:0;;;;;;;;30127:100;;;:::i;:::-;;;;;;;:::i;31630:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:55:1;;;1696:74;;1684:2;1669:18;31630:204:0;1550:226:1;31193:371:0;;;;;;:::i;:::-;;:::i;:::-;;44924:40;;44963:1;44924:40;;;;;2413:4:1;2401:17;;;2383:36;;2371:2;2356:18;44924:40:0;2241:184:1;26263:303:0;26517:12;;26307:7;26501:13;:28;26263:303;;;2576:25:1;;;2564:2;2549:18;26263:303:0;2430:177:1;32495:170:0;;;;;;:::i;:::-;;:::i;46890:273::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3390:55:1;;;3372:74;;3477:2;3462:18;;3455:34;;;;3345:18;46890:273:0;3198:297:1;44876:41:0;;44912:5;44876:41;;;;;3674:6:1;3662:19;;;3644:38;;3632:2;3617:18;44876:41:0;3500:188:1;45790:244:0;;;;;;:::i;:::-;;:::i;47171:111::-;;;:::i;32736:185::-;;;;;;:::i;:::-;;:::i;46261:124::-;;;;;;:::i;:::-;;:::i;29935:125::-;;;;;;:::i;:::-;;:::i;27383:206::-;;;;;;:::i;:::-;;:::i;4730:103::-;;;:::i;45230:101::-;;;:::i;4079:87::-;4152:6;;-1:-1:-1;;;;;4152:6:0;4079:87;;30296:104;;;:::i;45462:320::-;;;;;;:::i;:::-;;:::i;46151:102::-;;;;;;:::i;:::-;;:::i;31906:287::-;;;;;;:::i;:::-;;:::i;32992:369::-;;;;;;:::i;:::-;;:::i;46393:355::-;;;;;;:::i;:::-;;:::i;46756:126::-;;;;;;:::i;:::-;;:::i;45339:115::-;;;;;;:::i;:::-;;:::i;32264:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;32385:25:0;;;32361:4;32385:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32264:164;4988:201;;;;;;:::i;:::-;;:::i;27014:305::-;27116:4;-1:-1:-1;;;;;;27153:40:0;;-1:-1:-1;;;27153:40:0;;:105;;-1:-1:-1;;;;;;;27210:48:0;;-1:-1:-1;;;27210:48:0;27153:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;27275:36;27133:178;27014:305;-1:-1:-1;;27014:305:0:o;30127:100::-;30181:13;30214:5;30207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30127:100;:::o;31630:204::-;31698:7;31723:16;31731:7;31723;:16::i;:::-;31718:64;;31748:34;;-1:-1:-1;;;31748:34:0;;;;;;;;;;;31718:64;-1:-1:-1;31802:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31802:24:0;;31630:204::o;31193:371::-;31266:13;31282:24;31298:7;31282:15;:24::i;:::-;31266:40;;31327:5;-1:-1:-1;;;;;31321:11:0;:2;-1:-1:-1;;;;;31321:11:0;;31317:48;;31341:24;;-1:-1:-1;;;31341:24:0;;;;;;;;;;;31317:48;2883:10;-1:-1:-1;;;;;31382:21:0;;;;;;:63;;-1:-1:-1;31408:37:0;31425:5;2883:10;32264:164;:::i;31408:37::-;31407:38;31382:63;31378:138;;;31469:35;;-1:-1:-1;;;31469:35:0;;;;;;;;;;;31378:138;31528:28;31537:2;31541:7;31550:5;31528:8;:28::i;:::-;31255:309;31193:371;;:::o;32495:170::-;32629:28;32639:4;32645:2;32649:7;32629:9;:28::i;46890:273::-;46972:16;46990:21;47032:17;47040:8;47032:7;:17::i;:::-;47024:61;;;;-1:-1:-1;;;47024:61:0;;7257:2:1;47024:61:0;;;7239:21:1;7296:2;7276:18;;;7269:30;7335:33;7315:18;;;7308:61;7386:18;;47024:61:0;;;;;;;;;4152:6;;-1:-1:-1;;;;;4152:6:0;47127:18;;47149:5;;47114:31;;47127:18;;47114:10;:31;:::i;:::-;47113:41;;;;:::i;:::-;47096:59;;;;46890:273;;;;;:::o;45790:244::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;-1:-1:-1;;;;;;;;;;;8237:18:1;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;45876:1:::1;45864:9;:13;45856:44;;;::::0;-1:-1:-1;;;45856:44:0;;8540:2:1;45856:44:0::1;::::0;::::1;8522:21:1::0;8579:2;8559:18;;;8552:30;-1:-1:-1;;;8598:18:1;;;8591:48;8656:18;;45856:44:0::1;8338:342:1::0;45856:44:0::1;44912:5;45935:9:::0;45919:13:::1;26517:12:::0;;26307:7;26501:13;:28;;26263:303;45919:13:::1;:25;;;;:::i;:::-;:39;;45911:62;;;::::0;-1:-1:-1;;;45911:62:0;;9020:2:1;45911:62:0::1;::::0;::::1;9002:21:1::0;9059:2;9039:18;;;9032:30;-1:-1:-1;;;9078:18:1;;;9071:40;9128:18;;45911:62:0::1;8818:334:1::0;45911:62:0::1;45994:32;46004:10;46016:9;45994;:32::i;:::-;45790:244:::0;:::o;47171:111::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;-1:-1:-1;;;;;;;;;;;8237:18:1;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;4152:6;;47226:48:::1;::::0;-1:-1:-1;;;;;4152:6:0;;;;47252:21:::1;47226:48:::0;::::1;;;::::0;::::1;::::0;;;47252:21;4152:6;47226:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;32736:185:::0;32874:39;32891:4;32897:2;32901:7;32874:39;;;;;;;;;;;;:16;:39::i;46261:124::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;-1:-1:-1;;;;;;;;;;;8237:18:1;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;46333:8:::1;:15:::0;;-1:-1:-1;;;;46333:15:0::1;-1:-1:-1::0;;;46333:15:0::1;::::0;;46359:18:::1;:7;46369:8:::0;;46359:18:::1;:::i;29935:125::-:0;29999:7;30026:21;30039:7;30026:12;:21::i;:::-;:26;;29935:125;-1:-1:-1;;29935:125:0:o;27383:206::-;27447:7;-1:-1:-1;;;;;27471:19:0;;27467:60;;27499:28;;-1:-1:-1;;;27499:28:0;;;;;;;;;;;27467:60;-1:-1:-1;;;;;;27553:19:0;;;;;:12;:19;;;;;:27;;;;27383:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;-1:-1:-1;;;;;;;;;;;8237:18:1;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;45230:101::-;45272:4;44912:5;45296:13;26517:12;;26307:7;26501:13;:28;;26263:303;45296:13;:27;45289:34;;45230:101;:::o;30296:104::-;30352:13;30385:7;30378:14;;;;;:::i;45462:320::-;45535:1;45523:9;:13;45515:44;;;;-1:-1:-1;;;45515:44:0;;8540:2:1;45515:44:0;;;8522:21:1;8579:2;8559:18;;;8552:30;-1:-1:-1;;;8598:18:1;;;8591:48;8656:18;;45515:44:0;8338:342:1;45515:44:0;45592:10;27732:7;27767:19;;;:12;:19;;;;;:32;44963:1;;45606:9;;27767:32;;;;;45578:37;;;;:::i;:::-;:55;;45570:86;;;;-1:-1:-1;;;45570:86:0;;8540:2:1;45570:86:0;;;8522:21:1;8579:2;8559:18;;;8552:30;-1:-1:-1;;;8598:18:1;;;8591:48;8656:18;;45570:86:0;8338:342:1;46151:102:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;-1:-1:-1;;;;;;;;;;;8237:18:1;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;46227:18:::1;:7;46237:8:::0;;46227:18:::1;:::i;31906:287::-:0;2883:10;-1:-1:-1;;;;;32005:24:0;;;32001:54;;32038:17;;-1:-1:-1;;;32038:17:0;;;;;;;;;;;32001:54;2883:10;32068:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32068:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32068:53:0;;;;;;;;;;32137:48;;540:41:1;;;32068:42:0;;2883:10;32137:48;;513:18:1;32137:48:0;;;;;;;31906:287;;:::o;32992:369::-;33159:28;33169:4;33175:2;33179:7;33159:9;:28::i;:::-;-1:-1:-1;;;;;33202:13:0;;7075:19;:23;;33202:76;;;;;33222:56;33253:4;33259:2;33263:7;33272:5;33222:30;:56::i;:::-;33221:57;33202:76;33198:156;;;33302:40;;-1:-1:-1;;;33302:40:0;;;;;;;;;;;33198:156;32992:369;;;;:::o;46393:355::-;46466:13;46497:16;46505:7;46497;:16::i;:::-;46492:59;;46522:29;;-1:-1:-1;;;46522:29:0;;;;;;;;;;;46492:59;46589:8;;46564:22;;-1:-1:-1;;;46589:8:0;;;;:47;;;;;;;;;;;;;;;-1:-1:-1;;;46589:47:0;;;;;;46600:25;46617:7;46600:16;:25::i;:::-;46564:72;;46660:7;46654:21;;;;;:::i;:::-;;;46679:1;46654:26;:86;;;;;;;;;;;;;;;;;46707:7;46716:8;46690:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46654:86;46647:93;46393:355;-1:-1:-1;;;46393:355:0:o;46756:126::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;-1:-1:-1;;;;;;;;;;;8237:18:1;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;46834:18:::1;:40:::0;;-1:-1:-1;;46834:40:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;46756:126::o;45339:115::-;-1:-1:-1;;;;;27767:19:0;;45399:7;27767:19;;;:12;:19;;;;;:32;;;;;;45426:20;27671:137;4988:201;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;-1:-1:-1;;;;;;;;;;;8237:18:1;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;11099:2:1;5069:73:0::1;::::0;::::1;11081:21:1::0;11138:2;11118:18;;;11111:30;11177:34;11157:18;;;11150:62;-1:-1:-1;;;11228:18:1;;;11221:36;11274:19;;5069:73:0::1;10897:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;33616:187::-:0;33673:4;33737:13;;33727:7;:23;33697:98;;;;-1:-1:-1;;33768:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33768:27:0;;;;33767:28;;33616:187::o;41786:196::-;41901:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;41901:29:0;-1:-1:-1;;;;;41901:29:0;;;;;;;;;41946:28;;41901:24;;41946:28;;;;;;;41786:196;;;:::o;36729:2130::-;36844:35;36882:21;36895:7;36882:12;:21::i;:::-;36844:59;;36942:4;-1:-1:-1;;;;;36920:26:0;:13;:18;;;-1:-1:-1;;;;;36920:26:0;;36916:67;;36955:28;;-1:-1:-1;;;36955:28:0;;;;;;;;;;;36916:67;36996:22;2883:10;-1:-1:-1;;;;;37022:20:0;;;;:73;;-1:-1:-1;37059:36:0;37076:4;2883:10;32264:164;:::i;37059:36::-;37022:126;;;-1:-1:-1;2883:10:0;37112:20;37124:7;37112:11;:20::i;:::-;-1:-1:-1;;;;;37112:36:0;;37022:126;36996:153;;37167:17;37162:66;;37193:35;;-1:-1:-1;;;37193:35:0;;;;;;;;;;;37162:66;-1:-1:-1;;;;;37243:16:0;;37239:52;;37268:23;;-1:-1:-1;;;37268:23:0;;;;;;;;;;;37239:52;37412:35;37429:1;37433:7;37442:4;37412:8;:35::i;:::-;-1:-1:-1;;;;;37743:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37743:31:0;;;;;;;-1:-1:-1;;37743:31:0;;;;;;;37789:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37789:29:0;;;;;;;;;;;37869:20;;;:11;:20;;;;;;37904:18;;-1:-1:-1;;;;;;37937:49:0;;;;-1:-1:-1;;;37970:15:0;37937:49;;;;;;;;;;38260:11;;38320:24;;;;;38363:13;;37869:20;;38320:24;;38363:13;38359:384;;38573:13;;38558:11;:28;38554:174;;38611:20;;38680:28;;;;38654:54;;-1:-1:-1;;;38654:54:0;-1:-1:-1;;;;;;38654:54:0;;;-1:-1:-1;;;;;38611:20:0;;38654:54;;;;38554:174;37718:1036;;;38790:7;38786:2;-1:-1:-1;;;;;38771:27:0;38780:4;-1:-1:-1;;;;;38771:27:0;;;;;;;;;;;38809:42;36833:2026;;36729:2130;;;:::o;33811:104::-;33880:27;33890:2;33894:8;33880:27;;;;;;;;;;;;:9;:27::i;:::-;33811:104;;:::o;28764:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28875:7:0;28958:13;;28951:4;:20;28920:886;;;28992:31;29026:17;;;:11;:17;;;;;;;;;28992:51;;;;;;;;;-1:-1:-1;;;;;28992:51:0;;;;-1:-1:-1;;;28992:51:0;;;;;;;;;;;-1:-1:-1;;;28992:51:0;;;;;;;;;;;;;;29062:729;;29112:14;;-1:-1:-1;;;;;29112:28:0;;29108:101;;29176:9;28764:1109;-1:-1:-1;;;28764:1109:0:o;29108:101::-;-1:-1:-1;;;29551:6:0;29596:17;;;;:11;:17;;;;;;;;;29584:29;;;;;;;;;-1:-1:-1;;;;;29584:29:0;;;;;-1:-1:-1;;;29584:29:0;;;;;;;;;;;-1:-1:-1;;;29584:29:0;;;;;;;;;;;;;29644:28;29640:109;;29712:9;28764:1109;-1:-1:-1;;;28764:1109:0:o;29640:109::-;29511:261;;;28973:833;28920:886;29834:31;;-1:-1:-1;;;29834:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;42474:667::-;42658:72;;-1:-1:-1;;;42658:72:0;;42637:4;;-1:-1:-1;;;;;42658:36:0;;;;;:72;;2883:10;;42709:4;;42715:7;;42724:5;;42658:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42658:72:0;;;;;;;;-1:-1:-1;;42658:72:0;;;;;;;;;;;;:::i;:::-;;;42654:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42892:6;:13;42909:1;42892:18;42888:235;;42938:40;;-1:-1:-1;;;42938:40:0;;;;;;;;;;;42888:235;43081:6;43075:13;43066:6;43062:2;43058:15;43051:38;42654:480;-1:-1:-1;;;;;;42777:55:0;-1:-1:-1;;;42777:55:0;;-1:-1:-1;42654:480:0;42474:667;;;;;;:::o;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;34278:163;34401:32;34407:2;34411:8;34421:5;34428:4;34839:20;34862:13;-1:-1:-1;;;;;34890:16:0;;34886:48;;34915:19;;-1:-1:-1;;;34915:19:0;;;;;;;;;;;34886:48;34949:8;34961:1;34949:13;34945:44;;34971:18;;-1:-1:-1;;;34971:18:0;;;;;;;;;;;34945:44;-1:-1:-1;;;;;35340:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35399:49:0;;35340:44;;;;;;;;35399:49;;;;-1:-1:-1;;35340:44:0;;;;;;35399:49;;;;;;;;;;;;;;;;35465:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35515:66:0;;;;-1:-1:-1;;;35565:15:0;35515:66;;;;;;;;;;35465:25;35662:23;;;35706:4;:23;;;;-1:-1:-1;;;;;;35714:13:0;;7075:19;:23;;35714:15;35702:641;;;35750:314;35781:38;;35806:12;;-1:-1:-1;;;;;35781:38:0;;;35798:1;;35781:38;;35798:1;;35781:38;35847:69;35886:1;35890:2;35894:14;;;;;;35910:5;35847:30;:69::i;:::-;35842:174;;35952:40;;-1:-1:-1;;;35952:40:0;;;;;;;;;;;35842:174;36059:3;36043:12;:19;35750:314;;36145:12;36128:13;;:29;36124:43;;36159:8;;;36124:43;35702:641;;;36208:120;36239:40;;36264:14;;;;;-1:-1:-1;;;;;36239:40:0;;;36256:1;;36239:40;;36256:1;;36239:40;36323:3;36307:12;:19;36208:120;;35702:641;-1:-1:-1;36357:13:0;:28;36407:60;32992:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1781:196::-;1849:20;;-1:-1:-1;;;;;1898:54:1;;1888:65;;1878:93;;1967:1;1964;1957:12;1878:93;1781:196;;;:::o;1982:254::-;2050:6;2058;2111:2;2099:9;2090:7;2086:23;2082:32;2079:52;;;2127:1;2124;2117:12;2079:52;2150:29;2169:9;2150:29;:::i;:::-;2140:39;2226:2;2211:18;;;;2198:32;;-1:-1:-1;;;1982:254:1:o;2612:328::-;2689:6;2697;2705;2758:2;2746:9;2737:7;2733:23;2729:32;2726:52;;;2774:1;2771;2764:12;2726:52;2797:29;2816:9;2797:29;:::i;:::-;2787:39;;2845:38;2879:2;2868:9;2864:18;2845:38;:::i;:::-;2835:48;;2930:2;2919:9;2915:18;2902:32;2892:42;;2612:328;;;;;:::o;2945:248::-;3013:6;3021;3074:2;3062:9;3053:7;3049:23;3045:32;3042:52;;;3090:1;3087;3080:12;3042:52;-1:-1:-1;;3113:23:1;;;3183:2;3168:18;;;3155:32;;-1:-1:-1;2945:248:1:o;3693:592::-;3764:6;3772;3825:2;3813:9;3804:7;3800:23;3796:32;3793:52;;;3841:1;3838;3831:12;3793:52;3881:9;3868:23;3910:18;3951:2;3943:6;3940:14;3937:34;;;3967:1;3964;3957:12;3937:34;4005:6;3994:9;3990:22;3980:32;;4050:7;4043:4;4039:2;4035:13;4031:27;4021:55;;4072:1;4069;4062:12;4021:55;4112:2;4099:16;4138:2;4130:6;4127:14;4124:34;;;4154:1;4151;4144:12;4124:34;4199:7;4194:2;4185:6;4181:2;4177:15;4173:24;4170:37;4167:57;;;4220:1;4217;4210:12;4167:57;4251:2;4243:11;;;;;4273:6;;-1:-1:-1;3693:592:1;;-1:-1:-1;;;;3693:592:1:o;4290:186::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4441:29;4460:9;4441:29;:::i;4481:347::-;4546:6;4554;4607:2;4595:9;4586:7;4582:23;4578:32;4575:52;;;4623:1;4620;4613:12;4575:52;4646:29;4665:9;4646:29;:::i;:::-;4636:39;;4725:2;4714:9;4710:18;4697:32;4772:5;4765:13;4758:21;4751:5;4748:32;4738:60;;4794:1;4791;4784:12;4738:60;4817:5;4807:15;;;4481:347;;;;;:::o;4833:127::-;4894:10;4889:3;4885:20;4882:1;4875:31;4925:4;4922:1;4915:15;4949:4;4946:1;4939:15;4965:1138;5060:6;5068;5076;5084;5137:3;5125:9;5116:7;5112:23;5108:33;5105:53;;;5154:1;5151;5144:12;5105:53;5177:29;5196:9;5177:29;:::i;:::-;5167:39;;5225:38;5259:2;5248:9;5244:18;5225:38;:::i;:::-;5215:48;;5310:2;5299:9;5295:18;5282:32;5272:42;;5365:2;5354:9;5350:18;5337:32;5388:18;5429:2;5421:6;5418:14;5415:34;;;5445:1;5442;5435:12;5415:34;5483:6;5472:9;5468:22;5458:32;;5528:7;5521:4;5517:2;5513:13;5509:27;5499:55;;5550:1;5547;5540:12;5499:55;5586:2;5573:16;5608:2;5604;5601:10;5598:36;;;5614:18;;:::i;:::-;5689:2;5683:9;5657:2;5743:13;;-1:-1:-1;;5739:22:1;;;5763:2;5735:31;5731:40;5719:53;;;5787:18;;;5807:22;;;5784:46;5781:72;;;5833:18;;:::i;:::-;5873:10;5869:2;5862:22;5908:2;5900:6;5893:18;5948:7;5943:2;5938;5934;5930:11;5926:20;5923:33;5920:53;;;5969:1;5966;5959:12;5920:53;6025:2;6020;6016;6012:11;6007:2;5999:6;5995:15;5982:46;6070:1;6065:2;6060;6052:6;6048:15;6044:24;6037:35;6091:6;6081:16;;;;;;;4965:1138;;;;;;;:::o;6108:292::-;6166:6;6219:2;6207:9;6198:7;6194:23;6190:32;6187:52;;;6235:1;6232;6225:12;6187:52;6274:9;6261:23;6324:26;6317:5;6313:38;6306:5;6303:49;6293:77;;6366:1;6363;6356:12;6405:260;6473:6;6481;6534:2;6522:9;6513:7;6509:23;6505:32;6502:52;;;6550:1;6547;6540:12;6502:52;6573:29;6592:9;6573:29;:::i;:::-;6563:39;;6621:38;6655:2;6644:9;6640:18;6621:38;:::i;:::-;6611:48;;6405:260;;;;;:::o;6670:380::-;6749:1;6745:12;;;;6792;;;6813:61;;6867:4;6859:6;6855:17;6845:27;;6813:61;6920:2;6912:6;6909:14;6889:18;6886:38;6883:161;;6966:10;6961:3;6957:20;6954:1;6947:31;7001:4;6998:1;6991:15;7029:4;7026:1;7019:15;6883:161;;6670:380;;;:::o;7415:127::-;7476:10;7471:3;7467:20;7464:1;7457:31;7507:4;7504:1;7497:15;7531:4;7528:1;7521:15;7547:168;7587:7;7653:1;7649;7645:6;7641:14;7638:1;7635:21;7630:1;7623:9;7616:17;7612:45;7609:71;;;7660:18;;:::i;:::-;-1:-1:-1;7700:9:1;;7547:168::o;7720:127::-;7781:10;7776:3;7772:20;7769:1;7762:31;7812:4;7809:1;7802:15;7836:4;7833:1;7826:15;7852:120;7892:1;7918;7908:35;;7923:18;;:::i;:::-;-1:-1:-1;7957:9:1;;7852:120::o;8685:128::-;8725:3;8756:1;8752:6;8749:1;8746:13;8743:39;;;8762:18;;:::i;:::-;-1:-1:-1;8798:9:1;;8685:128::o;9283:185::-;9325:3;9363:5;9357:12;9378:52;9423:6;9418:3;9411:4;9404:5;9400:16;9378:52;:::i;:::-;9446:16;;;;;9283:185;-1:-1:-1;;9283:185:1:o;9591:1301::-;9868:3;9897:1;9930:6;9924:13;9960:3;9982:1;10010:9;10006:2;10002:18;9992:28;;10070:2;10059:9;10055:18;10092;10082:61;;10136:4;10128:6;10124:17;10114:27;;10082:61;10162:2;10210;10202:6;10199:14;10179:18;10176:38;10173:165;;-1:-1:-1;;;10237:33:1;;10293:4;10290:1;10283:15;10323:4;10244:3;10311:17;10173:165;10354:18;10381:104;;;;10499:1;10494:320;;;;10347:467;;10381:104;-1:-1:-1;;10414:24:1;;10402:37;;10459:16;;;;-1:-1:-1;10381:104:1;;10494:320;9230:1;9223:14;;;9267:4;9254:18;;10589:1;10603:165;10617:6;10614:1;10611:13;10603:165;;;10695:14;;10682:11;;;10675:35;10738:16;;;;10632:10;;10603:165;;;10607:3;;10797:6;10792:3;10788:16;10781:23;;10347:467;;;;;;;10830:56;10855:30;10881:3;10873:6;10855:30;:::i;:::-;-1:-1:-1;;;9533:20:1;;9578:1;9569:11;;9473:113;10830:56;10823:63;9591:1301;-1:-1:-1;;;;;9591:1301:1:o;11304:523::-;11498:4;-1:-1:-1;;;;;11608:2:1;11600:6;11596:15;11585:9;11578:34;11660:2;11652:6;11648:15;11643:2;11632:9;11628:18;11621:43;;11700:6;11695:2;11684:9;11680:18;11673:34;11743:3;11738:2;11727:9;11723:18;11716:31;11764:57;11816:3;11805:9;11801:19;11793:6;11764:57;:::i;:::-;11756:65;11304:523;-1:-1:-1;;;;;;11304:523:1:o;11832:249::-;11901:6;11954:2;11942:9;11933:7;11929:23;11925:32;11922:52;;;11970:1;11967;11960:12;11922:52;12002:9;11996:16;12021:30;12045:5;12021:30;:::i;12086:135::-;12125:3;12146:17;;;12143:43;;12166:18;;:::i;:::-;-1:-1:-1;12213:1:1;12202:13;;12086:135::o;12226:125::-;12266:4;12294:1;12291;12288:8;12285:34;;;12299:18;;:::i;:::-;-1:-1:-1;12336:9:1;;12226:125::o;12356:112::-;12388:1;12414;12404:35;;12419:18;;:::i;:::-;-1:-1:-1;12453:9:1;;12356:112::o;12473:127::-;12534:10;12529:3;12525:20;12522:1;12515:31;12565:4;12562:1;12555:15;12589:4;12586:1;12579:15
Swarm Source
ipfs://f7eb256788757bf3d4c7b3ebfc3329d62514dd398e2bcb0084c5ffcfa6d5b183
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.