Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 47 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 15134530 | 842 days ago | IN | 0.24 ETH | 0.00158732 | ||||
Transfer From | 15132234 | 842 days ago | IN | 0 ETH | 0.00088443 | ||||
Withdraw | 15131244 | 842 days ago | IN | 0 ETH | 0.0004701 | ||||
Mint | 15131065 | 842 days ago | IN | 0.08 ETH | 0.00083973 | ||||
Mint | 15131060 | 842 days ago | IN | 0.24 ETH | 0.00091316 | ||||
Mint | 15131057 | 842 days ago | IN | 0.08 ETH | 0.00079472 | ||||
Mint | 15131029 | 842 days ago | IN | 0.08 ETH | 0.00061547 | ||||
Setpre Sales Mod... | 15130962 | 842 days ago | IN | 0 ETH | 0.00051733 | ||||
Setpause Mode | 15130960 | 842 days ago | IN | 0 ETH | 0.00045077 | ||||
Mint | 15130742 | 842 days ago | IN | 0.16 ETH | 0.0008632 | ||||
Mint | 15130737 | 842 days ago | IN | 0.08 ETH | 0.00081236 | ||||
Mint | 15130736 | 842 days ago | IN | 0.08 ETH | 0.00086439 | ||||
Mint | 15130727 | 842 days ago | IN | 0.08 ETH | 0.00081602 | ||||
Set Approval For... | 15130721 | 842 days ago | IN | 0 ETH | 0.0011397 | ||||
Mint | 15130712 | 842 days ago | IN | 0.08 ETH | 0.00133057 | ||||
Mint | 15130710 | 842 days ago | IN | 0.24 ETH | 0.0010774 | ||||
Mint | 15130706 | 842 days ago | IN | 0.08 ETH | 0.00082494 | ||||
Mint | 15130704 | 842 days ago | IN | 0.24 ETH | 0.0008392 | ||||
Mint | 15130702 | 842 days ago | IN | 0.24 ETH | 0.00068195 | ||||
Mint | 15130693 | 842 days ago | IN | 0.24 ETH | 0.00052064 | ||||
Mint | 15130683 | 842 days ago | IN | 0.08 ETH | 0.0006333 | ||||
Mint | 15130682 | 842 days ago | IN | 0.24 ETH | 0.00057292 | ||||
Mint | 15130681 | 842 days ago | IN | 0.24 ETH | 0.00054596 | ||||
Mint | 15130668 | 842 days ago | IN | 0.24 ETH | 0.00074048 | ||||
Mint | 15130658 | 842 days ago | IN | 0.24 ETH | 0.00098785 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
15131244 | 842 days ago | 1.05 ETH |
Loading...
Loading
Contract Name:
pizzadogz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-10 */ // 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/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/pizzadogz.sol pragma solidity ^0.8.7; contract pizzadogz is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; address[] public whitelistedAddresses; bool public revealedActive = false; bool public pauseMode = false; bool public preSalesMode = true; uint256 public cost = 0.08 ether; uint256 public costPS = 0.07 ether; uint256 public maxCollection = 10000; uint256 public nftPerAddressLimit = 5; uint256 public nftPerAddressLimitPublicSale = 5; mapping(address => uint256) public addressMintedBalance; constructor(string memory _initBaseURI,string memory _initNotRevealedUri) ERC721("PizzaDogz", "PZDZ") { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(revealedActive == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function mint(uint256 _mintAmount) public payable { require(!pauseMode, "Pause Mode ON"); uint256 supply = totalSupply(); require(_mintAmount > 0, "Select 1 NFT"); require(supply + _mintAmount <= maxCollection, "Collecton Sold"); if (msg.sender != owner()) { if(preSalesMode == true) { require(isWhitelisted(msg.sender), "Wallet not Whitelisted"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); require(msg.value >= costPS * _mintAmount, "WL: Balance Insufficient"); } else { require(!preSalesMode, ""); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimitPublicSale, "max NFT per address exceeded"); require(msg.value >= cost * _mintAmount, "Main Sale: Balance Insufficient"); } } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function airDrop(address _to, uint256 _mintAmount) external onlyOwner() { uint256 supply = totalSupply(); require(supply + _mintAmount <= maxCollection, "Cant airdrop more NFTs" ); for (uint256 i = 1; i <= _mintAmount; i++) {_safeMint(_to, supply + i);} } function turnRevealMode(bool _state) public onlyOwner { revealedActive = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function setpauseMode(bool _state) public onlyOwner { pauseMode = _state; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setNftPerAddressLimitPublicSale(uint256 _limit) public onlyOwner { nftPerAddressLimitPublicSale = _limit; } function setpreSalesMode(bool _state) public onlyOwner { preSalesMode = _state; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setCostePS(uint256 _newCostPS) public onlyOwner { costPS = _newCostPS; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCollection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalesMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealedActive","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":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCostPS","type":"uint256"}],"name":"setCostePS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setpauseMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setpreSalesMode","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"turnRevealMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000435565b506000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff02191690831515021790555067011c37937e08000060105566f8b0a10e47000060115561271060125560056013556005601455348015620000d757600080fd5b5060405162005b7c38038062005b7c8339818101604052810190620000fd919062000563565b6040518060400160405280600981526020017f50697a7a61446f677a00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f505a445a0000000000000000000000000000000000000000000000000000000081525081600090805190602001906200018192919062000435565b5080600190805190602001906200019a92919062000435565b505050620001bd620001b1620001e760201b60201c565b620001ef60201b60201c565b620001ce82620002b560201b60201c565b620001df816200036060201b60201c565b5050620007ef565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c5620001e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002eb6200040b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000344576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033b906200060f565b60405180910390fd5b80600b90805190602001906200035c92919062000435565b5050565b62000370620001e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003966200040b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e6906200060f565b60405180910390fd5b80600d90805190602001906200040792919062000435565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200044390620006d7565b90600052602060002090601f016020900481019282620004675760008555620004b3565b82601f106200048257805160ff1916838001178555620004b3565b82800160010185558215620004b3579182015b82811115620004b257825182559160200191906001019062000495565b5b509050620004c29190620004c6565b5090565b5b80821115620004e1576000816000905550600101620004c7565b5090565b6000620004fc620004f6846200065a565b62000631565b9050828152602081018484840111156200051b576200051a620007a6565b5b62000528848285620006a1565b509392505050565b600082601f830112620005485762000547620007a1565b5b81516200055a848260208601620004e5565b91505092915050565b600080604083850312156200057d576200057c620007b0565b5b600083015167ffffffffffffffff8111156200059e576200059d620007ab565b5b620005ac8582860162000530565b925050602083015167ffffffffffffffff811115620005d057620005cf620007ab565b5b620005de8582860162000530565b9150509250929050565b6000620005f760208362000690565b91506200060482620007c6565b602082019050919050565b600060208201905081810360008301526200062a81620005e8565b9050919050565b60006200063d62000650565b90506200064b82826200070d565b919050565b6000604051905090565b600067ffffffffffffffff82111562000678576200067762000772565b5b6200068382620007b5565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006c1578082015181840152602081019050620006a4565b83811115620006d1576000848401525b50505050565b60006002820490506001821680620006f057607f821691505b6020821081141562000707576200070662000743565b5b50919050565b6200071882620007b5565b810181811067ffffffffffffffff821117156200073a576200073962000772565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61537d80620007ff6000396000f3fe6080604052600436106102885760003560e01c80636352211e1161015a578063b88d4fde116100c1578063d0eb26b01161007a578063d0eb26b0146109d8578063d82cb1cb14610a01578063e985e9c514610a2c578063edec5f2714610a69578063f2c4ce1e14610a92578063f2fde38b14610abb57610288565b8063b88d4fde146108b4578063ba4e5c49146108dd578063ba7d2c761461091a578063c499374214610945578063c668286214610970578063c87b56dd1461099b57610288565b80638d6e2717116101135780638d6e2717146107c55780638da5cb5b146107ee57806395d89b4114610819578063a0712d6814610844578063a22cb46514610860578063b4bdd7eb1461088957610288565b80636352211e146106b75780636c0360eb146106f457806370a082311461071f578063715018a61461075c57806372c1b8a41461077357806379607eff1461079c57610288565b806323b872dd116101fe57806342842e0e116101b757806342842e0e14610597578063438b6300146105c057806344a0d68a146105fd5780634c893181146106265780634f6ccce71461065157806355f804b31461068e57610288565b806323b872dd146104965780632854ba61146104bf5780632f745c59146104e8578063390a5b9a146105255780633af32abf146105505780633ccfd60b1461058d57610288565b8063095ea7b311610250578063095ea7b3146103865780630d853fc8146103af57806313faede6146103d857806318160ddd1461040357806318cae2691461042e578063229b04bf1461046b57610288565b806301ffc9a71461028d578063045f7850146102ca57806306fdde03146102f3578063081812fc1461031e578063081c8c441461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613c97565b610ae4565b6040516102c191906143de565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613bdd565b610b5e565b005b3480156102ff57600080fd5b50610308610c72565b60405161031591906143f9565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190613d3a565b610d04565b6040516103529190614355565b60405180910390f35b34801561036757600080fd5b50610370610d89565b60405161037d91906143f9565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190613bdd565b610e17565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190613d3a565b610f2f565b005b3480156103e457600080fd5b506103ed610fb5565b6040516103fa919061477b565b60405180910390f35b34801561040f57600080fd5b50610418610fbb565b604051610425919061477b565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190613a5a565b610fc8565b604051610462919061477b565b60405180910390f35b34801561047757600080fd5b50610480610fe0565b60405161048d91906143de565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190613ac7565b610ff3565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190613c6a565b611053565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190613bdd565b6110ec565b60405161051c919061477b565b60405180910390f35b34801561053157600080fd5b5061053a611191565b604051610547919061477b565b60405180910390f35b34801561055c57600080fd5b5061057760048036038101906105729190613a5a565b611197565b60405161058491906143de565b60405180910390f35b610595611246565b005b3480156105a357600080fd5b506105be60048036038101906105b99190613ac7565b61133b565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190613a5a565b61135b565b6040516105f491906143bc565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190613d3a565b611409565b005b34801561063257600080fd5b5061063b61148f565b604051610648919061477b565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190613d3a565b611495565b604051610685919061477b565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190613cf1565b611506565b005b3480156106c357600080fd5b506106de60048036038101906106d99190613d3a565b61159c565b6040516106eb9190614355565b60405180910390f35b34801561070057600080fd5b5061070961164e565b60405161071691906143f9565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190613a5a565b6116dc565b604051610753919061477b565b60405180910390f35b34801561076857600080fd5b50610771611794565b005b34801561077f57600080fd5b5061079a60048036038101906107959190613c6a565b61181c565b005b3480156107a857600080fd5b506107c360048036038101906107be9190613d3a565b6118b5565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613c6a565b61193b565b005b3480156107fa57600080fd5b506108036119d4565b6040516108109190614355565b60405180910390f35b34801561082557600080fd5b5061082e6119fe565b60405161083b91906143f9565b60405180910390f35b61085e60048036038101906108599190613d3a565b611a90565b005b34801561086c57600080fd5b5061088760048036038101906108829190613b9d565b611ece565b005b34801561089557600080fd5b5061089e611ee4565b6040516108ab919061477b565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613b1a565b611eea565b005b3480156108e957600080fd5b5061090460048036038101906108ff9190613d3a565b611f4c565b6040516109119190614355565b60405180910390f35b34801561092657600080fd5b5061092f611f8b565b60405161093c919061477b565b60405180910390f35b34801561095157600080fd5b5061095a611f91565b60405161096791906143de565b60405180910390f35b34801561097c57600080fd5b50610985611fa4565b60405161099291906143f9565b60405180910390f35b3480156109a757600080fd5b506109c260048036038101906109bd9190613d3a565b612032565b6040516109cf91906143f9565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa9190613d3a565b61218b565b005b348015610a0d57600080fd5b50610a16612211565b604051610a2391906143de565b60405180910390f35b348015610a3857600080fd5b50610a536004803603810190610a4e9190613a87565b612224565b604051610a6091906143de565b60405180910390f35b348015610a7557600080fd5b50610a906004803603810190610a8b9190613c1d565b6122b8565b005b348015610a9e57600080fd5b50610ab96004803603810190610ab49190613cf1565b612358565b005b348015610ac757600080fd5b50610ae26004803603810190610add9190613a5a565b6123ee565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b575750610b56826124e6565b5b9050919050565b610b666125c8565b73ffffffffffffffffffffffffffffffffffffffff16610b846119d4565b73ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd19061467b565b60405180910390fd5b6000610be4610fbb565b90506012548282610bf591906148b9565b1115610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d9061475b565b60405180910390fd5b6000600190505b828111610c6c57610c59848284610c5491906148b9565b6125d0565b8080610c6490614ae7565b915050610c3d565b50505050565b606060008054610c8190614a84565b80601f0160208091040260200160405190810160405280929190818152602001828054610cad90614a84565b8015610cfa5780601f10610ccf57610100808354040283529160200191610cfa565b820191906000526020600020905b815481529060010190602001808311610cdd57829003601f168201915b5050505050905090565b6000610d0f826125ee565b610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d459061465b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610d9690614a84565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc290614a84565b8015610e0f5780601f10610de457610100808354040283529160200191610e0f565b820191906000526020600020905b815481529060010190602001808311610df257829003601f168201915b505050505081565b6000610e228261159c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a906146bb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eb26125c8565b73ffffffffffffffffffffffffffffffffffffffff161480610ee15750610ee081610edb6125c8565b612224565b5b610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f179061459b565b60405180910390fd5b610f2a838361265a565b505050565b610f376125c8565b73ffffffffffffffffffffffffffffffffffffffff16610f556119d4565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061467b565b60405180910390fd5b8060148190555050565b60105481565b6000600880549050905090565b60156020528060005260406000206000915090505481565b600f60019054906101000a900460ff1681565b611004610ffe6125c8565b82612713565b611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a906146fb565b60405180910390fd5b61104e8383836127f1565b505050565b61105b6125c8565b73ffffffffffffffffffffffffffffffffffffffff166110796119d4565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c69061467b565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b60006110f7836116dc565b8210611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f9061445b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60125481565b600080600090505b600e8054905081101561123b578273ffffffffffffffffffffffffffffffffffffffff16600e82815481106111d7576111d6614c1d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611228576001915050611241565b808061123390614ae7565b91505061119f565b50600090505b919050565b61124e6125c8565b73ffffffffffffffffffffffffffffffffffffffff1661126c6119d4565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b99061467b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516112e890614340565b60006040518083038185875af1925050503d8060008114611325576040519150601f19603f3d011682016040523d82523d6000602084013e61132a565b606091505b505090508061133857600080fd5b50565b61135683838360405180602001604052806000815250611eea565b505050565b60606000611368836116dc565b905060008167ffffffffffffffff81111561138657611385614c4c565b5b6040519080825280602002602001820160405280156113b45781602001602082028036833780820191505090505b50905060005b828110156113fe576113cc85826110ec565b8282815181106113df576113de614c1d565b5b60200260200101818152505080806113f690614ae7565b9150506113ba565b508092505050919050565b6114116125c8565b73ffffffffffffffffffffffffffffffffffffffff1661142f6119d4565b73ffffffffffffffffffffffffffffffffffffffff1614611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c9061467b565b60405180910390fd5b8060108190555050565b60115481565b600061149f610fbb565b82106114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d79061471b565b60405180910390fd5b600882815481106114f4576114f3614c1d565b5b90600052602060002001549050919050565b61150e6125c8565b73ffffffffffffffffffffffffffffffffffffffff1661152c6119d4565b73ffffffffffffffffffffffffffffffffffffffff1614611582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115799061467b565b60405180910390fd5b80600b9080519060200190611598929190613757565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c906145db565b60405180910390fd5b80915050919050565b600b805461165b90614a84565b80601f016020809104026020016040519081016040528092919081815260200182805461168790614a84565b80156116d45780601f106116a9576101008083540402835291602001916116d4565b820191906000526020600020905b8154815290600101906020018083116116b757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611744906145bb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61179c6125c8565b73ffffffffffffffffffffffffffffffffffffffff166117ba6119d4565b73ffffffffffffffffffffffffffffffffffffffff1614611810576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118079061467b565b60405180910390fd5b61181a6000612a58565b565b6118246125c8565b73ffffffffffffffffffffffffffffffffffffffff166118426119d4565b73ffffffffffffffffffffffffffffffffffffffff1614611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188f9061467b565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6118bd6125c8565b73ffffffffffffffffffffffffffffffffffffffff166118db6119d4565b73ffffffffffffffffffffffffffffffffffffffff1614611931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119289061467b565b60405180910390fd5b8060118190555050565b6119436125c8565b73ffffffffffffffffffffffffffffffffffffffff166119616119d4565b73ffffffffffffffffffffffffffffffffffffffff16146119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae9061467b565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a0d90614a84565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3990614a84565b8015611a865780601f10611a5b57610100808354040283529160200191611a86565b820191906000526020600020905b815481529060010190602001808311611a6957829003601f168201915b5050505050905090565b600f60019054906101000a900460ff1615611ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad79061457b565b60405180910390fd5b6000611aea610fbb565b905060008211611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b269061441b565b60405180910390fd5b6012548282611b3e91906148b9565b1115611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b769061473b565b60405180910390fd5b611b876119d4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e3e5760011515600f60029054906101000a900460ff1615151415611d0757611bde33611197565b611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c149061461b565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506013548382611c7091906148b9565b1115611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca8906144fb565b60405180910390fd5b82601154611cbf9190614940565b341015611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf89061443b565b60405180910390fd5b50611e3d565b600f60029054906101000a900460ff1615611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e906146db565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506014548382611daa91906148b9565b1115611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de2906144fb565b60405180910390fd5b82601054611df99190614940565b341015611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e32906145fb565b60405180910390fd5b505b5b6000600190505b828111611ec957601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e9c90614ae7565b9190505550611eb6338284611eb191906148b9565b6125d0565b8080611ec190614ae7565b915050611e45565b505050565b611ee0611ed96125c8565b8383612b1e565b5050565b60145481565b611efb611ef56125c8565b83612713565b611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906146fb565b60405180910390fd5b611f4684848484612c8b565b50505050565b600e8181548110611f5c57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b600f60009054906101000a900460ff1681565b600c8054611fb190614a84565b80601f0160208091040260200160405190810160405280929190818152602001828054611fdd90614a84565b801561202a5780601f10611fff5761010080835404028352916020019161202a565b820191906000526020600020905b81548152906001019060200180831161200d57829003601f168201915b505050505081565b606061203d826125ee565b61207c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120739061469b565b60405180910390fd5b60001515600f60009054906101000a900460ff161515141561212a57600d80546120a590614a84565b80601f01602080910402602001604051908101604052809291908181526020018280546120d190614a84565b801561211e5780601f106120f35761010080835404028352916020019161211e565b820191906000526020600020905b81548152906001019060200180831161210157829003601f168201915b50505050509050612186565b6000612134612ce7565b905060008151116121545760405180602001604052806000815250612182565b8061215e84612d79565b600c6040516020016121729392919061430f565b6040516020818303038152906040525b9150505b919050565b6121936125c8565b73ffffffffffffffffffffffffffffffffffffffff166121b16119d4565b73ffffffffffffffffffffffffffffffffffffffff1614612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fe9061467b565b60405180910390fd5b8060138190555050565b600f60029054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122c06125c8565b73ffffffffffffffffffffffffffffffffffffffff166122de6119d4565b73ffffffffffffffffffffffffffffffffffffffff1614612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b9061467b565b60405180910390fd5b600e600061234291906137dd565b8181600e91906123539291906137fe565b505050565b6123606125c8565b73ffffffffffffffffffffffffffffffffffffffff1661237e6119d4565b73ffffffffffffffffffffffffffffffffffffffff16146123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb9061467b565b60405180910390fd5b80600d90805190602001906123ea929190613757565b5050565b6123f66125c8565b73ffffffffffffffffffffffffffffffffffffffff166124146119d4565b73ffffffffffffffffffffffffffffffffffffffff161461246a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124619061467b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d19061449b565b60405180910390fd5b6124e381612a58565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125c157506125c082612eda565b5b9050919050565b600033905090565b6125ea828260405180602001604052806000815250612f44565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126cd8361159c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061271e826125ee565b61275d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127549061455b565b60405180910390fd5b60006127688361159c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127d757508373ffffffffffffffffffffffffffffffffffffffff166127bf84610d04565b73ffffffffffffffffffffffffffffffffffffffff16145b806127e857506127e78185612224565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128118261159c565b73ffffffffffffffffffffffffffffffffffffffff1614612867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285e906144bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce9061451b565b60405180910390fd5b6128e2838383612f9f565b6128ed60008261265a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293d919061499a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461299491906148b9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a538383836130b3565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b849061453b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c7e91906143de565b60405180910390a3505050565b612c968484846127f1565b612ca2848484846130b8565b612ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd89061447b565b60405180910390fd5b50505050565b6060600b8054612cf690614a84565b80601f0160208091040260200160405190810160405280929190818152602001828054612d2290614a84565b8015612d6f5780601f10612d4457610100808354040283529160200191612d6f565b820191906000526020600020905b815481529060010190602001808311612d5257829003601f168201915b5050505050905090565b60606000821415612dc1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ed5565b600082905060005b60008214612df3578080612ddc90614ae7565b915050600a82612dec919061490f565b9150612dc9565b60008167ffffffffffffffff811115612e0f57612e0e614c4c565b5b6040519080825280601f01601f191660200182016040528015612e415781602001600182028036833780820191505090505b5090505b60008514612ece57600182612e5a919061499a565b9150600a85612e699190614b30565b6030612e7591906148b9565b60f81b818381518110612e8b57612e8a614c1d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ec7919061490f565b9450612e45565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f4e838361324f565b612f5b60008484846130b8565b612f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f919061447b565b60405180910390fd5b505050565b612faa838383613429565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fed57612fe88161342e565b61302c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461302b5761302a8382613477565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561306f5761306a816135e4565b6130ae565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130ad576130ac82826136b5565b5b5b505050565b505050565b60006130d98473ffffffffffffffffffffffffffffffffffffffff16613734565b15613242578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131026125c8565b8786866040518563ffffffff1660e01b81526004016131249493929190614370565b602060405180830381600087803b15801561313e57600080fd5b505af192505050801561316f57506040513d601f19601f8201168201806040525081019061316c9190613cc4565b60015b6131f2573d806000811461319f576040519150601f19603f3d011682016040523d82523d6000602084013e6131a4565b606091505b506000815114156131ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e19061447b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613247565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b69061463b565b60405180910390fd5b6132c8816125ee565b15613308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ff906144db565b60405180910390fd5b61331460008383612f9f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461336491906148b9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613425600083836130b3565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613484846116dc565b61348e919061499a565b9050600060076000848152602001908152602001600020549050818114613573576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135f8919061499a565b905060006009600084815260200190815260200160002054905060006008838154811061362857613627614c1d565b5b90600052602060002001549050806008838154811061364a57613649614c1d565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061369957613698614bee565b5b6001900381819060005260206000200160009055905550505050565b60006136c0836116dc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461376390614a84565b90600052602060002090601f01602090048101928261378557600085556137cc565b82601f1061379e57805160ff19168380011785556137cc565b828001600101855582156137cc579182015b828111156137cb5782518255916020019190600101906137b0565b5b5090506137d9919061389e565b5090565b50805460008255906000526020600020908101906137fb919061389e565b50565b82805482825590600052602060002090810192821561388d579160200282015b8281111561388c57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061381e565b5b50905061389a919061389e565b5090565b5b808211156138b757600081600090555060010161389f565b5090565b60006138ce6138c9846147bb565b614796565b9050828152602081018484840111156138ea576138e9614c8a565b5b6138f5848285614a42565b509392505050565b600061391061390b846147ec565b614796565b90508281526020810184848401111561392c5761392b614c8a565b5b613937848285614a42565b509392505050565b60008135905061394e816152eb565b92915050565b60008083601f84011261396a57613969614c80565b5b8235905067ffffffffffffffff81111561398757613986614c7b565b5b6020830191508360208202830111156139a3576139a2614c85565b5b9250929050565b6000813590506139b981615302565b92915050565b6000813590506139ce81615319565b92915050565b6000815190506139e381615319565b92915050565b600082601f8301126139fe576139fd614c80565b5b8135613a0e8482602086016138bb565b91505092915050565b600082601f830112613a2c57613a2b614c80565b5b8135613a3c8482602086016138fd565b91505092915050565b600081359050613a5481615330565b92915050565b600060208284031215613a7057613a6f614c94565b5b6000613a7e8482850161393f565b91505092915050565b60008060408385031215613a9e57613a9d614c94565b5b6000613aac8582860161393f565b9250506020613abd8582860161393f565b9150509250929050565b600080600060608486031215613ae057613adf614c94565b5b6000613aee8682870161393f565b9350506020613aff8682870161393f565b9250506040613b1086828701613a45565b9150509250925092565b60008060008060808587031215613b3457613b33614c94565b5b6000613b428782880161393f565b9450506020613b538782880161393f565b9350506040613b6487828801613a45565b925050606085013567ffffffffffffffff811115613b8557613b84614c8f565b5b613b91878288016139e9565b91505092959194509250565b60008060408385031215613bb457613bb3614c94565b5b6000613bc28582860161393f565b9250506020613bd3858286016139aa565b9150509250929050565b60008060408385031215613bf457613bf3614c94565b5b6000613c028582860161393f565b9250506020613c1385828601613a45565b9150509250929050565b60008060208385031215613c3457613c33614c94565b5b600083013567ffffffffffffffff811115613c5257613c51614c8f565b5b613c5e85828601613954565b92509250509250929050565b600060208284031215613c8057613c7f614c94565b5b6000613c8e848285016139aa565b91505092915050565b600060208284031215613cad57613cac614c94565b5b6000613cbb848285016139bf565b91505092915050565b600060208284031215613cda57613cd9614c94565b5b6000613ce8848285016139d4565b91505092915050565b600060208284031215613d0757613d06614c94565b5b600082013567ffffffffffffffff811115613d2557613d24614c8f565b5b613d3184828501613a17565b91505092915050565b600060208284031215613d5057613d4f614c94565b5b6000613d5e84828501613a45565b91505092915050565b6000613d7383836142f1565b60208301905092915050565b613d88816149ce565b82525050565b6000613d9982614842565b613da38185614870565b9350613dae8361481d565b8060005b83811015613ddf578151613dc68882613d67565b9750613dd183614863565b925050600181019050613db2565b5085935050505092915050565b613df5816149e0565b82525050565b6000613e068261484d565b613e108185614881565b9350613e20818560208601614a51565b613e2981614c99565b840191505092915050565b6000613e3f82614858565b613e49818561489d565b9350613e59818560208601614a51565b613e6281614c99565b840191505092915050565b6000613e7882614858565b613e8281856148ae565b9350613e92818560208601614a51565b80840191505092915050565b60008154613eab81614a84565b613eb581866148ae565b94506001821660008114613ed05760018114613ee157613f14565b60ff19831686528186019350613f14565b613eea8561482d565b60005b83811015613f0c57815481890152600182019150602081019050613eed565b838801955050505b50505092915050565b6000613f2a600c8361489d565b9150613f3582614caa565b602082019050919050565b6000613f4d60188361489d565b9150613f5882614cd3565b602082019050919050565b6000613f70602b8361489d565b9150613f7b82614cfc565b604082019050919050565b6000613f9360328361489d565b9150613f9e82614d4b565b604082019050919050565b6000613fb660268361489d565b9150613fc182614d9a565b604082019050919050565b6000613fd960258361489d565b9150613fe482614de9565b604082019050919050565b6000613ffc601c8361489d565b915061400782614e38565b602082019050919050565b600061401f601c8361489d565b915061402a82614e61565b602082019050919050565b600061404260248361489d565b915061404d82614e8a565b604082019050919050565b600061406560198361489d565b915061407082614ed9565b602082019050919050565b6000614088602c8361489d565b915061409382614f02565b604082019050919050565b60006140ab600d8361489d565b91506140b682614f51565b602082019050919050565b60006140ce60388361489d565b91506140d982614f7a565b604082019050919050565b60006140f1602a8361489d565b91506140fc82614fc9565b604082019050919050565b600061411460298361489d565b915061411f82615018565b604082019050919050565b6000614137601f8361489d565b915061414282615067565b602082019050919050565b600061415a60168361489d565b915061416582615090565b602082019050919050565b600061417d60208361489d565b9150614188826150b9565b602082019050919050565b60006141a0602c8361489d565b91506141ab826150e2565b604082019050919050565b60006141c360208361489d565b91506141ce82615131565b602082019050919050565b60006141e6602f8361489d565b91506141f18261515a565b604082019050919050565b600061420960218361489d565b9150614214826151a9565b604082019050919050565b600061422c600083614892565b9150614237826151f8565b600082019050919050565b600061424f60008361489d565b915061425a826151f8565b600082019050919050565b600061427260318361489d565b915061427d826151fb565b604082019050919050565b6000614295602c8361489d565b91506142a08261524a565b604082019050919050565b60006142b8600e8361489d565b91506142c382615299565b602082019050919050565b60006142db60168361489d565b91506142e6826152c2565b602082019050919050565b6142fa81614a38565b82525050565b61430981614a38565b82525050565b600061431b8286613e6d565b91506143278285613e6d565b91506143338284613e9e565b9150819050949350505050565b600061434b8261421f565b9150819050919050565b600060208201905061436a6000830184613d7f565b92915050565b60006080820190506143856000830187613d7f565b6143926020830186613d7f565b61439f6040830185614300565b81810360608301526143b18184613dfb565b905095945050505050565b600060208201905081810360008301526143d68184613d8e565b905092915050565b60006020820190506143f36000830184613dec565b92915050565b600060208201905081810360008301526144138184613e34565b905092915050565b6000602082019050818103600083015261443481613f1d565b9050919050565b6000602082019050818103600083015261445481613f40565b9050919050565b6000602082019050818103600083015261447481613f63565b9050919050565b6000602082019050818103600083015261449481613f86565b9050919050565b600060208201905081810360008301526144b481613fa9565b9050919050565b600060208201905081810360008301526144d481613fcc565b9050919050565b600060208201905081810360008301526144f481613fef565b9050919050565b6000602082019050818103600083015261451481614012565b9050919050565b6000602082019050818103600083015261453481614035565b9050919050565b6000602082019050818103600083015261455481614058565b9050919050565b600060208201905081810360008301526145748161407b565b9050919050565b600060208201905081810360008301526145948161409e565b9050919050565b600060208201905081810360008301526145b4816140c1565b9050919050565b600060208201905081810360008301526145d4816140e4565b9050919050565b600060208201905081810360008301526145f481614107565b9050919050565b600060208201905081810360008301526146148161412a565b9050919050565b600060208201905081810360008301526146348161414d565b9050919050565b6000602082019050818103600083015261465481614170565b9050919050565b6000602082019050818103600083015261467481614193565b9050919050565b60006020820190508181036000830152614694816141b6565b9050919050565b600060208201905081810360008301526146b4816141d9565b9050919050565b600060208201905081810360008301526146d4816141fc565b9050919050565b600060208201905081810360008301526146f481614242565b9050919050565b6000602082019050818103600083015261471481614265565b9050919050565b6000602082019050818103600083015261473481614288565b9050919050565b60006020820190508181036000830152614754816142ab565b9050919050565b60006020820190508181036000830152614774816142ce565b9050919050565b60006020820190506147906000830184614300565b92915050565b60006147a06147b1565b90506147ac8282614ab6565b919050565b6000604051905090565b600067ffffffffffffffff8211156147d6576147d5614c4c565b5b6147df82614c99565b9050602081019050919050565b600067ffffffffffffffff82111561480757614806614c4c565b5b61481082614c99565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006148c482614a38565b91506148cf83614a38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561490457614903614b61565b5b828201905092915050565b600061491a82614a38565b915061492583614a38565b92508261493557614934614b90565b5b828204905092915050565b600061494b82614a38565b915061495683614a38565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561498f5761498e614b61565b5b828202905092915050565b60006149a582614a38565b91506149b083614a38565b9250828210156149c3576149c2614b61565b5b828203905092915050565b60006149d982614a18565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a6f578082015181840152602081019050614a54565b83811115614a7e576000848401525b50505050565b60006002820490506001821680614a9c57607f821691505b60208210811415614ab057614aaf614bbf565b5b50919050565b614abf82614c99565b810181811067ffffffffffffffff82111715614ade57614add614c4c565b5b80604052505050565b6000614af282614a38565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b2557614b24614b61565b5b600182019050919050565b6000614b3b82614a38565b9150614b4683614a38565b925082614b5657614b55614b90565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53656c6563742031204e46540000000000000000000000000000000000000000600082015250565b7f574c3a2042616c616e636520496e73756666696369656e740000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757365204d6f6465204f4e00000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d61696e2053616c653a2042616c616e636520496e73756666696369656e7400600082015250565b7f57616c6c6574206e6f742057686974656c697374656400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f436f6c6c6563746f6e20536f6c64000000000000000000000000000000000000600082015250565b7f43616e742061697264726f70206d6f7265204e46547300000000000000000000600082015250565b6152f4816149ce565b81146152ff57600080fd5b50565b61530b816149e0565b811461531657600080fd5b50565b615322816149ec565b811461532d57600080fd5b50565b61533981614a38565b811461534457600080fd5b5056fea26469706673582212204ca19367434a496e32616c4674530796876781e96c332a0056f23d51437f97de64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54674867696942424436326b6175474e384b395a50634331426a654c6b476b744c7a534841644e34586a55312f000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102885760003560e01c80636352211e1161015a578063b88d4fde116100c1578063d0eb26b01161007a578063d0eb26b0146109d8578063d82cb1cb14610a01578063e985e9c514610a2c578063edec5f2714610a69578063f2c4ce1e14610a92578063f2fde38b14610abb57610288565b8063b88d4fde146108b4578063ba4e5c49146108dd578063ba7d2c761461091a578063c499374214610945578063c668286214610970578063c87b56dd1461099b57610288565b80638d6e2717116101135780638d6e2717146107c55780638da5cb5b146107ee57806395d89b4114610819578063a0712d6814610844578063a22cb46514610860578063b4bdd7eb1461088957610288565b80636352211e146106b75780636c0360eb146106f457806370a082311461071f578063715018a61461075c57806372c1b8a41461077357806379607eff1461079c57610288565b806323b872dd116101fe57806342842e0e116101b757806342842e0e14610597578063438b6300146105c057806344a0d68a146105fd5780634c893181146106265780634f6ccce71461065157806355f804b31461068e57610288565b806323b872dd146104965780632854ba61146104bf5780632f745c59146104e8578063390a5b9a146105255780633af32abf146105505780633ccfd60b1461058d57610288565b8063095ea7b311610250578063095ea7b3146103865780630d853fc8146103af57806313faede6146103d857806318160ddd1461040357806318cae2691461042e578063229b04bf1461046b57610288565b806301ffc9a71461028d578063045f7850146102ca57806306fdde03146102f3578063081812fc1461031e578063081c8c441461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613c97565b610ae4565b6040516102c191906143de565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613bdd565b610b5e565b005b3480156102ff57600080fd5b50610308610c72565b60405161031591906143f9565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190613d3a565b610d04565b6040516103529190614355565b60405180910390f35b34801561036757600080fd5b50610370610d89565b60405161037d91906143f9565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190613bdd565b610e17565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190613d3a565b610f2f565b005b3480156103e457600080fd5b506103ed610fb5565b6040516103fa919061477b565b60405180910390f35b34801561040f57600080fd5b50610418610fbb565b604051610425919061477b565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190613a5a565b610fc8565b604051610462919061477b565b60405180910390f35b34801561047757600080fd5b50610480610fe0565b60405161048d91906143de565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190613ac7565b610ff3565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190613c6a565b611053565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190613bdd565b6110ec565b60405161051c919061477b565b60405180910390f35b34801561053157600080fd5b5061053a611191565b604051610547919061477b565b60405180910390f35b34801561055c57600080fd5b5061057760048036038101906105729190613a5a565b611197565b60405161058491906143de565b60405180910390f35b610595611246565b005b3480156105a357600080fd5b506105be60048036038101906105b99190613ac7565b61133b565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190613a5a565b61135b565b6040516105f491906143bc565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190613d3a565b611409565b005b34801561063257600080fd5b5061063b61148f565b604051610648919061477b565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190613d3a565b611495565b604051610685919061477b565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190613cf1565b611506565b005b3480156106c357600080fd5b506106de60048036038101906106d99190613d3a565b61159c565b6040516106eb9190614355565b60405180910390f35b34801561070057600080fd5b5061070961164e565b60405161071691906143f9565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190613a5a565b6116dc565b604051610753919061477b565b60405180910390f35b34801561076857600080fd5b50610771611794565b005b34801561077f57600080fd5b5061079a60048036038101906107959190613c6a565b61181c565b005b3480156107a857600080fd5b506107c360048036038101906107be9190613d3a565b6118b5565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613c6a565b61193b565b005b3480156107fa57600080fd5b506108036119d4565b6040516108109190614355565b60405180910390f35b34801561082557600080fd5b5061082e6119fe565b60405161083b91906143f9565b60405180910390f35b61085e60048036038101906108599190613d3a565b611a90565b005b34801561086c57600080fd5b5061088760048036038101906108829190613b9d565b611ece565b005b34801561089557600080fd5b5061089e611ee4565b6040516108ab919061477b565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613b1a565b611eea565b005b3480156108e957600080fd5b5061090460048036038101906108ff9190613d3a565b611f4c565b6040516109119190614355565b60405180910390f35b34801561092657600080fd5b5061092f611f8b565b60405161093c919061477b565b60405180910390f35b34801561095157600080fd5b5061095a611f91565b60405161096791906143de565b60405180910390f35b34801561097c57600080fd5b50610985611fa4565b60405161099291906143f9565b60405180910390f35b3480156109a757600080fd5b506109c260048036038101906109bd9190613d3a565b612032565b6040516109cf91906143f9565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa9190613d3a565b61218b565b005b348015610a0d57600080fd5b50610a16612211565b604051610a2391906143de565b60405180910390f35b348015610a3857600080fd5b50610a536004803603810190610a4e9190613a87565b612224565b604051610a6091906143de565b60405180910390f35b348015610a7557600080fd5b50610a906004803603810190610a8b9190613c1d565b6122b8565b005b348015610a9e57600080fd5b50610ab96004803603810190610ab49190613cf1565b612358565b005b348015610ac757600080fd5b50610ae26004803603810190610add9190613a5a565b6123ee565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b575750610b56826124e6565b5b9050919050565b610b666125c8565b73ffffffffffffffffffffffffffffffffffffffff16610b846119d4565b73ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd19061467b565b60405180910390fd5b6000610be4610fbb565b90506012548282610bf591906148b9565b1115610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d9061475b565b60405180910390fd5b6000600190505b828111610c6c57610c59848284610c5491906148b9565b6125d0565b8080610c6490614ae7565b915050610c3d565b50505050565b606060008054610c8190614a84565b80601f0160208091040260200160405190810160405280929190818152602001828054610cad90614a84565b8015610cfa5780601f10610ccf57610100808354040283529160200191610cfa565b820191906000526020600020905b815481529060010190602001808311610cdd57829003601f168201915b5050505050905090565b6000610d0f826125ee565b610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d459061465b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610d9690614a84565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc290614a84565b8015610e0f5780601f10610de457610100808354040283529160200191610e0f565b820191906000526020600020905b815481529060010190602001808311610df257829003601f168201915b505050505081565b6000610e228261159c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a906146bb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eb26125c8565b73ffffffffffffffffffffffffffffffffffffffff161480610ee15750610ee081610edb6125c8565b612224565b5b610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f179061459b565b60405180910390fd5b610f2a838361265a565b505050565b610f376125c8565b73ffffffffffffffffffffffffffffffffffffffff16610f556119d4565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061467b565b60405180910390fd5b8060148190555050565b60105481565b6000600880549050905090565b60156020528060005260406000206000915090505481565b600f60019054906101000a900460ff1681565b611004610ffe6125c8565b82612713565b611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a906146fb565b60405180910390fd5b61104e8383836127f1565b505050565b61105b6125c8565b73ffffffffffffffffffffffffffffffffffffffff166110796119d4565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c69061467b565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b60006110f7836116dc565b8210611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f9061445b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60125481565b600080600090505b600e8054905081101561123b578273ffffffffffffffffffffffffffffffffffffffff16600e82815481106111d7576111d6614c1d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611228576001915050611241565b808061123390614ae7565b91505061119f565b50600090505b919050565b61124e6125c8565b73ffffffffffffffffffffffffffffffffffffffff1661126c6119d4565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b99061467b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516112e890614340565b60006040518083038185875af1925050503d8060008114611325576040519150601f19603f3d011682016040523d82523d6000602084013e61132a565b606091505b505090508061133857600080fd5b50565b61135683838360405180602001604052806000815250611eea565b505050565b60606000611368836116dc565b905060008167ffffffffffffffff81111561138657611385614c4c565b5b6040519080825280602002602001820160405280156113b45781602001602082028036833780820191505090505b50905060005b828110156113fe576113cc85826110ec565b8282815181106113df576113de614c1d565b5b60200260200101818152505080806113f690614ae7565b9150506113ba565b508092505050919050565b6114116125c8565b73ffffffffffffffffffffffffffffffffffffffff1661142f6119d4565b73ffffffffffffffffffffffffffffffffffffffff1614611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c9061467b565b60405180910390fd5b8060108190555050565b60115481565b600061149f610fbb565b82106114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d79061471b565b60405180910390fd5b600882815481106114f4576114f3614c1d565b5b90600052602060002001549050919050565b61150e6125c8565b73ffffffffffffffffffffffffffffffffffffffff1661152c6119d4565b73ffffffffffffffffffffffffffffffffffffffff1614611582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115799061467b565b60405180910390fd5b80600b9080519060200190611598929190613757565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c906145db565b60405180910390fd5b80915050919050565b600b805461165b90614a84565b80601f016020809104026020016040519081016040528092919081815260200182805461168790614a84565b80156116d45780601f106116a9576101008083540402835291602001916116d4565b820191906000526020600020905b8154815290600101906020018083116116b757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611744906145bb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61179c6125c8565b73ffffffffffffffffffffffffffffffffffffffff166117ba6119d4565b73ffffffffffffffffffffffffffffffffffffffff1614611810576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118079061467b565b60405180910390fd5b61181a6000612a58565b565b6118246125c8565b73ffffffffffffffffffffffffffffffffffffffff166118426119d4565b73ffffffffffffffffffffffffffffffffffffffff1614611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188f9061467b565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6118bd6125c8565b73ffffffffffffffffffffffffffffffffffffffff166118db6119d4565b73ffffffffffffffffffffffffffffffffffffffff1614611931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119289061467b565b60405180910390fd5b8060118190555050565b6119436125c8565b73ffffffffffffffffffffffffffffffffffffffff166119616119d4565b73ffffffffffffffffffffffffffffffffffffffff16146119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae9061467b565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a0d90614a84565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3990614a84565b8015611a865780601f10611a5b57610100808354040283529160200191611a86565b820191906000526020600020905b815481529060010190602001808311611a6957829003601f168201915b5050505050905090565b600f60019054906101000a900460ff1615611ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad79061457b565b60405180910390fd5b6000611aea610fbb565b905060008211611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b269061441b565b60405180910390fd5b6012548282611b3e91906148b9565b1115611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b769061473b565b60405180910390fd5b611b876119d4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e3e5760011515600f60029054906101000a900460ff1615151415611d0757611bde33611197565b611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c149061461b565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506013548382611c7091906148b9565b1115611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca8906144fb565b60405180910390fd5b82601154611cbf9190614940565b341015611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf89061443b565b60405180910390fd5b50611e3d565b600f60029054906101000a900460ff1615611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e906146db565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506014548382611daa91906148b9565b1115611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de2906144fb565b60405180910390fd5b82601054611df99190614940565b341015611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e32906145fb565b60405180910390fd5b505b5b6000600190505b828111611ec957601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e9c90614ae7565b9190505550611eb6338284611eb191906148b9565b6125d0565b8080611ec190614ae7565b915050611e45565b505050565b611ee0611ed96125c8565b8383612b1e565b5050565b60145481565b611efb611ef56125c8565b83612713565b611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906146fb565b60405180910390fd5b611f4684848484612c8b565b50505050565b600e8181548110611f5c57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b600f60009054906101000a900460ff1681565b600c8054611fb190614a84565b80601f0160208091040260200160405190810160405280929190818152602001828054611fdd90614a84565b801561202a5780601f10611fff5761010080835404028352916020019161202a565b820191906000526020600020905b81548152906001019060200180831161200d57829003601f168201915b505050505081565b606061203d826125ee565b61207c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120739061469b565b60405180910390fd5b60001515600f60009054906101000a900460ff161515141561212a57600d80546120a590614a84565b80601f01602080910402602001604051908101604052809291908181526020018280546120d190614a84565b801561211e5780601f106120f35761010080835404028352916020019161211e565b820191906000526020600020905b81548152906001019060200180831161210157829003601f168201915b50505050509050612186565b6000612134612ce7565b905060008151116121545760405180602001604052806000815250612182565b8061215e84612d79565b600c6040516020016121729392919061430f565b6040516020818303038152906040525b9150505b919050565b6121936125c8565b73ffffffffffffffffffffffffffffffffffffffff166121b16119d4565b73ffffffffffffffffffffffffffffffffffffffff1614612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fe9061467b565b60405180910390fd5b8060138190555050565b600f60029054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122c06125c8565b73ffffffffffffffffffffffffffffffffffffffff166122de6119d4565b73ffffffffffffffffffffffffffffffffffffffff1614612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b9061467b565b60405180910390fd5b600e600061234291906137dd565b8181600e91906123539291906137fe565b505050565b6123606125c8565b73ffffffffffffffffffffffffffffffffffffffff1661237e6119d4565b73ffffffffffffffffffffffffffffffffffffffff16146123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb9061467b565b60405180910390fd5b80600d90805190602001906123ea929190613757565b5050565b6123f66125c8565b73ffffffffffffffffffffffffffffffffffffffff166124146119d4565b73ffffffffffffffffffffffffffffffffffffffff161461246a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124619061467b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d19061449b565b60405180910390fd5b6124e381612a58565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125c157506125c082612eda565b5b9050919050565b600033905090565b6125ea828260405180602001604052806000815250612f44565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126cd8361159c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061271e826125ee565b61275d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127549061455b565b60405180910390fd5b60006127688361159c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127d757508373ffffffffffffffffffffffffffffffffffffffff166127bf84610d04565b73ffffffffffffffffffffffffffffffffffffffff16145b806127e857506127e78185612224565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128118261159c565b73ffffffffffffffffffffffffffffffffffffffff1614612867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285e906144bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce9061451b565b60405180910390fd5b6128e2838383612f9f565b6128ed60008261265a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293d919061499a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461299491906148b9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a538383836130b3565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b849061453b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c7e91906143de565b60405180910390a3505050565b612c968484846127f1565b612ca2848484846130b8565b612ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd89061447b565b60405180910390fd5b50505050565b6060600b8054612cf690614a84565b80601f0160208091040260200160405190810160405280929190818152602001828054612d2290614a84565b8015612d6f5780601f10612d4457610100808354040283529160200191612d6f565b820191906000526020600020905b815481529060010190602001808311612d5257829003601f168201915b5050505050905090565b60606000821415612dc1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ed5565b600082905060005b60008214612df3578080612ddc90614ae7565b915050600a82612dec919061490f565b9150612dc9565b60008167ffffffffffffffff811115612e0f57612e0e614c4c565b5b6040519080825280601f01601f191660200182016040528015612e415781602001600182028036833780820191505090505b5090505b60008514612ece57600182612e5a919061499a565b9150600a85612e699190614b30565b6030612e7591906148b9565b60f81b818381518110612e8b57612e8a614c1d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ec7919061490f565b9450612e45565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f4e838361324f565b612f5b60008484846130b8565b612f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f919061447b565b60405180910390fd5b505050565b612faa838383613429565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fed57612fe88161342e565b61302c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461302b5761302a8382613477565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561306f5761306a816135e4565b6130ae565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130ad576130ac82826136b5565b5b5b505050565b505050565b60006130d98473ffffffffffffffffffffffffffffffffffffffff16613734565b15613242578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131026125c8565b8786866040518563ffffffff1660e01b81526004016131249493929190614370565b602060405180830381600087803b15801561313e57600080fd5b505af192505050801561316f57506040513d601f19601f8201168201806040525081019061316c9190613cc4565b60015b6131f2573d806000811461319f576040519150601f19603f3d011682016040523d82523d6000602084013e6131a4565b606091505b506000815114156131ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e19061447b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613247565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b69061463b565b60405180910390fd5b6132c8816125ee565b15613308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ff906144db565b60405180910390fd5b61331460008383612f9f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461336491906148b9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613425600083836130b3565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613484846116dc565b61348e919061499a565b9050600060076000848152602001908152602001600020549050818114613573576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135f8919061499a565b905060006009600084815260200190815260200160002054905060006008838154811061362857613627614c1d565b5b90600052602060002001549050806008838154811061364a57613649614c1d565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061369957613698614bee565b5b6001900381819060005260206000200160009055905550505050565b60006136c0836116dc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461376390614a84565b90600052602060002090601f01602090048101928261378557600085556137cc565b82601f1061379e57805160ff19168380011785556137cc565b828001600101855582156137cc579182015b828111156137cb5782518255916020019190600101906137b0565b5b5090506137d9919061389e565b5090565b50805460008255906000526020600020908101906137fb919061389e565b50565b82805482825590600052602060002090810192821561388d579160200282015b8281111561388c57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061381e565b5b50905061389a919061389e565b5090565b5b808211156138b757600081600090555060010161389f565b5090565b60006138ce6138c9846147bb565b614796565b9050828152602081018484840111156138ea576138e9614c8a565b5b6138f5848285614a42565b509392505050565b600061391061390b846147ec565b614796565b90508281526020810184848401111561392c5761392b614c8a565b5b613937848285614a42565b509392505050565b60008135905061394e816152eb565b92915050565b60008083601f84011261396a57613969614c80565b5b8235905067ffffffffffffffff81111561398757613986614c7b565b5b6020830191508360208202830111156139a3576139a2614c85565b5b9250929050565b6000813590506139b981615302565b92915050565b6000813590506139ce81615319565b92915050565b6000815190506139e381615319565b92915050565b600082601f8301126139fe576139fd614c80565b5b8135613a0e8482602086016138bb565b91505092915050565b600082601f830112613a2c57613a2b614c80565b5b8135613a3c8482602086016138fd565b91505092915050565b600081359050613a5481615330565b92915050565b600060208284031215613a7057613a6f614c94565b5b6000613a7e8482850161393f565b91505092915050565b60008060408385031215613a9e57613a9d614c94565b5b6000613aac8582860161393f565b9250506020613abd8582860161393f565b9150509250929050565b600080600060608486031215613ae057613adf614c94565b5b6000613aee8682870161393f565b9350506020613aff8682870161393f565b9250506040613b1086828701613a45565b9150509250925092565b60008060008060808587031215613b3457613b33614c94565b5b6000613b428782880161393f565b9450506020613b538782880161393f565b9350506040613b6487828801613a45565b925050606085013567ffffffffffffffff811115613b8557613b84614c8f565b5b613b91878288016139e9565b91505092959194509250565b60008060408385031215613bb457613bb3614c94565b5b6000613bc28582860161393f565b9250506020613bd3858286016139aa565b9150509250929050565b60008060408385031215613bf457613bf3614c94565b5b6000613c028582860161393f565b9250506020613c1385828601613a45565b9150509250929050565b60008060208385031215613c3457613c33614c94565b5b600083013567ffffffffffffffff811115613c5257613c51614c8f565b5b613c5e85828601613954565b92509250509250929050565b600060208284031215613c8057613c7f614c94565b5b6000613c8e848285016139aa565b91505092915050565b600060208284031215613cad57613cac614c94565b5b6000613cbb848285016139bf565b91505092915050565b600060208284031215613cda57613cd9614c94565b5b6000613ce8848285016139d4565b91505092915050565b600060208284031215613d0757613d06614c94565b5b600082013567ffffffffffffffff811115613d2557613d24614c8f565b5b613d3184828501613a17565b91505092915050565b600060208284031215613d5057613d4f614c94565b5b6000613d5e84828501613a45565b91505092915050565b6000613d7383836142f1565b60208301905092915050565b613d88816149ce565b82525050565b6000613d9982614842565b613da38185614870565b9350613dae8361481d565b8060005b83811015613ddf578151613dc68882613d67565b9750613dd183614863565b925050600181019050613db2565b5085935050505092915050565b613df5816149e0565b82525050565b6000613e068261484d565b613e108185614881565b9350613e20818560208601614a51565b613e2981614c99565b840191505092915050565b6000613e3f82614858565b613e49818561489d565b9350613e59818560208601614a51565b613e6281614c99565b840191505092915050565b6000613e7882614858565b613e8281856148ae565b9350613e92818560208601614a51565b80840191505092915050565b60008154613eab81614a84565b613eb581866148ae565b94506001821660008114613ed05760018114613ee157613f14565b60ff19831686528186019350613f14565b613eea8561482d565b60005b83811015613f0c57815481890152600182019150602081019050613eed565b838801955050505b50505092915050565b6000613f2a600c8361489d565b9150613f3582614caa565b602082019050919050565b6000613f4d60188361489d565b9150613f5882614cd3565b602082019050919050565b6000613f70602b8361489d565b9150613f7b82614cfc565b604082019050919050565b6000613f9360328361489d565b9150613f9e82614d4b565b604082019050919050565b6000613fb660268361489d565b9150613fc182614d9a565b604082019050919050565b6000613fd960258361489d565b9150613fe482614de9565b604082019050919050565b6000613ffc601c8361489d565b915061400782614e38565b602082019050919050565b600061401f601c8361489d565b915061402a82614e61565b602082019050919050565b600061404260248361489d565b915061404d82614e8a565b604082019050919050565b600061406560198361489d565b915061407082614ed9565b602082019050919050565b6000614088602c8361489d565b915061409382614f02565b604082019050919050565b60006140ab600d8361489d565b91506140b682614f51565b602082019050919050565b60006140ce60388361489d565b91506140d982614f7a565b604082019050919050565b60006140f1602a8361489d565b91506140fc82614fc9565b604082019050919050565b600061411460298361489d565b915061411f82615018565b604082019050919050565b6000614137601f8361489d565b915061414282615067565b602082019050919050565b600061415a60168361489d565b915061416582615090565b602082019050919050565b600061417d60208361489d565b9150614188826150b9565b602082019050919050565b60006141a0602c8361489d565b91506141ab826150e2565b604082019050919050565b60006141c360208361489d565b91506141ce82615131565b602082019050919050565b60006141e6602f8361489d565b91506141f18261515a565b604082019050919050565b600061420960218361489d565b9150614214826151a9565b604082019050919050565b600061422c600083614892565b9150614237826151f8565b600082019050919050565b600061424f60008361489d565b915061425a826151f8565b600082019050919050565b600061427260318361489d565b915061427d826151fb565b604082019050919050565b6000614295602c8361489d565b91506142a08261524a565b604082019050919050565b60006142b8600e8361489d565b91506142c382615299565b602082019050919050565b60006142db60168361489d565b91506142e6826152c2565b602082019050919050565b6142fa81614a38565b82525050565b61430981614a38565b82525050565b600061431b8286613e6d565b91506143278285613e6d565b91506143338284613e9e565b9150819050949350505050565b600061434b8261421f565b9150819050919050565b600060208201905061436a6000830184613d7f565b92915050565b60006080820190506143856000830187613d7f565b6143926020830186613d7f565b61439f6040830185614300565b81810360608301526143b18184613dfb565b905095945050505050565b600060208201905081810360008301526143d68184613d8e565b905092915050565b60006020820190506143f36000830184613dec565b92915050565b600060208201905081810360008301526144138184613e34565b905092915050565b6000602082019050818103600083015261443481613f1d565b9050919050565b6000602082019050818103600083015261445481613f40565b9050919050565b6000602082019050818103600083015261447481613f63565b9050919050565b6000602082019050818103600083015261449481613f86565b9050919050565b600060208201905081810360008301526144b481613fa9565b9050919050565b600060208201905081810360008301526144d481613fcc565b9050919050565b600060208201905081810360008301526144f481613fef565b9050919050565b6000602082019050818103600083015261451481614012565b9050919050565b6000602082019050818103600083015261453481614035565b9050919050565b6000602082019050818103600083015261455481614058565b9050919050565b600060208201905081810360008301526145748161407b565b9050919050565b600060208201905081810360008301526145948161409e565b9050919050565b600060208201905081810360008301526145b4816140c1565b9050919050565b600060208201905081810360008301526145d4816140e4565b9050919050565b600060208201905081810360008301526145f481614107565b9050919050565b600060208201905081810360008301526146148161412a565b9050919050565b600060208201905081810360008301526146348161414d565b9050919050565b6000602082019050818103600083015261465481614170565b9050919050565b6000602082019050818103600083015261467481614193565b9050919050565b60006020820190508181036000830152614694816141b6565b9050919050565b600060208201905081810360008301526146b4816141d9565b9050919050565b600060208201905081810360008301526146d4816141fc565b9050919050565b600060208201905081810360008301526146f481614242565b9050919050565b6000602082019050818103600083015261471481614265565b9050919050565b6000602082019050818103600083015261473481614288565b9050919050565b60006020820190508181036000830152614754816142ab565b9050919050565b60006020820190508181036000830152614774816142ce565b9050919050565b60006020820190506147906000830184614300565b92915050565b60006147a06147b1565b90506147ac8282614ab6565b919050565b6000604051905090565b600067ffffffffffffffff8211156147d6576147d5614c4c565b5b6147df82614c99565b9050602081019050919050565b600067ffffffffffffffff82111561480757614806614c4c565b5b61481082614c99565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006148c482614a38565b91506148cf83614a38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561490457614903614b61565b5b828201905092915050565b600061491a82614a38565b915061492583614a38565b92508261493557614934614b90565b5b828204905092915050565b600061494b82614a38565b915061495683614a38565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561498f5761498e614b61565b5b828202905092915050565b60006149a582614a38565b91506149b083614a38565b9250828210156149c3576149c2614b61565b5b828203905092915050565b60006149d982614a18565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a6f578082015181840152602081019050614a54565b83811115614a7e576000848401525b50505050565b60006002820490506001821680614a9c57607f821691505b60208210811415614ab057614aaf614bbf565b5b50919050565b614abf82614c99565b810181811067ffffffffffffffff82111715614ade57614add614c4c565b5b80604052505050565b6000614af282614a38565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b2557614b24614b61565b5b600182019050919050565b6000614b3b82614a38565b9150614b4683614a38565b925082614b5657614b55614b90565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53656c6563742031204e46540000000000000000000000000000000000000000600082015250565b7f574c3a2042616c616e636520496e73756666696369656e740000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757365204d6f6465204f4e00000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d61696e2053616c653a2042616c616e636520496e73756666696369656e7400600082015250565b7f57616c6c6574206e6f742057686974656c697374656400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f436f6c6c6563746f6e20536f6c64000000000000000000000000000000000000600082015250565b7f43616e742061697264726f70206d6f7265204e46547300000000000000000000600082015250565b6152f4816149ce565b81146152ff57600080fd5b50565b61530b816149e0565b811461531657600080fd5b50565b615322816149ec565b811461532d57600080fd5b50565b61533981614a38565b811461534457600080fd5b5056fea26469706673582212204ca19367434a496e32616c4674530796876781e96c332a0056f23d51437f97de64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54674867696942424436326b6175474e384b395a50634331426a654c6b476b744c7a534841644e34586a55312f000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmTgHgiiBBD62kauGN8K9ZPcC1BjeLkGktLzSHAdN4XjU1/
Arg [1] : _initNotRevealedUri (string):
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d54674867696942424436326b6175474e384b395a506343
Arg [4] : 31426a654c6b476b744c7a534841644e34586a55312f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45535:4676:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39314:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48656:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26134:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27693:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45688:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27216:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49388:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45872:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39954:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46083:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45802:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28443:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49524:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39622:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45948:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46434:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50032:173;;;:::i;:::-;;28853:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47135:330;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49619:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45909:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40144:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49799:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25828:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45620:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25558:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;49183:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49704:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48935:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26303:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47471:1179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27986:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46031:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29109:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45721:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45989;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45763:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45646:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46679:450;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49272:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45836:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28212:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49033:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49907:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39314:224;39416:4;39455:35;39440:50;;;:11;:50;;;;:90;;;;39494:36;39518:11;39494:23;:36::i;:::-;39440:90;39433:97;;39314:224;;;:::o;48656:273::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48735:14:::1;48752:13;:11;:13::i;:::-;48735:30;;48804:13;;48789:11;48780:6;:20;;;;:::i;:::-;:37;;48772:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48857:9;48869:1;48857:13;;48852:72;48877:11;48872:1;:16;48852:72;;48896:26;48906:3;48920:1;48911:6;:10;;;;:::i;:::-;48896:9;:26::i;:::-;48890:3;;;;;:::i;:::-;;;;48852:72;;;;48728:201;48656:273:::0;;:::o;26134:100::-;26188:13;26221:5;26214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26134:100;:::o;27693:221::-;27769:7;27797:16;27805:7;27797;:16::i;:::-;27789:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27882:15;:24;27898:7;27882:24;;;;;;;;;;;;;;;;;;;;;27875:31;;27693:221;;;:::o;45688:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27216:411::-;27297:13;27313:23;27328:7;27313:14;:23::i;:::-;27297:39;;27361:5;27355:11;;:2;:11;;;;27347:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27455:5;27439:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27464:37;27481:5;27488:12;:10;:12::i;:::-;27464:16;:37::i;:::-;27439:62;27417:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27598:21;27607:2;27611:7;27598:8;:21::i;:::-;27286:341;27216:411;;:::o;49388:130::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49504:6:::1;49473:28;:37;;;;49388:130:::0;:::o;45872:32::-;;;;:::o;39954:113::-;40015:7;40042:10;:17;;;;40035:24;;39954:113;:::o;46083:55::-;;;;;;;;;;;;;;;;;:::o;45802:29::-;;;;;;;;;;;;;:::o;28443:339::-;28638:41;28657:12;:10;:12::i;:::-;28671:7;28638:18;:41::i;:::-;28630:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28746:28;28756:4;28762:2;28766:7;28746:9;:28::i;:::-;28443:339;;;:::o;49524:89::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49601:6:::1;49586:12;;:21;;;;;;;;;;;;;;;;;;49524:89:::0;:::o;39622:256::-;39719:7;39755:23;39772:5;39755:16;:23::i;:::-;39747:5;:31;39739:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39844:12;:19;39857:5;39844:19;;;;;;;;;;;;;;;:26;39864:5;39844:26;;;;;;;;;;;;39837:33;;39622:256;;;;:::o;45948:36::-;;;;:::o;46434:239::-;46493:4;46511:6;46520:1;46511:10;;46506:143;46527:20;:27;;;;46523:1;:31;46506:143;;;46601:5;46574:32;;:20;46595:1;46574:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;46570:72;;;46628:4;46621:11;;;;;46570:72;46556:3;;;;;:::i;:::-;;;;46506:143;;;;46662:5;46655:12;;46434:239;;;;:::o;50032:173::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50094:12:::1;50120:10;50112:24;;50144:21;50112:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50093:77;;;50189:7;50181:16;;;::::0;::::1;;50082:123;50032:173::o:0;28853:185::-;28991:39;29008:4;29014:2;29018:7;28991:39;;;;;;;;;;;;:16;:39::i;:::-;28853:185;;;:::o;47135:330::-;47195:16;47220:23;47246:17;47256:6;47246:9;:17::i;:::-;47220:43;;47270:25;47312:15;47298:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47270:58;;47340:9;47335:103;47355:15;47351:1;:19;47335:103;;;47400:30;47420:6;47428:1;47400:19;:30::i;:::-;47386:8;47395:1;47386:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;47372:3;;;;;:::i;:::-;;;;47335:103;;;;47451:8;47444:15;;;;47135:330;;;:::o;49619:79::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49684:8:::1;49677:4;:15;;;;49619:79:::0;:::o;45909:34::-;;;;:::o;40144:233::-;40219:7;40255:30;:28;:30::i;:::-;40247:5;:38;40239:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40352:10;40363:5;40352:17;;;;;;;;:::i;:::-;;;;;;;;;;40345:24;;40144:233;;;:::o;49799:98::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49880:11:::1;49870:7;:21;;;;;;;;;;;;:::i;:::-;;49799:98:::0;:::o;25828:239::-;25900:7;25920:13;25936:7;:16;25944:7;25936:16;;;;;;;;;;;;;;;;;;;;;25920:32;;25988:1;25971:19;;:5;:19;;;;25963:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26054:5;26047:12;;;25828:239;;;:::o;45620:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25558:208::-;25630:7;25675:1;25658:19;;:5;:19;;;;25650:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25742:9;:16;25752:5;25742:16;;;;;;;;;;;;;;;;25735:23;;25558:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;49183:83::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49254:6:::1;49242:9;;:18;;;;;;;;;;;;;;;;;;49183:83:::0;:::o;49704:89::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49777:10:::1;49768:6;:19;;;;49704:89:::0;:::o;48935:92::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49015:6:::1;48998:14;;:23;;;;;;;;;;;;;;;;;;48935:92:::0;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;26303:104::-;26359:13;26392:7;26385:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26303:104;:::o;47471:1179::-;47537:9;;;;;;;;;;;47536:10;47528:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;47571:14;47588:13;:11;:13::i;:::-;47571:30;;47630:1;47616:11;:15;47608:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;47687:13;;47672:11;47663:6;:20;;;;:::i;:::-;:37;;47655:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47743:7;:5;:7::i;:::-;47729:21;;:10;:21;;;47725:774;;47782:4;47766:20;;:12;;;;;;;;;;;:20;;;47763:729;;;47811:25;47825:10;47811:13;:25::i;:::-;47803:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;47878:24;47905:20;:32;47926:10;47905:32;;;;;;;;;;;;;;;;47878:59;;47994:18;;47979:11;47960:16;:30;;;;:::i;:::-;:52;;47952:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;48090:11;48081:6;;:20;;;;:::i;:::-;48068:9;:33;;48060:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;47788:354;47763:729;;;48181:12;;;;;;;;;;;48180:13;48172:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;48213:24;48240:20;:32;48261:10;48240:32;;;;;;;;;;;;;;;;48213:59;;48329:28;;48314:11;48295:16;:30;;;;:::i;:::-;:62;;48287:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;48433:11;48426:4;;:18;;;;:::i;:::-;48413:9;:31;;48405:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;48157:335;47763:729;47725:774;48512:9;48524:1;48512:13;;48507:138;48532:11;48527:1;:16;48507:138;;48561:20;:32;48582:10;48561:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;48604:33;48614:10;48635:1;48626:6;:10;;;;:::i;:::-;48604:9;:33::i;:::-;48545:3;;;;;:::i;:::-;;;;48507:138;;;;47521:1129;47471:1179;:::o;27986:155::-;28081:52;28100:12;:10;:12::i;:::-;28114:8;28124;28081:18;:52::i;:::-;27986:155;;:::o;46031:47::-;;;;:::o;29109:328::-;29284:41;29303:12;:10;:12::i;:::-;29317:7;29284:18;:41::i;:::-;29276:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29390:39;29404:4;29410:2;29414:7;29423:5;29390:13;:39::i;:::-;29109:328;;;;:::o;45721:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45989:::-;;;;:::o;45763:34::-;;;;;;;;;;;;;:::o;45646:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46679:450::-;46752:13;46782:16;46790:7;46782;:16::i;:::-;46774:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;46878:5;46860:23;;:14;;;;;;;;;;;:23;;;46857:68;;;46903:14;46896:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46857:68;46933:28;46964:10;:8;:10::i;:::-;46933:41;;47021:1;46996:14;46990:28;:32;:133;;;;;;;;;;;;;;;;;47058:14;47074:18;:7;:16;:18::i;:::-;47094:13;47041:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46990:133;46983:140;;;46679:450;;;;:::o;49272:110::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49368:6:::1;49347:18;:27;;;;49272:110:::0;:::o;45836:31::-;;;;;;;;;;;;;:::o;28212:164::-;28309:4;28333:18;:25;28352:5;28333:25;;;;;;;;;;;;;;;:35;28359:8;28333:35;;;;;;;;;;;;;;;;;;;;;;;;;28326:42;;28212:164;;;;:::o;49033:144::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49115:20:::1;;49108:27;;;;:::i;:::-;49165:6;;49142:20;:29;;;;;;;:::i;:::-;;49033:144:::0;;:::o;49907:120::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50006:15:::1;49989:14;:32;;;;;;;;;;;;:::i;:::-;;49907:120:::0;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;25189:305::-;25291:4;25343:25;25328:40;;;:11;:40;;;;:105;;;;25400:33;25385:48;;;:11;:48;;;;25328:105;:158;;;;25450:36;25474:11;25450:23;:36::i;:::-;25328:158;25308:178;;25189:305;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;31931:110::-;32007:26;32017:2;32021:7;32007:26;;;;;;;;;;;;:9;:26::i;:::-;31931:110;;:::o;30947:127::-;31012:4;31064:1;31036:30;;:7;:16;31044:7;31036:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31029:37;;30947:127;;;:::o;35093:174::-;35195:2;35168:15;:24;35184:7;35168:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35251:7;35247:2;35213:46;;35222:23;35237:7;35222:14;:23::i;:::-;35213:46;;;;;;;;;;;;35093:174;;:::o;31241:348::-;31334:4;31359:16;31367:7;31359;:16::i;:::-;31351:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31435:13;31451:23;31466:7;31451:14;:23::i;:::-;31435:39;;31504:5;31493:16;;:7;:16;;;:51;;;;31537:7;31513:31;;:20;31525:7;31513:11;:20::i;:::-;:31;;;31493:51;:87;;;;31548:32;31565:5;31572:7;31548:16;:32::i;:::-;31493:87;31485:96;;;31241:348;;;;:::o;34350:625::-;34509:4;34482:31;;:23;34497:7;34482:14;:23::i;:::-;:31;;;34474:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34588:1;34574:16;;:2;:16;;;;34566:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34644:39;34665:4;34671:2;34675:7;34644:20;:39::i;:::-;34748:29;34765:1;34769:7;34748:8;:29::i;:::-;34809:1;34790:9;:15;34800:4;34790:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34838:1;34821:9;:13;34831:2;34821:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34869:2;34850:7;:16;34858:7;34850:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34908:7;34904:2;34889:27;;34898:4;34889:27;;;;;;;;;;;;34929:38;34949:4;34955:2;34959:7;34929:19;:38::i;:::-;34350:625;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;35409:315::-;35564:8;35555:17;;:5;:17;;;;35547:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35651:8;35613:18;:25;35632:5;35613:25;;;;;;;;;;;;;;;:35;35639:8;35613:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35697:8;35675:41;;35690:5;35675:41;;;35707:8;35675:41;;;;;;:::i;:::-;;;;;;;;35409:315;;;:::o;30319:::-;30476:28;30486:4;30492:2;30496:7;30476:9;:28::i;:::-;30523:48;30546:4;30552:2;30556:7;30565:5;30523:22;:48::i;:::-;30515:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30319:315;;;;:::o;46327:99::-;46387:13;46416:7;46409:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46327:99;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;32268:321::-;32398:18;32404:2;32408:7;32398:5;:18::i;:::-;32449:54;32480:1;32484:2;32488:7;32497:5;32449:22;:54::i;:::-;32427:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32268:321;;;:::o;40990:589::-;41134:45;41161:4;41167:2;41171:7;41134:26;:45::i;:::-;41212:1;41196:18;;:4;:18;;;41192:187;;;41231:40;41263:7;41231:31;:40::i;:::-;41192:187;;;41301:2;41293:10;;:4;:10;;;41289:90;;41320:47;41353:4;41359:7;41320:32;:47::i;:::-;41289:90;41192:187;41407:1;41393:16;;:2;:16;;;41389:183;;;41426:45;41463:7;41426:36;:45::i;:::-;41389:183;;;41499:4;41493:10;;:2;:10;;;41489:83;;41520:40;41548:2;41552:7;41520:27;:40::i;:::-;41489:83;41389:183;40990:589;;;:::o;38171:125::-;;;;:::o;36289:799::-;36444:4;36465:15;:2;:13;;;:15::i;:::-;36461:620;;;36517:2;36501:36;;;36538:12;:10;:12::i;:::-;36552:4;36558:7;36567:5;36501:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36497:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36760:1;36743:6;:13;:18;36739:272;;;36786:60;;;;;;;;;;:::i;:::-;;;;;;;;36739:272;36961:6;36955:13;36946:6;36942:2;36938:15;36931:38;36497:529;36634:41;;;36624:51;;;:6;:51;;;;36617:58;;;;;36461:620;37065:4;37058:11;;36289:799;;;;;;;:::o;32925:439::-;33019:1;33005:16;;:2;:16;;;;32997:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33078:16;33086:7;33078;:16::i;:::-;33077:17;33069:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33140:45;33169:1;33173:2;33177:7;33140:20;:45::i;:::-;33215:1;33198:9;:13;33208:2;33198:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33246:2;33227:7;:16;33235:7;33227:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33291:7;33287:2;33266:33;;33283:1;33266:33;;;;;;;;;;;;33312:44;33340:1;33344:2;33348:7;33312:19;:44::i;:::-;32925:439;;:::o;37660:126::-;;;;:::o;42302:164::-;42406:10;:17;;;;42379:15;:24;42395:7;42379:24;;;;;;;;;;;:44;;;;42434:10;42450:7;42434:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42302:164;:::o;43093:988::-;43359:22;43409:1;43384:22;43401:4;43384:16;:22::i;:::-;:26;;;;:::i;:::-;43359:51;;43421:18;43442:17;:26;43460:7;43442:26;;;;;;;;;;;;43421:47;;43589:14;43575:10;:28;43571:328;;43620:19;43642:12;:18;43655:4;43642:18;;;;;;;;;;;;;;;:34;43661:14;43642:34;;;;;;;;;;;;43620:56;;43726:11;43693:12;:18;43706:4;43693:18;;;;;;;;;;;;;;;:30;43712:10;43693:30;;;;;;;;;;;:44;;;;43843:10;43810:17;:30;43828:11;43810:30;;;;;;;;;;;:43;;;;43605:294;43571:328;43995:17;:26;44013:7;43995:26;;;;;;;;;;;43988:33;;;44039:12;:18;44052:4;44039:18;;;;;;;;;;;;;;;:34;44058:14;44039:34;;;;;;;;;;;44032:41;;;43174:907;;43093:988;;:::o;44376:1079::-;44629:22;44674:1;44654:10;:17;;;;:21;;;;:::i;:::-;44629:46;;44686:18;44707:15;:24;44723:7;44707:24;;;;;;;;;;;;44686:45;;45058:19;45080:10;45091:14;45080:26;;;;;;;;:::i;:::-;;;;;;;;;;45058:48;;45144:11;45119:10;45130;45119:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45255:10;45224:15;:28;45240:11;45224:28;;;;;;;;;;;:41;;;;45396:15;:24;45412:7;45396:24;;;;;;;;;;;45389:31;;;45431:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44447:1008;;;44376:1079;:::o;41880:221::-;41965:14;41982:20;41999:2;41982:16;:20::i;:::-;41965:37;;42040:7;42013:12;:16;42026:2;42013:16;;;;;;;;;;;;;;;:24;42030:6;42013:24;;;;;;;;;;;:34;;;;42087:6;42058:17;:26;42076:7;42058:26;;;;;;;;;;;:35;;;;41954:147;41880:221;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:118::-;8915:24;8933:5;8915:24;:::i;:::-;8910:3;8903:37;8828:118;;:::o;8982:732::-;9101:3;9130:54;9178:5;9130:54;:::i;:::-;9200:86;9279:6;9274:3;9200:86;:::i;:::-;9193:93;;9310:56;9360:5;9310:56;:::i;:::-;9389:7;9420:1;9405:284;9430:6;9427:1;9424:13;9405:284;;;9506:6;9500:13;9533:63;9592:3;9577:13;9533:63;:::i;:::-;9526:70;;9619:60;9672:6;9619:60;:::i;:::-;9609:70;;9465:224;9452:1;9449;9445:9;9440:14;;9405:284;;;9409:14;9705:3;9698:10;;9106:608;;;8982:732;;;;:::o;9720:109::-;9801:21;9816:5;9801:21;:::i;:::-;9796:3;9789:34;9720:109;;:::o;9835:360::-;9921:3;9949:38;9981:5;9949:38;:::i;:::-;10003:70;10066:6;10061:3;10003:70;:::i;:::-;9996:77;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9925:270;9835:360;;;;:::o;10201:364::-;10289:3;10317:39;10350:5;10317:39;:::i;:::-;10372:71;10436:6;10431:3;10372:71;:::i;:::-;10365:78;;10452:52;10497:6;10492:3;10485:4;10478:5;10474:16;10452:52;:::i;:::-;10529:29;10551:6;10529:29;:::i;:::-;10524:3;10520:39;10513:46;;10293:272;10201:364;;;;:::o;10571:377::-;10677:3;10705:39;10738:5;10705:39;:::i;:::-;10760:89;10842:6;10837:3;10760:89;:::i;:::-;10753:96;;10858:52;10903:6;10898:3;10891:4;10884:5;10880:16;10858:52;:::i;:::-;10935:6;10930:3;10926:16;10919:23;;10681:267;10571:377;;;;:::o;10978:845::-;11081:3;11118:5;11112:12;11147:36;11173:9;11147:36;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11319:1;11308:9;11304:17;11335:1;11330:137;;;;11481:1;11476:341;;;;11297:520;;11330:137;11414:4;11410:9;11399;11395:25;11390:3;11383:38;11450:6;11445:3;11441:16;11434:23;;11330:137;;11476:341;11543:38;11575:5;11543:38;:::i;:::-;11603:1;11617:154;11631:6;11628:1;11625:13;11617:154;;;11705:7;11699:14;11695:1;11690:3;11686:11;11679:35;11755:1;11746:7;11742:15;11731:26;;11653:4;11650:1;11646:12;11641:17;;11617:154;;;11800:6;11795:3;11791:16;11784:23;;11483:334;;11297:520;;11085:738;;10978:845;;;;:::o;11829:366::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:::-;17551:3;17572:67;17636:2;17631:3;17572:67;:::i;:::-;17565:74;;17648:93;17737:3;17648:93;:::i;:::-;17766:2;17761:3;17757:12;17750:19;;17409:366;;;:::o;17781:::-;17923:3;17944:67;18008:2;18003:3;17944:67;:::i;:::-;17937:74;;18020:93;18109:3;18020:93;:::i;:::-;18138:2;18133:3;18129:12;18122:19;;17781:366;;;:::o;18153:::-;18295:3;18316:67;18380:2;18375:3;18316:67;:::i;:::-;18309:74;;18392:93;18481:3;18392:93;:::i;:::-;18510:2;18505:3;18501:12;18494:19;;18153:366;;;:::o;18525:::-;18667:3;18688:67;18752:2;18747:3;18688:67;:::i;:::-;18681:74;;18764:93;18853:3;18764:93;:::i;:::-;18882:2;18877:3;18873:12;18866:19;;18525:366;;;:::o;18897:::-;19039:3;19060:67;19124:2;19119:3;19060:67;:::i;:::-;19053:74;;19136:93;19225:3;19136:93;:::i;:::-;19254:2;19249:3;19245:12;19238:19;;18897:366;;;:::o;19269:::-;19411:3;19432:67;19496:2;19491:3;19432:67;:::i;:::-;19425:74;;19508:93;19597:3;19508:93;:::i;:::-;19626:2;19621:3;19617:12;19610:19;;19269:366;;;:::o;19641:::-;19783:3;19804:67;19868:2;19863:3;19804:67;:::i;:::-;19797:74;;19880:93;19969:3;19880:93;:::i;:::-;19998:2;19993:3;19989:12;19982:19;;19641:366;;;:::o;20013:398::-;20172:3;20193:83;20274:1;20269:3;20193:83;:::i;:::-;20186:90;;20285:93;20374:3;20285:93;:::i;:::-;20403:1;20398:3;20394:11;20387:18;;20013:398;;;:::o;20417:364::-;20559:3;20580:66;20644:1;20639:3;20580:66;:::i;:::-;20573:73;;20655:93;20744:3;20655:93;:::i;:::-;20773:1;20768:3;20764:11;20757:18;;20417:364;;;:::o;20787:366::-;20929:3;20950:67;21014:2;21009:3;20950:67;:::i;:::-;20943:74;;21026:93;21115:3;21026:93;:::i;:::-;21144:2;21139:3;21135:12;21128:19;;20787:366;;;:::o;21159:::-;21301:3;21322:67;21386:2;21381:3;21322:67;:::i;:::-;21315:74;;21398:93;21487:3;21398:93;:::i;:::-;21516:2;21511:3;21507:12;21500:19;;21159:366;;;:::o;21531:::-;21673:3;21694:67;21758:2;21753:3;21694:67;:::i;:::-;21687:74;;21770:93;21859:3;21770:93;:::i;:::-;21888:2;21883:3;21879:12;21872:19;;21531:366;;;:::o;21903:::-;22045:3;22066:67;22130:2;22125:3;22066:67;:::i;:::-;22059:74;;22142:93;22231:3;22142:93;:::i;:::-;22260:2;22255:3;22251:12;22244:19;;21903:366;;;:::o;22275:108::-;22352:24;22370:5;22352:24;:::i;:::-;22347:3;22340:37;22275:108;;:::o;22389:118::-;22476:24;22494:5;22476:24;:::i;:::-;22471:3;22464:37;22389:118;;:::o;22513:589::-;22738:3;22760:95;22851:3;22842:6;22760:95;:::i;:::-;22753:102;;22872:95;22963:3;22954:6;22872:95;:::i;:::-;22865:102;;22984:92;23072:3;23063:6;22984:92;:::i;:::-;22977:99;;23093:3;23086:10;;22513:589;;;;;;:::o;23108:379::-;23292:3;23314:147;23457:3;23314:147;:::i;:::-;23307:154;;23478:3;23471:10;;23108:379;;;:::o;23493:222::-;23586:4;23624:2;23613:9;23609:18;23601:26;;23637:71;23705:1;23694:9;23690:17;23681:6;23637:71;:::i;:::-;23493:222;;;;:::o;23721:640::-;23916:4;23954:3;23943:9;23939:19;23931:27;;23968:71;24036:1;24025:9;24021:17;24012:6;23968:71;:::i;:::-;24049:72;24117:2;24106:9;24102:18;24093:6;24049:72;:::i;:::-;24131;24199:2;24188:9;24184:18;24175:6;24131:72;:::i;:::-;24250:9;24244:4;24240:20;24235:2;24224:9;24220:18;24213:48;24278:76;24349:4;24340:6;24278:76;:::i;:::-;24270:84;;23721:640;;;;;;;:::o;24367:373::-;24510:4;24548:2;24537:9;24533:18;24525:26;;24597:9;24591:4;24587:20;24583:1;24572:9;24568:17;24561:47;24625:108;24728:4;24719:6;24625:108;:::i;:::-;24617:116;;24367:373;;;;:::o;24746:210::-;24833:4;24871:2;24860:9;24856:18;24848:26;;24884:65;24946:1;24935:9;24931:17;24922:6;24884:65;:::i;:::-;24746:210;;;;:::o;24962:313::-;25075:4;25113:2;25102:9;25098:18;25090:26;;25162:9;25156:4;25152:20;25148:1;25137:9;25133:17;25126:47;25190:78;25263:4;25254:6;25190:78;:::i;:::-;25182:86;;24962:313;;;;:::o;25281:419::-;25447:4;25485:2;25474:9;25470:18;25462:26;;25534:9;25528:4;25524:20;25520:1;25509:9;25505:17;25498:47;25562:131;25688:4;25562:131;:::i;:::-;25554:139;;25281:419;;;:::o;25706:::-;25872:4;25910:2;25899:9;25895:18;25887:26;;25959:9;25953:4;25949:20;25945:1;25934:9;25930:17;25923:47;25987:131;26113:4;25987:131;:::i;:::-;25979:139;;25706:419;;;:::o;26131:::-;26297:4;26335:2;26324:9;26320:18;26312:26;;26384:9;26378:4;26374:20;26370:1;26359:9;26355:17;26348:47;26412:131;26538:4;26412:131;:::i;:::-;26404:139;;26131:419;;;:::o;26556:::-;26722:4;26760:2;26749:9;26745:18;26737:26;;26809:9;26803:4;26799:20;26795:1;26784:9;26780:17;26773:47;26837:131;26963:4;26837:131;:::i;:::-;26829:139;;26556:419;;;:::o;26981:::-;27147:4;27185:2;27174:9;27170:18;27162:26;;27234:9;27228:4;27224:20;27220:1;27209:9;27205:17;27198:47;27262:131;27388:4;27262:131;:::i;:::-;27254:139;;26981:419;;;:::o;27406:::-;27572:4;27610:2;27599:9;27595:18;27587:26;;27659:9;27653:4;27649:20;27645:1;27634:9;27630:17;27623:47;27687:131;27813:4;27687:131;:::i;:::-;27679:139;;27406:419;;;:::o;27831:::-;27997:4;28035:2;28024:9;28020:18;28012:26;;28084:9;28078:4;28074:20;28070:1;28059:9;28055:17;28048:47;28112:131;28238:4;28112:131;:::i;:::-;28104:139;;27831:419;;;:::o;28256:::-;28422:4;28460:2;28449:9;28445:18;28437:26;;28509:9;28503:4;28499:20;28495:1;28484:9;28480:17;28473:47;28537:131;28663:4;28537:131;:::i;:::-;28529:139;;28256:419;;;:::o;28681:::-;28847:4;28885:2;28874:9;28870:18;28862:26;;28934:9;28928:4;28924:20;28920:1;28909:9;28905:17;28898:47;28962:131;29088:4;28962:131;:::i;:::-;28954:139;;28681:419;;;:::o;29106:::-;29272:4;29310:2;29299:9;29295:18;29287:26;;29359:9;29353:4;29349:20;29345:1;29334:9;29330:17;29323:47;29387:131;29513:4;29387:131;:::i;:::-;29379:139;;29106:419;;;:::o;29531:::-;29697:4;29735:2;29724:9;29720:18;29712:26;;29784:9;29778:4;29774:20;29770:1;29759:9;29755:17;29748:47;29812:131;29938:4;29812:131;:::i;:::-;29804:139;;29531:419;;;:::o;29956:::-;30122:4;30160:2;30149:9;30145:18;30137:26;;30209:9;30203:4;30199:20;30195:1;30184:9;30180:17;30173:47;30237:131;30363:4;30237:131;:::i;:::-;30229:139;;29956:419;;;:::o;30381:::-;30547:4;30585:2;30574:9;30570:18;30562:26;;30634:9;30628:4;30624:20;30620:1;30609:9;30605:17;30598:47;30662:131;30788:4;30662:131;:::i;:::-;30654:139;;30381:419;;;:::o;30806:::-;30972:4;31010:2;30999:9;30995:18;30987:26;;31059:9;31053:4;31049:20;31045:1;31034:9;31030:17;31023:47;31087:131;31213:4;31087:131;:::i;:::-;31079:139;;30806:419;;;:::o;31231:::-;31397:4;31435:2;31424:9;31420:18;31412:26;;31484:9;31478:4;31474:20;31470:1;31459:9;31455:17;31448:47;31512:131;31638:4;31512:131;:::i;:::-;31504:139;;31231:419;;;:::o;31656:::-;31822:4;31860:2;31849:9;31845:18;31837:26;;31909:9;31903:4;31899:20;31895:1;31884:9;31880:17;31873:47;31937:131;32063:4;31937:131;:::i;:::-;31929:139;;31656:419;;;:::o;32081:::-;32247:4;32285:2;32274:9;32270:18;32262:26;;32334:9;32328:4;32324:20;32320:1;32309:9;32305:17;32298:47;32362:131;32488:4;32362:131;:::i;:::-;32354:139;;32081:419;;;:::o;32506:::-;32672:4;32710:2;32699:9;32695:18;32687:26;;32759:9;32753:4;32749:20;32745:1;32734:9;32730:17;32723:47;32787:131;32913:4;32787:131;:::i;:::-;32779:139;;32506:419;;;:::o;32931:::-;33097:4;33135:2;33124:9;33120:18;33112:26;;33184:9;33178:4;33174:20;33170:1;33159:9;33155:17;33148:47;33212:131;33338:4;33212:131;:::i;:::-;33204:139;;32931:419;;;:::o;33356:::-;33522:4;33560:2;33549:9;33545:18;33537:26;;33609:9;33603:4;33599:20;33595:1;33584:9;33580:17;33573:47;33637:131;33763:4;33637:131;:::i;:::-;33629:139;;33356:419;;;:::o;33781:::-;33947:4;33985:2;33974:9;33970:18;33962:26;;34034:9;34028:4;34024:20;34020:1;34009:9;34005:17;33998:47;34062:131;34188:4;34062:131;:::i;:::-;34054:139;;33781:419;;;:::o;34206:::-;34372:4;34410:2;34399:9;34395:18;34387:26;;34459:9;34453:4;34449:20;34445:1;34434:9;34430:17;34423:47;34487:131;34613:4;34487:131;:::i;:::-;34479:139;;34206:419;;;:::o;34631:::-;34797:4;34835:2;34824:9;34820:18;34812:26;;34884:9;34878:4;34874:20;34870:1;34859:9;34855:17;34848:47;34912:131;35038:4;34912:131;:::i;:::-;34904:139;;34631:419;;;:::o;35056:::-;35222:4;35260:2;35249:9;35245:18;35237:26;;35309:9;35303:4;35299:20;35295:1;35284:9;35280:17;35273:47;35337:131;35463:4;35337:131;:::i;:::-;35329:139;;35056:419;;;:::o;35481:::-;35647:4;35685:2;35674:9;35670:18;35662:26;;35734:9;35728:4;35724:20;35720:1;35709:9;35705:17;35698:47;35762:131;35888:4;35762:131;:::i;:::-;35754:139;;35481:419;;;:::o;35906:::-;36072:4;36110:2;36099:9;36095:18;36087:26;;36159:9;36153:4;36149:20;36145:1;36134:9;36130:17;36123:47;36187:131;36313:4;36187:131;:::i;:::-;36179:139;;35906:419;;;:::o;36331:::-;36497:4;36535:2;36524:9;36520:18;36512:26;;36584:9;36578:4;36574:20;36570:1;36559:9;36555:17;36548:47;36612:131;36738:4;36612:131;:::i;:::-;36604:139;;36331:419;;;:::o;36756:222::-;36849:4;36887:2;36876:9;36872:18;36864:26;;36900:71;36968:1;36957:9;36953:17;36944:6;36900:71;:::i;:::-;36756:222;;;;:::o;36984:129::-;37018:6;37045:20;;:::i;:::-;37035:30;;37074:33;37102:4;37094:6;37074:33;:::i;:::-;36984:129;;;:::o;37119:75::-;37152:6;37185:2;37179:9;37169:19;;37119:75;:::o;37200:307::-;37261:4;37351:18;37343:6;37340:30;37337:56;;;37373:18;;:::i;:::-;37337:56;37411:29;37433:6;37411:29;:::i;:::-;37403:37;;37495:4;37489;37485:15;37477:23;;37200:307;;;:::o;37513:308::-;37575:4;37665:18;37657:6;37654:30;37651:56;;;37687:18;;:::i;:::-;37651:56;37725:29;37747:6;37725:29;:::i;:::-;37717:37;;37809:4;37803;37799:15;37791:23;;37513:308;;;:::o;37827:132::-;37894:4;37917:3;37909:11;;37947:4;37942:3;37938:14;37930:22;;37827:132;;;:::o;37965:141::-;38014:4;38037:3;38029:11;;38060:3;38057:1;38050:14;38094:4;38091:1;38081:18;38073:26;;37965:141;;;:::o;38112:114::-;38179:6;38213:5;38207:12;38197:22;;38112:114;;;:::o;38232:98::-;38283:6;38317:5;38311:12;38301:22;;38232:98;;;:::o;38336:99::-;38388:6;38422:5;38416:12;38406:22;;38336:99;;;:::o;38441:113::-;38511:4;38543;38538:3;38534:14;38526:22;;38441:113;;;:::o;38560:184::-;38659:11;38693:6;38688:3;38681:19;38733:4;38728:3;38724:14;38709:29;;38560:184;;;;:::o;38750:168::-;38833:11;38867:6;38862:3;38855:19;38907:4;38902:3;38898:14;38883:29;;38750:168;;;;:::o;38924:147::-;39025:11;39062:3;39047:18;;38924:147;;;;:::o;39077:169::-;39161:11;39195:6;39190:3;39183:19;39235:4;39230:3;39226:14;39211:29;;39077:169;;;;:::o;39252:148::-;39354:11;39391:3;39376:18;;39252:148;;;;:::o;39406:305::-;39446:3;39465:20;39483:1;39465:20;:::i;:::-;39460:25;;39499:20;39517:1;39499:20;:::i;:::-;39494:25;;39653:1;39585:66;39581:74;39578:1;39575:81;39572:107;;;39659:18;;:::i;:::-;39572:107;39703:1;39700;39696:9;39689:16;;39406:305;;;;:::o;39717:185::-;39757:1;39774:20;39792:1;39774:20;:::i;:::-;39769:25;;39808:20;39826:1;39808:20;:::i;:::-;39803:25;;39847:1;39837:35;;39852:18;;:::i;:::-;39837:35;39894:1;39891;39887:9;39882:14;;39717:185;;;;:::o;39908:348::-;39948:7;39971:20;39989:1;39971:20;:::i;:::-;39966:25;;40005:20;40023:1;40005:20;:::i;:::-;40000:25;;40193:1;40125:66;40121:74;40118:1;40115:81;40110:1;40103:9;40096:17;40092:105;40089:131;;;40200:18;;:::i;:::-;40089:131;40248:1;40245;40241:9;40230:20;;39908:348;;;;:::o;40262:191::-;40302:4;40322:20;40340:1;40322:20;:::i;:::-;40317:25;;40356:20;40374:1;40356:20;:::i;:::-;40351:25;;40395:1;40392;40389:8;40386:34;;;40400:18;;:::i;:::-;40386:34;40445:1;40442;40438:9;40430:17;;40262:191;;;;:::o;40459:96::-;40496:7;40525:24;40543:5;40525:24;:::i;:::-;40514:35;;40459:96;;;:::o;40561:90::-;40595:7;40638:5;40631:13;40624:21;40613:32;;40561:90;;;:::o;40657:149::-;40693:7;40733:66;40726:5;40722:78;40711:89;;40657:149;;;:::o;40812:126::-;40849:7;40889:42;40882:5;40878:54;40867:65;;40812:126;;;:::o;40944:77::-;40981:7;41010:5;40999:16;;40944:77;;;:::o;41027:154::-;41111:6;41106:3;41101;41088:30;41173:1;41164:6;41159:3;41155:16;41148:27;41027:154;;;:::o;41187:307::-;41255:1;41265:113;41279:6;41276:1;41273:13;41265:113;;;41364:1;41359:3;41355:11;41349:18;41345:1;41340:3;41336:11;41329:39;41301:2;41298:1;41294:10;41289:15;;41265:113;;;41396:6;41393:1;41390:13;41387:101;;;41476:1;41467:6;41462:3;41458:16;41451:27;41387:101;41236:258;41187:307;;;:::o;41500:320::-;41544:6;41581:1;41575:4;41571:12;41561:22;;41628:1;41622:4;41618:12;41649:18;41639:81;;41705:4;41697:6;41693:17;41683:27;;41639:81;41767:2;41759:6;41756:14;41736:18;41733:38;41730:84;;;41786:18;;:::i;:::-;41730:84;41551:269;41500:320;;;:::o;41826:281::-;41909:27;41931:4;41909:27;:::i;:::-;41901:6;41897:40;42039:6;42027:10;42024:22;42003:18;41991:10;41988:34;41985:62;41982:88;;;42050:18;;:::i;:::-;41982:88;42090:10;42086:2;42079:22;41869:238;41826:281;;:::o;42113:233::-;42152:3;42175:24;42193:5;42175:24;:::i;:::-;42166:33;;42221:66;42214:5;42211:77;42208:103;;;42291:18;;:::i;:::-;42208:103;42338:1;42331:5;42327:13;42320:20;;42113:233;;;:::o;42352:176::-;42384:1;42401:20;42419:1;42401:20;:::i;:::-;42396:25;;42435:20;42453:1;42435:20;:::i;:::-;42430:25;;42474:1;42464:35;;42479:18;;:::i;:::-;42464:35;42520:1;42517;42513:9;42508:14;;42352:176;;;;:::o;42534:180::-;42582:77;42579:1;42572:88;42679:4;42676:1;42669:15;42703:4;42700:1;42693:15;42720:180;42768:77;42765:1;42758:88;42865:4;42862:1;42855:15;42889:4;42886:1;42879:15;42906:180;42954:77;42951:1;42944:88;43051:4;43048:1;43041:15;43075:4;43072:1;43065:15;43092:180;43140:77;43137:1;43130:88;43237:4;43234:1;43227:15;43261:4;43258:1;43251:15;43278:180;43326:77;43323:1;43316:88;43423:4;43420:1;43413:15;43447:4;43444:1;43437:15;43464:180;43512:77;43509:1;43502:88;43609:4;43606:1;43599:15;43633:4;43630:1;43623:15;43650:117;43759:1;43756;43749:12;43773:117;43882:1;43879;43872:12;43896:117;44005:1;44002;43995:12;44019:117;44128:1;44125;44118:12;44142:117;44251:1;44248;44241:12;44265:117;44374:1;44371;44364:12;44388:102;44429:6;44480:2;44476:7;44471:2;44464:5;44460:14;44456:28;44446:38;;44388:102;;;:::o;44496:162::-;44636:14;44632:1;44624:6;44620:14;44613:38;44496:162;:::o;44664:174::-;44804:26;44800:1;44792:6;44788:14;44781:50;44664:174;:::o;44844:230::-;44984:34;44980:1;44972:6;44968:14;44961:58;45053:13;45048:2;45040:6;45036:15;45029:38;44844:230;:::o;45080:237::-;45220:34;45216:1;45208:6;45204:14;45197:58;45289:20;45284:2;45276:6;45272:15;45265:45;45080:237;:::o;45323:225::-;45463:34;45459:1;45451:6;45447:14;45440:58;45532:8;45527:2;45519:6;45515:15;45508:33;45323:225;:::o;45554:224::-;45694:34;45690:1;45682:6;45678:14;45671:58;45763:7;45758:2;45750:6;45746:15;45739:32;45554:224;:::o;45784:178::-;45924:30;45920:1;45912:6;45908:14;45901:54;45784:178;:::o;45968:::-;46108:30;46104:1;46096:6;46092:14;46085:54;45968:178;:::o;46152:223::-;46292:34;46288:1;46280:6;46276:14;46269:58;46361:6;46356:2;46348:6;46344:15;46337:31;46152:223;:::o;46381:175::-;46521:27;46517:1;46509:6;46505:14;46498:51;46381:175;:::o;46562:231::-;46702:34;46698:1;46690:6;46686:14;46679:58;46771:14;46766:2;46758:6;46754:15;46747:39;46562:231;:::o;46799:163::-;46939:15;46935:1;46927:6;46923:14;46916:39;46799:163;:::o;46968:243::-;47108:34;47104:1;47096:6;47092:14;47085:58;47177:26;47172:2;47164:6;47160:15;47153:51;46968:243;:::o;47217:229::-;47357:34;47353:1;47345:6;47341:14;47334:58;47426:12;47421:2;47413:6;47409:15;47402:37;47217:229;:::o;47452:228::-;47592:34;47588:1;47580:6;47576:14;47569:58;47661:11;47656:2;47648:6;47644:15;47637:36;47452:228;:::o;47686:181::-;47826:33;47822:1;47814:6;47810:14;47803:57;47686:181;:::o;47873:172::-;48013:24;48009:1;48001:6;47997:14;47990:48;47873:172;:::o;48051:182::-;48191:34;48187:1;48179:6;48175:14;48168:58;48051:182;:::o;48239:231::-;48379:34;48375:1;48367:6;48363:14;48356:58;48448:14;48443:2;48435:6;48431:15;48424:39;48239:231;:::o;48476:182::-;48616:34;48612:1;48604:6;48600:14;48593:58;48476:182;:::o;48664:234::-;48804:34;48800:1;48792:6;48788:14;48781:58;48873:17;48868:2;48860:6;48856:15;48849:42;48664:234;:::o;48904:220::-;49044:34;49040:1;49032:6;49028:14;49021:58;49113:3;49108:2;49100:6;49096:15;49089:28;48904:220;:::o;49130:114::-;;:::o;49250:236::-;49390:34;49386:1;49378:6;49374:14;49367:58;49459:19;49454:2;49446:6;49442:15;49435:44;49250:236;:::o;49492:231::-;49632:34;49628:1;49620:6;49616:14;49609:58;49701:14;49696:2;49688:6;49684:15;49677:39;49492:231;:::o;49729:164::-;49869:16;49865:1;49857:6;49853:14;49846:40;49729:164;:::o;49899:172::-;50039:24;50035:1;50027:6;50023:14;50016:48;49899:172;:::o;50077:122::-;50150:24;50168:5;50150:24;:::i;:::-;50143:5;50140:35;50130:63;;50189:1;50186;50179:12;50130:63;50077:122;:::o;50205:116::-;50275:21;50290:5;50275:21;:::i;:::-;50268:5;50265:32;50255:60;;50311:1;50308;50301:12;50255:60;50205:116;:::o;50327:120::-;50399:23;50416:5;50399:23;:::i;:::-;50392:5;50389:34;50379:62;;50437:1;50434;50427:12;50379:62;50327:120;:::o;50453:122::-;50526:24;50544:5;50526:24;:::i;:::-;50519:5;50516:35;50506:63;;50565:1;50562;50555:12;50506:63;50453:122;:::o
Swarm Source
ipfs://4ca19367434a496e32616c4674530796876781e96c332a0056f23d51437f97de
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.