ERC-721
Overview
Max Total Supply
6,454 AVCDO
Holders
840
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 AVCDOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Avocados
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-19 */ // File: @openzeppelin/contracts/access/Ownable.sol // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/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/utils/introspection/IERC165.sol /** * @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/token/ERC721/IERC721.sol /** * @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 /** * @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); } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol /** * @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/ERC721.sol error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { 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; } // Compiler will pack the following // _currentIndex and _burnCounter into a single 256bit word. // The tokenId of the next token to be minted. uint128 internal _currentIndex; // The number of tokens burned. uint128 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @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 || interfaceId == type(IERC721Enumerable).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); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * 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 (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 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 (!_checkOnERC721Received(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 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 > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = uint128(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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { 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)) } } } } else { return true; } } /** * @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: @openzeppelin/contracts/utils/Strings.sol /** * @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/Address.sol /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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 /** * @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); } /** * @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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: Avocados.sol contract Avocados is ERC721A, Ownable { using Address for address; using Strings for uint256; uint256 public WL_PRICE = 35000000000000000; uint256 public NFT_PRICE = 40000000000000000; uint256 public constant MAX_NFT_PURCHASE = 10; uint256 public constant MAX_NFT_WHITELIST = 4; uint256 public constant MINTABLE_AMOUNT = 7577; uint256 public constant RESERVED_AMOUNT = 200; uint256 public constant MAX_SUPPLY = MINTABLE_AMOUNT + RESERVED_AMOUNT; bytes32 public root; bool public whitelistPhase = false; bool public publicSalePhase = false; string private _baseTokenURI; constructor() ERC721A("Adorable Avocados","AVCDO"){ root = 0x015e002ed68efbada69078c43195cb05c399d551134e6b17268d42925f9c58b8; _baseTokenURI = "https://metadata.adorableavocados.com/"; } function toggleWhitelistPhase() public onlyOwner { whitelistPhase = !whitelistPhase; } function togglePublicSalePhase() public onlyOwner { publicSalePhase = !publicSalePhase; } function airdrop(address to, uint256 quantity) public onlyOwner { uint256 totalSupply = totalSupply(); require(quantity > 0, "Amount too small"); require(quantity <= MAX_NFT_PURCHASE, "Max 10 tokens per trx"); require((totalSupply + quantity) <= MAX_SUPPLY, "Purchase exceeding max supply"); _safeMint(to, quantity); } function mintChecks(uint256 quantity) private view { uint256 totalSupply = totalSupply(); require(quantity > 0, "Amount too small"); require(quantity <= MAX_NFT_PURCHASE, "Max 10 tokens per trx"); require((totalSupply + quantity) <= MINTABLE_AMOUNT, "Purchase exceeding max supply"); } function whitelistMint(uint256 quantity, bytes32[] memory _proof) public payable { require(whitelistPhase, "Can't mint"); require(WL_PRICE * quantity == msg.value, "Sent ether val is incorrect"); require((MAX_NFT_WHITELIST - balanceOf(msg.sender)) >= quantity, "Cant mint that much"); mintChecks(quantity); //whitelist bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_proof, root, leaf), "Not whitelisted"); _safeMint(msg.sender, quantity); } function mint(uint256 quantity) public payable { require(publicSalePhase, "Can't mint"); require(NFT_PRICE * quantity == msg.value, "Sent ether val is incorrect"); mintChecks(quantity); _safeMint(msg.sender, quantity); } function setRoot(uint256 _root) public onlyOwner { root = bytes32(_root); } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function setPrice(uint256 price) public onlyOwner { NFT_PRICE = price; } function setWLPrice(uint256 price) public onlyOwner { WL_PRICE = price; } function getBalance() public view onlyOwner returns (uint256){ return address(this).balance; } function setBaseURI(string memory baseURI_) public onlyOwner { _baseTokenURI = baseURI_; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { return string(abi.encodePacked(_baseTokenURI, tokenId.toString(), ".json")); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } }
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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTABLE_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"payable","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":"publicSalePhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_root","type":"uint256"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWLPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSalePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052667c585087238000600855668e1bc9bf040000600955600b805461ffff191690553480156200003257600080fd5b50604080518082018252601181527041646f7261626c652041766f6361646f7360781b602080830191825283518085019094526005845264415643444f60d81b90840152815191929162000089916001916200016c565b5080516200009f9060029060208401906200016c565b505050620000bc620000b66200011660201b60201c565b6200011a565b7f015e002ed68efbada69078c43195cb05c399d551134e6b17268d42925f9c58b8600a556040805160608101909152602680825262002596602083013980516200010f91600c916020909101906200016c565b506200024e565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017a9062000212565b90600052602060002090601f0160209004810192826200019e5760008555620001e9565b82601f10620001b957805160ff1916838001178555620001e9565b82800160010185558215620001e9579182015b82811115620001e9578251825591602001919060010190620001cc565b50620001f7929150620001fb565b5090565b5b80821115620001f75760008155600101620001fc565b600181811c908216806200022757607f821691505b6020821081036200024857634e487b7160e01b600052602260045260246000fd5b50919050565b612338806200025e6000396000f3fe6080604052600436106102465760003560e01c8063815d544c11610139578063c87b56dd116100b6578063ebf0c7171161007a578063ebf0c7171461066e578063ec5be62a14610684578063f2f5a7e51461069a578063f2fde38b146106ba578063f5052f51146106da578063f6a5b8e6146106ef57600080fd5b8063c87b56dd146105bd578063d2cab056146105dd578063d85f2740146105f0578063dc33e68114610605578063e985e9c51461062557600080fd5b806395d89b41116100fd57806395d89b4114610540578063a0712d6814610555578063a22cb46514610568578063b62b304014610588578063b88d4fde1461059d57600080fd5b8063815d544c146104b357806384bc98f7146104cd5780638ba4cc3c146104e25780638da5cb5b1461050257806391b7f5ed1461052057600080fd5b806332cb6b0c116101c757806355f804b31161018b57806355f804b3146104285780636352211e14610448578063676dd5631461046857806370a082311461047e578063715018a61461049e57600080fd5b806332cb6b0c1461039f5780633394dd06146103b45780633ccfd60b146103d357806342842e0e146103e85780634f6ccce71461040857600080fd5b806312065fe01161020e57806312065fe01461031f57806318160ddd1461033457806323b872dd146103495780632f745c591461036957806331c3c7a01461038957600080fd5b806301ffc9a71461024b578063020b39cc1461028057806306fdde03146102a3578063081812fc146102c5578063095ea7b3146102fd575b600080fd5b34801561025757600080fd5b5061026b610266366004611ccd565b61070f565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610295600a81565b604051908152602001610277565b3480156102af57600080fd5b506102b861077c565b6040516102779190611d49565b3480156102d157600080fd5b506102e56102e0366004611d5c565b61080e565b6040516001600160a01b039091168152602001610277565b34801561030957600080fd5b5061031d610318366004611d91565b610852565b005b34801561032b57600080fd5b506102956108df565b34801561034057600080fd5b5061029561091a565b34801561035557600080fd5b5061031d610364366004611dbb565b610939565b34801561037557600080fd5b50610295610384366004611d91565b610944565b34801561039557600080fd5b5061029560085481565b3480156103ab57600080fd5b50610295610a3e565b3480156103c057600080fd5b50600b5461026b90610100900460ff1681565b3480156103df57600080fd5b5061031d610a4e565b3480156103f457600080fd5b5061031d610403366004611dbb565b610aab565b34801561041457600080fd5b50610295610423366004611d5c565b610ac6565b34801561043457600080fd5b5061031d610443366004611e94565b610b6f565b34801561045457600080fd5b506102e5610463366004611d5c565b610bac565b34801561047457600080fd5b5061029560095481565b34801561048a57600080fd5b50610295610499366004611edc565b610bbe565b3480156104aa57600080fd5b5061031d610c0c565b3480156104bf57600080fd5b50600b5461026b9060ff1681565b3480156104d957600080fd5b50610295600481565b3480156104ee57600080fd5b5061031d6104fd366004611d91565b610c42565b34801561050e57600080fd5b506007546001600160a01b03166102e5565b34801561052c57600080fd5b5061031d61053b366004611d5c565b610d73565b34801561054c57600080fd5b506102b8610da2565b61031d610563366004611d5c565b610db1565b34801561057457600080fd5b5061031d610583366004611ef7565b610e67565b34801561059457600080fd5b5061031d610efc565b3480156105a957600080fd5b5061031d6105b8366004611f33565b610f43565b3480156105c957600080fd5b506102b86105d8366004611d5c565b610f7d565b61031d6105eb366004611fae565b610fb1565b3480156105fc57600080fd5b5061029560c881565b34801561061157600080fd5b50610295610620366004611edc565b61113c565b34801561063157600080fd5b5061026b61064036600461205f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561067a57600080fd5b50610295600a5481565b34801561069057600080fd5b50610295611d9981565b3480156106a657600080fd5b5061031d6106b5366004611d5c565b611147565b3480156106c657600080fd5b5061031d6106d5366004611edc565b611176565b3480156106e657600080fd5b5061031d61120e565b3480156106fb57600080fd5b5061031d61070a366004611d5c565b61124c565b60006001600160e01b031982166380ac58cd60e01b148061074057506001600160e01b03198216635b5e139f60e01b145b8061075b57506001600160e01b0319821663780e9d6360e01b145b8061077657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461078b90612092565b80601f01602080910402602001604051908101604052809291908181526020018280546107b790612092565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b60006108198261127b565b610836576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061085d82610bac565b9050806001600160a01b0316836001600160a01b0316036108915760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108b157506108af8133610640565b155b156108cf576040516367d9dca160e11b815260040160405180910390fd5b6108da8383836112af565b505050565b6007546000906001600160a01b031633146109155760405162461bcd60e51b815260040161090c906120cc565b60405180910390fd5b504790565b6000546001600160801b03600160801b82048116918116919091031690565b6108da83838361130b565b600061094f83610bbe565b821061096e576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610a3857600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906109e65750610a30565b80516001600160a01b0316156109fb57805192505b876001600160a01b0316836001600160a01b031603610a2e57868403610a275750935061077692505050565b6001909301925b505b60010161097f565b50600080fd5b610a4b60c8611d99612117565b81565b6007546001600160a01b03163314610a785760405162461bcd60e51b815260040161090c906120cc565b6040514790339082156108fc029083906000818181858888f19350505050158015610aa7573d6000803e3d6000fd5b5050565b6108da83838360405180602001604052806000815250610f43565b600080546001600160801b031681805b82811015610b5557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610b4c57858303610b455750949350505050565b6001909201915b50600101610ad6565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610b995760405162461bcd60e51b815260040161090c906120cc565b8051610aa790600c906020840190611c1e565b6000610bb782611528565b5192915050565b60006001600160a01b038216610be7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610c365760405162461bcd60e51b815260040161090c906120cc565b610c40600061164a565b565b6007546001600160a01b03163314610c6c5760405162461bcd60e51b815260040161090c906120cc565b6000610c7661091a565b905060008211610cbb5760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081d1bdbc81cdb585b1b60821b604482015260640161090c565b600a821115610d045760405162461bcd60e51b815260206004820152601560248201527409ac2f040626040e8ded6cadce640e0cae440e8e4f605b1b604482015260640161090c565b610d1160c8611d99612117565b610d1b8383612117565b1115610d695760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520657863656564696e67206d617820737570706c79000000604482015260640161090c565b6108da838361169c565b6007546001600160a01b03163314610d9d5760405162461bcd60e51b815260040161090c906120cc565b600955565b60606002805461078b90612092565b600b54610100900460ff16610df55760405162461bcd60e51b815260206004820152600a60248201526910d85b89dd081b5a5b9d60b21b604482015260640161090c565b3481600954610e04919061212f565b14610e515760405162461bcd60e51b815260206004820152601b60248201527f53656e742065746865722076616c20697320696e636f72726563740000000000604482015260640161090c565b610e5a816116b6565b610e64338261169c565b50565b336001600160a01b03831603610e905760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314610f265760405162461bcd60e51b815260040161090c906120cc565b600b805461ff001981166101009182900460ff1615909102179055565b610f4e84848461130b565b610f5a848484846117a9565b610f77576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600c610f8a836118ac565b604051602001610f9b92919061216a565b6040516020818303038152906040529050919050565b600b5460ff16610ff05760405162461bcd60e51b815260206004820152600a60248201526910d85b89dd081b5a5b9d60b21b604482015260640161090c565b3482600854610fff919061212f565b1461104c5760405162461bcd60e51b815260206004820152601b60248201527f53656e742065746865722076616c20697320696e636f72726563740000000000604482015260640161090c565b8161105633610bbe565b611061906004612224565b10156110a55760405162461bcd60e51b8152602060048201526013602482015272086c2dce840dad2dce840e8d0c2e840daeac6d606b1b604482015260640161090c565b6110ae826116b6565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506110f482600a54836119ac565b6111325760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161090c565b6108da338461169c565b6000610776826119c2565b6007546001600160a01b031633146111715760405162461bcd60e51b815260040161090c906120cc565b600a55565b6007546001600160a01b031633146111a05760405162461bcd60e51b815260040161090c906120cc565b6001600160a01b0381166112055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090c565b610e648161164a565b6007546001600160a01b031633146112385760405162461bcd60e51b815260040161090c906120cc565b600b805460ff19811660ff90911615179055565b6007546001600160a01b031633146112765760405162461bcd60e51b815260040161090c906120cc565b600855565b600080546001600160801b031682108015610776575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061131682611528565b80519091506000906001600160a01b0316336001600160a01b03161480611344575081516113449033610640565b8061135f5750336113548461080e565b6001600160a01b0316145b90508061137f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146113b45760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166113db57604051633a954ecd60e21b815260040160405180910390fd5b6113eb60008484600001516112af565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166114de576000546001600160801b03168110156114de57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561163157600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061162f5780516001600160a01b0316156115c6579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561162a579392505050565b6115c6565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610aa7828260405180602001604052806000815250611a17565b60006116c061091a565b9050600082116117055760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081d1bdbc81cdb585b1b60821b604482015260640161090c565b600a82111561174e5760405162461bcd60e51b815260206004820152601560248201527409ac2f040626040e8ded6cadce640e0cae440e8e4f605b1b604482015260640161090c565b611d9961175b8383612117565b1115610aa75760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520657863656564696e67206d617820737570706c79000000604482015260640161090c565b60006001600160a01b0384163b156118a057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ed90339089908890889060040161223b565b6020604051808303816000875af1925050508015611828575060408051601f3d908101601f1916820190925261182591810190612278565b60015b611886573d808015611856576040519150601f19603f3d011682016040523d82523d6000602084013e61185b565b606091505b50805160000361187e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118a4565b5060015b949350505050565b6060816000036118d35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118fd57806118e781612295565b91506118f69050600a836122c4565b91506118d7565b6000816001600160401b0381111561191757611917611df7565b6040519080825280601f01601f191660200182016040528015611941576020820181803683370190505b5090505b84156118a457611956600183612224565b9150611963600a866122d8565b61196e906030612117565b60f81b818381518110611983576119836122ec565b60200101906001600160f81b031916908160001a9053506119a5600a866122c4565b9450611945565b6000826119b98584611a24565b14949350505050565b60006001600160a01b0382166119eb576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260046020526040902054600160401b90046001600160401b031690565b6108da8383836001611a98565b600081815b8451811015611a90576000858281518110611a4657611a466122ec565b60200260200101519050808311611a6c5760008381526020829052604090209250611a7d565b600081815260208490526040902092505b5080611a8881612295565b915050611a29565b509392505050565b6000546001600160801b03166001600160a01b038516611aca57604051622e076360e81b815260040160405180910390fd5b83600003611aeb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611bf85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611bce5750611bcc60008884886117a9565b155b15611bec576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611b77565b50600080546001600160801b0319166001600160801b0392909216919091179055611521565b828054611c2a90612092565b90600052602060002090601f016020900481019282611c4c5760008555611c92565b82601f10611c6557805160ff1916838001178555611c92565b82800160010185558215611c92579182015b82811115611c92578251825591602001919060010190611c77565b50611c9e929150611ca2565b5090565b5b80821115611c9e5760008155600101611ca3565b6001600160e01b031981168114610e6457600080fd5b600060208284031215611cdf57600080fd5b8135611cea81611cb7565b9392505050565b60005b83811015611d0c578181015183820152602001611cf4565b83811115610f775750506000910152565b60008151808452611d35816020860160208601611cf1565b601f01601f19169290920160200192915050565b602081526000611cea6020830184611d1d565b600060208284031215611d6e57600080fd5b5035919050565b80356001600160a01b0381168114611d8c57600080fd5b919050565b60008060408385031215611da457600080fd5b611dad83611d75565b946020939093013593505050565b600080600060608486031215611dd057600080fd5b611dd984611d75565b9250611de760208501611d75565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611e3557611e35611df7565b604052919050565b60006001600160401b03831115611e5657611e56611df7565b611e69601f8401601f1916602001611e0d565b9050828152838383011115611e7d57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611ea657600080fd5b81356001600160401b03811115611ebc57600080fd5b8201601f81018413611ecd57600080fd5b6118a484823560208401611e3d565b600060208284031215611eee57600080fd5b611cea82611d75565b60008060408385031215611f0a57600080fd5b611f1383611d75565b915060208301358015158114611f2857600080fd5b809150509250929050565b60008060008060808587031215611f4957600080fd5b611f5285611d75565b9350611f6060208601611d75565b92506040850135915060608501356001600160401b03811115611f8257600080fd5b8501601f81018713611f9357600080fd5b611fa287823560208401611e3d565b91505092959194509250565b60008060408385031215611fc157600080fd5b823591506020808401356001600160401b0380821115611fe057600080fd5b818601915086601f830112611ff457600080fd5b81358181111561200657612006611df7565b8060051b9150612017848301611e0d565b818152918301840191848101908984111561203157600080fd5b938501935b8385101561204f57843582529385019390850190612036565b8096505050505050509250929050565b6000806040838503121561207257600080fd5b61207b83611d75565b915061208960208401611d75565b90509250929050565b600181811c908216806120a657607f821691505b6020821081036120c657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561212a5761212a612101565b500190565b600081600019048311821515161561214957612149612101565b500290565b60008151612160818560208601611cf1565b9290920192915050565b600080845481600182811c91508083168061218657607f831692505b602080841082036121a557634e487b7160e01b86526022600452602486fd5b8180156121b957600181146121ca576121f7565b60ff198616895284890196506121f7565b60008b81526020902060005b868110156121ef5781548b8201529085019083016121d6565b505084890196505b50505050505061221b61220a828661214e565b64173539b7b760d91b815260050190565b95945050505050565b60008282101561223657612236612101565b500390565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226e90830184611d1d565b9695505050505050565b60006020828403121561228a57600080fd5b8151611cea81611cb7565b6000600182016122a7576122a7612101565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826122d3576122d36122ae565b500490565b6000826122e7576122e76122ae565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212209724549345a49c8b7a436a50659bbbfa4da4435fee39ec8d13ebd697fa3f335f64736f6c634300080d003368747470733a2f2f6d657461646174612e61646f7261626c6561766f6361646f732e636f6d2f
Deployed Bytecode
0x6080604052600436106102465760003560e01c8063815d544c11610139578063c87b56dd116100b6578063ebf0c7171161007a578063ebf0c7171461066e578063ec5be62a14610684578063f2f5a7e51461069a578063f2fde38b146106ba578063f5052f51146106da578063f6a5b8e6146106ef57600080fd5b8063c87b56dd146105bd578063d2cab056146105dd578063d85f2740146105f0578063dc33e68114610605578063e985e9c51461062557600080fd5b806395d89b41116100fd57806395d89b4114610540578063a0712d6814610555578063a22cb46514610568578063b62b304014610588578063b88d4fde1461059d57600080fd5b8063815d544c146104b357806384bc98f7146104cd5780638ba4cc3c146104e25780638da5cb5b1461050257806391b7f5ed1461052057600080fd5b806332cb6b0c116101c757806355f804b31161018b57806355f804b3146104285780636352211e14610448578063676dd5631461046857806370a082311461047e578063715018a61461049e57600080fd5b806332cb6b0c1461039f5780633394dd06146103b45780633ccfd60b146103d357806342842e0e146103e85780634f6ccce71461040857600080fd5b806312065fe01161020e57806312065fe01461031f57806318160ddd1461033457806323b872dd146103495780632f745c591461036957806331c3c7a01461038957600080fd5b806301ffc9a71461024b578063020b39cc1461028057806306fdde03146102a3578063081812fc146102c5578063095ea7b3146102fd575b600080fd5b34801561025757600080fd5b5061026b610266366004611ccd565b61070f565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610295600a81565b604051908152602001610277565b3480156102af57600080fd5b506102b861077c565b6040516102779190611d49565b3480156102d157600080fd5b506102e56102e0366004611d5c565b61080e565b6040516001600160a01b039091168152602001610277565b34801561030957600080fd5b5061031d610318366004611d91565b610852565b005b34801561032b57600080fd5b506102956108df565b34801561034057600080fd5b5061029561091a565b34801561035557600080fd5b5061031d610364366004611dbb565b610939565b34801561037557600080fd5b50610295610384366004611d91565b610944565b34801561039557600080fd5b5061029560085481565b3480156103ab57600080fd5b50610295610a3e565b3480156103c057600080fd5b50600b5461026b90610100900460ff1681565b3480156103df57600080fd5b5061031d610a4e565b3480156103f457600080fd5b5061031d610403366004611dbb565b610aab565b34801561041457600080fd5b50610295610423366004611d5c565b610ac6565b34801561043457600080fd5b5061031d610443366004611e94565b610b6f565b34801561045457600080fd5b506102e5610463366004611d5c565b610bac565b34801561047457600080fd5b5061029560095481565b34801561048a57600080fd5b50610295610499366004611edc565b610bbe565b3480156104aa57600080fd5b5061031d610c0c565b3480156104bf57600080fd5b50600b5461026b9060ff1681565b3480156104d957600080fd5b50610295600481565b3480156104ee57600080fd5b5061031d6104fd366004611d91565b610c42565b34801561050e57600080fd5b506007546001600160a01b03166102e5565b34801561052c57600080fd5b5061031d61053b366004611d5c565b610d73565b34801561054c57600080fd5b506102b8610da2565b61031d610563366004611d5c565b610db1565b34801561057457600080fd5b5061031d610583366004611ef7565b610e67565b34801561059457600080fd5b5061031d610efc565b3480156105a957600080fd5b5061031d6105b8366004611f33565b610f43565b3480156105c957600080fd5b506102b86105d8366004611d5c565b610f7d565b61031d6105eb366004611fae565b610fb1565b3480156105fc57600080fd5b5061029560c881565b34801561061157600080fd5b50610295610620366004611edc565b61113c565b34801561063157600080fd5b5061026b61064036600461205f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561067a57600080fd5b50610295600a5481565b34801561069057600080fd5b50610295611d9981565b3480156106a657600080fd5b5061031d6106b5366004611d5c565b611147565b3480156106c657600080fd5b5061031d6106d5366004611edc565b611176565b3480156106e657600080fd5b5061031d61120e565b3480156106fb57600080fd5b5061031d61070a366004611d5c565b61124c565b60006001600160e01b031982166380ac58cd60e01b148061074057506001600160e01b03198216635b5e139f60e01b145b8061075b57506001600160e01b0319821663780e9d6360e01b145b8061077657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461078b90612092565b80601f01602080910402602001604051908101604052809291908181526020018280546107b790612092565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b60006108198261127b565b610836576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061085d82610bac565b9050806001600160a01b0316836001600160a01b0316036108915760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108b157506108af8133610640565b155b156108cf576040516367d9dca160e11b815260040160405180910390fd5b6108da8383836112af565b505050565b6007546000906001600160a01b031633146109155760405162461bcd60e51b815260040161090c906120cc565b60405180910390fd5b504790565b6000546001600160801b03600160801b82048116918116919091031690565b6108da83838361130b565b600061094f83610bbe565b821061096e576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610a3857600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906109e65750610a30565b80516001600160a01b0316156109fb57805192505b876001600160a01b0316836001600160a01b031603610a2e57868403610a275750935061077692505050565b6001909301925b505b60010161097f565b50600080fd5b610a4b60c8611d99612117565b81565b6007546001600160a01b03163314610a785760405162461bcd60e51b815260040161090c906120cc565b6040514790339082156108fc029083906000818181858888f19350505050158015610aa7573d6000803e3d6000fd5b5050565b6108da83838360405180602001604052806000815250610f43565b600080546001600160801b031681805b82811015610b5557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610b4c57858303610b455750949350505050565b6001909201915b50600101610ad6565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610b995760405162461bcd60e51b815260040161090c906120cc565b8051610aa790600c906020840190611c1e565b6000610bb782611528565b5192915050565b60006001600160a01b038216610be7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610c365760405162461bcd60e51b815260040161090c906120cc565b610c40600061164a565b565b6007546001600160a01b03163314610c6c5760405162461bcd60e51b815260040161090c906120cc565b6000610c7661091a565b905060008211610cbb5760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081d1bdbc81cdb585b1b60821b604482015260640161090c565b600a821115610d045760405162461bcd60e51b815260206004820152601560248201527409ac2f040626040e8ded6cadce640e0cae440e8e4f605b1b604482015260640161090c565b610d1160c8611d99612117565b610d1b8383612117565b1115610d695760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520657863656564696e67206d617820737570706c79000000604482015260640161090c565b6108da838361169c565b6007546001600160a01b03163314610d9d5760405162461bcd60e51b815260040161090c906120cc565b600955565b60606002805461078b90612092565b600b54610100900460ff16610df55760405162461bcd60e51b815260206004820152600a60248201526910d85b89dd081b5a5b9d60b21b604482015260640161090c565b3481600954610e04919061212f565b14610e515760405162461bcd60e51b815260206004820152601b60248201527f53656e742065746865722076616c20697320696e636f72726563740000000000604482015260640161090c565b610e5a816116b6565b610e64338261169c565b50565b336001600160a01b03831603610e905760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314610f265760405162461bcd60e51b815260040161090c906120cc565b600b805461ff001981166101009182900460ff1615909102179055565b610f4e84848461130b565b610f5a848484846117a9565b610f77576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600c610f8a836118ac565b604051602001610f9b92919061216a565b6040516020818303038152906040529050919050565b600b5460ff16610ff05760405162461bcd60e51b815260206004820152600a60248201526910d85b89dd081b5a5b9d60b21b604482015260640161090c565b3482600854610fff919061212f565b1461104c5760405162461bcd60e51b815260206004820152601b60248201527f53656e742065746865722076616c20697320696e636f72726563740000000000604482015260640161090c565b8161105633610bbe565b611061906004612224565b10156110a55760405162461bcd60e51b8152602060048201526013602482015272086c2dce840dad2dce840e8d0c2e840daeac6d606b1b604482015260640161090c565b6110ae826116b6565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506110f482600a54836119ac565b6111325760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161090c565b6108da338461169c565b6000610776826119c2565b6007546001600160a01b031633146111715760405162461bcd60e51b815260040161090c906120cc565b600a55565b6007546001600160a01b031633146111a05760405162461bcd60e51b815260040161090c906120cc565b6001600160a01b0381166112055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090c565b610e648161164a565b6007546001600160a01b031633146112385760405162461bcd60e51b815260040161090c906120cc565b600b805460ff19811660ff90911615179055565b6007546001600160a01b031633146112765760405162461bcd60e51b815260040161090c906120cc565b600855565b600080546001600160801b031682108015610776575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061131682611528565b80519091506000906001600160a01b0316336001600160a01b03161480611344575081516113449033610640565b8061135f5750336113548461080e565b6001600160a01b0316145b90508061137f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146113b45760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166113db57604051633a954ecd60e21b815260040160405180910390fd5b6113eb60008484600001516112af565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166114de576000546001600160801b03168110156114de57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561163157600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061162f5780516001600160a01b0316156115c6579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561162a579392505050565b6115c6565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610aa7828260405180602001604052806000815250611a17565b60006116c061091a565b9050600082116117055760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081d1bdbc81cdb585b1b60821b604482015260640161090c565b600a82111561174e5760405162461bcd60e51b815260206004820152601560248201527409ac2f040626040e8ded6cadce640e0cae440e8e4f605b1b604482015260640161090c565b611d9961175b8383612117565b1115610aa75760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520657863656564696e67206d617820737570706c79000000604482015260640161090c565b60006001600160a01b0384163b156118a057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ed90339089908890889060040161223b565b6020604051808303816000875af1925050508015611828575060408051601f3d908101601f1916820190925261182591810190612278565b60015b611886573d808015611856576040519150601f19603f3d011682016040523d82523d6000602084013e61185b565b606091505b50805160000361187e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118a4565b5060015b949350505050565b6060816000036118d35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118fd57806118e781612295565b91506118f69050600a836122c4565b91506118d7565b6000816001600160401b0381111561191757611917611df7565b6040519080825280601f01601f191660200182016040528015611941576020820181803683370190505b5090505b84156118a457611956600183612224565b9150611963600a866122d8565b61196e906030612117565b60f81b818381518110611983576119836122ec565b60200101906001600160f81b031916908160001a9053506119a5600a866122c4565b9450611945565b6000826119b98584611a24565b14949350505050565b60006001600160a01b0382166119eb576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260046020526040902054600160401b90046001600160401b031690565b6108da8383836001611a98565b600081815b8451811015611a90576000858281518110611a4657611a466122ec565b60200260200101519050808311611a6c5760008381526020829052604090209250611a7d565b600081815260208490526040902092505b5080611a8881612295565b915050611a29565b509392505050565b6000546001600160801b03166001600160a01b038516611aca57604051622e076360e81b815260040160405180910390fd5b83600003611aeb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611bf85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611bce5750611bcc60008884886117a9565b155b15611bec576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611b77565b50600080546001600160801b0319166001600160801b0392909216919091179055611521565b828054611c2a90612092565b90600052602060002090601f016020900481019282611c4c5760008555611c92565b82601f10611c6557805160ff1916838001178555611c92565b82800160010185558215611c92579182015b82811115611c92578251825591602001919060010190611c77565b50611c9e929150611ca2565b5090565b5b80821115611c9e5760008155600101611ca3565b6001600160e01b031981168114610e6457600080fd5b600060208284031215611cdf57600080fd5b8135611cea81611cb7565b9392505050565b60005b83811015611d0c578181015183820152602001611cf4565b83811115610f775750506000910152565b60008151808452611d35816020860160208601611cf1565b601f01601f19169290920160200192915050565b602081526000611cea6020830184611d1d565b600060208284031215611d6e57600080fd5b5035919050565b80356001600160a01b0381168114611d8c57600080fd5b919050565b60008060408385031215611da457600080fd5b611dad83611d75565b946020939093013593505050565b600080600060608486031215611dd057600080fd5b611dd984611d75565b9250611de760208501611d75565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611e3557611e35611df7565b604052919050565b60006001600160401b03831115611e5657611e56611df7565b611e69601f8401601f1916602001611e0d565b9050828152838383011115611e7d57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611ea657600080fd5b81356001600160401b03811115611ebc57600080fd5b8201601f81018413611ecd57600080fd5b6118a484823560208401611e3d565b600060208284031215611eee57600080fd5b611cea82611d75565b60008060408385031215611f0a57600080fd5b611f1383611d75565b915060208301358015158114611f2857600080fd5b809150509250929050565b60008060008060808587031215611f4957600080fd5b611f5285611d75565b9350611f6060208601611d75565b92506040850135915060608501356001600160401b03811115611f8257600080fd5b8501601f81018713611f9357600080fd5b611fa287823560208401611e3d565b91505092959194509250565b60008060408385031215611fc157600080fd5b823591506020808401356001600160401b0380821115611fe057600080fd5b818601915086601f830112611ff457600080fd5b81358181111561200657612006611df7565b8060051b9150612017848301611e0d565b818152918301840191848101908984111561203157600080fd5b938501935b8385101561204f57843582529385019390850190612036565b8096505050505050509250929050565b6000806040838503121561207257600080fd5b61207b83611d75565b915061208960208401611d75565b90509250929050565b600181811c908216806120a657607f821691505b6020821081036120c657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561212a5761212a612101565b500190565b600081600019048311821515161561214957612149612101565b500290565b60008151612160818560208601611cf1565b9290920192915050565b600080845481600182811c91508083168061218657607f831692505b602080841082036121a557634e487b7160e01b86526022600452602486fd5b8180156121b957600181146121ca576121f7565b60ff198616895284890196506121f7565b60008b81526020902060005b868110156121ef5781548b8201529085019083016121d6565b505084890196505b50505050505061221b61220a828661214e565b64173539b7b760d91b815260050190565b95945050505050565b60008282101561223657612236612101565b500390565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226e90830184611d1d565b9695505050505050565b60006020828403121561228a57600080fd5b8151611cea81611cb7565b6000600182016122a7576122a7612101565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826122d3576122d36122ae565b500490565b6000826122e7576122e76122ae565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212209724549345a49c8b7a436a50659bbbfa4da4435fee39ec8d13ebd697fa3f335f64736f6c634300080d0033
Deployed Bytecode Sourcemap
46741:3736:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14979:372;;;;;;;;;;-1:-1:-1;14979:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;14979:372:0;;;;;;;;46956:45;;;;;;;;;;;;46999:2;46956:45;;;;;738:25:1;;;726:2;711:18;46956:45:0;592:177:1;17589:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;19092:204::-;;;;;;;;;;-1:-1:-1;19092:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;19092:204:0;1732:203:1;18655:371:0;;;;;;;;;;-1:-1:-1;18655:371:0;;;;;:::i;:::-;;:::i;:::-;;49933:108;;;;;;;;;;;;;:::i;12216:280::-;;;;;;;;;;;;;:::i;19949:170::-;;;;;;;;;;-1:-1:-1;19949:170:0;;;;;:::i;:::-;;:::i;13802:1105::-;;;;;;;;;;-1:-1:-1;13802:1105:0;;;;;:::i;:::-;;:::i;46854:43::-;;;;;;;;;;;;;;;;47165:70;;;;;;;;;;;;;:::i;47316:35::-;;;;;;;;;;-1:-1:-1;47316:35:0;;;;;;;;;;;49571:143;;;;;;;;;;;;;:::i;20190:185::-;;;;;;;;;;-1:-1:-1;20190:185:0;;;;;:::i;:::-;;:::i;12789:713::-;;;;;;;;;;-1:-1:-1;12789:713:0;;;;;:::i;:::-;;:::i;50051:104::-;;;;;;;;;;-1:-1:-1;50051:104:0;;;;;:::i;:::-;;:::i;17398:124::-;;;;;;;;;;-1:-1:-1;17398:124:0;;;;;:::i;:::-;;:::i;46905:44::-;;;;;;;;;;;;;;;;15415:206;;;;;;;;;;-1:-1:-1;15415:206:0;;;;;:::i;:::-;;:::i;43815:94::-;;;;;;;;;;;;;:::i;47274:34::-;;;;;;;;;;-1:-1:-1;47274:34:0;;;;;;;;47008:45;;;;;;;;;;;;47052:1;47008:45;;47857:387;;;;;;;;;;-1:-1:-1;47857:387:0;;;;;:::i;:::-;;:::i;43164:87::-;;;;;;;;;;-1:-1:-1;43237:6:0;;-1:-1:-1;;;;;43237:6:0;43164:87;;49726:93;;;;;;;;;;-1:-1:-1;49726:93:0;;;;;:::i;:::-;;:::i;17758:104::-;;;;;;;;;;;;;:::i;49184:273::-;;;;;;:::i;:::-;;:::i;19368:279::-;;;;;;;;;;-1:-1:-1;19368:279:0;;;;;:::i;:::-;;:::i;47742:103::-;;;;;;;;;;;;;:::i;20446:342::-;;;;;;;;;;-1:-1:-1;20446:342:0;;;;;:::i;:::-;;:::i;50163:190::-;;;;;;;;;;-1:-1:-1;50163:190:0;;;;;:::i;:::-;;:::i;48597:579::-;;;;;;:::i;:::-;;:::i;47113:45::-;;;;;;;;;;;;47155:3;47113:45;;50361:113;;;;;;;;;;-1:-1:-1;50361:113:0;;;;;:::i;:::-;;:::i;19718:164::-;;;;;;;;;;-1:-1:-1;19718:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;19839:25:0;;;19815:4;19839:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;19718:164;47248:19;;;;;;;;;;;;;;;;47060:46;;;;;;;;;;;;47102:4;47060:46;;49468:89;;;;;;;;;;-1:-1:-1;49468:89:0;;;;;:::i;:::-;;:::i;44064:192::-;;;;;;;;;;-1:-1:-1;44064:192:0;;;;;:::i;:::-;;:::i;47630:100::-;;;;;;;;;;;;;:::i;49827:94::-;;;;;;;;;;-1:-1:-1;49827:94:0;;;;;:::i;:::-;;:::i;14979:372::-;15081:4;-1:-1:-1;;;;;;15118:40:0;;-1:-1:-1;;;15118:40:0;;:105;;-1:-1:-1;;;;;;;15175:48:0;;-1:-1:-1;;;15175:48:0;15118:105;:172;;;-1:-1:-1;;;;;;;15240:50:0;;-1:-1:-1;;;15240:50:0;15118:172;:225;;;-1:-1:-1;;;;;;;;;;8952:40:0;;;15307:36;15098:245;14979:372;-1:-1:-1;;14979:372:0:o;17589:100::-;17643:13;17676:5;17669:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17589:100;:::o;19092:204::-;19160:7;19185:16;19193:7;19185;:16::i;:::-;19180:64;;19210:34;;-1:-1:-1;;;19210:34:0;;;;;;;;;;;19180:64;-1:-1:-1;19264:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;19264:24:0;;19092:204::o;18655:371::-;18728:13;18744:24;18760:7;18744:15;:24::i;:::-;18728:40;;18789:5;-1:-1:-1;;;;;18783:11:0;:2;-1:-1:-1;;;;;18783:11:0;;18779:48;;18803:24;;-1:-1:-1;;;18803:24:0;;;;;;;;;;;18779:48;790:10;-1:-1:-1;;;;;18844:21:0;;;;;;:63;;-1:-1:-1;18870:37:0;18887:5;790:10;19718:164;:::i;18870:37::-;18869:38;18844:63;18840:138;;;18931:35;;-1:-1:-1;;;18931:35:0;;;;;;;;;;;18840:138;18990:28;18999:2;19003:7;19012:5;18990:8;:28::i;:::-;18717:309;18655:371;;:::o;49933:108::-;43237:6;;49986:7;;-1:-1:-1;;;;;43237:6:0;790:10;43384:23;43376:68;;;;-1:-1:-1;;;43376:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;50012:21:0::1;49933:108:::0;:::o;12216:280::-;12269:7;12461:12;-1:-1:-1;;;;;;;;12461:12:0;;;;12445:13;;;:28;;;;12438:35;;12216:280::o;19949:170::-;20083:28;20093:4;20099:2;20103:7;20083:9;:28::i;13802:1105::-;13891:7;13924:16;13934:5;13924:9;:16::i;:::-;13915:5;:25;13911:61;;13949:23;;-1:-1:-1;;;13949:23:0;;;;;;;;;;;13911:61;13983:22;14008:13;;-1:-1:-1;;;;;14008:13:0;;13983:22;;14258:557;14278:14;14274:1;:18;14258:557;;;14318:31;14352:14;;;:11;:14;;;;;;;;;14318:48;;;;;;;;;-1:-1:-1;;;;;14318:48:0;;;;-1:-1:-1;;;14318:48:0;;-1:-1:-1;;;;;14318:48:0;;;;;;;;-1:-1:-1;;;14318:48:0;;;;;;;;;;;;;;;;14385:73;;14430:8;;;14385:73;14480:14;;-1:-1:-1;;;;;14480:28:0;;14476:111;;14553:14;;;-1:-1:-1;14476:111:0;14630:5;-1:-1:-1;;;;;14609:26:0;:17;-1:-1:-1;;;;;14609:26:0;;14605:195;;14679:5;14664:11;:20;14660:85;;-1:-1:-1;14720:1:0;-1:-1:-1;14713:8:0;;-1:-1:-1;;;14713:8:0;14660:85;14767:13;;;;;14605:195;14299:516;14258:557;14294:3;;14258:557;;;;14891:8;;;47165:70;47202:33;47155:3;47102:4;47202:33;:::i;:::-;47165:70;:::o;49571:143::-;43237:6;;-1:-1:-1;;;;;43237:6:0;790:10;43384:23;43376:68;;;;-1:-1:-1;;;43376:68:0;;;;;;;:::i;:::-;49669:37:::1;::::0;49637:21:::1;::::0;49677:10:::1;::::0;49669:37;::::1;;;::::0;49637:21;;49619:15:::1;49669:37:::0;49619:15;49669:37;49637:21;49677:10;49669:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49608:106;49571:143::o:0;20190:185::-;20328:39;20345:4;20351:2;20355:7;20328:39;;;;;;;;;;;;:16;:39::i;12789:713::-;12856:7;12901:13;;-1:-1:-1;;;;;12901:13:0;12856:7;;13115:328;13135:14;13131:1;:18;13115:328;;;13175:31;13209:14;;;:11;:14;;;;;;;;;13175:48;;;;;;;;;-1:-1:-1;;;;;13175:48:0;;;;-1:-1:-1;;;13175:48:0;;-1:-1:-1;;;;;13175:48:0;;;;;;;;-1:-1:-1;;;13175:48:0;;;;;;;;;;;;;;13242:186;;13307:5;13292:11;:20;13288:85;;-1:-1:-1;13348:1:0;12789:713;-1:-1:-1;;;;12789:713:0:o;13288:85::-;13395:13;;;;;13242:186;-1:-1:-1;13151:3:0;;13115:328;;;;13471:23;;-1:-1:-1;;;13471:23:0;;;;;;;;;;;50051:104;43237:6;;-1:-1:-1;;;;;43237:6:0;790:10;43384:23;43376:68;;;;-1:-1:-1;;;43376:68:0;;;;;;;:::i;:::-;50123:24;;::::1;::::0;:13:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;17398:124::-:0;17462:7;17489:20;17501:7;17489:11;:20::i;:::-;:25;;17398:124;-1:-1:-1;;17398:124:0:o;15415:206::-;15479:7;-1:-1:-1;;;;;15503:19:0;;15499:60;;15531:28;;-1:-1:-1;;;15531:28:0;;;;;;;;;;;15499:60;-1:-1:-1;;;;;;15585:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;15585:27:0;;15415:206::o;43815:94::-;43237:6;;-1:-1:-1;;;;;43237:6:0;790:10;43384:23;43376:68;;;;-1:-1:-1;;;43376:68:0;;;;;;;:::i;:::-;43880:21:::1;43898:1;43880:9;:21::i;:::-;43815:94::o:0;47857:387::-;43237:6;;-1:-1:-1;;;;;43237:6:0;790:10;43384:23;43376:68;;;;-1:-1:-1;;;43376:68:0;;;;;;;:::i;:::-;47933:19:::1;47955:13;:11;:13::i;:::-;47933:35;;48004:1;47993:8;:12;47985:41;;;::::0;-1:-1:-1;;;47985:41:0;;7884:2:1;47985:41:0::1;::::0;::::1;7866:21:1::0;7923:2;7903:18;;;7896:30;-1:-1:-1;;;7942:18:1;;;7935:46;7998:18;;47985:41:0::1;7682:340:1::0;47985:41:0::1;46999:2;48045:8;:28;;48037:62;;;::::0;-1:-1:-1;;;48037:62:0;;8229:2:1;48037:62:0::1;::::0;::::1;8211:21:1::0;8268:2;8248:18;;;8241:30;-1:-1:-1;;;8287:18:1;;;8280:51;8348:18;;48037:62:0::1;8027:345:1::0;48037:62:0::1;47202:33;47155:3;47102:4;47202:33;:::i;:::-;48120:22;48134:8:::0;48120:11;:22:::1;:::i;:::-;48119:38;;48111:80;;;::::0;-1:-1:-1;;;48111:80:0;;8579:2:1;48111:80:0::1;::::0;::::1;8561:21:1::0;8618:2;8598:18;;;8591:30;8657:31;8637:18;;;8630:59;8706:18;;48111:80:0::1;8377:353:1::0;48111:80:0::1;48205:23;48215:2;48219:8;48205:9;:23::i;49726:93::-:0;43237:6;;-1:-1:-1;;;;;43237:6:0;790:10;43384:23;43376:68;;;;-1:-1:-1;;;43376:68:0;;;;;;;:::i;:::-;49794:9:::1;:17:::0;49726:93::o;17758:104::-;17814:13;17847:7;17840:14;;;;;:::i;49184:273::-;49258:15;;;;;;;49250:38;;;;-1:-1:-1;;;49250:38:0;;8937:2:1;49250:38:0;;;8919:21:1;8976:2;8956:18;;;8949:30;-1:-1:-1;;;8995:18:1;;;8988:40;9045:18;;49250:38:0;8735:334:1;49250:38:0;49331:9;49319:8;49307:9;;:20;;;;:::i;:::-;:33;49299:73;;;;-1:-1:-1;;;49299:73:0;;9449:2:1;49299:73:0;;;9431:21:1;9488:2;9468:18;;;9461:30;9527:29;9507:18;;;9500:57;9574:18;;49299:73:0;9247:351:1;49299:73:0;49383:20;49394:8;49383:10;:20::i;:::-;49416:31;49426:10;49438:8;49416:9;:31::i;:::-;49184:273;:::o;19368:279::-;790:10;-1:-1:-1;;;;;19459:24:0;;;19455:54;;19492:17;;-1:-1:-1;;;19492:17:0;;;;;;;;;;;19455:54;790:10;19522:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;19522:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;19522:53:0;;;;;;;;;;19591:48;;540:41:1;;;19522:42:0;;790:10;19591:48;;513:18:1;19591:48:0;;;;;;;19368:279;;:::o;47742:103::-;43237:6;;-1:-1:-1;;;;;43237:6:0;790:10;43384:23;43376:68;;;;-1:-1:-1;;;43376:68:0;;;;;;;:::i;:::-;47822:15:::1;::::0;;-1:-1:-1;;47803:34:0;::::1;47822:15;::::0;;;::::1;;;47821:16;47803:34:::0;;::::1;;::::0;;47742:103::o;20446:342::-;20613:28;20623:4;20629:2;20633:7;20613:9;:28::i;:::-;20657:48;20680:4;20686:2;20690:7;20699:5;20657:22;:48::i;:::-;20652:129;;20729:40;;-1:-1:-1;;;20729:40:0;;;;;;;;;;;20652:129;20446:342;;;;:::o;50163:190::-;50236:13;50301;50316:18;:7;:16;:18::i;:::-;50284:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50270:75;;50163:190;;;:::o;48597:579::-;48700:14;;;;48692:37;;;;-1:-1:-1;;;48692:37:0;;8937:2:1;48692:37:0;;;8919:21:1;8976:2;8956:18;;;8949:30;-1:-1:-1;;;8995:18:1;;;8988:40;9045:18;;48692:37:0;8735:334:1;48692:37:0;48772:9;48760:8;48749;;:19;;;;:::i;:::-;:32;48741:72;;;;-1:-1:-1;;;48741:72:0;;9449:2:1;48741:72:0;;;9431:21:1;9488:2;9468:18;;;9461:30;9527:29;9507:18;;;9500:57;9574:18;;48741:72:0;9247:351:1;48741:72:0;48886:8;48860:21;48870:10;48860:9;:21::i;:::-;48840:41;;47052:1;48840:41;:::i;:::-;48839:55;;48831:87;;;;-1:-1:-1;;;48831:87:0;;11675:2:1;48831:87:0;;;11657:21:1;11714:2;11694:18;;;11687:30;-1:-1:-1;;;11733:18:1;;;11726:49;11792:18;;48831:87:0;11473:343:1;48831:87:0;48932:20;48943:8;48932:10;:20::i;:::-;49011:28;;-1:-1:-1;;49028:10:0;11970:2:1;11966:15;11962:53;49011:28:0;;;11950:66:1;48986:12:0;;12032::1;;49011:28:0;;;;;;;;;;;;49001:39;;;;;;48986:54;;49059:38;49078:6;49086:4;;49092;49059:18;:38::i;:::-;49051:66;;;;-1:-1:-1;;;49051:66:0;;12257:2:1;49051:66:0;;;12239:21:1;12296:2;12276:18;;;12269:30;-1:-1:-1;;;12315:18:1;;;12308:45;12370:18;;49051:66:0;12055:339:1;49051:66:0;49137:31;49147:10;49159:8;49137:9;:31::i;50361:113::-;50419:7;50446:20;50460:5;50446:13;:20::i;49468:89::-;43237:6;;-1:-1:-1;;;;;43237:6:0;790:10;43384:23;43376:68;;;;-1:-1:-1;;;43376:68:0;;;;;;;:::i;:::-;49528:4:::1;:21:::0;49468:89::o;44064:192::-;43237:6;;-1:-1:-1;;;;;43237:6:0;790:10;43384:23;43376:68;;;;-1:-1:-1;;;43376:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44153:22:0;::::1;44145:73;;;::::0;-1:-1:-1;;;44145:73:0;;12601:2:1;44145:73:0::1;::::0;::::1;12583:21:1::0;12640:2;12620:18;;;12613:30;12679:34;12659:18;;;12652:62;-1:-1:-1;;;12730:18:1;;;12723:36;12776:19;;44145:73:0::1;12399:402:1::0;44145:73:0::1;44229:19;44239:8;44229:9;:19::i;47630:100::-:0;43237:6;;-1:-1:-1;;;;;43237:6:0;790:10;43384:23;43376:68;;;;-1:-1:-1;;;43376:68:0;;;;;;;:::i;:::-;47708:14:::1;::::0;;-1:-1:-1;;47690:32:0;::::1;47708:14;::::0;;::::1;47707:15;47690:32;::::0;;47630:100::o;49827:94::-;43237:6;;-1:-1:-1;;;;;43237:6:0;790:10;43384:23;43376:68;;;;-1:-1:-1;;;43376:68:0;;;;;;;:::i;:::-;49897:8:::1;:16:::0;49827:94::o;21043:144::-;21100:4;21134:13;;-1:-1:-1;;;;;21134:13:0;21124:23;;:55;;;;-1:-1:-1;;21152:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;21152:27:0;;;;21151:28;;21043:144::o;28259:196::-;28374:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;28374:29:0;-1:-1:-1;;;;;28374:29:0;;;;;;;;;28419:28;;28374:24;;28419:28;;;;;;;28259:196;;;:::o;23760:2112::-;23875:35;23913:20;23925:7;23913:11;:20::i;:::-;23988:18;;23875:58;;-1:-1:-1;23946:22:0;;-1:-1:-1;;;;;23972:34:0;790:10;-1:-1:-1;;;;;23972:34:0;;:101;;;-1:-1:-1;24040:18:0;;24023:50;;790:10;19718:164;:::i;24023:50::-;23972:154;;;-1:-1:-1;790:10:0;24090:20;24102:7;24090:11;:20::i;:::-;-1:-1:-1;;;;;24090:36:0;;23972:154;23946:181;;24145:17;24140:66;;24171:35;;-1:-1:-1;;;24171:35:0;;;;;;;;;;;24140:66;24243:4;-1:-1:-1;;;;;24221:26:0;:13;:18;;;-1:-1:-1;;;;;24221:26:0;;24217:67;;24256:28;;-1:-1:-1;;;24256:28:0;;;;;;;;;;;24217:67;-1:-1:-1;;;;;24299:16:0;;24295:52;;24324:23;;-1:-1:-1;;;24324:23:0;;;;;;;;;;;24295:52;24468:49;24485:1;24489:7;24498:13;:18;;;24468:8;:49::i;:::-;-1:-1:-1;;;;;24813:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;24813:31:0;;;-1:-1:-1;;;;;24813:31:0;;;-1:-1:-1;;24813:31:0;;;;;;;24859:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;24859:29:0;;;;;;;;;;;24905:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;24950:61:0;;;;-1:-1:-1;;;24995:15:0;24950:61;;;;;;;;;;;25285:11;;;25315:24;;;;;:29;25285:11;;25315:29;25311:445;;25540:13;;-1:-1:-1;;;;;25540:13:0;25526:27;;25522:219;;;25610:18;;;25578:24;;;:11;:24;;;;;;;;:50;;25693:28;;;;-1:-1:-1;;;;;25651:70:0;-1:-1:-1;;;25651:70:0;-1:-1:-1;;;;;;25651:70:0;;;-1:-1:-1;;;;;25578:50:0;;;25651:70;;;;;;;25522:219;24788:979;25803:7;25799:2;-1:-1:-1;;;;;25784:27:0;25793:4;-1:-1:-1;;;;;25784:27:0;;;;;;;;;;;25822:42;23864:2008;;23760:2112;;;:::o;16253:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;16419:13:0;;16363:7;;-1:-1:-1;;;;;16419:13:0;16412:20;;16408:861;;;16453:31;16487:17;;;:11;:17;;;;;;;;;16453:51;;;;;;;;;-1:-1:-1;;;;;16453:51:0;;;;-1:-1:-1;;;16453:51:0;;-1:-1:-1;;;;;16453:51:0;;;;;;;;-1:-1:-1;;;16453:51:0;;;;;;;;;;;;;;16523:731;;16573:14;;-1:-1:-1;;;;;16573:28:0;;16569:101;;16637:9;16253:1083;-1:-1:-1;;;16253:1083:0:o;16569:101::-;-1:-1:-1;;;17014:6:0;17059:17;;;;:11;:17;;;;;;;;;17047:29;;;;;;;;;-1:-1:-1;;;;;17047:29:0;;;;;-1:-1:-1;;;17047:29:0;;-1:-1:-1;;;;;17047:29:0;;;;;;;;-1:-1:-1;;;17047:29:0;;;;;;;;;;;;;17107:28;17103:109;;17175:9;16253:1083;-1:-1:-1;;;16253:1083:0:o;17103:109::-;16974:261;;;16434:835;16408:861;17297:31;;-1:-1:-1;;;17297:31:0;;;;;;;;;;;44264:173;44339:6;;;-1:-1:-1;;;;;44356:17:0;;;-1:-1:-1;;;;;;44356:17:0;;;;;;;44389:40;;44339:6;;;44356:17;44339:6;;44389:40;;44320:16;;44389:40;44309:128;44264:173;:::o;21195:104::-;21264:27;21274:2;21278:8;21264:27;;;;;;;;;;;;:9;:27::i;48252:337::-;48314:19;48336:13;:11;:13::i;:::-;48314:35;;48388:1;48377:8;:12;48369:41;;;;-1:-1:-1;;;48369:41:0;;7884:2:1;48369:41:0;;;7866:21:1;7923:2;7903:18;;;7896:30;-1:-1:-1;;;7942:18:1;;;7935:46;7998:18;;48369:41:0;7682:340:1;48369:41:0;46999:2;48429:8;:28;;48421:62;;;;-1:-1:-1;;;48421:62:0;;8229:2:1;48421:62:0;;;8211:21:1;8268:2;8248:18;;;8241:30;-1:-1:-1;;;8287:18:1;;;8280:51;8348:18;;48421:62:0;8027:345:1;48421:62:0;47102:4;48504:22;48518:8;48504:11;:22;:::i;:::-;48503:43;;48495:85;;;;-1:-1:-1;;;48495:85:0;;8579:2:1;48495:85:0;;;8561:21:1;8618:2;8598:18;;;8591:30;8657:31;8637:18;;;8630:59;8706:18;;48495:85:0;8377:353:1;29020:790:0;29175:4;-1:-1:-1;;;;;29196:13:0;;34534:20;34582:8;29192:611;;29232:72;;-1:-1:-1;;;29232:72:0;;-1:-1:-1;;;;;29232:36:0;;;;;:72;;790:10;;29283:4;;29289:7;;29298:5;;29232:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29232:72:0;;;;;;;;-1:-1:-1;;29232:72:0;;;;;;;;;;;;:::i;:::-;;;29228:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29478:6;:13;29495:1;29478:18;29474:259;;29528:40;;-1:-1:-1;;;29528:40:0;;;;;;;;;;;29474:259;29683:6;29677:13;29668:6;29664:2;29660:15;29653:38;29228:520;-1:-1:-1;;;;;;29355:55:0;-1:-1:-1;;;29355:55:0;;-1:-1:-1;29348:62:0;;29192:611;-1:-1:-1;29787:4:0;29192:611;29020:790;;;;;;:::o;31719:723::-;31775:13;31996:5;32005:1;31996:10;31992:53;;-1:-1:-1;;32023:10:0;;;;;;;;;;;;-1:-1:-1;;;32023:10:0;;;;;31719:723::o;31992:53::-;32070:5;32055:12;32111:78;32118:9;;32111:78;;32144:8;;;;:::i;:::-;;-1:-1:-1;32167:10:0;;-1:-1:-1;32175:2:0;32167:10;;:::i;:::-;;;32111:78;;;32199:19;32231:6;-1:-1:-1;;;;;32221:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32221:17:0;;32199:39;;32249:154;32256:10;;32249:154;;32283:11;32293:1;32283:11;;:::i;:::-;;-1:-1:-1;32352:10:0;32360:2;32352:5;:10;:::i;:::-;32339:24;;:2;:24;:::i;:::-;32326:39;;32309:6;32316;32309:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;32309:56:0;;;;;;;;-1:-1:-1;32380:11:0;32389:2;32380:11;;:::i;:::-;;;32249:154;;45250:190;45375:4;45428;45399:25;45412:5;45419:4;45399:12;:25::i;:::-;:33;;45250:190;-1:-1:-1;;;;45250:190:0:o;15629:207::-;15690:7;-1:-1:-1;;;;;15714:19:0;;15710:59;;15742:27;;-1:-1:-1;;;15742:27:0;;;;;;;;;;;15710:59;-1:-1:-1;;;;;;15795:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;15795:32:0;;-1:-1:-1;;;;;15795:32:0;;15629:207::o;21662:163::-;21785:32;21791:2;21795:8;21805:5;21812:4;21785:5;:32::i;45802:675::-;45885:7;45928:4;45885:7;45943:497;45967:5;:12;45963:1;:16;45943:497;;;46001:20;46024:5;46030:1;46024:8;;;;;;;;:::i;:::-;;;;;;;46001:31;;46067:12;46051;:28;46047:382;;46553:13;46603:15;;;46639:4;46632:15;;;46686:4;46670:21;;46179:57;;46047:382;;;46553:13;46603:15;;;46639:4;46632:15;;;46686:4;46670:21;;46356:57;;46047:382;-1:-1:-1;45981:3:0;;;;:::i;:::-;;;;45943:497;;;-1:-1:-1;46457:12:0;45802:675;-1:-1:-1;;;45802:675:0:o;22084:1422::-;22223:20;22246:13;-1:-1:-1;;;;;22246:13:0;-1:-1:-1;;;;;22274:16:0;;22270:48;;22299:19;;-1:-1:-1;;;22299:19:0;;;;;;;;;;;22270:48;22333:8;22345:1;22333:13;22329:44;;22355:18;;-1:-1:-1;;;22355:18:0;;;;;;;;;;;22329:44;-1:-1:-1;;;;;22725:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;22784:49:0;;-1:-1:-1;;;;;22725:44:0;;;;;;;22784:49;;;-1:-1:-1;;;;;22725:44:0;;;;;;22784:49;;;;;;;;;;;;;;;;22850:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;22900:66:0;;;;-1:-1:-1;;;22950:15:0;22900:66;;;;;;;;;;;22850:25;;23035:328;23055:8;23051:1;:12;23035:328;;;23094:38;;23119:12;;-1:-1:-1;;;;;23094:38:0;;;23111:1;;23094:38;;23111:1;;23094:38;23155:4;:68;;;;;23164:59;23195:1;23199:2;23203:12;23217:5;23164:22;:59::i;:::-;23163:60;23155:68;23151:164;;;23255:40;;-1:-1:-1;;;23255:40:0;;;;;;;;;;;23151:164;23333:14;;;;;23065:3;23035:328;;;-1:-1:-1;23379:13:0;:37;;-1:-1:-1;;;;;;23379:37:0;-1:-1:-1;;;;;23379:37:0;;;;;;;;;;23438:60;20446:342;-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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:269::-;1090:3;1128:5;1122:12;1155:6;1150:3;1143:19;1171:63;1227:6;1220:4;1215:3;1211:14;1204:4;1197:5;1193:16;1171:63;:::i;:::-;1288:2;1267:15;-1:-1:-1;;1263:29:1;1254:39;;;;1295:4;1250:50;;1037:269;-1:-1:-1;;1037:269:1:o;1311:231::-;1460:2;1449:9;1442:21;1423:4;1480:56;1532:2;1521:9;1517:18;1509:6;1480:56;:::i;1547:180::-;1606:6;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;-1:-1:-1;1698:23:1;;1547:180;-1:-1:-1;1547:180:1:o;1940:173::-;2008:20;;-1:-1:-1;;;;;2057:31:1;;2047:42;;2037:70;;2103:1;2100;2093:12;2037:70;1940:173;;;:::o;2118:254::-;2186:6;2194;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2286:29;2305:9;2286:29;:::i;:::-;2276:39;2362:2;2347:18;;;;2334:32;;-1:-1:-1;;;2118:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:127::-;2771:10;2766:3;2762:20;2759:1;2752:31;2802:4;2799:1;2792:15;2826:4;2823:1;2816:15;2842:275;2913:2;2907:9;2978:2;2959:13;;-1:-1:-1;;2955:27:1;2943:40;;-1:-1:-1;;;;;2998:34:1;;3034:22;;;2995:62;2992:88;;;3060:18;;:::i;:::-;3096:2;3089:22;2842:275;;-1:-1:-1;2842:275:1:o;3122:407::-;3187:5;-1:-1:-1;;;;;3213:6:1;3210:30;3207:56;;;3243:18;;:::i;:::-;3281:57;3326:2;3305:15;;-1:-1:-1;;3301:29:1;3332:4;3297:40;3281:57;:::i;:::-;3272:66;;3361:6;3354:5;3347:21;3401:3;3392:6;3387:3;3383:16;3380:25;3377:45;;;3418:1;3415;3408:12;3377:45;3467:6;3462:3;3455:4;3448:5;3444:16;3431:43;3521:1;3514:4;3505:6;3498:5;3494:18;3490:29;3483:40;3122:407;;;;;:::o;3534:451::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3712:9;3699:23;-1:-1:-1;;;;;3737:6:1;3734:30;3731:50;;;3777:1;3774;3767:12;3731:50;3800:22;;3853:4;3845:13;;3841:27;-1:-1:-1;3831:55:1;;3882:1;3879;3872:12;3831:55;3905:74;3971:7;3966:2;3953:16;3948:2;3944;3940:11;3905:74;:::i;3990:186::-;4049:6;4102:2;4090:9;4081:7;4077:23;4073:32;4070:52;;;4118:1;4115;4108:12;4070:52;4141:29;4160:9;4141:29;:::i;4181:347::-;4246:6;4254;4307:2;4295:9;4286:7;4282:23;4278:32;4275:52;;;4323:1;4320;4313:12;4275:52;4346:29;4365:9;4346:29;:::i;:::-;4336:39;;4425:2;4414:9;4410:18;4397:32;4472:5;4465:13;4458:21;4451:5;4448:32;4438:60;;4494:1;4491;4484:12;4438:60;4517:5;4507:15;;;4181:347;;;;;:::o;4533:667::-;4628:6;4636;4644;4652;4705:3;4693:9;4684:7;4680:23;4676:33;4673:53;;;4722:1;4719;4712:12;4673:53;4745:29;4764:9;4745:29;:::i;:::-;4735:39;;4793:38;4827:2;4816:9;4812:18;4793:38;:::i;:::-;4783:48;;4878:2;4867:9;4863:18;4850:32;4840:42;;4933:2;4922:9;4918:18;4905:32;-1:-1:-1;;;;;4952:6:1;4949:30;4946:50;;;4992:1;4989;4982:12;4946:50;5015:22;;5068:4;5060:13;;5056:27;-1:-1:-1;5046:55:1;;5097:1;5094;5087:12;5046:55;5120:74;5186:7;5181:2;5168:16;5163:2;5159;5155:11;5120:74;:::i;:::-;5110:84;;;4533:667;;;;;;;:::o;5205:1014::-;5298:6;5306;5359:2;5347:9;5338:7;5334:23;5330:32;5327:52;;;5375:1;5372;5365:12;5327:52;5411:9;5398:23;5388:33;;5440:2;5493;5482:9;5478:18;5465:32;-1:-1:-1;;;;;5557:2:1;5549:6;5546:14;5543:34;;;5573:1;5570;5563:12;5543:34;5611:6;5600:9;5596:22;5586:32;;5656:7;5649:4;5645:2;5641:13;5637:27;5627:55;;5678:1;5675;5668:12;5627:55;5714:2;5701:16;5736:2;5732;5729:10;5726:36;;;5742:18;;:::i;:::-;5788:2;5785:1;5781:10;5771:20;;5811:28;5835:2;5831;5827:11;5811:28;:::i;:::-;5873:15;;;5943:11;;;5939:20;;;5904:12;;;;5971:19;;;5968:39;;;6003:1;6000;5993:12;5968:39;6027:11;;;;6047:142;6063:6;6058:3;6055:15;6047:142;;;6129:17;;6117:30;;6080:12;;;;6167;;;;6047:142;;;6208:5;6198:15;;;;;;;;5205:1014;;;;;:::o;6224:260::-;6292:6;6300;6353:2;6341:9;6332:7;6328:23;6324:32;6321:52;;;6369:1;6366;6359:12;6321:52;6392:29;6411:9;6392:29;:::i;:::-;6382:39;;6440:38;6474:2;6463:9;6459:18;6440:38;:::i;:::-;6430:48;;6224:260;;;;;:::o;6671:380::-;6750:1;6746:12;;;;6793;;;6814:61;;6868:4;6860:6;6856:17;6846:27;;6814:61;6921:2;6913:6;6910:14;6890:18;6887:38;6884:161;;6967:10;6962:3;6958:20;6955:1;6948:31;7002:4;6999:1;6992:15;7030:4;7027:1;7020:15;6884:161;;6671:380;;;:::o;7056:356::-;7258:2;7240:21;;;7277:18;;;7270:30;7336:34;7331:2;7316:18;;7309:62;7403:2;7388:18;;7056:356::o;7417:127::-;7478:10;7473:3;7469:20;7466:1;7459:31;7509:4;7506:1;7499:15;7533:4;7530:1;7523:15;7549:128;7589:3;7620:1;7616:6;7613:1;7610:13;7607:39;;;7626:18;;:::i;:::-;-1:-1:-1;7662:9:1;;7549:128::o;9074:168::-;9114:7;9180:1;9176;9172:6;9168:14;9165:1;9162:21;9157:1;9150:9;9143:17;9139:45;9136:71;;;9187:18;;:::i;:::-;-1:-1:-1;9227:9:1;;9074:168::o;9729:185::-;9771:3;9809:5;9803:12;9824:52;9869:6;9864:3;9857:4;9850:5;9846:16;9824:52;:::i;:::-;9892:16;;;;;9729:185;-1:-1:-1;;9729:185:1:o;10037:1301::-;10314:3;10343:1;10376:6;10370:13;10406:3;10428:1;10456:9;10452:2;10448:18;10438:28;;10516:2;10505:9;10501:18;10538;10528:61;;10582:4;10574:6;10570:17;10560:27;;10528:61;10608:2;10656;10648:6;10645:14;10625:18;10622:38;10619:165;;-1:-1:-1;;;10683:33:1;;10739:4;10736:1;10729:15;10769:4;10690:3;10757:17;10619:165;10800:18;10827:104;;;;10945:1;10940:320;;;;10793:467;;10827:104;-1:-1:-1;;10860:24:1;;10848:37;;10905:16;;;;-1:-1:-1;10827:104:1;;10940:320;9676:1;9669:14;;;9713:4;9700:18;;11035:1;11049:165;11063:6;11060:1;11057:13;11049:165;;;11141:14;;11128:11;;;11121:35;11184:16;;;;11078:10;;11049:165;;;11053:3;;11243:6;11238:3;11234:16;11227:23;;10793:467;;;;;;;11276:56;11301:30;11327:3;11319:6;11301:30;:::i;:::-;-1:-1:-1;;;9979:20:1;;10024:1;10015:11;;9919:113;11276:56;11269:63;10037:1301;-1:-1:-1;;;;;10037:1301:1:o;11343:125::-;11383:4;11411:1;11408;11405:8;11402:34;;;11416:18;;:::i;:::-;-1:-1:-1;11453:9:1;;11343:125::o;12806:500::-;-1:-1:-1;;;;;13075:15:1;;;13057:34;;13127:15;;13122:2;13107:18;;13100:43;13174:2;13159:18;;13152:34;;;13222:3;13217:2;13202:18;;13195:31;;;13000:4;;13243:57;;13280:19;;13272:6;13243:57;:::i;:::-;13235:65;12806:500;-1:-1:-1;;;;;;12806:500:1:o;13311:249::-;13380:6;13433:2;13421:9;13412:7;13408:23;13404:32;13401:52;;;13449:1;13446;13439:12;13401:52;13481:9;13475:16;13500:30;13524:5;13500:30;:::i;13565:135::-;13604:3;13625:17;;;13622:43;;13645:18;;:::i;:::-;-1:-1:-1;13692:1:1;13681:13;;13565:135::o;13705:127::-;13766:10;13761:3;13757:20;13754:1;13747:31;13797:4;13794:1;13787:15;13821:4;13818:1;13811:15;13837:120;13877:1;13903;13893:35;;13908:18;;:::i;:::-;-1:-1:-1;13942:9:1;;13837:120::o;13962:112::-;13994:1;14020;14010:35;;14025:18;;:::i;:::-;-1:-1:-1;14059:9:1;;13962:112::o;14079:127::-;14140:10;14135:3;14131:20;14128:1;14121:31;14171:4;14168:1;14161:15;14195:4;14192:1;14185:15
Swarm Source
ipfs://9724549345a49c8b7a436a50659bbbfa4da4435fee39ec8d13ebd697fa3f335f
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.