Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
2231
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
gltchzz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-01 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if ( to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.0; contract gltchzz is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint256; string public baseTokenURI = "ipfs://QmYFbsGbnewG6ixKNHGsvoUY3LaGwZy8o3UErs4RRiXPoy"; uint256 public maxSupply = 4444; uint256 public MAX_TOKENS_PER_TX = 3; uint256 public SALE_PRICE = 0.008 ether; uint256 public WALLET_LIMIT = 3; bool public isPublicSaleActive = false; constructor() ERC721A("GLTCHZ", "gltchz") {} function mint(uint256 numberOfTokens) external payable { require(isPublicSaleActive, "Public sale is not open"); require(totalSupply() + numberOfTokens < maxSupply + 1, "No more"); require( balanceOf(msg.sender) + numberOfTokens <= WALLET_LIMIT, "Max mints per wallet exceeded " ); require( numberOfTokens <= MAX_TOKENS_PER_TX, "Max mints per transaction exceeded" ); require( (SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); _safeMint(msg.sender, numberOfTokens); } function devMint(uint256 _quantity) external onlyOwner { _safeMint(msg.sender, _quantity); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function treasuryMint(uint256 quantity) public onlyOwner { require(quantity > 0, "Invalid mint amount"); require( totalSupply() + quantity <= maxSupply, "Maximum supply exceeded" ); _safeMint(msg.sender, quantity); } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string( abi.encodePacked( baseTokenURI, "/", _tokenId.toString(), ".json" ) ); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setSalePrice(uint256 _price) external onlyOwner { SALE_PRICE = _price; } function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner { MAX_TOKENS_PER_TX = _limit; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180606001604052806035815260200162003fb860359139600a90805190602001906200003592919062000235565b5061115c600b556003600c55661c6bf526340000600d556003600e556000600f60006101000a81548160ff0219169083151502179055503480156200007957600080fd5b506040518060400160405280600681526020017f474c5443485a00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f676c7463687a00000000000000000000000000000000000000000000000000008152508160029080519060200190620000fe92919062000235565b5080600390805190602001906200011792919062000235565b50620001286200015e60201b60201c565b600081905550505062000150620001446200016760201b60201c565b6200016f60201b60201c565b60016009819055506200034a565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024390620002e5565b90600052602060002090601f016020900481019282620002675760008555620002b3565b82601f106200028257805160ff1916838001178555620002b3565b82800160010185558215620002b3579182015b82811115620002b257825182559160200191906001019062000295565b5b509050620002c29190620002c6565b5090565b5b80821115620002e1576000816000905550600101620002c7565b5090565b60006002820490506001821680620002fe57607f821691505b602082108114156200031557620003146200031b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c5e806200035a6000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063b88d4fde11610095578063e0c23b9411610064578063e0c23b9414610675578063e985e9c5146106a0578063efdc7788146106dd578063f2fde38b14610706576101d8565b8063b88d4fde146105b9578063c87b56dd146105e2578063d547cfb71461061f578063d5abeb011461064a576101d8565b806395d89b41116100d157806395d89b41146105205780639e9fcffc1461054b578063a0712d6814610574578063a22cb46514610590576101d8565b806370a0823114610476578063715018a6146104b35780637f205a74146104ca5780638da5cb5b146104f5576101d8565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b146103d057806342842e0e146103e757806355f804b3146104105780636352211e14610439576101d8565b806323b872dd1461032a57806328cad13d14610353578063351ed9511461037c578063375a069a146103a7576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab5780631919fed7146102d65780631e84c413146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612d2b565b61072f565b6040516102119190613230565b60405180910390f35b34801561022657600080fd5b5061022f610811565b60405161023c919061324b565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612dce565b6108a3565b60405161027991906131c9565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612cbe565b61091f565b005b3480156102b757600080fd5b506102c0610a2a565b6040516102cd919061340d565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612dce565b610a41565b005b34801561030b57600080fd5b50610314610ac7565b6040516103219190613230565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612ba8565b610ada565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612cfe565b610aea565b005b34801561038857600080fd5b50610391610b83565b60405161039e919061340d565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612dce565b610b89565b005b3480156103dc57600080fd5b506103e5610c12565b005b3480156103f357600080fd5b5061040e60048036038101906104099190612ba8565b610cf0565b005b34801561041c57600080fd5b5061043760048036038101906104329190612d85565b610d10565b005b34801561044557600080fd5b50610460600480360381019061045b9190612dce565b610da6565b60405161046d91906131c9565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190612b3b565b610dbc565b6040516104aa919061340d565b60405180910390f35b3480156104bf57600080fd5b506104c8610e8c565b005b3480156104d657600080fd5b506104df610f14565b6040516104ec919061340d565b60405180910390f35b34801561050157600080fd5b5061050a610f1a565b60405161051791906131c9565b60405180910390f35b34801561052c57600080fd5b50610535610f44565b604051610542919061324b565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190612dce565b610fd6565b005b61058e60048036038101906105899190612dce565b61105c565b005b34801561059c57600080fd5b506105b760048036038101906105b29190612c7e565b611207565b005b3480156105c557600080fd5b506105e060048036038101906105db9190612bfb565b61137f565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612dce565b6113fb565b604051610616919061324b565b60405180910390f35b34801561062b57600080fd5b50610634611477565b604051610641919061324b565b60405180910390f35b34801561065657600080fd5b5061065f611505565b60405161066c919061340d565b60405180910390f35b34801561068157600080fd5b5061068a61150b565b604051610697919061340d565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612b68565b611511565b6040516106d49190613230565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190612dce565b6115a5565b005b34801561071257600080fd5b5061072d60048036038101906107289190612b3b565b6116c8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080a5750610809826117c0565b5b9050919050565b606060028054610820906136dd565b80601f016020809104026020016040519081016040528092919081815260200182805461084c906136dd565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b60006108ae8261182a565b6108e4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092a82610da6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610992576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b1611878565b73ffffffffffffffffffffffffffffffffffffffff16141580156109e357506109e1816109dc611878565b611511565b155b15610a1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a25838383611880565b505050565b6000610a34611932565b6001546000540303905090565b610a49611878565b73ffffffffffffffffffffffffffffffffffffffff16610a67610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab49061334d565b60405180910390fd5b80600d8190555050565b600f60009054906101000a900460ff1681565b610ae583838361193b565b505050565b610af2611878565b73ffffffffffffffffffffffffffffffffffffffff16610b10610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d9061334d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600e5481565b610b91611878565b73ffffffffffffffffffffffffffffffffffffffff16610baf610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc9061334d565b60405180910390fd5b610c0f3382611df1565b50565b610c1a611878565b73ffffffffffffffffffffffffffffffffffffffff16610c38610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c859061334d565b60405180910390fd5b60026009541415610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb906133cd565b60405180910390fd5b6002600981905550610ce63347611e0f565b6001600981905550565b610d0b8383836040518060200160405280600081525061137f565b505050565b610d18611878565b73ffffffffffffffffffffffffffffffffffffffff16610d36610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d839061334d565b60405180910390fd5b80600a9080519060200190610da292919061290c565b5050565b6000610db182611f03565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e24576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e94611878565b73ffffffffffffffffffffffffffffffffffffffff16610eb2610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff9061334d565b60405180910390fd5b610f126000612192565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f53906136dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7f906136dd565b8015610fcc5780601f10610fa157610100808354040283529160200191610fcc565b820191906000526020600020905b815481529060010190602001808311610faf57829003601f168201915b5050505050905090565b610fde611878565b73ffffffffffffffffffffffffffffffffffffffff16610ffc610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614611052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110499061334d565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff166110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a2906133ed565b60405180910390fd5b6001600b546110ba9190613512565b816110c3610a2a565b6110cd9190613512565b1061110d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111049061326d565b60405180910390fd5b600e548161111a33610dbc565b6111249190613512565b1115611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c906132ad565b60405180910390fd5b600c548111156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a19061330d565b60405180910390fd5b3481600d546111b99190613599565b11156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f1906133ad565b60405180910390fd5b6112043382611df1565b50565b61120f611878565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611274576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611281611878565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661132e611878565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113739190613230565b60405180910390a35050565b61138a84848461193b565b6113a98373ffffffffffffffffffffffffffffffffffffffff16612258565b80156113be57506113bc8484848461227b565b155b156113f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114068261182a565b611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143c9061336d565b60405180910390fd5b600a611450836123db565b60405160200161146192919061317a565b6040516020818303038152906040529050919050565b600a8054611484906136dd565b80601f01602080910402602001604051908101604052809291908181526020018280546114b0906136dd565b80156114fd5780601f106114d2576101008083540402835291602001916114fd565b820191906000526020600020905b8154815290600101906020018083116114e057829003601f168201915b505050505081565b600b5481565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115ad611878565b73ffffffffffffffffffffffffffffffffffffffff166115cb610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116189061334d565b60405180910390fd5b60008111611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b9061338d565b60405180910390fd5b600b5481611670610a2a565b61167a9190613512565b11156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b29061332d565b60405180910390fd5b6116c53382611df1565b50565b6116d0611878565b73ffffffffffffffffffffffffffffffffffffffff166116ee610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b9061334d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab9061328d565b60405180910390fd5b6117bd81612192565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611835611932565b11158015611844575060005482105b8015611871575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061194682611f03565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146119b1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166119d2611878565b73ffffffffffffffffffffffffffffffffffffffff161480611a015750611a00856119fb611878565b611511565b5b80611a465750611a0f611878565b73ffffffffffffffffffffffffffffffffffffffff16611a2e846108a3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a7f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ae6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611af3858585600161253c565b611aff60008487611880565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d7f576000548214611d7e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dea8585856001612542565b5050505050565b611e0b828260405180602001604052806000815250612548565b5050565b80471015611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e49906132ed565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611e78906131b4565b60006040518083038185875af1925050503d8060008114611eb5576040519150601f19603f3d011682016040523d82523d6000602084013e611eba565b606091505b5050905080611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef5906132cd565b60405180910390fd5b505050565b611f0b612992565b600082905080611f19611932565b11158015611f28575060005481105b1561215b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161215957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461203d57809250505061218d565b5b60011561215857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461215357809250505061218d565b61203e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122a1611878565b8786866040518563ffffffff1660e01b81526004016122c394939291906131e4565b602060405180830381600087803b1580156122dd57600080fd5b505af192505050801561230e57506040513d601f19601f8201168201806040525081019061230b9190612d58565b60015b612388573d806000811461233e576040519150601f19603f3d011682016040523d82523d6000602084013e612343565b606091505b50600081511415612380576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612423576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612537565b600082905060005b6000821461245557808061243e90613740565b915050600a8261244e9190613568565b915061242b565b60008167ffffffffffffffff81111561247157612470613876565b5b6040519080825280601f01601f1916602001820160405280156124a35781602001600182028036833780820191505090505b5090505b60008514612530576001826124bc91906135f3565b9150600a856124cb9190613789565b60306124d79190613512565b60f81b8183815181106124ed576124ec613847565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125299190613568565b94506124a7565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125b5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156125f0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125fd600085838661253c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506127be8673ffffffffffffffffffffffffffffffffffffffff16612258565b15612884575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612833600087848060010195508761227b565b612869576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156127c457826000541461287f57600080fd5b6128f0565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612885575b8160008190555050506129066000858386612542565b50505050565b828054612918906136dd565b90600052602060002090601f01602090048101928261293a5760008555612981565b82601f1061295357805160ff1916838001178555612981565b82800160010185558215612981579182015b82811115612980578251825591602001919060010190612965565b5b50905061298e91906129d5565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156129ee5760008160009055506001016129d6565b5090565b6000612a05612a008461344d565b613428565b905082815260208101848484011115612a2157612a206138aa565b5b612a2c84828561369b565b509392505050565b6000612a47612a428461347e565b613428565b905082815260208101848484011115612a6357612a626138aa565b5b612a6e84828561369b565b509392505050565b600081359050612a8581613bcc565b92915050565b600081359050612a9a81613be3565b92915050565b600081359050612aaf81613bfa565b92915050565b600081519050612ac481613bfa565b92915050565b600082601f830112612adf57612ade6138a5565b5b8135612aef8482602086016129f2565b91505092915050565b600082601f830112612b0d57612b0c6138a5565b5b8135612b1d848260208601612a34565b91505092915050565b600081359050612b3581613c11565b92915050565b600060208284031215612b5157612b506138b4565b5b6000612b5f84828501612a76565b91505092915050565b60008060408385031215612b7f57612b7e6138b4565b5b6000612b8d85828601612a76565b9250506020612b9e85828601612a76565b9150509250929050565b600080600060608486031215612bc157612bc06138b4565b5b6000612bcf86828701612a76565b9350506020612be086828701612a76565b9250506040612bf186828701612b26565b9150509250925092565b60008060008060808587031215612c1557612c146138b4565b5b6000612c2387828801612a76565b9450506020612c3487828801612a76565b9350506040612c4587828801612b26565b925050606085013567ffffffffffffffff811115612c6657612c656138af565b5b612c7287828801612aca565b91505092959194509250565b60008060408385031215612c9557612c946138b4565b5b6000612ca385828601612a76565b9250506020612cb485828601612a8b565b9150509250929050565b60008060408385031215612cd557612cd46138b4565b5b6000612ce385828601612a76565b9250506020612cf485828601612b26565b9150509250929050565b600060208284031215612d1457612d136138b4565b5b6000612d2284828501612a8b565b91505092915050565b600060208284031215612d4157612d406138b4565b5b6000612d4f84828501612aa0565b91505092915050565b600060208284031215612d6e57612d6d6138b4565b5b6000612d7c84828501612ab5565b91505092915050565b600060208284031215612d9b57612d9a6138b4565b5b600082013567ffffffffffffffff811115612db957612db86138af565b5b612dc584828501612af8565b91505092915050565b600060208284031215612de457612de36138b4565b5b6000612df284828501612b26565b91505092915050565b612e0481613627565b82525050565b612e1381613639565b82525050565b6000612e24826134c4565b612e2e81856134da565b9350612e3e8185602086016136aa565b612e47816138b9565b840191505092915050565b6000612e5d826134cf565b612e6781856134f6565b9350612e778185602086016136aa565b612e80816138b9565b840191505092915050565b6000612e96826134cf565b612ea08185613507565b9350612eb08185602086016136aa565b80840191505092915050565b60008154612ec9816136dd565b612ed38186613507565b94506001821660008114612eee5760018114612eff57612f32565b60ff19831686528186019350612f32565b612f08856134af565b60005b83811015612f2a57815481890152600182019150602081019050612f0b565b838801955050505b50505092915050565b6000612f486007836134f6565b9150612f53826138ca565b602082019050919050565b6000612f6b6026836134f6565b9150612f76826138f3565b604082019050919050565b6000612f8e601e836134f6565b9150612f9982613942565b602082019050919050565b6000612fb1603a836134f6565b9150612fbc8261396b565b604082019050919050565b6000612fd4601d836134f6565b9150612fdf826139ba565b602082019050919050565b6000612ff76022836134f6565b9150613002826139e3565b604082019050919050565b600061301a6017836134f6565b915061302582613a32565b602082019050919050565b600061303d600583613507565b915061304882613a5b565b600582019050919050565b60006130606020836134f6565b915061306b82613a84565b602082019050919050565b6000613083602f836134f6565b915061308e82613aad565b604082019050919050565b60006130a66000836134eb565b91506130b182613afc565b600082019050919050565b60006130c96013836134f6565b91506130d482613aff565b602082019050919050565b60006130ec6018836134f6565b91506130f782613b28565b602082019050919050565b600061310f601f836134f6565b915061311a82613b51565b602082019050919050565b60006131326017836134f6565b915061313d82613b7a565b602082019050919050565b6000613155600183613507565b915061316082613ba3565b600182019050919050565b61317481613691565b82525050565b60006131868285612ebc565b915061319182613148565b915061319d8284612e8b565b91506131a882613030565b91508190509392505050565b60006131bf82613099565b9150819050919050565b60006020820190506131de6000830184612dfb565b92915050565b60006080820190506131f96000830187612dfb565b6132066020830186612dfb565b613213604083018561316b565b81810360608301526132258184612e19565b905095945050505050565b60006020820190506132456000830184612e0a565b92915050565b600060208201905081810360008301526132658184612e52565b905092915050565b6000602082019050818103600083015261328681612f3b565b9050919050565b600060208201905081810360008301526132a681612f5e565b9050919050565b600060208201905081810360008301526132c681612f81565b9050919050565b600060208201905081810360008301526132e681612fa4565b9050919050565b6000602082019050818103600083015261330681612fc7565b9050919050565b6000602082019050818103600083015261332681612fea565b9050919050565b600060208201905081810360008301526133468161300d565b9050919050565b6000602082019050818103600083015261336681613053565b9050919050565b6000602082019050818103600083015261338681613076565b9050919050565b600060208201905081810360008301526133a6816130bc565b9050919050565b600060208201905081810360008301526133c6816130df565b9050919050565b600060208201905081810360008301526133e681613102565b9050919050565b6000602082019050818103600083015261340681613125565b9050919050565b6000602082019050613422600083018461316b565b92915050565b6000613432613443565b905061343e828261370f565b919050565b6000604051905090565b600067ffffffffffffffff82111561346857613467613876565b5b613471826138b9565b9050602081019050919050565b600067ffffffffffffffff82111561349957613498613876565b5b6134a2826138b9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061351d82613691565b915061352883613691565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561355d5761355c6137ba565b5b828201905092915050565b600061357382613691565b915061357e83613691565b92508261358e5761358d6137e9565b5b828204905092915050565b60006135a482613691565b91506135af83613691565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135e8576135e76137ba565b5b828202905092915050565b60006135fe82613691565b915061360983613691565b92508282101561361c5761361b6137ba565b5b828203905092915050565b600061363282613671565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136c85780820151818401526020810190506136ad565b838111156136d7576000848401525b50505050565b600060028204905060018216806136f557607f821691505b6020821081141561370957613708613818565b5b50919050565b613718826138b9565b810181811067ffffffffffffffff8211171561373757613736613876565b5b80604052505050565b600061374b82613691565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561377e5761377d6137ba565b5b600182019050919050565b600061379482613691565b915061379f83613691565b9250826137af576137ae6137e9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e7473207065722077616c6c6574206578636565646564200000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613bd581613627565b8114613be057600080fd5b50565b613bec81613639565b8114613bf757600080fd5b50565b613c0381613645565b8114613c0e57600080fd5b50565b613c1a81613691565b8114613c2557600080fd5b5056fea26469706673582212207ef645a938605b85b25dadfcbf36fe9ddddc8ce0baea1b825c222497ad895d2464736f6c63430008070033697066733a2f2f516d5946627347626e6577473669784b4e484773766f5559334c6147775a79386f33554572733452526958506f79
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806370a0823111610102578063b88d4fde11610095578063e0c23b9411610064578063e0c23b9414610675578063e985e9c5146106a0578063efdc7788146106dd578063f2fde38b14610706576101d8565b8063b88d4fde146105b9578063c87b56dd146105e2578063d547cfb71461061f578063d5abeb011461064a576101d8565b806395d89b41116100d157806395d89b41146105205780639e9fcffc1461054b578063a0712d6814610574578063a22cb46514610590576101d8565b806370a0823114610476578063715018a6146104b35780637f205a74146104ca5780638da5cb5b146104f5576101d8565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b146103d057806342842e0e146103e757806355f804b3146104105780636352211e14610439576101d8565b806323b872dd1461032a57806328cad13d14610353578063351ed9511461037c578063375a069a146103a7576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab5780631919fed7146102d65780631e84c413146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612d2b565b61072f565b6040516102119190613230565b60405180910390f35b34801561022657600080fd5b5061022f610811565b60405161023c919061324b565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612dce565b6108a3565b60405161027991906131c9565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612cbe565b61091f565b005b3480156102b757600080fd5b506102c0610a2a565b6040516102cd919061340d565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612dce565b610a41565b005b34801561030b57600080fd5b50610314610ac7565b6040516103219190613230565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612ba8565b610ada565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612cfe565b610aea565b005b34801561038857600080fd5b50610391610b83565b60405161039e919061340d565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612dce565b610b89565b005b3480156103dc57600080fd5b506103e5610c12565b005b3480156103f357600080fd5b5061040e60048036038101906104099190612ba8565b610cf0565b005b34801561041c57600080fd5b5061043760048036038101906104329190612d85565b610d10565b005b34801561044557600080fd5b50610460600480360381019061045b9190612dce565b610da6565b60405161046d91906131c9565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190612b3b565b610dbc565b6040516104aa919061340d565b60405180910390f35b3480156104bf57600080fd5b506104c8610e8c565b005b3480156104d657600080fd5b506104df610f14565b6040516104ec919061340d565b60405180910390f35b34801561050157600080fd5b5061050a610f1a565b60405161051791906131c9565b60405180910390f35b34801561052c57600080fd5b50610535610f44565b604051610542919061324b565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190612dce565b610fd6565b005b61058e60048036038101906105899190612dce565b61105c565b005b34801561059c57600080fd5b506105b760048036038101906105b29190612c7e565b611207565b005b3480156105c557600080fd5b506105e060048036038101906105db9190612bfb565b61137f565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612dce565b6113fb565b604051610616919061324b565b60405180910390f35b34801561062b57600080fd5b50610634611477565b604051610641919061324b565b60405180910390f35b34801561065657600080fd5b5061065f611505565b60405161066c919061340d565b60405180910390f35b34801561068157600080fd5b5061068a61150b565b604051610697919061340d565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612b68565b611511565b6040516106d49190613230565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190612dce565b6115a5565b005b34801561071257600080fd5b5061072d60048036038101906107289190612b3b565b6116c8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080a5750610809826117c0565b5b9050919050565b606060028054610820906136dd565b80601f016020809104026020016040519081016040528092919081815260200182805461084c906136dd565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b60006108ae8261182a565b6108e4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092a82610da6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610992576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b1611878565b73ffffffffffffffffffffffffffffffffffffffff16141580156109e357506109e1816109dc611878565b611511565b155b15610a1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a25838383611880565b505050565b6000610a34611932565b6001546000540303905090565b610a49611878565b73ffffffffffffffffffffffffffffffffffffffff16610a67610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab49061334d565b60405180910390fd5b80600d8190555050565b600f60009054906101000a900460ff1681565b610ae583838361193b565b505050565b610af2611878565b73ffffffffffffffffffffffffffffffffffffffff16610b10610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d9061334d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600e5481565b610b91611878565b73ffffffffffffffffffffffffffffffffffffffff16610baf610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc9061334d565b60405180910390fd5b610c0f3382611df1565b50565b610c1a611878565b73ffffffffffffffffffffffffffffffffffffffff16610c38610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c859061334d565b60405180910390fd5b60026009541415610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb906133cd565b60405180910390fd5b6002600981905550610ce63347611e0f565b6001600981905550565b610d0b8383836040518060200160405280600081525061137f565b505050565b610d18611878565b73ffffffffffffffffffffffffffffffffffffffff16610d36610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d839061334d565b60405180910390fd5b80600a9080519060200190610da292919061290c565b5050565b6000610db182611f03565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e24576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e94611878565b73ffffffffffffffffffffffffffffffffffffffff16610eb2610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff9061334d565b60405180910390fd5b610f126000612192565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f53906136dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7f906136dd565b8015610fcc5780601f10610fa157610100808354040283529160200191610fcc565b820191906000526020600020905b815481529060010190602001808311610faf57829003601f168201915b5050505050905090565b610fde611878565b73ffffffffffffffffffffffffffffffffffffffff16610ffc610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614611052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110499061334d565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff166110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a2906133ed565b60405180910390fd5b6001600b546110ba9190613512565b816110c3610a2a565b6110cd9190613512565b1061110d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111049061326d565b60405180910390fd5b600e548161111a33610dbc565b6111249190613512565b1115611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c906132ad565b60405180910390fd5b600c548111156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a19061330d565b60405180910390fd5b3481600d546111b99190613599565b11156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f1906133ad565b60405180910390fd5b6112043382611df1565b50565b61120f611878565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611274576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611281611878565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661132e611878565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113739190613230565b60405180910390a35050565b61138a84848461193b565b6113a98373ffffffffffffffffffffffffffffffffffffffff16612258565b80156113be57506113bc8484848461227b565b155b156113f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114068261182a565b611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143c9061336d565b60405180910390fd5b600a611450836123db565b60405160200161146192919061317a565b6040516020818303038152906040529050919050565b600a8054611484906136dd565b80601f01602080910402602001604051908101604052809291908181526020018280546114b0906136dd565b80156114fd5780601f106114d2576101008083540402835291602001916114fd565b820191906000526020600020905b8154815290600101906020018083116114e057829003601f168201915b505050505081565b600b5481565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115ad611878565b73ffffffffffffffffffffffffffffffffffffffff166115cb610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116189061334d565b60405180910390fd5b60008111611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b9061338d565b60405180910390fd5b600b5481611670610a2a565b61167a9190613512565b11156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b29061332d565b60405180910390fd5b6116c53382611df1565b50565b6116d0611878565b73ffffffffffffffffffffffffffffffffffffffff166116ee610f1a565b73ffffffffffffffffffffffffffffffffffffffff1614611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b9061334d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab9061328d565b60405180910390fd5b6117bd81612192565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611835611932565b11158015611844575060005482105b8015611871575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061194682611f03565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146119b1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166119d2611878565b73ffffffffffffffffffffffffffffffffffffffff161480611a015750611a00856119fb611878565b611511565b5b80611a465750611a0f611878565b73ffffffffffffffffffffffffffffffffffffffff16611a2e846108a3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a7f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ae6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611af3858585600161253c565b611aff60008487611880565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d7f576000548214611d7e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dea8585856001612542565b5050505050565b611e0b828260405180602001604052806000815250612548565b5050565b80471015611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e49906132ed565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611e78906131b4565b60006040518083038185875af1925050503d8060008114611eb5576040519150601f19603f3d011682016040523d82523d6000602084013e611eba565b606091505b5050905080611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef5906132cd565b60405180910390fd5b505050565b611f0b612992565b600082905080611f19611932565b11158015611f28575060005481105b1561215b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161215957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461203d57809250505061218d565b5b60011561215857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461215357809250505061218d565b61203e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122a1611878565b8786866040518563ffffffff1660e01b81526004016122c394939291906131e4565b602060405180830381600087803b1580156122dd57600080fd5b505af192505050801561230e57506040513d601f19601f8201168201806040525081019061230b9190612d58565b60015b612388573d806000811461233e576040519150601f19603f3d011682016040523d82523d6000602084013e612343565b606091505b50600081511415612380576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612423576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612537565b600082905060005b6000821461245557808061243e90613740565b915050600a8261244e9190613568565b915061242b565b60008167ffffffffffffffff81111561247157612470613876565b5b6040519080825280601f01601f1916602001820160405280156124a35781602001600182028036833780820191505090505b5090505b60008514612530576001826124bc91906135f3565b9150600a856124cb9190613789565b60306124d79190613512565b60f81b8183815181106124ed576124ec613847565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125299190613568565b94506124a7565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125b5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156125f0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125fd600085838661253c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506127be8673ffffffffffffffffffffffffffffffffffffffff16612258565b15612884575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612833600087848060010195508761227b565b612869576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156127c457826000541461287f57600080fd5b6128f0565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612885575b8160008190555050506129066000858386612542565b50505050565b828054612918906136dd565b90600052602060002090601f01602090048101928261293a5760008555612981565b82601f1061295357805160ff1916838001178555612981565b82800160010185558215612981579182015b82811115612980578251825591602001919060010190612965565b5b50905061298e91906129d5565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156129ee5760008160009055506001016129d6565b5090565b6000612a05612a008461344d565b613428565b905082815260208101848484011115612a2157612a206138aa565b5b612a2c84828561369b565b509392505050565b6000612a47612a428461347e565b613428565b905082815260208101848484011115612a6357612a626138aa565b5b612a6e84828561369b565b509392505050565b600081359050612a8581613bcc565b92915050565b600081359050612a9a81613be3565b92915050565b600081359050612aaf81613bfa565b92915050565b600081519050612ac481613bfa565b92915050565b600082601f830112612adf57612ade6138a5565b5b8135612aef8482602086016129f2565b91505092915050565b600082601f830112612b0d57612b0c6138a5565b5b8135612b1d848260208601612a34565b91505092915050565b600081359050612b3581613c11565b92915050565b600060208284031215612b5157612b506138b4565b5b6000612b5f84828501612a76565b91505092915050565b60008060408385031215612b7f57612b7e6138b4565b5b6000612b8d85828601612a76565b9250506020612b9e85828601612a76565b9150509250929050565b600080600060608486031215612bc157612bc06138b4565b5b6000612bcf86828701612a76565b9350506020612be086828701612a76565b9250506040612bf186828701612b26565b9150509250925092565b60008060008060808587031215612c1557612c146138b4565b5b6000612c2387828801612a76565b9450506020612c3487828801612a76565b9350506040612c4587828801612b26565b925050606085013567ffffffffffffffff811115612c6657612c656138af565b5b612c7287828801612aca565b91505092959194509250565b60008060408385031215612c9557612c946138b4565b5b6000612ca385828601612a76565b9250506020612cb485828601612a8b565b9150509250929050565b60008060408385031215612cd557612cd46138b4565b5b6000612ce385828601612a76565b9250506020612cf485828601612b26565b9150509250929050565b600060208284031215612d1457612d136138b4565b5b6000612d2284828501612a8b565b91505092915050565b600060208284031215612d4157612d406138b4565b5b6000612d4f84828501612aa0565b91505092915050565b600060208284031215612d6e57612d6d6138b4565b5b6000612d7c84828501612ab5565b91505092915050565b600060208284031215612d9b57612d9a6138b4565b5b600082013567ffffffffffffffff811115612db957612db86138af565b5b612dc584828501612af8565b91505092915050565b600060208284031215612de457612de36138b4565b5b6000612df284828501612b26565b91505092915050565b612e0481613627565b82525050565b612e1381613639565b82525050565b6000612e24826134c4565b612e2e81856134da565b9350612e3e8185602086016136aa565b612e47816138b9565b840191505092915050565b6000612e5d826134cf565b612e6781856134f6565b9350612e778185602086016136aa565b612e80816138b9565b840191505092915050565b6000612e96826134cf565b612ea08185613507565b9350612eb08185602086016136aa565b80840191505092915050565b60008154612ec9816136dd565b612ed38186613507565b94506001821660008114612eee5760018114612eff57612f32565b60ff19831686528186019350612f32565b612f08856134af565b60005b83811015612f2a57815481890152600182019150602081019050612f0b565b838801955050505b50505092915050565b6000612f486007836134f6565b9150612f53826138ca565b602082019050919050565b6000612f6b6026836134f6565b9150612f76826138f3565b604082019050919050565b6000612f8e601e836134f6565b9150612f9982613942565b602082019050919050565b6000612fb1603a836134f6565b9150612fbc8261396b565b604082019050919050565b6000612fd4601d836134f6565b9150612fdf826139ba565b602082019050919050565b6000612ff76022836134f6565b9150613002826139e3565b604082019050919050565b600061301a6017836134f6565b915061302582613a32565b602082019050919050565b600061303d600583613507565b915061304882613a5b565b600582019050919050565b60006130606020836134f6565b915061306b82613a84565b602082019050919050565b6000613083602f836134f6565b915061308e82613aad565b604082019050919050565b60006130a66000836134eb565b91506130b182613afc565b600082019050919050565b60006130c96013836134f6565b91506130d482613aff565b602082019050919050565b60006130ec6018836134f6565b91506130f782613b28565b602082019050919050565b600061310f601f836134f6565b915061311a82613b51565b602082019050919050565b60006131326017836134f6565b915061313d82613b7a565b602082019050919050565b6000613155600183613507565b915061316082613ba3565b600182019050919050565b61317481613691565b82525050565b60006131868285612ebc565b915061319182613148565b915061319d8284612e8b565b91506131a882613030565b91508190509392505050565b60006131bf82613099565b9150819050919050565b60006020820190506131de6000830184612dfb565b92915050565b60006080820190506131f96000830187612dfb565b6132066020830186612dfb565b613213604083018561316b565b81810360608301526132258184612e19565b905095945050505050565b60006020820190506132456000830184612e0a565b92915050565b600060208201905081810360008301526132658184612e52565b905092915050565b6000602082019050818103600083015261328681612f3b565b9050919050565b600060208201905081810360008301526132a681612f5e565b9050919050565b600060208201905081810360008301526132c681612f81565b9050919050565b600060208201905081810360008301526132e681612fa4565b9050919050565b6000602082019050818103600083015261330681612fc7565b9050919050565b6000602082019050818103600083015261332681612fea565b9050919050565b600060208201905081810360008301526133468161300d565b9050919050565b6000602082019050818103600083015261336681613053565b9050919050565b6000602082019050818103600083015261338681613076565b9050919050565b600060208201905081810360008301526133a6816130bc565b9050919050565b600060208201905081810360008301526133c6816130df565b9050919050565b600060208201905081810360008301526133e681613102565b9050919050565b6000602082019050818103600083015261340681613125565b9050919050565b6000602082019050613422600083018461316b565b92915050565b6000613432613443565b905061343e828261370f565b919050565b6000604051905090565b600067ffffffffffffffff82111561346857613467613876565b5b613471826138b9565b9050602081019050919050565b600067ffffffffffffffff82111561349957613498613876565b5b6134a2826138b9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061351d82613691565b915061352883613691565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561355d5761355c6137ba565b5b828201905092915050565b600061357382613691565b915061357e83613691565b92508261358e5761358d6137e9565b5b828204905092915050565b60006135a482613691565b91506135af83613691565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135e8576135e76137ba565b5b828202905092915050565b60006135fe82613691565b915061360983613691565b92508282101561361c5761361b6137ba565b5b828203905092915050565b600061363282613671565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136c85780820151818401526020810190506136ad565b838111156136d7576000848401525b50505050565b600060028204905060018216806136f557607f821691505b6020821081141561370957613708613818565b5b50919050565b613718826138b9565b810181811067ffffffffffffffff8211171561373757613736613876565b5b80604052505050565b600061374b82613691565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561377e5761377d6137ba565b5b600182019050919050565b600061379482613691565b915061379f83613691565b9250826137af576137ae6137e9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e7473207065722077616c6c6574206578636565646564200000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613bd581613627565b8114613be057600080fd5b50565b613bec81613639565b8114613bf757600080fd5b50565b613c0381613645565b8114613c0e57600080fd5b50565b613c1a81613691565b8114613c2557600080fd5b5056fea26469706673582212207ef645a938605b85b25dadfcbf36fe9ddddc8ce0baea1b825c222497ad895d2464736f6c63430008070033
Deployed Bytecode Sourcemap
49995:2826:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30481:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33676:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35276:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34839:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29730:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52600:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50378:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36264:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52434:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50340:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51142:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51656:130;;;;;;;;;;;;;:::i;:::-;;36505:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51256:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33484:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30900:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7571:103;;;;;;;;;;;;;:::i;:::-;;50294:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6920:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33845:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52703:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50477:657;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35593:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36761:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51794:511;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50122:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50213:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50251:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35983:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51365:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7829:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30481:355;30628:4;30685:25;30670:40;;;:11;:40;;;;:105;;;;30742:33;30727:48;;;:11;:48;;;;30670:105;:158;;;;30792:36;30816:11;30792:23;:36::i;:::-;30670:158;30650:178;;30481:355;;;:::o;33676:100::-;33730:13;33763:5;33756:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33676:100;:::o;35276:245::-;35380:7;35410:16;35418:7;35410;:16::i;:::-;35405:64;;35435:34;;;;;;;;;;;;;;35405:64;35489:15;:24;35505:7;35489:24;;;;;;;;;;;;;;;;;;;;;35482:31;;35276:245;;;:::o;34839:371::-;34912:13;34928:24;34944:7;34928:15;:24::i;:::-;34912:40;;34973:5;34967:11;;:2;:11;;;34963:48;;;34987:24;;;;;;;;;;;;;;34963:48;35044:5;35028:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35054:37;35071:5;35078:12;:10;:12::i;:::-;35054:16;:37::i;:::-;35053:38;35028:63;35024:138;;;35115:35;;;;;;;;;;;;;;35024:138;35174:28;35183:2;35187:7;35196:5;35174:8;:28::i;:::-;34901:309;34839:371;;:::o;29730:303::-;29774:7;29999:15;:13;:15::i;:::-;29984:12;;29968:13;;:28;:46;29961:53;;29730:303;:::o;52600:95::-;7151:12;:10;:12::i;:::-;7140:23;;:7;:5;:7::i;:::-;:23;;;7132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52681:6:::1;52668:10;:19;;;;52600:95:::0;:::o;50378:38::-;;;;;;;;;;;;;:::o;36264:170::-;36398:28;36408:4;36414:2;36418:7;36398:9;:28::i;:::-;36264:170;;;:::o;52434:158::-;7151:12;:10;:12::i;:::-;7140:23;;:7;:5;:7::i;:::-;:23;;;7132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52565:19:::1;52544:18;;:40;;;;;;;;;;;;;;;;;;52434:158:::0;:::o;50340:31::-;;;;:::o;51142:106::-;7151:12;:10;:12::i;:::-;7140:23;;:7;:5;:7::i;:::-;:23;;;7132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51208:32:::1;51218:10;51230:9;51208;:32::i;:::-;51142:106:::0;:::o;51656:130::-;7151:12;:10;:12::i;:::-;7140:23;;:7;:5;:7::i;:::-;:23;;;7132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;51717:61:::2;51743:10;51756:21;51717:17;:61::i;:::-;1801:1:::1;2755:7;:22;;;;51656:130::o:0;36505:185::-;36643:39;36660:4;36666:2;36670:7;36643:39;;;;;;;;;;;;:16;:39::i;:::-;36505:185;;;:::o;51256:101::-;7151:12;:10;:12::i;:::-;7140:23;;:7;:5;:7::i;:::-;:23;;;7132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51342:7:::1;51327:12;:22;;;;;;;;;;;;:::i;:::-;;51256:101:::0;:::o;33484:125::-;33548:7;33575:21;33588:7;33575:12;:21::i;:::-;:26;;;33568:33;;33484:125;;;:::o;30900:206::-;30964:7;31005:1;30988:19;;:5;:19;;;30984:60;;;31016:28;;;;;;;;;;;;;;30984:60;31070:12;:19;31083:5;31070:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31062:36;;31055:43;;30900:206;;;:::o;7571:103::-;7151:12;:10;:12::i;:::-;7140:23;;:7;:5;:7::i;:::-;:23;;;7132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7636:30:::1;7663:1;7636:18;:30::i;:::-;7571:103::o:0;50294:39::-;;;;:::o;6920:87::-;6966:7;6993:6;;;;;;;;;;;6986:13;;6920:87;:::o;33845:104::-;33901:13;33934:7;33927:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33845:104;:::o;52703:115::-;7151:12;:10;:12::i;:::-;7140:23;;:7;:5;:7::i;:::-;:23;;;7132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52804:6:::1;52784:17;:26;;;;52703:115:::0;:::o;50477:657::-;50551:18;;;;;;;;;;;50543:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;50661:1;50649:9;;:13;;;;:::i;:::-;50632:14;50616:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;50608:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50749:12;;50731:14;50707:21;50717:10;50707:9;:21::i;:::-;:38;;;;:::i;:::-;:54;;50685:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;50870:17;;50852:14;:35;;50830:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;51015:9;50996:14;50983:10;;:27;;;;:::i;:::-;50982:42;;50960:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;51089:37;51099:10;51111:14;51089:9;:37::i;:::-;50477:657;:::o;35593:319::-;35736:12;:10;:12::i;:::-;35724:24;;:8;:24;;;35720:54;;;35757:17;;;;;;;;;;;;;;35720:54;35832:8;35787:18;:32;35806:12;:10;:12::i;:::-;35787:32;;;;;;;;;;;;;;;:42;35820:8;35787:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35885:8;35856:48;;35871:12;:10;:12::i;:::-;35856:48;;;35895:8;35856:48;;;;;;:::i;:::-;;;;;;;;35593:319;;:::o;36761:406::-;36928:28;36938:4;36944:2;36948:7;36928:9;:28::i;:::-;36985:15;:2;:13;;;:15::i;:::-;:89;;;;;37018:56;37049:4;37055:2;37059:7;37068:5;37018:30;:56::i;:::-;37017:57;36985:89;36967:193;;;37108:40;;;;;;;;;;;;;;36967:193;36761:406;;;;:::o;51794:511::-;51913:13;51966:17;51974:8;51966:7;:17::i;:::-;51944:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;52153:12;52214:19;:8;:17;:19::i;:::-;52114:168;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52069:228;;51794:511;;;:::o;50122:84::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50213:31::-;;;;:::o;50251:36::-;;;;:::o;35983:214::-;36125:4;36154:18;:25;36173:5;36154:25;;;;;;;;;;;;;;;:35;36180:8;36154:35;;;;;;;;;;;;;;;;;;;;;;;;;36147:42;;35983:214;;;;:::o;51365:283::-;7151:12;:10;:12::i;:::-;7140:23;;:7;:5;:7::i;:::-;:23;;;7132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51452:1:::1;51441:8;:12;51433:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;51538:9;;51526:8;51510:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;51488:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;51609:31;51619:10;51631:8;51609:9;:31::i;:::-;51365:283:::0;:::o;7829:238::-;7151:12;:10;:12::i;:::-;7140:23;;:7;:5;:7::i;:::-;:23;;;7132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7952:1:::1;7932:22;;:8;:22;;;;7910:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;8031:28;8050:8;8031:18;:28::i;:::-;7829:238:::0;:::o;20198:207::-;20328:4;20372:25;20357:40;;;:11;:40;;;;20350:47;;20198:207;;;:::o;37422:213::-;37479:4;37535:7;37516:15;:13;:15::i;:::-;:26;;:66;;;;;37569:13;;37559:7;:23;37516:66;:111;;;;;37600:11;:20;37612:7;37600:20;;;;;;;;;;;:27;;;;;;;;;;;;37599:28;37516:111;37496:131;;37422:213;;;:::o;5623:98::-;5676:7;5703:10;5696:17;;5623:98;:::o;46877:196::-;47019:2;46992:15;:24;47008:7;46992:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47057:7;47053:2;47037:28;;47046:5;47037:28;;;;;;;;;;;;46877:196;;;:::o;29504:92::-;29560:7;29587:1;29580:8;;29504:92;:::o;41825:2130::-;41940:35;41978:21;41991:7;41978:12;:21::i;:::-;41940:59;;42038:4;42016:26;;:13;:18;;;:26;;;42012:67;;42051:28;;;;;;;;;;;;;;42012:67;42092:22;42134:4;42118:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42155:36;42172:4;42178:12;:10;:12::i;:::-;42155:16;:36::i;:::-;42118:73;:126;;;;42232:12;:10;:12::i;:::-;42208:36;;:20;42220:7;42208:11;:20::i;:::-;:36;;;42118:126;42092:153;;42263:17;42258:66;;42289:35;;;;;;;;;;;;;;42258:66;42353:1;42339:16;;:2;:16;;;42335:52;;;42364:23;;;;;;;;;;;;;;42335:52;42400:43;42422:4;42428:2;42432:7;42441:1;42400:21;:43::i;:::-;42508:35;42525:1;42529:7;42538:4;42508:8;:35::i;:::-;42869:1;42839:12;:18;42852:4;42839:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42913:1;42885:12;:16;42898:2;42885:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42931:31;42965:11;:20;42977:7;42965:20;;;;;;;;;;;42931:54;;43016:2;43000:8;:13;;;:18;;;;;;;;;;;;;;;;;;43066:15;43033:8;:23;;;:49;;;;;;;;;;;;;;;;;;43334:19;43366:1;43356:7;:11;43334:33;;43382:31;43416:11;:24;43428:11;43416:24;;;;;;;;;;;43382:58;;43484:1;43459:27;;:8;:13;;;;;;;;;;;;:27;;;43455:384;;;43669:13;;43654:11;:28;43650:174;;43723:4;43707:8;:13;;;:20;;;;;;;;;;;;;;;;;;43776:13;:28;;;43750:8;:23;;;:54;;;;;;;;;;;;;;;;;;43650:174;43455:384;42814:1036;;;43886:7;43882:2;43867:27;;43876:4;43867:27;;;;;;;;;;;;43905:42;43926:4;43932:2;43936:7;43945:1;43905:20;:42::i;:::-;41929:2026;;41825:2130;;;:::o;37719:104::-;37788:27;37798:2;37802:8;37788:27;;;;;;;;;;;;:9;:27::i;:::-;37719:104;;:::o;10917:391::-;11046:6;11021:21;:31;;10999:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;11123:12;11141:9;:14;;11163:6;11141:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11122:52;;;11207:7;11185:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;10988:320;10917:391;;:::o;32281:1141::-;32370:21;;:::i;:::-;32409:12;32424:7;32409:22;;32492:4;32473:15;:13;:15::i;:::-;:23;;:47;;;;;32507:13;;32500:4;:20;32473:47;32469:886;;;32541:31;32575:11;:17;32587:4;32575:17;;;;;;;;;;;32541:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32616:9;:16;;;32611:729;;32687:1;32661:28;;:9;:14;;;:28;;;32657:101;;32725:9;32718:16;;;;;;32657:101;33060:261;33067:4;33060:261;;;33100:6;;;;;;;;33145:11;:17;33157:4;33145:17;;;;;;;;;;;33133:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33219:1;33193:28;;:9;:14;;;:28;;;33189:109;;33261:9;33254:16;;;;;;33189:109;33060:261;;;32611:729;32522:833;32469:886;33383:31;;;;;;;;;;;;;;32281:1141;;;;:::o;8227:191::-;8301:16;8320:6;;;;;;;;;;;8301:25;;8346:8;8337:6;;:17;;;;;;;;;;;;;;;;;;8401:8;8370:40;;8391:8;8370:40;;;;;;;;;;;;8290:128;8227:191;:::o;9656:326::-;9716:4;9973:1;9951:7;:19;;;:23;9944:30;;9656:326;;;:::o;47565:772::-;47728:4;47778:2;47762:36;;;47817:12;:10;:12::i;:::-;47848:4;47871:7;47897:5;47762:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47745:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48105:1;48088:6;:13;:18;48084:235;;;48134:40;;;;;;;;;;;;;;48084:235;48277:6;48271:13;48262:6;48258:2;48254:15;48247:38;47745:585;47983:45;;;47973:55;;;:6;:55;;;;47966:62;;;47565:772;;;;;;:::o;3155:723::-;3211:13;3441:1;3432:5;:10;3428:53;;;3459:10;;;;;;;;;;;;;;;;;;;;;3428:53;3491:12;3506:5;3491:20;;3522:14;3547:78;3562:1;3554:4;:9;3547:78;;3580:8;;;;;:::i;:::-;;;;3611:2;3603:10;;;;;:::i;:::-;;;3547:78;;;3635:19;3667:6;3657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3635:39;;3685:154;3701:1;3692:5;:10;3685:154;;3729:1;3719:11;;;;;:::i;:::-;;;3796:2;3788:5;:10;;;;:::i;:::-;3775:2;:24;;;;:::i;:::-;3762:39;;3745:6;3752;3745:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3825:2;3816:11;;;;;:::i;:::-;;;3685:154;;;3863:6;3849:21;;;;;3155:723;;;;:::o;48985:159::-;;;;;:::o;49803:158::-;;;;;:::o;38196:1942::-;38319:20;38342:13;;38319:36;;38384:1;38370:16;;:2;:16;;;38366:48;;;38395:19;;;;;;;;;;;;;;38366:48;38441:1;38429:8;:13;38425:44;;;38451:18;;;;;;;;;;;;;;38425:44;38482:61;38512:1;38516:2;38520:12;38534:8;38482:21;:61::i;:::-;38855:8;38820:12;:16;38833:2;38820:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38919:8;38879:12;:16;38892:2;38879:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38978:2;38945:11;:25;38957:12;38945:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39045:15;38995:11;:25;39007:12;38995:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39078:20;39101:12;39078:35;;39128:11;39157:8;39142:12;:23;39128:37;;39186:15;:2;:13;;;:15::i;:::-;39182:824;;;39222:505;39278:12;39274:2;39253:38;;39270:1;39253:38;;;;;;;;;;;;39345:212;39414:1;39447:2;39480:14;;;;;;39525:5;39345:30;:212::i;:::-;39314:365;;39615:40;;;;;;;;;;;;;;39314:365;39722:3;39706:12;:19;;39222:505;;39808:12;39791:13;;:29;39787:43;;39822:8;;;39787:43;39182:824;;;39871:120;39927:14;;;;;;39923:2;39902:40;;39919:1;39902:40;;;;;;;;;;;;39986:3;39970:12;:19;;39871:120;;39182:824;40036:12;40020:13;:28;;;;38795:1265;;40070:60;40099:1;40103:2;40107:12;40121:8;40070:20;:60::i;:::-;38308:1830;38196:1942;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:365::-;9862:3;9883:66;9947:1;9942:3;9883:66;:::i;:::-;9876:73;;9958:93;10047:3;9958:93;:::i;:::-;10076:2;10071:3;10067:12;10060:19;;9720:365;;;:::o;10091:366::-;10233:3;10254:67;10318:2;10313:3;10254:67;:::i;:::-;10247:74;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10091:366;;;:::o;10463:::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:::-;11349:3;11370:67;11434:2;11429:3;11370:67;:::i;:::-;11363:74;;11446:93;11535:3;11446:93;:::i;:::-;11564:2;11559:3;11555:12;11548:19;;11207:366;;;:::o;11579:::-;11721:3;11742:67;11806:2;11801:3;11742:67;:::i;:::-;11735:74;;11818:93;11907:3;11818:93;:::i;:::-;11936:2;11931:3;11927:12;11920:19;;11579:366;;;:::o;11951:::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:400::-;12483:3;12504:84;12586:1;12581:3;12504:84;:::i;:::-;12497:91;;12597:93;12686:3;12597:93;:::i;:::-;12715:1;12710:3;12706:11;12699:18;;12323:400;;;:::o;12729:366::-;12871:3;12892:67;12956:2;12951:3;12892:67;:::i;:::-;12885:74;;12968:93;13057:3;12968:93;:::i;:::-;13086:2;13081:3;13077:12;13070:19;;12729:366;;;:::o;13101:::-;13243:3;13264:67;13328:2;13323:3;13264:67;:::i;:::-;13257:74;;13340:93;13429:3;13340:93;:::i;:::-;13458:2;13453:3;13449:12;13442:19;;13101:366;;;:::o;13473:398::-;13632:3;13653:83;13734:1;13729:3;13653:83;:::i;:::-;13646:90;;13745:93;13834:3;13745:93;:::i;:::-;13863:1;13858:3;13854:11;13847:18;;13473:398;;;:::o;13877:366::-;14019:3;14040:67;14104:2;14099:3;14040:67;:::i;:::-;14033:74;;14116:93;14205:3;14116:93;:::i;:::-;14234:2;14229:3;14225:12;14218:19;;13877:366;;;:::o;14249:::-;14391:3;14412:67;14476:2;14471:3;14412:67;:::i;:::-;14405:74;;14488:93;14577:3;14488:93;:::i;:::-;14606:2;14601:3;14597:12;14590:19;;14249:366;;;:::o;14621:::-;14763:3;14784:67;14848:2;14843:3;14784:67;:::i;:::-;14777:74;;14860:93;14949:3;14860:93;:::i;:::-;14978:2;14973:3;14969:12;14962:19;;14621:366;;;:::o;14993:::-;15135:3;15156:67;15220:2;15215:3;15156:67;:::i;:::-;15149:74;;15232:93;15321:3;15232:93;:::i;:::-;15350:2;15345:3;15341:12;15334:19;;14993:366;;;:::o;15365:400::-;15525:3;15546:84;15628:1;15623:3;15546:84;:::i;:::-;15539:91;;15639:93;15728:3;15639:93;:::i;:::-;15757:1;15752:3;15748:11;15741:18;;15365:400;;;:::o;15771:118::-;15858:24;15876:5;15858:24;:::i;:::-;15853:3;15846:37;15771:118;;:::o;15895:961::-;16274:3;16296:92;16384:3;16375:6;16296:92;:::i;:::-;16289:99;;16405:148;16549:3;16405:148;:::i;:::-;16398:155;;16570:95;16661:3;16652:6;16570:95;:::i;:::-;16563:102;;16682:148;16826:3;16682:148;:::i;:::-;16675:155;;16847:3;16840:10;;15895:961;;;;;:::o;16862:379::-;17046:3;17068:147;17211:3;17068:147;:::i;:::-;17061:154;;17232:3;17225:10;;16862:379;;;:::o;17247:222::-;17340:4;17378:2;17367:9;17363:18;17355:26;;17391:71;17459:1;17448:9;17444:17;17435:6;17391:71;:::i;:::-;17247:222;;;;:::o;17475:640::-;17670:4;17708:3;17697:9;17693:19;17685:27;;17722:71;17790:1;17779:9;17775:17;17766:6;17722:71;:::i;:::-;17803:72;17871:2;17860:9;17856:18;17847:6;17803:72;:::i;:::-;17885;17953:2;17942:9;17938:18;17929:6;17885:72;:::i;:::-;18004:9;17998:4;17994:20;17989:2;17978:9;17974:18;17967:48;18032:76;18103:4;18094:6;18032:76;:::i;:::-;18024:84;;17475:640;;;;;;;:::o;18121:210::-;18208:4;18246:2;18235:9;18231:18;18223:26;;18259:65;18321:1;18310:9;18306:17;18297:6;18259:65;:::i;:::-;18121:210;;;;:::o;18337:313::-;18450:4;18488:2;18477:9;18473:18;18465:26;;18537:9;18531:4;18527:20;18523:1;18512:9;18508:17;18501:47;18565:78;18638:4;18629:6;18565:78;:::i;:::-;18557:86;;18337:313;;;;:::o;18656:419::-;18822:4;18860:2;18849:9;18845:18;18837:26;;18909:9;18903:4;18899:20;18895:1;18884:9;18880:17;18873:47;18937:131;19063:4;18937:131;:::i;:::-;18929:139;;18656:419;;;:::o;19081:::-;19247:4;19285:2;19274:9;19270:18;19262:26;;19334:9;19328:4;19324:20;19320:1;19309:9;19305:17;19298:47;19362:131;19488:4;19362:131;:::i;:::-;19354:139;;19081:419;;;:::o;19506:::-;19672:4;19710:2;19699:9;19695:18;19687:26;;19759:9;19753:4;19749:20;19745:1;19734:9;19730:17;19723:47;19787:131;19913:4;19787:131;:::i;:::-;19779:139;;19506:419;;;:::o;19931:::-;20097:4;20135:2;20124:9;20120:18;20112:26;;20184:9;20178:4;20174:20;20170:1;20159:9;20155:17;20148:47;20212:131;20338:4;20212:131;:::i;:::-;20204:139;;19931:419;;;:::o;20356:::-;20522:4;20560:2;20549:9;20545:18;20537:26;;20609:9;20603:4;20599:20;20595:1;20584:9;20580:17;20573:47;20637:131;20763:4;20637:131;:::i;:::-;20629:139;;20356:419;;;:::o;20781:::-;20947:4;20985:2;20974:9;20970:18;20962:26;;21034:9;21028:4;21024:20;21020:1;21009:9;21005:17;20998:47;21062:131;21188:4;21062:131;:::i;:::-;21054:139;;20781:419;;;:::o;21206:::-;21372:4;21410:2;21399:9;21395:18;21387:26;;21459:9;21453:4;21449:20;21445:1;21434:9;21430:17;21423:47;21487:131;21613:4;21487:131;:::i;:::-;21479:139;;21206:419;;;:::o;21631:::-;21797:4;21835:2;21824:9;21820:18;21812:26;;21884:9;21878:4;21874:20;21870:1;21859:9;21855:17;21848:47;21912:131;22038:4;21912:131;:::i;:::-;21904:139;;21631:419;;;:::o;22056:::-;22222:4;22260:2;22249:9;22245:18;22237:26;;22309:9;22303:4;22299:20;22295:1;22284:9;22280:17;22273:47;22337:131;22463:4;22337:131;:::i;:::-;22329:139;;22056:419;;;:::o;22481:::-;22647:4;22685:2;22674:9;22670:18;22662:26;;22734:9;22728:4;22724:20;22720:1;22709:9;22705:17;22698:47;22762:131;22888:4;22762:131;:::i;:::-;22754:139;;22481:419;;;:::o;22906:::-;23072:4;23110:2;23099:9;23095:18;23087:26;;23159:9;23153:4;23149:20;23145:1;23134:9;23130:17;23123:47;23187:131;23313:4;23187:131;:::i;:::-;23179:139;;22906:419;;;:::o;23331:::-;23497:4;23535:2;23524:9;23520:18;23512:26;;23584:9;23578:4;23574:20;23570:1;23559:9;23555:17;23548:47;23612:131;23738:4;23612:131;:::i;:::-;23604:139;;23331:419;;;:::o;23756:::-;23922:4;23960:2;23949:9;23945:18;23937:26;;24009:9;24003:4;23999:20;23995:1;23984:9;23980:17;23973:47;24037:131;24163:4;24037:131;:::i;:::-;24029:139;;23756:419;;;:::o;24181:222::-;24274:4;24312:2;24301:9;24297:18;24289:26;;24325:71;24393:1;24382:9;24378:17;24369:6;24325:71;:::i;:::-;24181:222;;;;:::o;24409:129::-;24443:6;24470:20;;:::i;:::-;24460:30;;24499:33;24527:4;24519:6;24499:33;:::i;:::-;24409:129;;;:::o;24544:75::-;24577:6;24610:2;24604:9;24594:19;;24544:75;:::o;24625:307::-;24686:4;24776:18;24768:6;24765:30;24762:56;;;24798:18;;:::i;:::-;24762:56;24836:29;24858:6;24836:29;:::i;:::-;24828:37;;24920:4;24914;24910:15;24902:23;;24625:307;;;:::o;24938:308::-;25000:4;25090:18;25082:6;25079:30;25076:56;;;25112:18;;:::i;:::-;25076:56;25150:29;25172:6;25150:29;:::i;:::-;25142:37;;25234:4;25228;25224:15;25216:23;;24938:308;;;:::o;25252:141::-;25301:4;25324:3;25316:11;;25347:3;25344:1;25337:14;25381:4;25378:1;25368:18;25360:26;;25252:141;;;:::o;25399:98::-;25450:6;25484:5;25478:12;25468:22;;25399:98;;;:::o;25503:99::-;25555:6;25589:5;25583:12;25573:22;;25503:99;;;:::o;25608:168::-;25691:11;25725:6;25720:3;25713:19;25765:4;25760:3;25756:14;25741:29;;25608:168;;;;:::o;25782:147::-;25883:11;25920:3;25905:18;;25782:147;;;;:::o;25935:169::-;26019:11;26053:6;26048:3;26041:19;26093:4;26088:3;26084:14;26069:29;;25935:169;;;;:::o;26110:148::-;26212:11;26249:3;26234:18;;26110:148;;;;:::o;26264:305::-;26304:3;26323:20;26341:1;26323:20;:::i;:::-;26318:25;;26357:20;26375:1;26357:20;:::i;:::-;26352:25;;26511:1;26443:66;26439:74;26436:1;26433:81;26430:107;;;26517:18;;:::i;:::-;26430:107;26561:1;26558;26554:9;26547:16;;26264:305;;;;:::o;26575:185::-;26615:1;26632:20;26650:1;26632:20;:::i;:::-;26627:25;;26666:20;26684:1;26666:20;:::i;:::-;26661:25;;26705:1;26695:35;;26710:18;;:::i;:::-;26695:35;26752:1;26749;26745:9;26740:14;;26575:185;;;;:::o;26766:348::-;26806:7;26829:20;26847:1;26829:20;:::i;:::-;26824:25;;26863:20;26881:1;26863:20;:::i;:::-;26858:25;;27051:1;26983:66;26979:74;26976:1;26973:81;26968:1;26961:9;26954:17;26950:105;26947:131;;;27058:18;;:::i;:::-;26947:131;27106:1;27103;27099:9;27088:20;;26766:348;;;;:::o;27120:191::-;27160:4;27180:20;27198:1;27180:20;:::i;:::-;27175:25;;27214:20;27232:1;27214:20;:::i;:::-;27209:25;;27253:1;27250;27247:8;27244:34;;;27258:18;;:::i;:::-;27244:34;27303:1;27300;27296:9;27288:17;;27120:191;;;;:::o;27317:96::-;27354:7;27383:24;27401:5;27383:24;:::i;:::-;27372:35;;27317:96;;;:::o;27419:90::-;27453:7;27496:5;27489:13;27482:21;27471:32;;27419:90;;;:::o;27515:149::-;27551:7;27591:66;27584:5;27580:78;27569:89;;27515:149;;;:::o;27670:126::-;27707:7;27747:42;27740:5;27736:54;27725:65;;27670:126;;;:::o;27802:77::-;27839:7;27868:5;27857:16;;27802:77;;;:::o;27885:154::-;27969:6;27964:3;27959;27946:30;28031:1;28022:6;28017:3;28013:16;28006:27;27885:154;;;:::o;28045:307::-;28113:1;28123:113;28137:6;28134:1;28131:13;28123:113;;;28222:1;28217:3;28213:11;28207:18;28203:1;28198:3;28194:11;28187:39;28159:2;28156:1;28152:10;28147:15;;28123:113;;;28254:6;28251:1;28248:13;28245:101;;;28334:1;28325:6;28320:3;28316:16;28309:27;28245:101;28094:258;28045:307;;;:::o;28358:320::-;28402:6;28439:1;28433:4;28429:12;28419:22;;28486:1;28480:4;28476:12;28507:18;28497:81;;28563:4;28555:6;28551:17;28541:27;;28497:81;28625:2;28617:6;28614:14;28594:18;28591:38;28588:84;;;28644:18;;:::i;:::-;28588:84;28409:269;28358:320;;;:::o;28684:281::-;28767:27;28789:4;28767:27;:::i;:::-;28759:6;28755:40;28897:6;28885:10;28882:22;28861:18;28849:10;28846:34;28843:62;28840:88;;;28908:18;;:::i;:::-;28840:88;28948:10;28944:2;28937:22;28727:238;28684:281;;:::o;28971:233::-;29010:3;29033:24;29051:5;29033:24;:::i;:::-;29024:33;;29079:66;29072:5;29069:77;29066:103;;;29149:18;;:::i;:::-;29066:103;29196:1;29189:5;29185:13;29178:20;;28971:233;;;:::o;29210:176::-;29242:1;29259:20;29277:1;29259:20;:::i;:::-;29254:25;;29293:20;29311:1;29293:20;:::i;:::-;29288:25;;29332:1;29322:35;;29337:18;;:::i;:::-;29322:35;29378:1;29375;29371:9;29366:14;;29210:176;;;;:::o;29392:180::-;29440:77;29437:1;29430:88;29537:4;29534:1;29527:15;29561:4;29558:1;29551:15;29578:180;29626:77;29623:1;29616:88;29723:4;29720:1;29713:15;29747:4;29744:1;29737:15;29764:180;29812:77;29809:1;29802:88;29909:4;29906:1;29899:15;29933:4;29930:1;29923:15;29950:180;29998:77;29995:1;29988:88;30095:4;30092:1;30085:15;30119:4;30116:1;30109:15;30136:180;30184:77;30181:1;30174:88;30281:4;30278:1;30271:15;30305:4;30302:1;30295:15;30322:117;30431:1;30428;30421:12;30445:117;30554:1;30551;30544:12;30568:117;30677:1;30674;30667:12;30691:117;30800:1;30797;30790:12;30814:102;30855:6;30906:2;30902:7;30897:2;30890:5;30886:14;30882:28;30872:38;;30814:102;;;:::o;30922:157::-;31062:9;31058:1;31050:6;31046:14;31039:33;30922:157;:::o;31085:225::-;31225:34;31221:1;31213:6;31209:14;31202:58;31294:8;31289:2;31281:6;31277:15;31270:33;31085:225;:::o;31316:180::-;31456:32;31452:1;31444:6;31440:14;31433:56;31316:180;:::o;31502:245::-;31642:34;31638:1;31630:6;31626:14;31619:58;31711:28;31706:2;31698:6;31694:15;31687:53;31502:245;:::o;31753:179::-;31893:31;31889:1;31881:6;31877:14;31870:55;31753:179;:::o;31938:221::-;32078:34;32074:1;32066:6;32062:14;32055:58;32147:4;32142:2;32134:6;32130:15;32123:29;31938:221;:::o;32165:173::-;32305:25;32301:1;32293:6;32289:14;32282:49;32165:173;:::o;32344:155::-;32484:7;32480:1;32472:6;32468:14;32461:31;32344:155;:::o;32505:182::-;32645:34;32641:1;32633:6;32629:14;32622:58;32505:182;:::o;32693:234::-;32833:34;32829:1;32821:6;32817:14;32810:58;32902:17;32897:2;32889:6;32885:15;32878:42;32693:234;:::o;32933:114::-;;:::o;33053:169::-;33193:21;33189:1;33181:6;33177:14;33170:45;33053:169;:::o;33228:174::-;33368:26;33364:1;33356:6;33352:14;33345:50;33228:174;:::o;33408:181::-;33548:33;33544:1;33536:6;33532:14;33525:57;33408:181;:::o;33595:173::-;33735:25;33731:1;33723:6;33719:14;33712:49;33595:173;:::o;33774:151::-;33914:3;33910:1;33902:6;33898:14;33891:27;33774:151;:::o;33931:122::-;34004:24;34022:5;34004:24;:::i;:::-;33997:5;33994:35;33984:63;;34043:1;34040;34033:12;33984:63;33931:122;:::o;34059:116::-;34129:21;34144:5;34129:21;:::i;:::-;34122:5;34119:32;34109:60;;34165:1;34162;34155:12;34109:60;34059:116;:::o;34181:120::-;34253:23;34270:5;34253:23;:::i;:::-;34246:5;34243:34;34233:62;;34291:1;34288;34281:12;34233:62;34181:120;:::o;34307:122::-;34380:24;34398:5;34380:24;:::i;:::-;34373:5;34370:35;34360:63;;34419:1;34416;34409:12;34360:63;34307:122;:::o
Swarm Source
ipfs://7ef645a938605b85b25dadfcbf36fe9ddddc8ce0baea1b825c222497ad895d24
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.