ERC-721
Overview
Max Total Supply
413 EA
Holders
138
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 EALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EthereumAlita
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-09 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/nft.sol pragma solidity ^0.8.0; contract EthereumAlita is ERC721A, Ownable { string public uriPrefix; uint256 public immutable cost = 0.002 ether; uint32 public immutable MAX_SUPPLY = 1000; uint32 public immutable maxMint = 3; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor() ERC721A ("EthereumAlita", "EA") { } function _baseURI() internal view override(ERC721A) returns (string memory) { return uriPrefix; } function setUriPrefix(string memory uri) public onlyOwner { uriPrefix = uri; } function _startTokenId() internal view virtual override(ERC721A) returns (uint256) { return 0; } function mint(uint32 amount) public payable callerIsUser{ require(totalSupply() + amount <= MAX_SUPPLY,"sold out"); require(amount <= maxMint,"max 3 amount"); require(msg.value >= amount * cost,"insufficient"); _safeMint(msg.sender, amount); } function withdraw() public onlyOwner { uint256 sendAmount = address(this).balance; address h = payable(msg.sender); bool success; (success, ) = h.call{value: sendAmount}(""); require(success, "Transaction Unsuccessful"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405266071afd498d00006080908152506103e863ffffffff1660a09063ffffffff1660e01b815250600363ffffffff1660c09063ffffffff1660e01b8152503480156200004e57600080fd5b506040518060400160405280600d81526020017f457468657265756d416c697461000000000000000000000000000000000000008152506040518060400160405280600281526020017f45410000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d3929190620001fe565b508060039080519060200190620000ec929190620001fe565b50620000fd6200012b60201b60201c565b600081905550505062000125620001196200013060201b60201c565b6200013860201b60201c565b62000313565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020c90620002ae565b90600052602060002090601f0160209004810192826200023057600085556200027c565b82601f106200024b57805160ff19168380011785556200027c565b828001600101855582156200027c579182015b828111156200027b5782518255916020019190600101906200025e565b5b5090506200028b91906200028f565b5090565b5b80821115620002aa57600081600090555060010162000290565b5090565b60006002820490506001821680620002c757607f821691505b60208210811415620002de57620002dd620002e4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a05160e01c60c05160e01c61331f6200035e60003960008181610b580152610ec10152600081816108c70152610e4001526000818161087c0152610f30015261331f6000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb4651461046e578063a71bbebe14610497578063b88d4fde146104b3578063c87b56dd146104dc578063e985e9c514610519578063f2fde38b146105565761014b565b806370a0823114610370578063715018a6146103ad5780637501f741146103c45780637ec4a659146103ef5780638da5cb5b1461041857806395d89b41146104435761014b565b806323b872dd1161010857806323b872dd1461027457806332cb6b0c1461029d5780633ccfd60b146102c857806342842e0e146102df57806362b99ad4146103085780636352211e146103335761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806313faede61461021e57806318160ddd14610249575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906127aa565b61057f565b6040516101849190612b3e565b60405180910390f35b34801561019957600080fd5b506101a2610661565b6040516101af9190612b59565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061284d565b6106f3565b6040516101ec9190612ad7565b60405180910390f35b34801561020157600080fd5b5061021c6004803603810190610217919061276a565b61076f565b005b34801561022a57600080fd5b5061023361087a565b6040516102409190612c5b565b60405180910390f35b34801561025557600080fd5b5061025e61089e565b60405161026b9190612c5b565b60405180910390f35b34801561028057600080fd5b5061029b60048036038101906102969190612654565b6108b5565b005b3480156102a957600080fd5b506102b26108c5565b6040516102bf9190612c76565b60405180910390f35b3480156102d457600080fd5b506102dd6108e9565b005b3480156102eb57600080fd5b5061030660048036038101906103019190612654565b6109ae565b005b34801561031457600080fd5b5061031d6109ce565b60405161032a9190612b59565b60405180910390f35b34801561033f57600080fd5b5061035a6004803603810190610355919061284d565b610a5c565b6040516103679190612ad7565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906125e7565b610a72565b6040516103a49190612c5b565b60405180910390f35b3480156103b957600080fd5b506103c2610b42565b005b3480156103d057600080fd5b506103d9610b56565b6040516103e69190612c76565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612804565b610b7a565b005b34801561042457600080fd5b5061042d610b9c565b60405161043a9190612ad7565b60405180910390f35b34801561044f57600080fd5b50610458610bc6565b6040516104659190612b59565b60405180910390f35b34801561047a57600080fd5b506104956004803603810190610490919061272a565b610c58565b005b6104b160048036038101906104ac919061287a565b610dd0565b005b3480156104bf57600080fd5b506104da60048036038101906104d591906126a7565b610fb5565b005b3480156104e857600080fd5b5061050360048036038101906104fe919061284d565b611031565b6040516105109190612b59565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190612614565b6110d0565b60405161054d9190612b3e565b60405180910390f35b34801561056257600080fd5b5061057d600480360381019061057891906125e7565b611164565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065a5750610659826111e8565b5b9050919050565b60606002805461067090612f41565b80601f016020809104026020016040519081016040528092919081815260200182805461069c90612f41565b80156106e95780601f106106be576101008083540402835291602001916106e9565b820191906000526020600020905b8154815290600101906020018083116106cc57829003601f168201915b5050505050905090565b60006106fe82611252565b610734576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077a82610a5c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108016112a0565b73ffffffffffffffffffffffffffffffffffffffff161415801561083357506108318161082c6112a0565b6110d0565b155b1561086a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108758383836112a8565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006108a861135a565b6001546000540303905090565b6108c083838361135f565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6108f1611850565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff168360405161092190612ac2565b60006040518083038185875af1925050503d806000811461095e576040519150601f19603f3d011682016040523d82523d6000602084013e610963565b606091505b505080915050806109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090612bbb565b60405180910390fd5b505050565b6109c983838360405180602001604052806000815250610fb5565b505050565b600980546109db90612f41565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0790612f41565b8015610a545780601f10610a2957610100808354040283529160200191610a54565b820191906000526020600020905b815481529060010190602001808311610a3757829003601f168201915b505050505081565b6000610a67826118ce565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ada576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610b4a611850565b610b546000611b5d565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b610b82611850565b8060099080519060200190610b989291906123a3565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610bd590612f41565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0190612f41565b8015610c4e5780601f10610c2357610100808354040283529160200191610c4e565b820191906000526020600020905b815481529060010190602001808311610c3157829003601f168201915b5050505050905090565b610c606112a0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610cd26112a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d7f6112a0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dc49190612b3e565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590612bfb565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168163ffffffff16610e7461089e565b610e7e9190612d66565b1115610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690612bdb565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168163ffffffff161115610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590612c3b565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008163ffffffff16610f609190612ded565b341015610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990612b7b565b60405180910390fd5b610fb2338263ffffffff16611c23565b50565b610fc084848461135f565b610fdf8373ffffffffffffffffffffffffffffffffffffffff16611c41565b8015610ff45750610ff284848484611c64565b155b1561102b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061103c82611252565b611072576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061107c611dc4565b905060008151141561109d57604051806020016040528060008152506110c8565b806110a784611e56565b6040516020016110b8929190612a9e565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61116c611850565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390612b9b565b60405180910390fd5b6111e581611b5d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161125d61135a565b1115801561126c575060005482105b8015611299575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061136a826118ce565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166113916112a0565b73ffffffffffffffffffffffffffffffffffffffff1614806113c457506113c382600001516113be6112a0565b6110d0565b5b8061140957506113d26112a0565b73ffffffffffffffffffffffffffffffffffffffff166113f1846106f3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611442576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146114ab576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611512576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61151f8585856001611fb7565b61152f60008484600001516112a8565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117e0576000548110156117df5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118498585856001611fbd565b5050505050565b6118586112a0565b73ffffffffffffffffffffffffffffffffffffffff16611876610b9c565b73ffffffffffffffffffffffffffffffffffffffff16146118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c390612c1b565b60405180910390fd5b565b6118d6612429565b6000829050806118e461135a565b111580156118f3575060005481105b15611b26576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611b2457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a08578092505050611b58565b5b600115611b2357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b1e578092505050611b58565b611a09565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c3d828260405180602001604052806000815250611fc3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8a6112a0565b8786866040518563ffffffff1660e01b8152600401611cac9493929190612af2565b602060405180830381600087803b158015611cc657600080fd5b505af1925050508015611cf757506040513d601f19601f82011682018060405250810190611cf491906127d7565b60015b611d71573d8060008114611d27576040519150601f19603f3d011682016040523d82523d6000602084013e611d2c565b606091505b50600081511415611d69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611dd390612f41565b80601f0160208091040260200160405190810160405280929190818152602001828054611dff90612f41565b8015611e4c5780601f10611e2157610100808354040283529160200191611e4c565b820191906000526020600020905b815481529060010190602001808311611e2f57829003601f168201915b5050505050905090565b60606000821415611e9e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fb2565b600082905060005b60008214611ed0578080611eb990612fa4565b915050600a82611ec99190612dbc565b9150611ea6565b60008167ffffffffffffffff811115611eec57611eeb6130da565b5b6040519080825280601f01601f191660200182016040528015611f1e5781602001600182028036833780820191505090505b5090505b60008514611fab57600182611f379190612e47565b9150600a85611f469190612fed565b6030611f529190612d66565b60f81b818381518110611f6857611f676130ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fa49190612dbc565b9450611f22565b8093505050505b919050565b50505050565b50505050565b611fd08383836001611fd5565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612042576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561207d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61208a6000868387611fb7565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561225457506122538773ffffffffffffffffffffffffffffffffffffffff16611c41565b5b1561231a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122c96000888480600101955088611c64565b6122ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561225a57826000541461231557600080fd5b612386565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561231b575b81600081905550505061239c6000868387611fbd565b5050505050565b8280546123af90612f41565b90600052602060002090601f0160209004810192826123d15760008555612418565b82601f106123ea57805160ff1916838001178555612418565b82800160010185558215612418579182015b828111156124175782518255916020019190600101906123fc565b5b509050612425919061246c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561248557600081600090555060010161246d565b5090565b600061249c61249784612cb6565b612c91565b9050828152602081018484840111156124b8576124b761310e565b5b6124c3848285612eff565b509392505050565b60006124de6124d984612ce7565b612c91565b9050828152602081018484840111156124fa576124f961310e565b5b612505848285612eff565b509392505050565b60008135905061251c81613276565b92915050565b6000813590506125318161328d565b92915050565b600081359050612546816132a4565b92915050565b60008151905061255b816132a4565b92915050565b600082601f83011261257657612575613109565b5b8135612586848260208601612489565b91505092915050565b600082601f8301126125a4576125a3613109565b5b81356125b48482602086016124cb565b91505092915050565b6000813590506125cc816132bb565b92915050565b6000813590506125e1816132d2565b92915050565b6000602082840312156125fd576125fc613118565b5b600061260b8482850161250d565b91505092915050565b6000806040838503121561262b5761262a613118565b5b60006126398582860161250d565b925050602061264a8582860161250d565b9150509250929050565b60008060006060848603121561266d5761266c613118565b5b600061267b8682870161250d565b935050602061268c8682870161250d565b925050604061269d868287016125bd565b9150509250925092565b600080600080608085870312156126c1576126c0613118565b5b60006126cf8782880161250d565b94505060206126e08782880161250d565b93505060406126f1878288016125bd565b925050606085013567ffffffffffffffff81111561271257612711613113565b5b61271e87828801612561565b91505092959194509250565b6000806040838503121561274157612740613118565b5b600061274f8582860161250d565b925050602061276085828601612522565b9150509250929050565b6000806040838503121561278157612780613118565b5b600061278f8582860161250d565b92505060206127a0858286016125bd565b9150509250929050565b6000602082840312156127c0576127bf613118565b5b60006127ce84828501612537565b91505092915050565b6000602082840312156127ed576127ec613118565b5b60006127fb8482850161254c565b91505092915050565b60006020828403121561281a57612819613118565b5b600082013567ffffffffffffffff81111561283857612837613113565b5b6128448482850161258f565b91505092915050565b60006020828403121561286357612862613118565b5b6000612871848285016125bd565b91505092915050565b6000602082840312156128905761288f613118565b5b600061289e848285016125d2565b91505092915050565b6128b081612e7b565b82525050565b6128bf81612e8d565b82525050565b60006128d082612d18565b6128da8185612d2e565b93506128ea818560208601612f0e565b6128f38161311d565b840191505092915050565b600061290982612d23565b6129138185612d4a565b9350612923818560208601612f0e565b61292c8161311d565b840191505092915050565b600061294282612d23565b61294c8185612d5b565b935061295c818560208601612f0e565b80840191505092915050565b6000612975600c83612d4a565b91506129808261312e565b602082019050919050565b6000612998602683612d4a565b91506129a382613157565b604082019050919050565b60006129bb601883612d4a565b91506129c6826131a6565b602082019050919050565b60006129de600883612d4a565b91506129e9826131cf565b602082019050919050565b6000612a01601e83612d4a565b9150612a0c826131f8565b602082019050919050565b6000612a24602083612d4a565b9150612a2f82613221565b602082019050919050565b6000612a47600083612d3f565b9150612a528261324a565b600082019050919050565b6000612a6a600c83612d4a565b9150612a758261324d565b602082019050919050565b612a8981612ee5565b82525050565b612a9881612eef565b82525050565b6000612aaa8285612937565b9150612ab68284612937565b91508190509392505050565b6000612acd82612a3a565b9150819050919050565b6000602082019050612aec60008301846128a7565b92915050565b6000608082019050612b0760008301876128a7565b612b1460208301866128a7565b612b216040830185612a80565b8181036060830152612b3381846128c5565b905095945050505050565b6000602082019050612b5360008301846128b6565b92915050565b60006020820190508181036000830152612b7381846128fe565b905092915050565b60006020820190508181036000830152612b9481612968565b9050919050565b60006020820190508181036000830152612bb48161298b565b9050919050565b60006020820190508181036000830152612bd4816129ae565b9050919050565b60006020820190508181036000830152612bf4816129d1565b9050919050565b60006020820190508181036000830152612c14816129f4565b9050919050565b60006020820190508181036000830152612c3481612a17565b9050919050565b60006020820190508181036000830152612c5481612a5d565b9050919050565b6000602082019050612c706000830184612a80565b92915050565b6000602082019050612c8b6000830184612a8f565b92915050565b6000612c9b612cac565b9050612ca78282612f73565b919050565b6000604051905090565b600067ffffffffffffffff821115612cd157612cd06130da565b5b612cda8261311d565b9050602081019050919050565b600067ffffffffffffffff821115612d0257612d016130da565b5b612d0b8261311d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d7182612ee5565b9150612d7c83612ee5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612db157612db061301e565b5b828201905092915050565b6000612dc782612ee5565b9150612dd283612ee5565b925082612de257612de161304d565b5b828204905092915050565b6000612df882612ee5565b9150612e0383612ee5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e3c57612e3b61301e565b5b828202905092915050565b6000612e5282612ee5565b9150612e5d83612ee5565b925082821015612e7057612e6f61301e565b5b828203905092915050565b6000612e8682612ec5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b83811015612f2c578082015181840152602081019050612f11565b83811115612f3b576000848401525b50505050565b60006002820490506001821680612f5957607f821691505b60208210811415612f6d57612f6c61307c565b5b50919050565b612f7c8261311d565b810181811067ffffffffffffffff82111715612f9b57612f9a6130da565b5b80604052505050565b6000612faf82612ee5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fe257612fe161301e565b5b600182019050919050565b6000612ff882612ee5565b915061300383612ee5565b9250826130135761301261304d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f6d6178203320616d6f756e740000000000000000000000000000000000000000600082015250565b61327f81612e7b565b811461328a57600080fd5b50565b61329681612e8d565b81146132a157600080fd5b50565b6132ad81612e99565b81146132b857600080fd5b50565b6132c481612ee5565b81146132cf57600080fd5b50565b6132db81612eef565b81146132e657600080fd5b5056fea264697066735822122050fd1f56f8fb92a079b27740b7fbf9aeb7878af51f189b7d0f92a511ee8d452164736f6c63430008070033
Deployed Bytecode
0x60806040526004361061014b5760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb4651461046e578063a71bbebe14610497578063b88d4fde146104b3578063c87b56dd146104dc578063e985e9c514610519578063f2fde38b146105565761014b565b806370a0823114610370578063715018a6146103ad5780637501f741146103c45780637ec4a659146103ef5780638da5cb5b1461041857806395d89b41146104435761014b565b806323b872dd1161010857806323b872dd1461027457806332cb6b0c1461029d5780633ccfd60b146102c857806342842e0e146102df57806362b99ad4146103085780636352211e146103335761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806313faede61461021e57806318160ddd14610249575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906127aa565b61057f565b6040516101849190612b3e565b60405180910390f35b34801561019957600080fd5b506101a2610661565b6040516101af9190612b59565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061284d565b6106f3565b6040516101ec9190612ad7565b60405180910390f35b34801561020157600080fd5b5061021c6004803603810190610217919061276a565b61076f565b005b34801561022a57600080fd5b5061023361087a565b6040516102409190612c5b565b60405180910390f35b34801561025557600080fd5b5061025e61089e565b60405161026b9190612c5b565b60405180910390f35b34801561028057600080fd5b5061029b60048036038101906102969190612654565b6108b5565b005b3480156102a957600080fd5b506102b26108c5565b6040516102bf9190612c76565b60405180910390f35b3480156102d457600080fd5b506102dd6108e9565b005b3480156102eb57600080fd5b5061030660048036038101906103019190612654565b6109ae565b005b34801561031457600080fd5b5061031d6109ce565b60405161032a9190612b59565b60405180910390f35b34801561033f57600080fd5b5061035a6004803603810190610355919061284d565b610a5c565b6040516103679190612ad7565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906125e7565b610a72565b6040516103a49190612c5b565b60405180910390f35b3480156103b957600080fd5b506103c2610b42565b005b3480156103d057600080fd5b506103d9610b56565b6040516103e69190612c76565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612804565b610b7a565b005b34801561042457600080fd5b5061042d610b9c565b60405161043a9190612ad7565b60405180910390f35b34801561044f57600080fd5b50610458610bc6565b6040516104659190612b59565b60405180910390f35b34801561047a57600080fd5b506104956004803603810190610490919061272a565b610c58565b005b6104b160048036038101906104ac919061287a565b610dd0565b005b3480156104bf57600080fd5b506104da60048036038101906104d591906126a7565b610fb5565b005b3480156104e857600080fd5b5061050360048036038101906104fe919061284d565b611031565b6040516105109190612b59565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190612614565b6110d0565b60405161054d9190612b3e565b60405180910390f35b34801561056257600080fd5b5061057d600480360381019061057891906125e7565b611164565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065a5750610659826111e8565b5b9050919050565b60606002805461067090612f41565b80601f016020809104026020016040519081016040528092919081815260200182805461069c90612f41565b80156106e95780601f106106be576101008083540402835291602001916106e9565b820191906000526020600020905b8154815290600101906020018083116106cc57829003601f168201915b5050505050905090565b60006106fe82611252565b610734576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077a82610a5c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108016112a0565b73ffffffffffffffffffffffffffffffffffffffff161415801561083357506108318161082c6112a0565b6110d0565b155b1561086a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108758383836112a8565b505050565b7f00000000000000000000000000000000000000000000000000071afd498d000081565b60006108a861135a565b6001546000540303905090565b6108c083838361135f565b505050565b7f00000000000000000000000000000000000000000000000000000000000003e881565b6108f1611850565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff168360405161092190612ac2565b60006040518083038185875af1925050503d806000811461095e576040519150601f19603f3d011682016040523d82523d6000602084013e610963565b606091505b505080915050806109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090612bbb565b60405180910390fd5b505050565b6109c983838360405180602001604052806000815250610fb5565b505050565b600980546109db90612f41565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0790612f41565b8015610a545780601f10610a2957610100808354040283529160200191610a54565b820191906000526020600020905b815481529060010190602001808311610a3757829003601f168201915b505050505081565b6000610a67826118ce565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ada576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610b4a611850565b610b546000611b5d565b565b7f000000000000000000000000000000000000000000000000000000000000000381565b610b82611850565b8060099080519060200190610b989291906123a3565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610bd590612f41565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0190612f41565b8015610c4e5780601f10610c2357610100808354040283529160200191610c4e565b820191906000526020600020905b815481529060010190602001808311610c3157829003601f168201915b5050505050905090565b610c606112a0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610cd26112a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d7f6112a0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dc49190612b3e565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590612bfb565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e863ffffffff168163ffffffff16610e7461089e565b610e7e9190612d66565b1115610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690612bdb565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000363ffffffff168163ffffffff161115610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590612c3b565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000071afd498d00008163ffffffff16610f609190612ded565b341015610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990612b7b565b60405180910390fd5b610fb2338263ffffffff16611c23565b50565b610fc084848461135f565b610fdf8373ffffffffffffffffffffffffffffffffffffffff16611c41565b8015610ff45750610ff284848484611c64565b155b1561102b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061103c82611252565b611072576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061107c611dc4565b905060008151141561109d57604051806020016040528060008152506110c8565b806110a784611e56565b6040516020016110b8929190612a9e565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61116c611850565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390612b9b565b60405180910390fd5b6111e581611b5d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161125d61135a565b1115801561126c575060005482105b8015611299575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061136a826118ce565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166113916112a0565b73ffffffffffffffffffffffffffffffffffffffff1614806113c457506113c382600001516113be6112a0565b6110d0565b5b8061140957506113d26112a0565b73ffffffffffffffffffffffffffffffffffffffff166113f1846106f3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611442576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146114ab576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611512576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61151f8585856001611fb7565b61152f60008484600001516112a8565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117e0576000548110156117df5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118498585856001611fbd565b5050505050565b6118586112a0565b73ffffffffffffffffffffffffffffffffffffffff16611876610b9c565b73ffffffffffffffffffffffffffffffffffffffff16146118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c390612c1b565b60405180910390fd5b565b6118d6612429565b6000829050806118e461135a565b111580156118f3575060005481105b15611b26576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611b2457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a08578092505050611b58565b5b600115611b2357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b1e578092505050611b58565b611a09565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c3d828260405180602001604052806000815250611fc3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8a6112a0565b8786866040518563ffffffff1660e01b8152600401611cac9493929190612af2565b602060405180830381600087803b158015611cc657600080fd5b505af1925050508015611cf757506040513d601f19601f82011682018060405250810190611cf491906127d7565b60015b611d71573d8060008114611d27576040519150601f19603f3d011682016040523d82523d6000602084013e611d2c565b606091505b50600081511415611d69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611dd390612f41565b80601f0160208091040260200160405190810160405280929190818152602001828054611dff90612f41565b8015611e4c5780601f10611e2157610100808354040283529160200191611e4c565b820191906000526020600020905b815481529060010190602001808311611e2f57829003601f168201915b5050505050905090565b60606000821415611e9e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fb2565b600082905060005b60008214611ed0578080611eb990612fa4565b915050600a82611ec99190612dbc565b9150611ea6565b60008167ffffffffffffffff811115611eec57611eeb6130da565b5b6040519080825280601f01601f191660200182016040528015611f1e5781602001600182028036833780820191505090505b5090505b60008514611fab57600182611f379190612e47565b9150600a85611f469190612fed565b6030611f529190612d66565b60f81b818381518110611f6857611f676130ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fa49190612dbc565b9450611f22565b8093505050505b919050565b50505050565b50505050565b611fd08383836001611fd5565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612042576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561207d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61208a6000868387611fb7565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561225457506122538773ffffffffffffffffffffffffffffffffffffffff16611c41565b5b1561231a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122c96000888480600101955088611c64565b6122ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561225a57826000541461231557600080fd5b612386565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561231b575b81600081905550505061239c6000868387611fbd565b5050505050565b8280546123af90612f41565b90600052602060002090601f0160209004810192826123d15760008555612418565b82601f106123ea57805160ff1916838001178555612418565b82800160010185558215612418579182015b828111156124175782518255916020019190600101906123fc565b5b509050612425919061246c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561248557600081600090555060010161246d565b5090565b600061249c61249784612cb6565b612c91565b9050828152602081018484840111156124b8576124b761310e565b5b6124c3848285612eff565b509392505050565b60006124de6124d984612ce7565b612c91565b9050828152602081018484840111156124fa576124f961310e565b5b612505848285612eff565b509392505050565b60008135905061251c81613276565b92915050565b6000813590506125318161328d565b92915050565b600081359050612546816132a4565b92915050565b60008151905061255b816132a4565b92915050565b600082601f83011261257657612575613109565b5b8135612586848260208601612489565b91505092915050565b600082601f8301126125a4576125a3613109565b5b81356125b48482602086016124cb565b91505092915050565b6000813590506125cc816132bb565b92915050565b6000813590506125e1816132d2565b92915050565b6000602082840312156125fd576125fc613118565b5b600061260b8482850161250d565b91505092915050565b6000806040838503121561262b5761262a613118565b5b60006126398582860161250d565b925050602061264a8582860161250d565b9150509250929050565b60008060006060848603121561266d5761266c613118565b5b600061267b8682870161250d565b935050602061268c8682870161250d565b925050604061269d868287016125bd565b9150509250925092565b600080600080608085870312156126c1576126c0613118565b5b60006126cf8782880161250d565b94505060206126e08782880161250d565b93505060406126f1878288016125bd565b925050606085013567ffffffffffffffff81111561271257612711613113565b5b61271e87828801612561565b91505092959194509250565b6000806040838503121561274157612740613118565b5b600061274f8582860161250d565b925050602061276085828601612522565b9150509250929050565b6000806040838503121561278157612780613118565b5b600061278f8582860161250d565b92505060206127a0858286016125bd565b9150509250929050565b6000602082840312156127c0576127bf613118565b5b60006127ce84828501612537565b91505092915050565b6000602082840312156127ed576127ec613118565b5b60006127fb8482850161254c565b91505092915050565b60006020828403121561281a57612819613118565b5b600082013567ffffffffffffffff81111561283857612837613113565b5b6128448482850161258f565b91505092915050565b60006020828403121561286357612862613118565b5b6000612871848285016125bd565b91505092915050565b6000602082840312156128905761288f613118565b5b600061289e848285016125d2565b91505092915050565b6128b081612e7b565b82525050565b6128bf81612e8d565b82525050565b60006128d082612d18565b6128da8185612d2e565b93506128ea818560208601612f0e565b6128f38161311d565b840191505092915050565b600061290982612d23565b6129138185612d4a565b9350612923818560208601612f0e565b61292c8161311d565b840191505092915050565b600061294282612d23565b61294c8185612d5b565b935061295c818560208601612f0e565b80840191505092915050565b6000612975600c83612d4a565b91506129808261312e565b602082019050919050565b6000612998602683612d4a565b91506129a382613157565b604082019050919050565b60006129bb601883612d4a565b91506129c6826131a6565b602082019050919050565b60006129de600883612d4a565b91506129e9826131cf565b602082019050919050565b6000612a01601e83612d4a565b9150612a0c826131f8565b602082019050919050565b6000612a24602083612d4a565b9150612a2f82613221565b602082019050919050565b6000612a47600083612d3f565b9150612a528261324a565b600082019050919050565b6000612a6a600c83612d4a565b9150612a758261324d565b602082019050919050565b612a8981612ee5565b82525050565b612a9881612eef565b82525050565b6000612aaa8285612937565b9150612ab68284612937565b91508190509392505050565b6000612acd82612a3a565b9150819050919050565b6000602082019050612aec60008301846128a7565b92915050565b6000608082019050612b0760008301876128a7565b612b1460208301866128a7565b612b216040830185612a80565b8181036060830152612b3381846128c5565b905095945050505050565b6000602082019050612b5360008301846128b6565b92915050565b60006020820190508181036000830152612b7381846128fe565b905092915050565b60006020820190508181036000830152612b9481612968565b9050919050565b60006020820190508181036000830152612bb48161298b565b9050919050565b60006020820190508181036000830152612bd4816129ae565b9050919050565b60006020820190508181036000830152612bf4816129d1565b9050919050565b60006020820190508181036000830152612c14816129f4565b9050919050565b60006020820190508181036000830152612c3481612a17565b9050919050565b60006020820190508181036000830152612c5481612a5d565b9050919050565b6000602082019050612c706000830184612a80565b92915050565b6000602082019050612c8b6000830184612a8f565b92915050565b6000612c9b612cac565b9050612ca78282612f73565b919050565b6000604051905090565b600067ffffffffffffffff821115612cd157612cd06130da565b5b612cda8261311d565b9050602081019050919050565b600067ffffffffffffffff821115612d0257612d016130da565b5b612d0b8261311d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d7182612ee5565b9150612d7c83612ee5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612db157612db061301e565b5b828201905092915050565b6000612dc782612ee5565b9150612dd283612ee5565b925082612de257612de161304d565b5b828204905092915050565b6000612df882612ee5565b9150612e0383612ee5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e3c57612e3b61301e565b5b828202905092915050565b6000612e5282612ee5565b9150612e5d83612ee5565b925082821015612e7057612e6f61301e565b5b828203905092915050565b6000612e8682612ec5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b83811015612f2c578082015181840152602081019050612f11565b83811115612f3b576000848401525b50505050565b60006002820490506001821680612f5957607f821691505b60208210811415612f6d57612f6c61307c565b5b50919050565b612f7c8261311d565b810181811067ffffffffffffffff82111715612f9b57612f9a6130da565b5b80604052505050565b6000612faf82612ee5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fe257612fe161301e565b5b600182019050919050565b6000612ff882612ee5565b915061300383612ee5565b9250826130135761301261304d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f6d6178203320616d6f756e740000000000000000000000000000000000000000600082015250565b61327f81612e7b565b811461328a57600080fd5b50565b61329681612e8d565b81146132a157600080fd5b50565b6132ad81612e99565b81146132b857600080fd5b50565b6132c481612ee5565b81146132cf57600080fd5b50565b6132db81612eef565b81146132e657600080fd5b5056fea264697066735822122050fd1f56f8fb92a079b27740b7fbf9aeb7878af51f189b7d0f92a511ee8d452164736f6c63430008070033
Deployed Bytecode Sourcemap
46416:1333:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28892:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32277:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33780:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33343:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46497:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28141:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34637:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46547:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47468:278;;;;;;;;;;;;;:::i;:::-;;34878:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46466:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32086:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29261:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;46595:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46954:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32446:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34056:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47172:284;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35134:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32621:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34406:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28892:305;28994:4;29046:25;29031:40;;;:11;:40;;;;:105;;;;29103:33;29088:48;;;:11;:48;;;;29031:105;:158;;;;29153:36;29177:11;29153:23;:36::i;:::-;29031:158;29011:178;;28892:305;;;:::o;32277:100::-;32331:13;32364:5;32357:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32277:100;:::o;33780:204::-;33848:7;33873:16;33881:7;33873;:16::i;:::-;33868:64;;33898:34;;;;;;;;;;;;;;33868:64;33952:15;:24;33968:7;33952:24;;;;;;;;;;;;;;;;;;;;;33945:31;;33780:204;;;:::o;33343:371::-;33416:13;33432:24;33448:7;33432:15;:24::i;:::-;33416:40;;33477:5;33471:11;;:2;:11;;;33467:48;;;33491:24;;;;;;;;;;;;;;33467:48;33548:5;33532:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33558:37;33575:5;33582:12;:10;:12::i;:::-;33558:16;:37::i;:::-;33557:38;33532:63;33528:138;;;33619:35;;;;;;;;;;;;;;33528:138;33678:28;33687:2;33691:7;33700:5;33678:8;:28::i;:::-;33405:309;33343:371;;:::o;46497:43::-;;;:::o;28141:303::-;28185:7;28410:15;:13;:15::i;:::-;28395:12;;28379:13;;:28;:46;28372:53;;28141:303;:::o;34637:170::-;34771:28;34781:4;34787:2;34791:7;34771:9;:28::i;:::-;34637:170;;;:::o;46547:41::-;;;:::o;47468:278::-;4511:13;:11;:13::i;:::-;47516:18:::1;47537:21;47516:42;;47571:9;47591:10;47571:31;;47615:12;47654:1;:6;;47668:10;47654:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47640:43;;;;;47702:7;47694:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;47505:241;;;47468:278::o:0;34878:185::-;35016:39;35033:4;35039:2;35043:7;35016:39;;;;;;;;;;;;:16;:39::i;:::-;34878:185;;;:::o;46466:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32086:124::-;32150:7;32177:20;32189:7;32177:11;:20::i;:::-;:25;;;32170:32;;32086:124;;;:::o;29261:206::-;29325:7;29366:1;29349:19;;:5;:19;;;29345:60;;;29377:28;;;;;;;;;;;;;;29345:60;29431:12;:19;29444:5;29431:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29423:36;;29416:43;;29261:206;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;46595:35::-;;;:::o;46954:92::-;4511:13;:11;:13::i;:::-;47035:3:::1;47023:9;:15;;;;;;;;;;;;:::i;:::-;;46954:92:::0;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;32446:104::-;32502:13;32535:7;32528:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32446:104;:::o;34056:279::-;34159:12;:10;:12::i;:::-;34147:24;;:8;:24;;;34143:54;;;34180:17;;;;;;;;;;;;;;34143:54;34255:8;34210:18;:32;34229:12;:10;:12::i;:::-;34210:32;;;;;;;;;;;;;;;:42;34243:8;34210:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34308:8;34279:48;;34294:12;:10;:12::i;:::-;34279:48;;;34318:8;34279:48;;;;;;:::i;:::-;;;;;;;;34056:279;;:::o;47172:284::-;46695:10;46682:23;;:9;:23;;;46674:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47273:10:::1;47247:36;;47263:6;47247:22;;:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;47239:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;47324:7;47314:17;;:6;:17;;;;47306:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;47388:4;47379:6;:13;;;;;;:::i;:::-;47366:9;:26;;47358:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;47419:29;47429:10;47441:6;47419:29;;:9;:29::i;:::-;47172:284:::0;:::o;35134:369::-;35301:28;35311:4;35317:2;35321:7;35301:9;:28::i;:::-;35344:15;:2;:13;;;:15::i;:::-;:76;;;;;35364:56;35395:4;35401:2;35405:7;35414:5;35364:30;:56::i;:::-;35363:57;35344:76;35340:156;;;35444:40;;;;;;;;;;;;;;35340:156;35134:369;;;;:::o;32621:318::-;32694:13;32725:16;32733:7;32725;:16::i;:::-;32720:59;;32750:29;;;;;;;;;;;;;;32720:59;32792:21;32816:10;:8;:10::i;:::-;32792:34;;32869:1;32850:7;32844:21;:26;;:87;;;;;;;;;;;;;;;;;32897:7;32906:18;:7;:16;:18::i;:::-;32880:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32844:87;32837:94;;;32621:318;;;:::o;34406:164::-;34503:4;34527:18;:25;34546:5;34527:25;;;;;;;;;;;;;;;:35;34553:8;34527:35;;;;;;;;;;;;;;;;;;;;;;;;;34520:42;;34406:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;17479:157::-;17564:4;17603:25;17588:40;;;:11;:40;;;;17581:47;;17479:157;;;:::o;35758:187::-;35815:4;35858:7;35839:15;:13;:15::i;:::-;:26;;:53;;;;;35879:13;;35869:7;:23;35839:53;:98;;;;;35910:11;:20;35922:7;35910:20;;;;;;;;;;;:27;;;;;;;;;;;;35909:28;35839:98;35832:105;;35758:187;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;43369:196::-;43511:2;43484:15;:24;43500:7;43484:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43549:7;43545:2;43529:28;;43538:5;43529:28;;;;;;;;;;;;43369:196;;;:::o;47054:110::-;47128:7;47054:110;:::o;38871:2112::-;38986:35;39024:20;39036:7;39024:11;:20::i;:::-;38986:58;;39057:22;39099:13;:18;;;39083:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39134:50;39151:13;:18;;;39171:12;:10;:12::i;:::-;39134:16;:50::i;:::-;39083:101;:154;;;;39225:12;:10;:12::i;:::-;39201:36;;:20;39213:7;39201:11;:20::i;:::-;:36;;;39083:154;39057:181;;39256:17;39251:66;;39282:35;;;;;;;;;;;;;;39251:66;39354:4;39332:26;;:13;:18;;;:26;;;39328:67;;39367:28;;;;;;;;;;;;;;39328:67;39424:1;39410:16;;:2;:16;;;39406:52;;;39435:23;;;;;;;;;;;;;;39406:52;39471:43;39493:4;39499:2;39503:7;39512:1;39471:21;:43::i;:::-;39579:49;39596:1;39600:7;39609:13;:18;;;39579:8;:49::i;:::-;39954:1;39924:12;:18;39937:4;39924:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39998:1;39970:12;:16;39983:2;39970:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40044:2;40016:11;:20;40028:7;40016:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40106:15;40061:11;:20;40073:7;40061:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40374:19;40406:1;40396:7;:11;40374:33;;40467:1;40426:43;;:11;:24;40438:11;40426:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40422:445;;;40651:13;;40637:11;:27;40633:219;;;40721:13;:18;;;40689:11;:24;40701:11;40689:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40804:13;:28;;;40762:11;:24;40774:11;40762:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40633:219;40422:445;39899:979;40914:7;40910:2;40895:27;;40904:4;40895:27;;;;;;;;;;;;40933:42;40954:4;40960:2;40964:7;40973:1;40933:20;:42::i;:::-;38975:2008;;38871:2112;;;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;30916:1108::-;30977:21;;:::i;:::-;31011:12;31026:7;31011:22;;31094:4;31075:15;:13;:15::i;:::-;:23;;:47;;;;;31109:13;;31102:4;:20;31075:47;31071:886;;;31143:31;31177:11;:17;31189:4;31177:17;;;;;;;;;;;31143:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31218:9;:16;;;31213:729;;31289:1;31263:28;;:9;:14;;;:28;;;31259:101;;31327:9;31320:16;;;;;;31259:101;31662:261;31669:4;31662:261;;;31702:6;;;;;;;;31747:11;:17;31759:4;31747:17;;;;;;;;;;;31735:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31821:1;31795:28;;:9;:14;;;:28;;;31791:109;;31863:9;31856:16;;;;;;31791:109;31662:261;;;31213:729;31124:833;31071:886;31985:31;;;;;;;;;;;;;;30916:1108;;;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;35953:104::-;36022:27;36032:2;36036:8;36022:27;;;;;;;;;;;;:9;:27::i;:::-;35953:104;;:::o;7323:326::-;7383:4;7640:1;7618:7;:19;;;:23;7611:30;;7323:326;;;:::o;44057:667::-;44220:4;44257:2;44241:36;;;44278:12;:10;:12::i;:::-;44292:4;44298:7;44307:5;44241:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44237:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44492:1;44475:6;:13;:18;44471:235;;;44521:40;;;;;;;;;;;;;;44471:235;44664:6;44658:13;44649:6;44645:2;44641:15;44634:38;44237:480;44370:45;;;44360:55;;;:6;:55;;;;44353:62;;;44057:667;;;;;;:::o;46835:111::-;46896:13;46929:9;46922:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46835:111;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;45372:159::-;;;;;:::o;46190:158::-;;;;;:::o;36420:163::-;36543:32;36549:2;36553:8;36563:5;36570:4;36543:5;:32::i;:::-;36420:163;;;:::o;36842:1775::-;36981:20;37004:13;;36981:36;;37046:1;37032:16;;:2;:16;;;37028:48;;;37057:19;;;;;;;;;;;;;;37028:48;37103:1;37091:8;:13;37087:44;;;37113:18;;;;;;;;;;;;;;37087:44;37144:61;37174:1;37178:2;37182:12;37196:8;37144:21;:61::i;:::-;37517:8;37482:12;:16;37495:2;37482:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37581:8;37541:12;:16;37554:2;37541:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37640:2;37607:11;:25;37619:12;37607:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37707:15;37657:11;:25;37669:12;37657:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37740:20;37763:12;37740:35;;37790:11;37819:8;37804:12;:23;37790:37;;37848:4;:23;;;;;37856:15;:2;:13;;;:15::i;:::-;37848:23;37844:641;;;37892:314;37948:12;37944:2;37923:38;;37940:1;37923:38;;;;;;;;;;;;37989:69;38028:1;38032:2;38036:14;;;;;;38052:5;37989:30;:69::i;:::-;37984:174;;38094:40;;;;;;;;;;;;;;37984:174;38201:3;38185:12;:19;;37892:314;;38287:12;38270:13;;:29;38266:43;;38301:8;;;38266:43;37844:641;;;38350:120;38406:14;;;;;;38402:2;38381:40;;38398:1;38381:40;;;;;;;;;;;;38465:3;38449:12;:19;;38350:120;;37844:641;38515:12;38499:13;:28;;;;37457:1082;;38549:60;38578:1;38582:2;38586:12;38600:8;38549:20;:60::i;:::-;36970:1647;36842:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:137::-;2322:5;2360:6;2347:20;2338:29;;2376:32;2402:5;2376:32;:::i;:::-;2277:137;;;;:::o;2420:329::-;2479:6;2528:2;2516:9;2507:7;2503:23;2499:32;2496:119;;;2534:79;;:::i;:::-;2496:119;2654:1;2679:53;2724:7;2715:6;2704:9;2700:22;2679:53;:::i;:::-;2669:63;;2625:117;2420:329;;;;:::o;2755:474::-;2823:6;2831;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:53;3076:7;3067:6;3056:9;3052:22;3031:53;:::i;:::-;3021:63;;2977:117;3133:2;3159:53;3204:7;3195:6;3184:9;3180:22;3159:53;:::i;:::-;3149:63;;3104:118;2755:474;;;;;:::o;3235:619::-;3312:6;3320;3328;3377:2;3365:9;3356:7;3352:23;3348:32;3345:119;;;3383:79;;:::i;:::-;3345:119;3503:1;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3474:117;3630:2;3656:53;3701:7;3692:6;3681:9;3677:22;3656:53;:::i;:::-;3646:63;;3601:118;3758:2;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3729:118;3235:619;;;;;:::o;3860:943::-;3955:6;3963;3971;3979;4028:3;4016:9;4007:7;4003:23;3999:33;3996:120;;;4035:79;;:::i;:::-;3996:120;4155:1;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4126:117;4282:2;4308:53;4353:7;4344:6;4333:9;4329:22;4308:53;:::i;:::-;4298:63;;4253:118;4410:2;4436:53;4481:7;4472:6;4461:9;4457:22;4436:53;:::i;:::-;4426:63;;4381:118;4566:2;4555:9;4551:18;4538:32;4597:18;4589:6;4586:30;4583:117;;;4619:79;;:::i;:::-;4583:117;4724:62;4778:7;4769:6;4758:9;4754:22;4724:62;:::i;:::-;4714:72;;4509:287;3860:943;;;;;;;:::o;4809:468::-;4874:6;4882;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;5184:2;5210:50;5252:7;5243:6;5232:9;5228:22;5210:50;:::i;:::-;5200:60;;5155:115;4809:468;;;;;:::o;5283:474::-;5351:6;5359;5408:2;5396:9;5387:7;5383:23;5379:32;5376:119;;;5414:79;;:::i;:::-;5376:119;5534:1;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5505:117;5661:2;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5632:118;5283:474;;;;;:::o;5763:327::-;5821:6;5870:2;5858:9;5849:7;5845:23;5841:32;5838:119;;;5876:79;;:::i;:::-;5838:119;5996:1;6021:52;6065:7;6056:6;6045:9;6041:22;6021:52;:::i;:::-;6011:62;;5967:116;5763:327;;;;:::o;6096:349::-;6165:6;6214:2;6202:9;6193:7;6189:23;6185:32;6182:119;;;6220:79;;:::i;:::-;6182:119;6340:1;6365:63;6420:7;6411:6;6400:9;6396:22;6365:63;:::i;:::-;6355:73;;6311:127;6096:349;;;;:::o;6451:509::-;6520:6;6569:2;6557:9;6548:7;6544:23;6540:32;6537:119;;;6575:79;;:::i;:::-;6537:119;6723:1;6712:9;6708:17;6695:31;6753:18;6745:6;6742:30;6739:117;;;6775:79;;:::i;:::-;6739:117;6880:63;6935:7;6926:6;6915:9;6911:22;6880:63;:::i;:::-;6870:73;;6666:287;6451:509;;;;:::o;6966:329::-;7025:6;7074:2;7062:9;7053:7;7049:23;7045:32;7042:119;;;7080:79;;:::i;:::-;7042:119;7200:1;7225:53;7270:7;7261:6;7250:9;7246:22;7225:53;:::i;:::-;7215:63;;7171:117;6966:329;;;;:::o;7301:327::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:52;7603:7;7594:6;7583:9;7579:22;7559:52;:::i;:::-;7549:62;;7505:116;7301:327;;;;:::o;7634:118::-;7721:24;7739:5;7721:24;:::i;:::-;7716:3;7709:37;7634:118;;:::o;7758:109::-;7839:21;7854:5;7839:21;:::i;:::-;7834:3;7827:34;7758:109;;:::o;7873:360::-;7959:3;7987:38;8019:5;7987:38;:::i;:::-;8041:70;8104:6;8099:3;8041:70;:::i;:::-;8034:77;;8120:52;8165:6;8160:3;8153:4;8146:5;8142:16;8120:52;:::i;:::-;8197:29;8219:6;8197:29;:::i;:::-;8192:3;8188:39;8181:46;;7963:270;7873:360;;;;:::o;8239:364::-;8327:3;8355:39;8388:5;8355:39;:::i;:::-;8410:71;8474:6;8469:3;8410:71;:::i;:::-;8403:78;;8490:52;8535:6;8530:3;8523:4;8516:5;8512:16;8490:52;:::i;:::-;8567:29;8589:6;8567:29;:::i;:::-;8562:3;8558:39;8551:46;;8331:272;8239:364;;;;:::o;8609:377::-;8715:3;8743:39;8776:5;8743:39;:::i;:::-;8798:89;8880:6;8875:3;8798:89;:::i;:::-;8791:96;;8896:52;8941:6;8936:3;8929:4;8922:5;8918:16;8896:52;:::i;:::-;8973:6;8968:3;8964:16;8957:23;;8719:267;8609:377;;;;:::o;8992:366::-;9134:3;9155:67;9219:2;9214:3;9155:67;:::i;:::-;9148:74;;9231:93;9320:3;9231:93;:::i;:::-;9349:2;9344:3;9340:12;9333:19;;8992:366;;;:::o;9364:::-;9506:3;9527:67;9591:2;9586:3;9527:67;:::i;:::-;9520:74;;9603:93;9692:3;9603:93;:::i;:::-;9721:2;9716:3;9712:12;9705:19;;9364:366;;;:::o;9736:::-;9878:3;9899:67;9963:2;9958:3;9899:67;:::i;:::-;9892:74;;9975:93;10064:3;9975:93;:::i;:::-;10093:2;10088:3;10084:12;10077:19;;9736:366;;;:::o;10108:365::-;10250:3;10271:66;10335:1;10330:3;10271:66;:::i;:::-;10264:73;;10346:93;10435:3;10346:93;:::i;:::-;10464:2;10459:3;10455:12;10448:19;;10108:365;;;:::o;10479:366::-;10621:3;10642:67;10706:2;10701:3;10642:67;:::i;:::-;10635:74;;10718:93;10807:3;10718:93;:::i;:::-;10836:2;10831:3;10827:12;10820:19;;10479:366;;;:::o;10851:::-;10993:3;11014:67;11078:2;11073:3;11014:67;:::i;:::-;11007:74;;11090:93;11179:3;11090:93;:::i;:::-;11208:2;11203:3;11199:12;11192:19;;10851:366;;;:::o;11223:398::-;11382:3;11403:83;11484:1;11479:3;11403:83;:::i;:::-;11396:90;;11495:93;11584:3;11495:93;:::i;:::-;11613:1;11608:3;11604:11;11597:18;;11223:398;;;:::o;11627:366::-;11769:3;11790:67;11854:2;11849:3;11790:67;:::i;:::-;11783:74;;11866:93;11955:3;11866:93;:::i;:::-;11984:2;11979:3;11975:12;11968:19;;11627:366;;;:::o;11999:118::-;12086:24;12104:5;12086:24;:::i;:::-;12081:3;12074:37;11999:118;;:::o;12123:115::-;12208:23;12225:5;12208:23;:::i;:::-;12203:3;12196:36;12123:115;;:::o;12244:435::-;12424:3;12446:95;12537:3;12528:6;12446:95;:::i;:::-;12439:102;;12558:95;12649:3;12640:6;12558:95;:::i;:::-;12551:102;;12670:3;12663:10;;12244:435;;;;;:::o;12685:379::-;12869:3;12891:147;13034:3;12891:147;:::i;:::-;12884:154;;13055:3;13048:10;;12685:379;;;:::o;13070:222::-;13163:4;13201:2;13190:9;13186:18;13178:26;;13214:71;13282:1;13271:9;13267:17;13258:6;13214:71;:::i;:::-;13070:222;;;;:::o;13298:640::-;13493:4;13531:3;13520:9;13516:19;13508:27;;13545:71;13613:1;13602:9;13598:17;13589:6;13545:71;:::i;:::-;13626:72;13694:2;13683:9;13679:18;13670:6;13626:72;:::i;:::-;13708;13776:2;13765:9;13761:18;13752:6;13708:72;:::i;:::-;13827:9;13821:4;13817:20;13812:2;13801:9;13797:18;13790:48;13855:76;13926:4;13917:6;13855:76;:::i;:::-;13847:84;;13298:640;;;;;;;:::o;13944:210::-;14031:4;14069:2;14058:9;14054:18;14046:26;;14082:65;14144:1;14133:9;14129:17;14120:6;14082:65;:::i;:::-;13944:210;;;;:::o;14160:313::-;14273:4;14311:2;14300:9;14296:18;14288:26;;14360:9;14354:4;14350:20;14346:1;14335:9;14331:17;14324:47;14388:78;14461:4;14452:6;14388:78;:::i;:::-;14380:86;;14160:313;;;;:::o;14479:419::-;14645:4;14683:2;14672:9;14668:18;14660:26;;14732:9;14726:4;14722:20;14718:1;14707:9;14703:17;14696:47;14760:131;14886:4;14760:131;:::i;:::-;14752:139;;14479:419;;;:::o;14904:::-;15070:4;15108:2;15097:9;15093:18;15085:26;;15157:9;15151:4;15147:20;15143:1;15132:9;15128:17;15121:47;15185:131;15311:4;15185:131;:::i;:::-;15177:139;;14904:419;;;:::o;15329:::-;15495:4;15533:2;15522:9;15518:18;15510:26;;15582:9;15576:4;15572:20;15568:1;15557:9;15553:17;15546:47;15610:131;15736:4;15610:131;:::i;:::-;15602:139;;15329:419;;;:::o;15754:::-;15920:4;15958:2;15947:9;15943:18;15935:26;;16007:9;16001:4;15997:20;15993:1;15982:9;15978:17;15971:47;16035:131;16161:4;16035:131;:::i;:::-;16027:139;;15754:419;;;:::o;16179:::-;16345:4;16383:2;16372:9;16368:18;16360:26;;16432:9;16426:4;16422:20;16418:1;16407:9;16403:17;16396:47;16460:131;16586:4;16460:131;:::i;:::-;16452:139;;16179:419;;;:::o;16604:::-;16770:4;16808:2;16797:9;16793:18;16785:26;;16857:9;16851:4;16847:20;16843:1;16832:9;16828:17;16821:47;16885:131;17011:4;16885:131;:::i;:::-;16877:139;;16604:419;;;:::o;17029:::-;17195:4;17233:2;17222:9;17218:18;17210:26;;17282:9;17276:4;17272:20;17268:1;17257:9;17253:17;17246:47;17310:131;17436:4;17310:131;:::i;:::-;17302:139;;17029:419;;;:::o;17454:222::-;17547:4;17585:2;17574:9;17570:18;17562:26;;17598:71;17666:1;17655:9;17651:17;17642:6;17598:71;:::i;:::-;17454:222;;;;:::o;17682:218::-;17773:4;17811:2;17800:9;17796:18;17788:26;;17824:69;17890:1;17879:9;17875:17;17866:6;17824:69;:::i;:::-;17682:218;;;;:::o;17906:129::-;17940:6;17967:20;;:::i;:::-;17957:30;;17996:33;18024:4;18016:6;17996:33;:::i;:::-;17906:129;;;:::o;18041:75::-;18074:6;18107:2;18101:9;18091:19;;18041:75;:::o;18122:307::-;18183:4;18273:18;18265:6;18262:30;18259:56;;;18295:18;;:::i;:::-;18259:56;18333:29;18355:6;18333:29;:::i;:::-;18325:37;;18417:4;18411;18407:15;18399:23;;18122:307;;;:::o;18435:308::-;18497:4;18587:18;18579:6;18576:30;18573:56;;;18609:18;;:::i;:::-;18573:56;18647:29;18669:6;18647:29;:::i;:::-;18639:37;;18731:4;18725;18721:15;18713:23;;18435:308;;;:::o;18749:98::-;18800:6;18834:5;18828:12;18818:22;;18749:98;;;:::o;18853:99::-;18905:6;18939:5;18933:12;18923:22;;18853:99;;;:::o;18958:168::-;19041:11;19075:6;19070:3;19063:19;19115:4;19110:3;19106:14;19091:29;;18958:168;;;;:::o;19132:147::-;19233:11;19270:3;19255:18;;19132:147;;;;:::o;19285:169::-;19369:11;19403:6;19398:3;19391:19;19443:4;19438:3;19434:14;19419:29;;19285:169;;;;:::o;19460:148::-;19562:11;19599:3;19584:18;;19460:148;;;;:::o;19614:305::-;19654:3;19673:20;19691:1;19673:20;:::i;:::-;19668:25;;19707:20;19725:1;19707:20;:::i;:::-;19702:25;;19861:1;19793:66;19789:74;19786:1;19783:81;19780:107;;;19867:18;;:::i;:::-;19780:107;19911:1;19908;19904:9;19897:16;;19614:305;;;;:::o;19925:185::-;19965:1;19982:20;20000:1;19982:20;:::i;:::-;19977:25;;20016:20;20034:1;20016:20;:::i;:::-;20011:25;;20055:1;20045:35;;20060:18;;:::i;:::-;20045:35;20102:1;20099;20095:9;20090:14;;19925:185;;;;:::o;20116:348::-;20156:7;20179:20;20197:1;20179:20;:::i;:::-;20174:25;;20213:20;20231:1;20213:20;:::i;:::-;20208:25;;20401:1;20333:66;20329:74;20326:1;20323:81;20318:1;20311:9;20304:17;20300:105;20297:131;;;20408:18;;:::i;:::-;20297:131;20456:1;20453;20449:9;20438:20;;20116:348;;;;:::o;20470:191::-;20510:4;20530:20;20548:1;20530:20;:::i;:::-;20525:25;;20564:20;20582:1;20564:20;:::i;:::-;20559:25;;20603:1;20600;20597:8;20594:34;;;20608:18;;:::i;:::-;20594:34;20653:1;20650;20646:9;20638:17;;20470:191;;;;:::o;20667:96::-;20704:7;20733:24;20751:5;20733:24;:::i;:::-;20722:35;;20667:96;;;:::o;20769:90::-;20803:7;20846:5;20839:13;20832:21;20821:32;;20769:90;;;:::o;20865:149::-;20901:7;20941:66;20934:5;20930:78;20919:89;;20865:149;;;:::o;21020:126::-;21057:7;21097:42;21090:5;21086:54;21075:65;;21020:126;;;:::o;21152:77::-;21189:7;21218:5;21207:16;;21152:77;;;:::o;21235:93::-;21271:7;21311:10;21304:5;21300:22;21289:33;;21235:93;;;:::o;21334:154::-;21418:6;21413:3;21408;21395:30;21480:1;21471:6;21466:3;21462:16;21455:27;21334:154;;;:::o;21494:307::-;21562:1;21572:113;21586:6;21583:1;21580:13;21572:113;;;21671:1;21666:3;21662:11;21656:18;21652:1;21647:3;21643:11;21636:39;21608:2;21605:1;21601:10;21596:15;;21572:113;;;21703:6;21700:1;21697:13;21694:101;;;21783:1;21774:6;21769:3;21765:16;21758:27;21694:101;21543:258;21494:307;;;:::o;21807:320::-;21851:6;21888:1;21882:4;21878:12;21868:22;;21935:1;21929:4;21925:12;21956:18;21946:81;;22012:4;22004:6;22000:17;21990:27;;21946:81;22074:2;22066:6;22063:14;22043:18;22040:38;22037:84;;;22093:18;;:::i;:::-;22037:84;21858:269;21807:320;;;:::o;22133:281::-;22216:27;22238:4;22216:27;:::i;:::-;22208:6;22204:40;22346:6;22334:10;22331:22;22310:18;22298:10;22295:34;22292:62;22289:88;;;22357:18;;:::i;:::-;22289:88;22397:10;22393:2;22386:22;22176:238;22133:281;;:::o;22420:233::-;22459:3;22482:24;22500:5;22482:24;:::i;:::-;22473:33;;22528:66;22521:5;22518:77;22515:103;;;22598:18;;:::i;:::-;22515:103;22645:1;22638:5;22634:13;22627:20;;22420:233;;;:::o;22659:176::-;22691:1;22708:20;22726:1;22708:20;:::i;:::-;22703:25;;22742:20;22760:1;22742:20;:::i;:::-;22737:25;;22781:1;22771:35;;22786:18;;:::i;:::-;22771:35;22827:1;22824;22820:9;22815:14;;22659:176;;;;:::o;22841:180::-;22889:77;22886:1;22879:88;22986:4;22983:1;22976:15;23010:4;23007:1;23000:15;23027:180;23075:77;23072:1;23065:88;23172:4;23169:1;23162:15;23196:4;23193:1;23186:15;23213:180;23261:77;23258:1;23251:88;23358:4;23355:1;23348:15;23382:4;23379:1;23372:15;23399:180;23447:77;23444:1;23437:88;23544:4;23541:1;23534:15;23568:4;23565:1;23558:15;23585:180;23633:77;23630:1;23623:88;23730:4;23727:1;23720:15;23754:4;23751:1;23744:15;23771:117;23880:1;23877;23870:12;23894:117;24003:1;24000;23993:12;24017:117;24126:1;24123;24116:12;24140:117;24249:1;24246;24239:12;24263:102;24304:6;24355:2;24351:7;24346:2;24339:5;24335:14;24331:28;24321:38;;24263:102;;;:::o;24371:162::-;24511:14;24507:1;24499:6;24495:14;24488:38;24371:162;:::o;24539:225::-;24679:34;24675:1;24667:6;24663:14;24656:58;24748:8;24743:2;24735:6;24731:15;24724:33;24539:225;:::o;24770:174::-;24910:26;24906:1;24898:6;24894:14;24887:50;24770:174;:::o;24950:158::-;25090:10;25086:1;25078:6;25074:14;25067:34;24950:158;:::o;25114:180::-;25254:32;25250:1;25242:6;25238:14;25231:56;25114:180;:::o;25300:182::-;25440:34;25436:1;25428:6;25424:14;25417:58;25300:182;:::o;25488:114::-;;:::o;25608:162::-;25748:14;25744:1;25736:6;25732:14;25725:38;25608:162;:::o;25776:122::-;25849:24;25867:5;25849:24;:::i;:::-;25842:5;25839:35;25829:63;;25888:1;25885;25878:12;25829:63;25776:122;:::o;25904:116::-;25974:21;25989:5;25974:21;:::i;:::-;25967:5;25964:32;25954:60;;26010:1;26007;26000:12;25954:60;25904:116;:::o;26026:120::-;26098:23;26115:5;26098:23;:::i;:::-;26091:5;26088:34;26078:62;;26136:1;26133;26126:12;26078:62;26026:120;:::o;26152:122::-;26225:24;26243:5;26225:24;:::i;:::-;26218:5;26215:35;26205:63;;26264:1;26261;26254:12;26205:63;26152:122;:::o;26280:120::-;26352:23;26369:5;26352:23;:::i;:::-;26345:5;26342:34;26332:62;;26390:1;26387;26380:12;26332:62;26280:120;:::o
Swarm Source
ipfs://50fd1f56f8fb92a079b27740b7fbf9aeb7878af51f189b7d0f92a511ee8d4521
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.