ERC-721
Overview
Max Total Supply
155 AVRIL15_S1
Holders
135
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 AVRIL15_S1Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
avril15_SeasonOne
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-29 */ // SPDX-License-Identifier: MIT /* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + iiii lllllll 1111111 55555555SEASON:ONE + + i::::i l:::::l 1::::::1 5::::::::::::::::5 + + iiii l:::::l 1:::::::1 5::::::::::::::::5 + + l:::::l 111:::::1 5:::::555555555555 + + aaaaaaaaaaaaavvvvvvv vvvvvvvrrrrr rrrrrrrrr iiiiiii l::::l 1::::1 5:::::5 + + a::::::::::::av:::::v v:::::v r::::rrr:::::::::r i:::::i l::::l 1::::1 5:::::5 + + aaaaaaaaa:::::av:::::v v:::::v r:::::::::::::::::r i::::i l::::l 1::::1 5:::::5555555555 + + a::::a v:::::v v:::::v rr::::::rrrrr::::::ri::::i l::::l 1::::l 5:::::::::::::::5 + + aaaaaaa:::::a v:::::v v:::::v r:::::r r:::::ri::::i l::::l 1::::l 555555555555:::::5 + + aa::::::::::::a v:::::v v:::::v r:::::r rrrrrrri::::i l::::l 1::::l 5:::::5 + + a::::aaaa::::::a v:::::v:::::v r:::::r i::::i l::::l 1::::l 5:::::5 + + a::::a a:::::a v:::::::::v r:::::r i::::i l::::l 1::::l 5555555 5:::::5 + + a::::a a:::::a v:::::::v r:::::r i::::::il::::::l111::::::1115::::::55555::::::5 + + a:::::aaaa::::::a v:::::v r:::::r i::::::il::::::l1::::::::::1 55:::::::::::::55 + + a::::::::::aa:::a v:::v r:::::r i::::::il::::::l1::::::::::1 55:::::::::55 + + aaaaaaaaaa aaaa vvv rrrrrrr SEASON:ONEllllll111111111111 555555555 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: avril15_s1.sol pragma solidity ^0.8.4; contract avril15_SeasonOne is ERC721A, Ownable { uint256 maxSupply = 160; string public baseURI = "ipfs://QmQrkhzQeVSLvFN9oUCJ4PJhkDfQPMfj8zmu5Nc2JCsqq6/"; bool public revealed = true; constructor() ERC721A("avril15.eth season one", "AVRIL15_S1") {} function ownerMint(uint256 quantity) external payable onlyOwner { require(totalSupply() + quantity <= maxSupply, "Exceeded maxSupply of 160."); _safeMint(msg.sender, quantity); } function _baseURI() internal view override returns (string memory) { return baseURI; } function changeBaseURI(string memory baseURI_) public onlyOwner { baseURI = baseURI_; } function changeRevealed(bool _revealed) public onlyOwner { revealed = _revealed; } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI_ = _baseURI(); if (revealed) { return bytes(baseURI_).length > 0 ? string(abi.encodePacked(baseURI_, Strings.toString(tokenId), ".json")) : ""; } else { return string(abi.encodePacked(baseURI_, "prereveal.json")); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"changeRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","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":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]
Contract Creation Code
608060405260a0600955604051806060016040528060368152602001620033ca60369139600a90805190602001906200003a92919062000217565b506001600b60006101000a81548160ff0219169083151502179055503480156200006357600080fd5b506040518060400160405280601681526020017f617672696c31352e65746820736561736f6e206f6e65000000000000000000008152506040518060400160405280600a81526020017f415652494c31355f5331000000000000000000000000000000000000000000008152508160029080519060200190620000e892919062000217565b5080600390805190602001906200010192919062000217565b50620001126200014060201b60201c565b60008190555050506200013a6200012e6200014960201b60201c565b6200015160201b60201c565b6200032c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022590620002c7565b90600052602060002090601f01602090048101928262000249576000855562000295565b82601f106200026457805160ff191683800117855562000295565b8280016001018555821562000295579182015b828111156200029457825182559160200191906001019062000277565b5b509050620002a49190620002a8565b5090565b5b80821115620002c3576000816000905550600101620002a9565b5090565b60006002820490506001821680620002e057607f821691505b60208210811415620002f757620002f6620002fd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61308e806200033c6000396000f3fe6080604052600436106101355760003560e01c806370a08231116100ab578063b88d4fde1161006f578063b88d4fde14610414578063c87b56dd1461043d578063cf3604dc1461047a578063e985e9c5146104a3578063f19e75d4146104e0578063f2fde38b146104fc57610135565b806370a0823114610341578063715018a61461037e5780638da5cb5b1461039557806395d89b41146103c0578063a22cb465146103eb57610135565b806323b872dd116100fd57806323b872dd1461023357806339a0c6f91461025c57806342842e0e1461028557806351830227146102ae5780636352211e146102d95780636c0360eb1461031657610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806318160ddd14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c91906126e7565b610525565b60405161016e91906129fd565b60405180910390f35b34801561018357600080fd5b5061018c610607565b6040516101999190612a18565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c4919061277a565b610699565b6040516101d69190612996565b60405180910390f35b3480156101eb57600080fd5b5061020660048036038101906102019190612682565b610715565b005b34801561021457600080fd5b5061021d610820565b60405161022a9190612aba565b60405180910390f35b34801561023f57600080fd5b5061025a6004803603810190610255919061257c565b610837565b005b34801561026857600080fd5b50610283600480360381019061027e9190612739565b610847565b005b34801561029157600080fd5b506102ac60048036038101906102a7919061257c565b6108dd565b005b3480156102ba57600080fd5b506102c36108fd565b6040516102d091906129fd565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb919061277a565b610910565b60405161030d9190612996565b60405180910390f35b34801561032257600080fd5b5061032b610926565b6040516103389190612a18565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190612517565b6109b4565b6040516103759190612aba565b60405180910390f35b34801561038a57600080fd5b50610393610a84565b005b3480156103a157600080fd5b506103aa610b0c565b6040516103b79190612996565b60405180910390f35b3480156103cc57600080fd5b506103d5610b36565b6040516103e29190612a18565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190612646565b610bc8565b005b34801561042057600080fd5b5061043b600480360381019061043691906125cb565b610d40565b005b34801561044957600080fd5b50610464600480360381019061045f919061277a565b610dbc565b6040516104719190612a18565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c91906126be565b610ea1565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190612540565b610f3a565b6040516104d791906129fd565b60405180910390f35b6104fa60048036038101906104f5919061277a565b610fce565b005b34801561050857600080fd5b50610523600480360381019061051e9190612517565b6110ae565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105f057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060057506105ff826111a6565b5b9050919050565b60606002805461061690612d10565b80601f016020809104026020016040519081016040528092919081815260200182805461064290612d10565b801561068f5780601f106106645761010080835404028352916020019161068f565b820191906000526020600020905b81548152906001019060200180831161067257829003601f168201915b5050505050905090565b60006106a482611210565b6106da576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061072082610910565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610788576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107a761125e565b73ffffffffffffffffffffffffffffffffffffffff16141580156107d957506107d7816107d261125e565b610f3a565b155b15610810576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61081b838383611266565b505050565b600061082a611318565b6001546000540303905090565b610842838383611321565b505050565b61084f61125e565b73ffffffffffffffffffffffffffffffffffffffff1661086d610b0c565b73ffffffffffffffffffffffffffffffffffffffff16146108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90612a5a565b60405180910390fd5b80600a90805190602001906108d99291906122f8565b5050565b6108f883838360405180602001604052806000815250610d40565b505050565b600b60009054906101000a900460ff1681565b600061091b826117d7565b600001519050919050565b600a805461093390612d10565b80601f016020809104026020016040519081016040528092919081815260200182805461095f90612d10565b80156109ac5780601f10610981576101008083540402835291602001916109ac565b820191906000526020600020905b81548152906001019060200180831161098f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a1c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610a8c61125e565b73ffffffffffffffffffffffffffffffffffffffff16610aaa610b0c565b73ffffffffffffffffffffffffffffffffffffffff1614610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790612a5a565b60405180910390fd5b610b0a6000611a66565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b4590612d10565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7190612d10565b8015610bbe5780601f10610b9357610100808354040283529160200191610bbe565b820191906000526020600020905b815481529060010190602001808311610ba157829003601f168201915b5050505050905090565b610bd061125e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c35576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610c4261125e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cef61125e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d3491906129fd565b60405180910390a35050565b610d4b848484611321565b610d6a8373ffffffffffffffffffffffffffffffffffffffff16611b2c565b8015610d7f5750610d7d84848484611b4f565b155b15610db6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610dc782611210565b610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90612a7a565b60405180910390fd5b6000610e10611caf565b9050600b60009054906101000a900460ff1615610e78576000815111610e455760405180602001604052806000815250610e70565b80610e4f84611d41565b604051602001610e60929190612945565b6040516020818303038152906040525b915050610e9c565b80604051602001610e899190612974565b6040516020818303038152906040529150505b919050565b610ea961125e565b73ffffffffffffffffffffffffffffffffffffffff16610ec7610b0c565b73ffffffffffffffffffffffffffffffffffffffff1614610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490612a5a565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fd661125e565b73ffffffffffffffffffffffffffffffffffffffff16610ff4610b0c565b73ffffffffffffffffffffffffffffffffffffffff161461104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104190612a5a565b60405180910390fd5b60095481611056610820565b6110609190612b9f565b11156110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890612a9a565b60405180910390fd5b6110ab3382611eee565b50565b6110b661125e565b73ffffffffffffffffffffffffffffffffffffffff166110d4610b0c565b73ffffffffffffffffffffffffffffffffffffffff161461112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190612a5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190612a3a565b60405180910390fd5b6111a381611a66565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161121b611318565b1115801561122a575060005482105b8015611257575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061132c826117d7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611397576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166113b861125e565b73ffffffffffffffffffffffffffffffffffffffff1614806113e757506113e6856113e161125e565b610f3a565b5b8061142c57506113f561125e565b73ffffffffffffffffffffffffffffffffffffffff1661141484610699565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611465576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114cc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114d98585856001611f0c565b6114e560008487611266565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561176557600054821461176457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117d08585856001611f12565b5050505050565b6117df61237e565b6000829050806117ed611318565b111580156117fc575060005481105b15611a2f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a2d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611911578092505050611a61565b5b600115611a2c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a27578092505050611a61565b611912565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b7561125e565b8786866040518563ffffffff1660e01b8152600401611b9794939291906129b1565b602060405180830381600087803b158015611bb157600080fd5b505af1925050508015611be257506040513d601f19601f82011682018060405250810190611bdf9190612710565b60015b611c5c573d8060008114611c12576040519150601f19603f3d011682016040523d82523d6000602084013e611c17565b606091505b50600081511415611c54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611cbe90612d10565b80601f0160208091040260200160405190810160405280929190818152602001828054611cea90612d10565b8015611d375780601f10611d0c57610100808354040283529160200191611d37565b820191906000526020600020905b815481529060010190602001808311611d1a57829003601f168201915b5050505050905090565b60606000821415611d89576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ee9565b600082905060005b60008214611dbb578080611da490612d73565b915050600a82611db49190612bf5565b9150611d91565b60008167ffffffffffffffff811115611dfd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e2f5781602001600182028036833780820191505090505b5090505b60008514611ee257600182611e489190612c26565b9150600a85611e579190612dbc565b6030611e639190612b9f565b60f81b818381518110611e9f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611edb9190612bf5565b9450611e33565b8093505050505b919050565b611f08828260405180602001604052806000815250611f18565b5050565b50505050565b50505050565b611f258383836001611f2a565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f97576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611fd2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fdf6000868387611f0c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156121a957506121a88773ffffffffffffffffffffffffffffffffffffffff16611b2c565b5b1561226f575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461221e6000888480600101955088611b4f565b612254576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156121af57826000541461226a57600080fd5b6122db565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612270575b8160008190555050506122f16000868387611f12565b5050505050565b82805461230490612d10565b90600052602060002090601f016020900481019282612326576000855561236d565b82601f1061233f57805160ff191683800117855561236d565b8280016001018555821561236d579182015b8281111561236c578251825591602001919060010190612351565b5b50905061237a91906123c1565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156123da5760008160009055506001016123c2565b5090565b60006123f16123ec84612afa565b612ad5565b90508281526020810184848401111561240957600080fd5b612414848285612cce565b509392505050565b600061242f61242a84612b2b565b612ad5565b90508281526020810184848401111561244757600080fd5b612452848285612cce565b509392505050565b60008135905061246981612ffc565b92915050565b60008135905061247e81613013565b92915050565b6000813590506124938161302a565b92915050565b6000815190506124a88161302a565b92915050565b600082601f8301126124bf57600080fd5b81356124cf8482602086016123de565b91505092915050565b600082601f8301126124e957600080fd5b81356124f984826020860161241c565b91505092915050565b60008135905061251181613041565b92915050565b60006020828403121561252957600080fd5b60006125378482850161245a565b91505092915050565b6000806040838503121561255357600080fd5b60006125618582860161245a565b92505060206125728582860161245a565b9150509250929050565b60008060006060848603121561259157600080fd5b600061259f8682870161245a565b93505060206125b08682870161245a565b92505060406125c186828701612502565b9150509250925092565b600080600080608085870312156125e157600080fd5b60006125ef8782880161245a565b94505060206126008782880161245a565b935050604061261187828801612502565b925050606085013567ffffffffffffffff81111561262e57600080fd5b61263a878288016124ae565b91505092959194509250565b6000806040838503121561265957600080fd5b60006126678582860161245a565b92505060206126788582860161246f565b9150509250929050565b6000806040838503121561269557600080fd5b60006126a38582860161245a565b92505060206126b485828601612502565b9150509250929050565b6000602082840312156126d057600080fd5b60006126de8482850161246f565b91505092915050565b6000602082840312156126f957600080fd5b600061270784828501612484565b91505092915050565b60006020828403121561272257600080fd5b600061273084828501612499565b91505092915050565b60006020828403121561274b57600080fd5b600082013567ffffffffffffffff81111561276557600080fd5b612771848285016124d8565b91505092915050565b60006020828403121561278c57600080fd5b600061279a84828501612502565b91505092915050565b6127ac81612c5a565b82525050565b6127bb81612c6c565b82525050565b60006127cc82612b5c565b6127d68185612b72565b93506127e6818560208601612cdd565b6127ef81612ea9565b840191505092915050565b600061280582612b67565b61280f8185612b83565b935061281f818560208601612cdd565b61282881612ea9565b840191505092915050565b600061283e82612b67565b6128488185612b94565b9350612858818560208601612cdd565b80840191505092915050565b6000612871602683612b83565b915061287c82612eba565b604082019050919050565b6000612894600e83612b94565b915061289f82612f09565b600e82019050919050565b60006128b7600583612b94565b91506128c282612f32565b600582019050919050565b60006128da602083612b83565b91506128e582612f5b565b602082019050919050565b60006128fd602f83612b83565b915061290882612f84565b604082019050919050565b6000612920601a83612b83565b915061292b82612fd3565b602082019050919050565b61293f81612cc4565b82525050565b60006129518285612833565b915061295d8284612833565b9150612968826128aa565b91508190509392505050565b60006129808284612833565b915061298b82612887565b915081905092915050565b60006020820190506129ab60008301846127a3565b92915050565b60006080820190506129c660008301876127a3565b6129d360208301866127a3565b6129e06040830185612936565b81810360608301526129f281846127c1565b905095945050505050565b6000602082019050612a1260008301846127b2565b92915050565b60006020820190508181036000830152612a3281846127fa565b905092915050565b60006020820190508181036000830152612a5381612864565b9050919050565b60006020820190508181036000830152612a73816128cd565b9050919050565b60006020820190508181036000830152612a93816128f0565b9050919050565b60006020820190508181036000830152612ab381612913565b9050919050565b6000602082019050612acf6000830184612936565b92915050565b6000612adf612af0565b9050612aeb8282612d42565b919050565b6000604051905090565b600067ffffffffffffffff821115612b1557612b14612e7a565b5b612b1e82612ea9565b9050602081019050919050565b600067ffffffffffffffff821115612b4657612b45612e7a565b5b612b4f82612ea9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612baa82612cc4565b9150612bb583612cc4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bea57612be9612ded565b5b828201905092915050565b6000612c0082612cc4565b9150612c0b83612cc4565b925082612c1b57612c1a612e1c565b5b828204905092915050565b6000612c3182612cc4565b9150612c3c83612cc4565b925082821015612c4f57612c4e612ded565b5b828203905092915050565b6000612c6582612ca4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612cfb578082015181840152602081019050612ce0565b83811115612d0a576000848401525b50505050565b60006002820490506001821680612d2857607f821691505b60208210811415612d3c57612d3b612e4b565b5b50919050565b612d4b82612ea9565b810181811067ffffffffffffffff82111715612d6a57612d69612e7a565b5b80604052505050565b6000612d7e82612cc4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612db157612db0612ded565b5b600182019050919050565b6000612dc782612cc4565b9150612dd283612cc4565b925082612de257612de1612e1c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f70726572657665616c2e6a736f6e000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4578636565646564206d6178537570706c79206f66203136302e000000000000600082015250565b61300581612c5a565b811461301057600080fd5b50565b61301c81612c6c565b811461302757600080fd5b50565b61303381612c78565b811461303e57600080fd5b50565b61304a81612cc4565b811461305557600080fd5b5056fea2646970667358221220bdf6dc51154fa9ffa6beb475c0a45c91efea089a5880aa13d19f5453fed89cda64736f6c63430008040033697066733a2f2f516d51726b687a516556534c76464e396f55434a34504a686b446651504d666a387a6d75354e63324a43737171362f
Deployed Bytecode
0x6080604052600436106101355760003560e01c806370a08231116100ab578063b88d4fde1161006f578063b88d4fde14610414578063c87b56dd1461043d578063cf3604dc1461047a578063e985e9c5146104a3578063f19e75d4146104e0578063f2fde38b146104fc57610135565b806370a0823114610341578063715018a61461037e5780638da5cb5b1461039557806395d89b41146103c0578063a22cb465146103eb57610135565b806323b872dd116100fd57806323b872dd1461023357806339a0c6f91461025c57806342842e0e1461028557806351830227146102ae5780636352211e146102d95780636c0360eb1461031657610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806318160ddd14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c91906126e7565b610525565b60405161016e91906129fd565b60405180910390f35b34801561018357600080fd5b5061018c610607565b6040516101999190612a18565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c4919061277a565b610699565b6040516101d69190612996565b60405180910390f35b3480156101eb57600080fd5b5061020660048036038101906102019190612682565b610715565b005b34801561021457600080fd5b5061021d610820565b60405161022a9190612aba565b60405180910390f35b34801561023f57600080fd5b5061025a6004803603810190610255919061257c565b610837565b005b34801561026857600080fd5b50610283600480360381019061027e9190612739565b610847565b005b34801561029157600080fd5b506102ac60048036038101906102a7919061257c565b6108dd565b005b3480156102ba57600080fd5b506102c36108fd565b6040516102d091906129fd565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb919061277a565b610910565b60405161030d9190612996565b60405180910390f35b34801561032257600080fd5b5061032b610926565b6040516103389190612a18565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190612517565b6109b4565b6040516103759190612aba565b60405180910390f35b34801561038a57600080fd5b50610393610a84565b005b3480156103a157600080fd5b506103aa610b0c565b6040516103b79190612996565b60405180910390f35b3480156103cc57600080fd5b506103d5610b36565b6040516103e29190612a18565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190612646565b610bc8565b005b34801561042057600080fd5b5061043b600480360381019061043691906125cb565b610d40565b005b34801561044957600080fd5b50610464600480360381019061045f919061277a565b610dbc565b6040516104719190612a18565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c91906126be565b610ea1565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190612540565b610f3a565b6040516104d791906129fd565b60405180910390f35b6104fa60048036038101906104f5919061277a565b610fce565b005b34801561050857600080fd5b50610523600480360381019061051e9190612517565b6110ae565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105f057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060057506105ff826111a6565b5b9050919050565b60606002805461061690612d10565b80601f016020809104026020016040519081016040528092919081815260200182805461064290612d10565b801561068f5780601f106106645761010080835404028352916020019161068f565b820191906000526020600020905b81548152906001019060200180831161067257829003601f168201915b5050505050905090565b60006106a482611210565b6106da576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061072082610910565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610788576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107a761125e565b73ffffffffffffffffffffffffffffffffffffffff16141580156107d957506107d7816107d261125e565b610f3a565b155b15610810576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61081b838383611266565b505050565b600061082a611318565b6001546000540303905090565b610842838383611321565b505050565b61084f61125e565b73ffffffffffffffffffffffffffffffffffffffff1661086d610b0c565b73ffffffffffffffffffffffffffffffffffffffff16146108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90612a5a565b60405180910390fd5b80600a90805190602001906108d99291906122f8565b5050565b6108f883838360405180602001604052806000815250610d40565b505050565b600b60009054906101000a900460ff1681565b600061091b826117d7565b600001519050919050565b600a805461093390612d10565b80601f016020809104026020016040519081016040528092919081815260200182805461095f90612d10565b80156109ac5780601f10610981576101008083540402835291602001916109ac565b820191906000526020600020905b81548152906001019060200180831161098f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a1c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610a8c61125e565b73ffffffffffffffffffffffffffffffffffffffff16610aaa610b0c565b73ffffffffffffffffffffffffffffffffffffffff1614610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790612a5a565b60405180910390fd5b610b0a6000611a66565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b4590612d10565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7190612d10565b8015610bbe5780601f10610b9357610100808354040283529160200191610bbe565b820191906000526020600020905b815481529060010190602001808311610ba157829003601f168201915b5050505050905090565b610bd061125e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c35576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610c4261125e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cef61125e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d3491906129fd565b60405180910390a35050565b610d4b848484611321565b610d6a8373ffffffffffffffffffffffffffffffffffffffff16611b2c565b8015610d7f5750610d7d84848484611b4f565b155b15610db6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610dc782611210565b610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90612a7a565b60405180910390fd5b6000610e10611caf565b9050600b60009054906101000a900460ff1615610e78576000815111610e455760405180602001604052806000815250610e70565b80610e4f84611d41565b604051602001610e60929190612945565b6040516020818303038152906040525b915050610e9c565b80604051602001610e899190612974565b6040516020818303038152906040529150505b919050565b610ea961125e565b73ffffffffffffffffffffffffffffffffffffffff16610ec7610b0c565b73ffffffffffffffffffffffffffffffffffffffff1614610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490612a5a565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fd661125e565b73ffffffffffffffffffffffffffffffffffffffff16610ff4610b0c565b73ffffffffffffffffffffffffffffffffffffffff161461104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104190612a5a565b60405180910390fd5b60095481611056610820565b6110609190612b9f565b11156110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890612a9a565b60405180910390fd5b6110ab3382611eee565b50565b6110b661125e565b73ffffffffffffffffffffffffffffffffffffffff166110d4610b0c565b73ffffffffffffffffffffffffffffffffffffffff161461112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190612a5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190612a3a565b60405180910390fd5b6111a381611a66565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161121b611318565b1115801561122a575060005482105b8015611257575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061132c826117d7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611397576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166113b861125e565b73ffffffffffffffffffffffffffffffffffffffff1614806113e757506113e6856113e161125e565b610f3a565b5b8061142c57506113f561125e565b73ffffffffffffffffffffffffffffffffffffffff1661141484610699565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611465576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114cc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114d98585856001611f0c565b6114e560008487611266565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561176557600054821461176457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117d08585856001611f12565b5050505050565b6117df61237e565b6000829050806117ed611318565b111580156117fc575060005481105b15611a2f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a2d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611911578092505050611a61565b5b600115611a2c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a27578092505050611a61565b611912565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b7561125e565b8786866040518563ffffffff1660e01b8152600401611b9794939291906129b1565b602060405180830381600087803b158015611bb157600080fd5b505af1925050508015611be257506040513d601f19601f82011682018060405250810190611bdf9190612710565b60015b611c5c573d8060008114611c12576040519150601f19603f3d011682016040523d82523d6000602084013e611c17565b606091505b50600081511415611c54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611cbe90612d10565b80601f0160208091040260200160405190810160405280929190818152602001828054611cea90612d10565b8015611d375780601f10611d0c57610100808354040283529160200191611d37565b820191906000526020600020905b815481529060010190602001808311611d1a57829003601f168201915b5050505050905090565b60606000821415611d89576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ee9565b600082905060005b60008214611dbb578080611da490612d73565b915050600a82611db49190612bf5565b9150611d91565b60008167ffffffffffffffff811115611dfd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e2f5781602001600182028036833780820191505090505b5090505b60008514611ee257600182611e489190612c26565b9150600a85611e579190612dbc565b6030611e639190612b9f565b60f81b818381518110611e9f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611edb9190612bf5565b9450611e33565b8093505050505b919050565b611f08828260405180602001604052806000815250611f18565b5050565b50505050565b50505050565b611f258383836001611f2a565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f97576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611fd2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fdf6000868387611f0c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156121a957506121a88773ffffffffffffffffffffffffffffffffffffffff16611b2c565b5b1561226f575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461221e6000888480600101955088611b4f565b612254576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156121af57826000541461226a57600080fd5b6122db565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612270575b8160008190555050506122f16000868387611f12565b5050505050565b82805461230490612d10565b90600052602060002090601f016020900481019282612326576000855561236d565b82601f1061233f57805160ff191683800117855561236d565b8280016001018555821561236d579182015b8281111561236c578251825591602001919060010190612351565b5b50905061237a91906123c1565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156123da5760008160009055506001016123c2565b5090565b60006123f16123ec84612afa565b612ad5565b90508281526020810184848401111561240957600080fd5b612414848285612cce565b509392505050565b600061242f61242a84612b2b565b612ad5565b90508281526020810184848401111561244757600080fd5b612452848285612cce565b509392505050565b60008135905061246981612ffc565b92915050565b60008135905061247e81613013565b92915050565b6000813590506124938161302a565b92915050565b6000815190506124a88161302a565b92915050565b600082601f8301126124bf57600080fd5b81356124cf8482602086016123de565b91505092915050565b600082601f8301126124e957600080fd5b81356124f984826020860161241c565b91505092915050565b60008135905061251181613041565b92915050565b60006020828403121561252957600080fd5b60006125378482850161245a565b91505092915050565b6000806040838503121561255357600080fd5b60006125618582860161245a565b92505060206125728582860161245a565b9150509250929050565b60008060006060848603121561259157600080fd5b600061259f8682870161245a565b93505060206125b08682870161245a565b92505060406125c186828701612502565b9150509250925092565b600080600080608085870312156125e157600080fd5b60006125ef8782880161245a565b94505060206126008782880161245a565b935050604061261187828801612502565b925050606085013567ffffffffffffffff81111561262e57600080fd5b61263a878288016124ae565b91505092959194509250565b6000806040838503121561265957600080fd5b60006126678582860161245a565b92505060206126788582860161246f565b9150509250929050565b6000806040838503121561269557600080fd5b60006126a38582860161245a565b92505060206126b485828601612502565b9150509250929050565b6000602082840312156126d057600080fd5b60006126de8482850161246f565b91505092915050565b6000602082840312156126f957600080fd5b600061270784828501612484565b91505092915050565b60006020828403121561272257600080fd5b600061273084828501612499565b91505092915050565b60006020828403121561274b57600080fd5b600082013567ffffffffffffffff81111561276557600080fd5b612771848285016124d8565b91505092915050565b60006020828403121561278c57600080fd5b600061279a84828501612502565b91505092915050565b6127ac81612c5a565b82525050565b6127bb81612c6c565b82525050565b60006127cc82612b5c565b6127d68185612b72565b93506127e6818560208601612cdd565b6127ef81612ea9565b840191505092915050565b600061280582612b67565b61280f8185612b83565b935061281f818560208601612cdd565b61282881612ea9565b840191505092915050565b600061283e82612b67565b6128488185612b94565b9350612858818560208601612cdd565b80840191505092915050565b6000612871602683612b83565b915061287c82612eba565b604082019050919050565b6000612894600e83612b94565b915061289f82612f09565b600e82019050919050565b60006128b7600583612b94565b91506128c282612f32565b600582019050919050565b60006128da602083612b83565b91506128e582612f5b565b602082019050919050565b60006128fd602f83612b83565b915061290882612f84565b604082019050919050565b6000612920601a83612b83565b915061292b82612fd3565b602082019050919050565b61293f81612cc4565b82525050565b60006129518285612833565b915061295d8284612833565b9150612968826128aa565b91508190509392505050565b60006129808284612833565b915061298b82612887565b915081905092915050565b60006020820190506129ab60008301846127a3565b92915050565b60006080820190506129c660008301876127a3565b6129d360208301866127a3565b6129e06040830185612936565b81810360608301526129f281846127c1565b905095945050505050565b6000602082019050612a1260008301846127b2565b92915050565b60006020820190508181036000830152612a3281846127fa565b905092915050565b60006020820190508181036000830152612a5381612864565b9050919050565b60006020820190508181036000830152612a73816128cd565b9050919050565b60006020820190508181036000830152612a93816128f0565b9050919050565b60006020820190508181036000830152612ab381612913565b9050919050565b6000602082019050612acf6000830184612936565b92915050565b6000612adf612af0565b9050612aeb8282612d42565b919050565b6000604051905090565b600067ffffffffffffffff821115612b1557612b14612e7a565b5b612b1e82612ea9565b9050602081019050919050565b600067ffffffffffffffff821115612b4657612b45612e7a565b5b612b4f82612ea9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612baa82612cc4565b9150612bb583612cc4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bea57612be9612ded565b5b828201905092915050565b6000612c0082612cc4565b9150612c0b83612cc4565b925082612c1b57612c1a612e1c565b5b828204905092915050565b6000612c3182612cc4565b9150612c3c83612cc4565b925082821015612c4f57612c4e612ded565b5b828203905092915050565b6000612c6582612ca4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612cfb578082015181840152602081019050612ce0565b83811115612d0a576000848401525b50505050565b60006002820490506001821680612d2857607f821691505b60208210811415612d3c57612d3b612e4b565b5b50919050565b612d4b82612ea9565b810181811067ffffffffffffffff82111715612d6a57612d69612e7a565b5b80604052505050565b6000612d7e82612cc4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612db157612db0612ded565b5b600182019050919050565b6000612dc782612cc4565b9150612dd283612cc4565b925082612de257612de1612e1c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f70726572657665616c2e6a736f6e000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4578636565646564206d6178537570706c79206f66203136302e000000000000600082015250565b61300581612c5a565b811461301057600080fd5b50565b61301c81612c6c565b811461302757600080fd5b50565b61303381612c78565b811461303e57600080fd5b50565b61304a81612cc4565b811461305557600080fd5b5056fea2646970667358221220bdf6dc51154fa9ffa6beb475c0a45c91efea089a5880aa13d19f5453fed89cda64736f6c63430008040033
Deployed Bytecode Sourcemap
44705:1188:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29389:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31992:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33339:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32956:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28734:267;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34123:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45261:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34322:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44869:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31821:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44785:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29710:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7525:103;;;;;;;;;;;;;:::i;:::-;;6874:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32140:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33588:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34536:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45462:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45361:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33913:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44971:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7783:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29389:269;29491:4;29528:25;29513:40;;;:11;:40;;;;:96;;;;29576:33;29561:48;;;:11;:48;;;;29513:96;:140;;;;29617:36;29641:11;29617:23;:36::i;:::-;29513:140;29502:151;;29389:269;;;:::o;31992:91::-;32046:13;32073:5;32066:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31992:91;:::o;33339:189::-;33407:7;33426:16;33434:7;33426;:16::i;:::-;33421:64;;33451:34;;;;;;;;;;;;;;33421:64;33499:15;:24;33515:7;33499:24;;;;;;;;;;;;;;;;;;;;;33492:31;;33339:189;;;:::o;32956:329::-;33023:13;33039:24;33055:7;33039:15;:24::i;:::-;33023:40;;33078:5;33072:11;;:2;:11;;;33068:48;;;33092:24;;;;;;;;;;;;;;33068:48;33143:5;33127:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33153:37;33170:5;33177:12;:10;:12::i;:::-;33153:16;:37::i;:::-;33152:38;33127:63;33123:123;;;33205:35;;;;;;;;;;;;;;33123:123;33252:28;33261:2;33265:7;33274:5;33252:8;:28::i;:::-;32956:329;;;:::o;28734:267::-;28778:7;28976:15;:13;:15::i;:::-;28961:12;;28945:13;;:28;:46;28938:53;;28734:267;:::o;34123:140::-;34230:28;34240:4;34246:2;34250:7;34230:9;:28::i;:::-;34123:140;;;:::o;45261:92::-;7105:12;:10;:12::i;:::-;7094:23;;:7;:5;:7::i;:::-;:23;;;7086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45340:8:::1;45330:7;:18;;;;;;;;;;;;:::i;:::-;;45261:92:::0;:::o;34322:155::-;34433:39;34450:4;34456:2;34460:7;34433:39;;;;;;;;;;;;:16;:39::i;:::-;34322:155;;;:::o;44869:27::-;;;;;;;;;;;;;:::o;31821:116::-;31885:7;31906:21;31919:7;31906:12;:21::i;:::-;:26;;;31899:33;;31821:116;;;:::o;44785:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29710:191::-;29774:7;29809:1;29792:19;;:5;:19;;;29788:60;;;29820:28;;;;;;;;;;;;;;29788:60;29868:12;:19;29881:5;29868:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29860:36;;29853:43;;29710:191;;;:::o;7525:103::-;7105:12;:10;:12::i;:::-;7094:23;;:7;:5;:7::i;:::-;:23;;;7086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7590:30:::1;7617:1;7590:18;:30::i;:::-;7525:103::o:0;6874:87::-;6920:7;6947:6;;;;;;;;;;;6940:13;;6874:87;:::o;32140:95::-;32196:13;32223:7;32216:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32140:95;:::o;33588:266::-;33693:12;:10;:12::i;:::-;33681:24;;:8;:24;;;33677:54;;;33714:17;;;;;;;;;;;;;;33677:54;33783:8;33738:18;:32;33757:12;:10;:12::i;:::-;33738:32;;;;;;;;;;;;;;;:42;33771:8;33738:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33830:8;33801:48;;33816:12;:10;:12::i;:::-;33801:48;;;33840:8;33801:48;;;;;;:::i;:::-;;;;;;;;33588:266;;:::o;34536:312::-;34670:28;34680:4;34686:2;34690:7;34670:9;:28::i;:::-;34707:15;:2;:13;;;:15::i;:::-;:76;;;;;34727:56;34758:4;34764:2;34768:7;34777:5;34727:30;:56::i;:::-;34726:57;34707:76;34703:141;;;34798:40;;;;;;;;;;;;;;34703:141;34536:312;;;;:::o;45462:428::-;45527:13;45555:16;45563:7;45555;:16::i;:::-;45547:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;45630:22;45655:10;:8;:10::i;:::-;45630:35;;45676:8;;;;;;;;;;;45672:214;;;45724:1;45705:8;45699:22;:26;:104;;;;;;;;;;;;;;;;;45752:8;45762:25;45779:7;45762:16;:25::i;:::-;45735:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45699:104;45692:111;;;;;45672:214;45852:8;45835:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;45821:59;;;45462:428;;;;:::o;45361:96::-;7105:12;:10;:12::i;:::-;7094:23;;:7;:5;:7::i;:::-;:23;;;7086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45440:9:::1;45429:8;;:20;;;;;;;;;;;;;;;;;;45361:96:::0;:::o;33913:155::-;34010:4;34028:18;:25;34047:5;34028:25;;;;;;;;;;;;;;;:35;34054:8;34028:35;;;;;;;;;;;;;;;;;;;;;;;;;34021:42;;33913:155;;;;:::o;44971:186::-;7105:12;:10;:12::i;:::-;7094:23;;:7;:5;:7::i;:::-;:23;;;7086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45076:9:::1;;45064:8;45048:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;45040:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;45121:31;45131:10;45143:8;45121:9;:31::i;:::-;44971:186:::0;:::o;7783:201::-;7105:12;:10;:12::i;:::-;7094:23;;:7;:5;:7::i;:::-;:23;;;7086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7892:1:::1;7872:22;;:8;:22;;;;7864:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7948:28;7967:8;7948:18;:28::i;:::-;7783:201:::0;:::o;19642:157::-;19727:4;19766:25;19751:40;;;:11;:40;;;;19744:47;;19642:157;;;:::o;35079:169::-;35136:4;35173:7;35154:15;:13;:15::i;:::-;:26;;:53;;;;;35194:13;;35184:7;:23;35154:53;:89;;;;;35216:11;:20;35228:7;35216:20;;;;;;;;;;;:27;;;;;;;;;;;;35215:28;35154:89;35147:96;;35079:169;;;:::o;5608:98::-;5661:7;5688:10;5681:17;;5608:98;:::o;42019:160::-;42134:2;42107:15;:24;42123:7;42107:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42166:7;42162:2;42146:28;;42155:5;42146:28;;;;;;;;;;;;42019:160;;;:::o;28529:83::-;28585:7;28606:1;28599:8;;28529:83;:::o;37703:1821::-;37791:35;37829:21;37842:7;37829:12;:21::i;:::-;37791:59;;37883:4;37861:26;;:13;:18;;;:26;;;37857:67;;37896:28;;;;;;;;;;;;;;37857:67;37931:22;37973:4;37957:20;;:12;:10;:12::i;:::-;:20;;;:64;;;;37985:36;38002:4;38008:12;:10;:12::i;:::-;37985:16;:36::i;:::-;37957:64;:108;;;;38053:12;:10;:12::i;:::-;38029:36;;:20;38041:7;38029:11;:20::i;:::-;:36;;;37957:108;37931:135;;38078:17;38073:66;;38104:35;;;;;;;;;;;;;;38073:66;38162:1;38148:16;;:2;:16;;;38144:52;;;38173:23;;;;;;;;;;;;;;38144:52;38203:43;38225:4;38231:2;38235:7;38244:1;38203:21;:43::i;:::-;38299:35;38316:1;38320:7;38329:4;38299:8;:35::i;:::-;38627:1;38597:12;:18;38610:4;38597:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38662:1;38634:12;:16;38647:2;38634:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38671:31;38705:11;:20;38717:7;38705:20;;;;;;;;;;;38671:54;;38747:2;38731:8;:13;;;:18;;;;;;;;;;;;;;;;;;38788:15;38755:8;:23;;;:49;;;;;;;;;;;;;;;;;;39029:19;39061:1;39051:7;:11;39029:33;;39068:31;39102:11;:24;39114:11;39102:24;;;;;;;;;;;39068:58;;39161:1;39136:27;;:8;:13;;;;;;;;;;;;:27;;;39132:297;;;39310:13;;39295:11;:28;39291:132;;39349:4;39333:8;:13;;;:20;;;;;;;;;;;;;;;;;;39387:13;:28;;;39361:8;:23;;;:54;;;;;;;;;;;;;;;;;;39291:132;39132:297;37703:1821;;;39464:7;39460:2;39445:27;;39454:4;39445:27;;;;;;;;;;;;39477:42;39498:4;39504:2;39508:7;39517:1;39477:20;:42::i;:::-;37703:1821;;;;;:::o;30974:797::-;31036:21;;:::i;:::-;31064:12;31079:7;31064:22;;31132:4;31113:15;:13;:15::i;:::-;:23;;:47;;;;;31147:13;;31140:4;:20;31113:47;31109:610;;;31169:31;31203:11;:17;31215:4;31203:17;;;;;;;;;;;31169:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31232:9;:16;;;31227:486;;31288:1;31262:28;;:9;:14;;;:28;;;31258:68;;31308:9;31301:16;;;;;;31258:68;31553:153;31560:4;31553:153;;;31575:6;;;;;;;;31602:11;:17;31614:4;31602:17;;;;;;;;;;;31590:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31658:1;31632:28;;:9;:14;;;:28;;;31628:70;;31679:9;31672:16;;;;;;31628:70;31553:153;;;31227:486;31109:610;;31735:31;;;;;;;;;;;;;;30974:797;;;;:::o;8144:191::-;8218:16;8237:6;;;;;;;;;;;8218:25;;8263:8;8254:6;;:17;;;;;;;;;;;;;;;;;;8318:8;8287:40;;8308:8;8287:40;;;;;;;;;;;;8144:191;;:::o;9567:326::-;9627:4;9884:1;9862:7;:19;;;:23;9855:30;;9567:326;;;:::o;42641:532::-;42777:4;42808:2;42792:36;;;42829:12;:10;:12::i;:::-;42843:4;42849:7;42858:5;42792:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42788:381;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43019:1;43002:6;:13;:18;42998:166;;;43036:40;;;;;;;;;;;;;;42998:166;43143:6;43137:13;43128:6;43124:2;43120:15;43113:38;42788:381;42912:45;;;42902:55;;;:6;:55;;;;42895:62;;;42641:532;;;;;;:::o;45165:91::-;45217:13;45244:7;45237:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45165:91;:::o;3178:723::-;3234:13;3464:1;3455:5;:10;3451:53;;;3482:10;;;;;;;;;;;;;;;;;;;;;3451:53;3514:12;3529:5;3514:20;;3545:14;3570:78;3585:1;3577:4;:9;3570:78;;3603:8;;;;;:::i;:::-;;;;3634:2;3626:10;;;;;:::i;:::-;;;3570:78;;;3658:19;3690:6;3680:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3658:39;;3708:154;3724:1;3715:5;:10;3708:154;;3752:1;3742:11;;;;;:::i;:::-;;;3819:2;3811:5;:10;;;;:::i;:::-;3798:2;:24;;;;:::i;:::-;3785:39;;3768:6;3775;3768:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;3848:2;3839:11;;;;;:::i;:::-;;;3708:154;;;3886:6;3872:21;;;;;3178:723;;;;:::o;35253:95::-;35316:27;35326:2;35330:8;35316:27;;;;;;;;;;;;:9;:27::i;:::-;35253:95;;:::o;43773:132::-;;;;;:::o;44513:131::-;;;;;:::o;35678:133::-;35774:32;35780:2;35784:8;35794:5;35801:4;35774:5;:32::i;:::-;35678:133;;;:::o;36037:1445::-;36143:20;36166:13;;36143:36;;36202:1;36188:16;;:2;:16;;;36184:48;;;36213:19;;;;;;;;;;;;;;36184:48;36253:1;36241:8;:13;36237:44;;;36263:18;;;;;;;;;;;;;;36237:44;36288:61;36318:1;36322:2;36326:12;36340:8;36288:21;:61::i;:::-;36628:8;36593:12;:16;36606:2;36593:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36683:8;36643:12;:16;36656:2;36643:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36733:2;36700:11;:25;36712:12;36700:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36791:15;36741:11;:25;36753:12;36741:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;36815:20;36838:12;36815:35;;36856:11;36885:8;36870:12;:23;36856:37;;36905:4;:23;;;;;36913:15;:2;:13;;;:15::i;:::-;36905:23;36901:473;;;36937:239;36978:12;36974:2;36953:38;;36970:1;36953:38;;;;;;;;;;;;37004:69;37043:1;37047:2;37051:14;;;;;;37067:5;37004:30;:69::i;:::-;36999:141;;37091:40;;;;;;;;;;;;;;36999:141;37171:3;37155:12;:19;;36937:239;;37233:12;37216:13;;:29;37212:43;;37247:8;;;37212:43;36901:473;;;37275:93;37316:14;;;;;;37312:2;37291:40;;37308:1;37291:40;;;;;;;;;;;;37363:3;37347:12;:19;;37275:93;;36901:473;37395:12;37379:13;:28;;;;36037:1445;;37417:60;37446:1;37450:2;37454:12;37468:8;37417:20;:60::i;:::-;36037:1445;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:118::-;6435:24;6453:5;6435:24;:::i;:::-;6430:3;6423:37;6413:53;;:::o;6472:109::-;6553:21;6568:5;6553:21;:::i;:::-;6548:3;6541:34;6531:50;;:::o;6587:360::-;6673:3;6701:38;6733:5;6701:38;:::i;:::-;6755:70;6818:6;6813:3;6755:70;:::i;:::-;6748:77;;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6911:29;6933:6;6911:29;:::i;:::-;6906:3;6902:39;6895:46;;6677:270;;;;;:::o;6953:364::-;7041:3;7069:39;7102:5;7069:39;:::i;:::-;7124:71;7188:6;7183:3;7124:71;:::i;:::-;7117:78;;7204:52;7249:6;7244:3;7237:4;7230:5;7226:16;7204:52;:::i;:::-;7281:29;7303:6;7281:29;:::i;:::-;7276:3;7272:39;7265:46;;7045:272;;;;;:::o;7323:377::-;7429:3;7457:39;7490:5;7457:39;:::i;:::-;7512:89;7594:6;7589:3;7512:89;:::i;:::-;7505:96;;7610:52;7655:6;7650:3;7643:4;7636:5;7632:16;7610:52;:::i;:::-;7687:6;7682:3;7678:16;7671:23;;7433:267;;;;;:::o;7706:366::-;7848:3;7869:67;7933:2;7928:3;7869:67;:::i;:::-;7862:74;;7945:93;8034:3;7945:93;:::i;:::-;8063:2;8058:3;8054:12;8047:19;;7852:220;;;:::o;8078:402::-;8238:3;8259:85;8341:2;8336:3;8259:85;:::i;:::-;8252:92;;8353:93;8442:3;8353:93;:::i;:::-;8471:2;8466:3;8462:12;8455:19;;8242:238;;;:::o;8486:400::-;8646:3;8667:84;8749:1;8744:3;8667:84;:::i;:::-;8660:91;;8760:93;8849:3;8760:93;:::i;:::-;8878:1;8873:3;8869:11;8862:18;;8650:236;;;:::o;8892:366::-;9034:3;9055:67;9119:2;9114:3;9055:67;:::i;:::-;9048:74;;9131:93;9220:3;9131:93;:::i;:::-;9249:2;9244:3;9240:12;9233:19;;9038:220;;;:::o;9264:366::-;9406:3;9427:67;9491:2;9486:3;9427:67;:::i;:::-;9420:74;;9503:93;9592:3;9503:93;:::i;:::-;9621:2;9616:3;9612:12;9605:19;;9410:220;;;:::o;9636:366::-;9778:3;9799:67;9863:2;9858:3;9799:67;:::i;:::-;9792:74;;9875:93;9964:3;9875:93;:::i;:::-;9993:2;9988:3;9984:12;9977:19;;9782:220;;;:::o;10008:118::-;10095:24;10113:5;10095:24;:::i;:::-;10090:3;10083:37;10073:53;;:::o;10132:701::-;10413:3;10435:95;10526:3;10517:6;10435:95;:::i;:::-;10428:102;;10547:95;10638:3;10629:6;10547:95;:::i;:::-;10540:102;;10659:148;10803:3;10659:148;:::i;:::-;10652:155;;10824:3;10817:10;;10417:416;;;;;:::o;10839:541::-;11072:3;11094:95;11185:3;11176:6;11094:95;:::i;:::-;11087:102;;11206:148;11350:3;11206:148;:::i;:::-;11199:155;;11371:3;11364:10;;11076:304;;;;:::o;11386:222::-;11479:4;11517:2;11506:9;11502:18;11494:26;;11530:71;11598:1;11587:9;11583:17;11574:6;11530:71;:::i;:::-;11484:124;;;;:::o;11614:640::-;11809:4;11847:3;11836:9;11832:19;11824:27;;11861:71;11929:1;11918:9;11914:17;11905:6;11861:71;:::i;:::-;11942:72;12010:2;11999:9;11995:18;11986:6;11942:72;:::i;:::-;12024;12092:2;12081:9;12077:18;12068:6;12024:72;:::i;:::-;12143:9;12137:4;12133:20;12128:2;12117:9;12113:18;12106:48;12171:76;12242:4;12233:6;12171:76;:::i;:::-;12163:84;;11814:440;;;;;;;:::o;12260:210::-;12347:4;12385:2;12374:9;12370:18;12362:26;;12398:65;12460:1;12449:9;12445:17;12436:6;12398:65;:::i;:::-;12352:118;;;;:::o;12476:313::-;12589:4;12627:2;12616:9;12612:18;12604:26;;12676:9;12670:4;12666:20;12662:1;12651:9;12647:17;12640:47;12704:78;12777:4;12768:6;12704:78;:::i;:::-;12696:86;;12594:195;;;;:::o;12795:419::-;12961:4;12999:2;12988:9;12984:18;12976:26;;13048:9;13042:4;13038:20;13034:1;13023:9;13019:17;13012:47;13076:131;13202:4;13076:131;:::i;:::-;13068:139;;12966:248;;;:::o;13220:419::-;13386:4;13424:2;13413:9;13409:18;13401:26;;13473:9;13467:4;13463:20;13459:1;13448:9;13444:17;13437:47;13501:131;13627:4;13501:131;:::i;:::-;13493:139;;13391:248;;;:::o;13645:419::-;13811:4;13849:2;13838:9;13834:18;13826:26;;13898:9;13892:4;13888:20;13884:1;13873:9;13869:17;13862:47;13926:131;14052:4;13926:131;:::i;:::-;13918:139;;13816:248;;;:::o;14070:419::-;14236:4;14274:2;14263:9;14259:18;14251:26;;14323:9;14317:4;14313:20;14309:1;14298:9;14294:17;14287:47;14351:131;14477:4;14351:131;:::i;:::-;14343:139;;14241:248;;;:::o;14495:222::-;14588:4;14626:2;14615:9;14611:18;14603:26;;14639:71;14707:1;14696:9;14692:17;14683:6;14639:71;:::i;:::-;14593:124;;;;:::o;14723:129::-;14757:6;14784:20;;:::i;:::-;14774:30;;14813:33;14841:4;14833:6;14813:33;:::i;:::-;14764:88;;;:::o;14858:75::-;14891:6;14924:2;14918:9;14908:19;;14898:35;:::o;14939:307::-;15000:4;15090:18;15082:6;15079:30;15076:2;;;15112:18;;:::i;:::-;15076:2;15150:29;15172:6;15150:29;:::i;:::-;15142:37;;15234:4;15228;15224:15;15216:23;;15005:241;;;:::o;15252:308::-;15314:4;15404:18;15396:6;15393:30;15390:2;;;15426:18;;:::i;:::-;15390:2;15464:29;15486:6;15464:29;:::i;:::-;15456:37;;15548:4;15542;15538:15;15530:23;;15319:241;;;:::o;15566:98::-;15617:6;15651:5;15645:12;15635:22;;15624:40;;;:::o;15670:99::-;15722:6;15756:5;15750:12;15740:22;;15729:40;;;:::o;15775:168::-;15858:11;15892:6;15887:3;15880:19;15932:4;15927:3;15923:14;15908:29;;15870:73;;;;:::o;15949:169::-;16033:11;16067:6;16062:3;16055:19;16107:4;16102:3;16098:14;16083:29;;16045:73;;;;:::o;16124:148::-;16226:11;16263:3;16248:18;;16238:34;;;;:::o;16278:305::-;16318:3;16337:20;16355:1;16337:20;:::i;:::-;16332:25;;16371:20;16389:1;16371:20;:::i;:::-;16366:25;;16525:1;16457:66;16453:74;16450:1;16447:81;16444:2;;;16531:18;;:::i;:::-;16444:2;16575:1;16572;16568:9;16561:16;;16322:261;;;;:::o;16589:185::-;16629:1;16646:20;16664:1;16646:20;:::i;:::-;16641:25;;16680:20;16698:1;16680:20;:::i;:::-;16675:25;;16719:1;16709:2;;16724:18;;:::i;:::-;16709:2;16766:1;16763;16759:9;16754:14;;16631:143;;;;:::o;16780:191::-;16820:4;16840:20;16858:1;16840:20;:::i;:::-;16835:25;;16874:20;16892:1;16874:20;:::i;:::-;16869:25;;16913:1;16910;16907:8;16904:2;;;16918:18;;:::i;:::-;16904:2;16963:1;16960;16956:9;16948:17;;16825:146;;;;:::o;16977:96::-;17014:7;17043:24;17061:5;17043:24;:::i;:::-;17032:35;;17022:51;;;:::o;17079:90::-;17113:7;17156:5;17149:13;17142:21;17131:32;;17121:48;;;:::o;17175:149::-;17211:7;17251:66;17244:5;17240:78;17229:89;;17219:105;;;:::o;17330:126::-;17367:7;17407:42;17400:5;17396:54;17385:65;;17375:81;;;:::o;17462:77::-;17499:7;17528:5;17517:16;;17507:32;;;:::o;17545:154::-;17629:6;17624:3;17619;17606:30;17691:1;17682:6;17677:3;17673:16;17666:27;17596:103;;;:::o;17705:307::-;17773:1;17783:113;17797:6;17794:1;17791:13;17783:113;;;17882:1;17877:3;17873:11;17867:18;17863:1;17858:3;17854:11;17847:39;17819:2;17816:1;17812:10;17807:15;;17783:113;;;17914:6;17911:1;17908:13;17905:2;;;17994:1;17985:6;17980:3;17976:16;17969:27;17905:2;17754:258;;;;:::o;18018:320::-;18062:6;18099:1;18093:4;18089:12;18079:22;;18146:1;18140:4;18136:12;18167:18;18157:2;;18223:4;18215:6;18211:17;18201:27;;18157:2;18285;18277:6;18274:14;18254:18;18251:38;18248:2;;;18304:18;;:::i;:::-;18248:2;18069:269;;;;:::o;18344:281::-;18427:27;18449:4;18427:27;:::i;:::-;18419:6;18415:40;18557:6;18545:10;18542:22;18521:18;18509:10;18506:34;18503:62;18500:2;;;18568:18;;:::i;:::-;18500:2;18608:10;18604:2;18597:22;18387:238;;;:::o;18631:233::-;18670:3;18693:24;18711:5;18693:24;:::i;:::-;18684:33;;18739:66;18732:5;18729:77;18726:2;;;18809:18;;:::i;:::-;18726:2;18856:1;18849:5;18845:13;18838:20;;18674:190;;;:::o;18870:176::-;18902:1;18919:20;18937:1;18919:20;:::i;:::-;18914:25;;18953:20;18971:1;18953:20;:::i;:::-;18948:25;;18992:1;18982:2;;18997:18;;:::i;:::-;18982:2;19038:1;19035;19031:9;19026:14;;18904:142;;;;:::o;19052:180::-;19100:77;19097:1;19090:88;19197:4;19194:1;19187:15;19221:4;19218:1;19211:15;19238:180;19286:77;19283:1;19276:88;19383:4;19380:1;19373:15;19407:4;19404:1;19397:15;19424:180;19472:77;19469:1;19462:88;19569:4;19566:1;19559:15;19593:4;19590:1;19583:15;19610:180;19658:77;19655:1;19648:88;19755:4;19752:1;19745:15;19779:4;19776:1;19769:15;19796:102;19837:6;19888:2;19884:7;19879:2;19872:5;19868:14;19864:28;19854:38;;19844:54;;;:::o;19904:225::-;20044:34;20040:1;20032:6;20028:14;20021:58;20113:8;20108:2;20100:6;20096:15;20089:33;20010:119;:::o;20135:164::-;20275:16;20271:1;20263:6;20259:14;20252:40;20241:58;:::o;20305:155::-;20445:7;20441:1;20433:6;20429:14;20422:31;20411:49;:::o;20466:182::-;20606:34;20602:1;20594:6;20590:14;20583:58;20572:76;:::o;20654:234::-;20794:34;20790:1;20782:6;20778:14;20771:58;20863:17;20858:2;20850:6;20846:15;20839:42;20760:128;:::o;20894:176::-;21034:28;21030:1;21022:6;21018:14;21011:52;21000:70;:::o;21076:122::-;21149:24;21167:5;21149:24;:::i;:::-;21142:5;21139:35;21129:2;;21188:1;21185;21178:12;21129:2;21119:79;:::o;21204:116::-;21274:21;21289:5;21274:21;:::i;:::-;21267:5;21264:32;21254:2;;21310:1;21307;21300:12;21254:2;21244:76;:::o;21326:120::-;21398:23;21415:5;21398:23;:::i;:::-;21391:5;21388:34;21378:2;;21436:1;21433;21426:12;21378:2;21368:78;:::o;21452:122::-;21525:24;21543:5;21525:24;:::i;:::-;21518:5;21515:35;21505:2;;21564:1;21561;21554:12;21505:2;21495:79;:::o
Swarm Source
ipfs://bdf6dc51154fa9ffa6beb475c0a45c91efea089a5880aa13d19f5453fed89cda
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.