ERC-721
Overview
Max Total Supply
1,311 MR
Holders
47
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Filtered by Token Holder
SleepyJoe Digital Trading Cards: DeployerBalance
43 MRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
moonReddits
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-26 */ // File: contracts/moonReddits.sol // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // 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/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/TwistedToonz.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } /** * 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) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _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 override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract moonReddits is ERC721A, Ownable, ReentrancyGuard { uint public nextOwnerToExplicitlySet; string public baseURI; uint public maxPerTx = 30; uint public maxPerWallet = 90; uint public maxSupply = 10000; uint public price = 0.001 ether; bool public mintEnabled; constructor() ERC721A("moonReddits", "MR"){} function reserve(uint256 amt) external onlyOwner{ require(totalSupply() + amt < maxSupply + 1,"Not enough to reserve."); _safeMint(msg.sender, amt); } function mint(uint256 amt) external payable{ require( amt < maxPerTx + 1, "Max per transaction exceeded."); require(msg.sender == tx.origin,"You are not the sender."); require(numberMinted(msg.sender) + amt <= maxPerWallet,"Wallet limit reached!"); require(totalSupply() + amt < maxSupply + 1,"SOLD OUT!"); require(msg.value == amt * price,"The amount is not correct."); require(mintEnabled, "No minting yet."); _safeMint(msg.sender, amt); } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function toggleMint() external onlyOwner { mintEnabled = !mintEnabled; } function setMaxPerTx(uint256 maxPerTx_) external onlyOwner { maxPerTx = maxPerTx_; } function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner { maxPerWallet = maxPerWallet_; } function setMaxSupply(uint256 maxSupply_) external onlyOwner { maxSupply = maxSupply_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { require(quantity != 0, "quantity must be nonzero"); require(currentIndex != 0, "no tokens minted yet"); uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet; require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set"); // Index underflow is impossible. // Counter or index overflow is incredibly unrealistic. unchecked { uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1; // Set the end index to be the last token index if (endIndex + 1 > currentIndex) { endIndex = currentIndex - 1; } for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i].addr = ownership.addr; _ownerships[i].startTimestamp = ownership.startTimestamp; } } nextOwnerToExplicitlySet = endIndex + 1; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"reserve","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":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052601e600b55605a600c55612710600d5566038d7ea4c68000600e553480156200002c57600080fd5b506040518060400160405280600b81526020017f6d6f6f6e526564646974730000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d520000000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b1929190620001c9565b508060029080519060200190620000ca929190620001c9565b505050620000ed620000e1620000fb60201b60201c565b6200010360201b60201c565b6001600881905550620002de565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d79062000279565b90600052602060002090601f016020900481019282620001fb576000855562000247565b82601f106200021657805160ff191683800117855562000247565b8280016001018555821562000247579182015b828111156200024657825182559160200191906001019062000229565b5b5090506200025691906200025a565b5090565b5b80821115620002755760008160009055506001016200025b565b5090565b600060028204905060018216806200029257607f821691505b60208210811415620002a957620002a8620002af565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614e5380620002ee6000396000f3fe6080604052600436106102255760003560e01c80638da5cb5b11610123578063c87b56dd116100ab578063dc33e6811161006f578063dc33e681146107e4578063e268e4d314610821578063e985e9c51461084a578063f2fde38b14610887578063f968adbe146108b057610225565b8063c87b56dd1461070f578063d12397301461074c578063d3dd5fe014610777578063d5abeb011461078e578063d7224ba0146107b957610225565b8063a035b1fe116100f2578063a035b1fe1461064d578063a0712d6814610678578063a22cb46514610694578063b88d4fde146106bd578063c6f6f216146106e657610225565b80638da5cb5b1461059157806391b7f5ed146105bc5780639231ab2a146105e557806395d89b411461062257610225565b806342842e0e116101b15780636c0360eb116101755780636c0360eb146104c05780636f8b44b0146104eb57806370a0823114610514578063715018a614610551578063819b25ba1461056857610225565b806342842e0e146103c9578063453c2310146103f25780634f6ccce71461041d57806355f804b31461045a5780636352211e1461048357610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632d20fb601461034c5780632f745c59146103755780633ccfd60b146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906135f1565b6108db565b60405161025e9190613d05565b60405180910390f35b34801561027357600080fd5b5061027c610a25565b6040516102899190613d20565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613698565b610ab7565b6040516102c69190613c9e565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906135b1565b610b3c565b005b34801561030457600080fd5b5061030d610c55565b60405161031a919061415d565b60405180910390f35b34801561032f57600080fd5b5061034a6004803603810190610345919061349b565b610c5e565b005b34801561035857600080fd5b50610373600480360381019061036e9190613698565b610c6e565b005b34801561038157600080fd5b5061039c600480360381019061039791906135b1565b610d4c565b6040516103a9919061415d565b60405180910390f35b3480156103be57600080fd5b506103c7610f3e565b005b3480156103d557600080fd5b506103f060048036038101906103eb919061349b565b6110bf565b005b3480156103fe57600080fd5b506104076110df565b604051610414919061415d565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190613698565b6110e5565b604051610451919061415d565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c919061364b565b611138565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613698565b6111ca565b6040516104b79190613c9e565b60405180910390f35b3480156104cc57600080fd5b506104d56111e0565b6040516104e29190613d20565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190613698565b61126e565b005b34801561052057600080fd5b5061053b6004803603810190610536919061342e565b6112f4565b604051610548919061415d565b60405180910390f35b34801561055d57600080fd5b506105666113dd565b005b34801561057457600080fd5b5061058f600480360381019061058a9190613698565b611465565b005b34801561059d57600080fd5b506105a6611550565b6040516105b39190613c9e565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190613698565b61157a565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613698565b611600565b6040516106199190614142565b60405180910390f35b34801561062e57600080fd5b50610637611618565b6040516106449190613d20565b60405180910390f35b34801561065957600080fd5b506106626116aa565b60405161066f919061415d565b60405180910390f35b610692600480360381019061068d9190613698565b6116b0565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613571565b6118d3565b005b3480156106c957600080fd5b506106e460048036038101906106df91906134ee565b611a54565b005b3480156106f257600080fd5b5061070d60048036038101906107089190613698565b611ab0565b005b34801561071b57600080fd5b5061073660048036038101906107319190613698565b611b36565b6040516107439190613d20565b60405180910390f35b34801561075857600080fd5b50610761611bde565b60405161076e9190613d05565b60405180910390f35b34801561078357600080fd5b5061078c611bf1565b005b34801561079a57600080fd5b506107a3611c99565b6040516107b0919061415d565b60405180910390f35b3480156107c557600080fd5b506107ce611c9f565b6040516107db919061415d565b60405180910390f35b3480156107f057600080fd5b5061080b6004803603810190610806919061342e565b611ca5565b604051610818919061415d565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613698565b611cb7565b005b34801561085657600080fd5b50610871600480360381019061086c919061345b565b611d3d565b60405161087e9190613d05565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a9919061342e565b611dd1565b005b3480156108bc57600080fd5b506108c5611ec9565b6040516108d2919061415d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1e5750610a1d82611ecf565b5b9050919050565b606060018054610a34906143fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a60906143fb565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac282611f39565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af890614102565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b47826111ca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90614002565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd7611f46565b73ffffffffffffffffffffffffffffffffffffffff161480610c065750610c0581610c00611f46565b611d3d565b5b610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90613e62565b60405180910390fd5b610c50838383611f4e565b505050565b60008054905090565b610c69838383612000565b505050565b610c76611f46565b73ffffffffffffffffffffffffffffffffffffffff16610c94611550565b73ffffffffffffffffffffffffffffffffffffffff1614610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190613f42565b60405180910390fd5b60026008541415610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d27906140c2565b60405180910390fd5b6002600881905550610d4181612540565b600160088190555050565b6000610d57836112f4565b8210610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613d42565b60405180910390fd5b6000610da2610c55565b905060008060005b83811015610efc576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e9c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eee5786841415610ee5578195505050505050610f38565b83806001019450505b508080600101915050610daa565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f906140a2565b60405180910390fd5b92915050565b610f46611f46565b73ffffffffffffffffffffffffffffffffffffffff16610f64611550565b73ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190613f42565b60405180910390fd5b60026008541415611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff7906140c2565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161102e90613c89565b60006040518083038185875af1925050503d806000811461106b576040519150601f19603f3d011682016040523d82523d6000602084013e611070565b606091505b50509050806110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90614022565b60405180910390fd5b506001600881905550565b6110da83838360405180602001604052806000815250611a54565b505050565b600c5481565b60006110ef610c55565b8210611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613dc2565b60405180910390fd5b819050919050565b611140611f46565b73ffffffffffffffffffffffffffffffffffffffff1661115e611550565b73ffffffffffffffffffffffffffffffffffffffff16146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90613f42565b60405180910390fd5b8181600a91906111c5929190613222565b505050565b60006111d582612772565b600001519050919050565b600a80546111ed906143fb565b80601f0160208091040260200160405190810160405280929190818152602001828054611219906143fb565b80156112665780601f1061123b57610100808354040283529160200191611266565b820191906000526020600020905b81548152906001019060200180831161124957829003601f168201915b505050505081565b611276611f46565b73ffffffffffffffffffffffffffffffffffffffff16611294611550565b73ffffffffffffffffffffffffffffffffffffffff16146112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190613f42565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613ec2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113e5611f46565b73ffffffffffffffffffffffffffffffffffffffff16611403611550565b73ffffffffffffffffffffffffffffffffffffffff1614611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090613f42565b60405180910390fd5b611463600061290c565b565b61146d611f46565b73ffffffffffffffffffffffffffffffffffffffff1661148b611550565b73ffffffffffffffffffffffffffffffffffffffff16146114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890613f42565b60405180910390fd5b6001600d546114f0919061421c565b816114f9610c55565b611503919061421c565b10611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90613f02565b60405180910390fd5b61154d33826129d2565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611582611f46565b73ffffffffffffffffffffffffffffffffffffffff166115a0611550565b73ffffffffffffffffffffffffffffffffffffffff16146115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90613f42565b60405180910390fd5b80600e8190555050565b6116086132a8565b61161182612772565b9050919050565b606060028054611627906143fb565b80601f0160208091040260200160405190810160405280929190818152602001828054611653906143fb565b80156116a05780601f10611675576101008083540402835291602001916116a0565b820191906000526020600020905b81548152906001019060200180831161168357829003601f168201915b5050505050905090565b600e5481565b6001600b546116bf919061421c565b8110611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790614122565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590613ea2565b60405180910390fd5b600c548161177b33611ca5565b611785919061421c565b11156117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd90613fc2565b60405180910390fd5b6001600d546117d5919061421c565b816117de610c55565b6117e8919061421c565b10611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613f22565b60405180910390fd5b600e548161183691906142a3565b3414611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e90613fe2565b60405180910390fd5b600f60009054906101000a900460ff166118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90613e22565b60405180910390fd5b6118d033826129d2565b50565b6118db611f46565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090613f82565b60405180910390fd5b8060066000611956611f46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a03611f46565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a489190613d05565b60405180910390a35050565b611a5f848484612000565b611a6b848484846129f0565b611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa190614042565b60405180910390fd5b50505050565b611ab8611f46565b73ffffffffffffffffffffffffffffffffffffffff16611ad6611550565b73ffffffffffffffffffffffffffffffffffffffff1614611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2390613f42565b60405180910390fd5b80600b8190555050565b6060611b4182611f39565b611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790613f62565b60405180910390fd5b6000611b8a612b87565b9050600081511415611bab5760405180602001604052806000815250611bd6565b80611bb584612c19565b604051602001611bc6929190613c65565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b611bf9611f46565b73ffffffffffffffffffffffffffffffffffffffff16611c17611550565b73ffffffffffffffffffffffffffffffffffffffff1614611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490613f42565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600d5481565b60095481565b6000611cb082612d7a565b9050919050565b611cbf611f46565b73ffffffffffffffffffffffffffffffffffffffff16611cdd611550565b73ffffffffffffffffffffffffffffffffffffffff1614611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90613f42565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dd9611f46565b73ffffffffffffffffffffffffffffffffffffffff16611df7611550565b73ffffffffffffffffffffffffffffffffffffffff1614611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4490613f42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb490613d62565b60405180910390fd5b611ec68161290c565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061200b82612772565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612032611f46565b73ffffffffffffffffffffffffffffffffffffffff16148061208e5750612057611f46565b73ffffffffffffffffffffffffffffffffffffffff1661207684610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b806120aa57506120a982600001516120a4611f46565b611d3d565b5b9050806120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e390613fa2565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215590613ee2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590613de2565b60405180910390fd5b6121db8585856001612e63565b6121eb6000848460000151611f4e565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124d05761242f81611f39565b156124cf5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125398585856001612e69565b5050505050565b6000811415612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b90613e82565b60405180910390fd5b6000805414156125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c090613da2565b60405180910390fd5b600060095490506000548110612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b90613e42565b60405180910390fd5b600060018383010390506000546001820111156126345760016000540390505b60008290505b81811161276257600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127555760006126b782612772565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b808060010191505061263a565b5060018101600981905550505050565b61277a6132a8565b61278382611f39565b6127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b990613d82565b60405180910390fd5b60008290505b600081106128cb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128bc578092505050612907565b508080600190039150506127c8565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fe906140e2565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129ec828260405180602001604052806000815250612e6f565b5050565b6000612a118473ffffffffffffffffffffffffffffffffffffffff16612e81565b15612b7a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a3a611f46565b8786866040518563ffffffff1660e01b8152600401612a5c9493929190613cb9565b602060405180830381600087803b158015612a7657600080fd5b505af1925050508015612aa757506040513d601f19601f82011682018060405250810190612aa4919061361e565b60015b612b2a573d8060008114612ad7576040519150601f19603f3d011682016040523d82523d6000602084013e612adc565b606091505b50600081511415612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1990614042565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b7f565b600190505b949350505050565b6060600a8054612b96906143fb565b80601f0160208091040260200160405190810160405280929190818152602001828054612bc2906143fb565b8015612c0f5780601f10612be457610100808354040283529160200191612c0f565b820191906000526020600020905b815481529060010190602001808311612bf257829003601f168201915b5050505050905090565b60606000821415612c61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d75565b600082905060005b60008214612c93578080612c7c9061445e565b915050600a82612c8c9190614272565b9150612c69565b60008167ffffffffffffffff811115612caf57612cae614594565b5b6040519080825280601f01601f191660200182016040528015612ce15781602001600182028036833780820191505090505b5090505b60008514612d6e57600182612cfa91906142fd565b9150600a85612d0991906144a7565b6030612d15919061421c565b60f81b818381518110612d2b57612d2a614565565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d679190614272565b9450612ce5565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de290613e02565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612e7c8383836001612ea4565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1190614062565b60405180910390fd5b6000841415612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5590614082565b60405180910390fd5b612f6b6000868387612e63565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561320557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156131f0576131b060008884886129f0565b6131ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e690614042565b60405180910390fd5b5b81806001019250508080600101915050613139565b50806000819055505061321b6000868387612e69565b5050505050565b82805461322e906143fb565b90600052602060002090601f0160209004810192826132505760008555613297565b82601f1061326957803560ff1916838001178555613297565b82800160010185558215613297579182015b8281111561329657823582559160200191906001019061327b565b5b5090506132a491906132e2565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156132fb5760008160009055506001016132e3565b5090565b600061331261330d8461419d565b614178565b90508281526020810184848401111561332e5761332d6145d2565b5b6133398482856143b9565b509392505050565b60008135905061335081614dc1565b92915050565b60008135905061336581614dd8565b92915050565b60008135905061337a81614def565b92915050565b60008151905061338f81614def565b92915050565b600082601f8301126133aa576133a96145c8565b5b81356133ba8482602086016132ff565b91505092915050565b60008083601f8401126133d9576133d86145c8565b5b8235905067ffffffffffffffff8111156133f6576133f56145c3565b5b602083019150836001820283011115613412576134116145cd565b5b9250929050565b60008135905061342881614e06565b92915050565b600060208284031215613444576134436145dc565b5b600061345284828501613341565b91505092915050565b60008060408385031215613472576134716145dc565b5b600061348085828601613341565b925050602061349185828601613341565b9150509250929050565b6000806000606084860312156134b4576134b36145dc565b5b60006134c286828701613341565b93505060206134d386828701613341565b92505060406134e486828701613419565b9150509250925092565b60008060008060808587031215613508576135076145dc565b5b600061351687828801613341565b945050602061352787828801613341565b935050604061353887828801613419565b925050606085013567ffffffffffffffff811115613559576135586145d7565b5b61356587828801613395565b91505092959194509250565b60008060408385031215613588576135876145dc565b5b600061359685828601613341565b92505060206135a785828601613356565b9150509250929050565b600080604083850312156135c8576135c76145dc565b5b60006135d685828601613341565b92505060206135e785828601613419565b9150509250929050565b600060208284031215613607576136066145dc565b5b60006136158482850161336b565b91505092915050565b600060208284031215613634576136336145dc565b5b600061364284828501613380565b91505092915050565b60008060208385031215613662576136616145dc565b5b600083013567ffffffffffffffff8111156136805761367f6145d7565b5b61368c858286016133c3565b92509250509250929050565b6000602082840312156136ae576136ad6145dc565b5b60006136bc84828501613419565b91505092915050565b6136ce81614331565b82525050565b6136dd81614331565b82525050565b6136ec81614343565b82525050565b60006136fd826141ce565b61370781856141e4565b93506137178185602086016143c8565b613720816145e1565b840191505092915050565b6000613736826141d9565b6137408185614200565b93506137508185602086016143c8565b613759816145e1565b840191505092915050565b600061376f826141d9565b6137798185614211565b93506137898185602086016143c8565b80840191505092915050565b60006137a2602283614200565b91506137ad826145f2565b604082019050919050565b60006137c5602683614200565b91506137d082614641565b604082019050919050565b60006137e8602a83614200565b91506137f382614690565b604082019050919050565b600061380b601483614200565b9150613816826146df565b602082019050919050565b600061382e602383614200565b915061383982614708565b604082019050919050565b6000613851602583614200565b915061385c82614757565b604082019050919050565b6000613874603183614200565b915061387f826147a6565b604082019050919050565b6000613897600f83614200565b91506138a2826147f5565b602082019050919050565b60006138ba601c83614200565b91506138c58261481e565b602082019050919050565b60006138dd603983614200565b91506138e882614847565b604082019050919050565b6000613900601883614200565b915061390b82614896565b602082019050919050565b6000613923601783614200565b915061392e826148bf565b602082019050919050565b6000613946602b83614200565b9150613951826148e8565b604082019050919050565b6000613969602683614200565b915061397482614937565b604082019050919050565b600061398c601683614200565b915061399782614986565b602082019050919050565b60006139af600983614200565b91506139ba826149af565b602082019050919050565b60006139d2602083614200565b91506139dd826149d8565b602082019050919050565b60006139f5602f83614200565b9150613a0082614a01565b604082019050919050565b6000613a18601a83614200565b9150613a2382614a50565b602082019050919050565b6000613a3b603283614200565b9150613a4682614a79565b604082019050919050565b6000613a5e601583614200565b9150613a6982614ac8565b602082019050919050565b6000613a81601a83614200565b9150613a8c82614af1565b602082019050919050565b6000613aa4602283614200565b9150613aaf82614b1a565b604082019050919050565b6000613ac76000836141f5565b9150613ad282614b69565b600082019050919050565b6000613aea601083614200565b9150613af582614b6c565b602082019050919050565b6000613b0d603383614200565b9150613b1882614b95565b604082019050919050565b6000613b30602183614200565b9150613b3b82614be4565b604082019050919050565b6000613b53602883614200565b9150613b5e82614c33565b604082019050919050565b6000613b76602e83614200565b9150613b8182614c82565b604082019050919050565b6000613b99601f83614200565b9150613ba482614cd1565b602082019050919050565b6000613bbc602f83614200565b9150613bc782614cfa565b604082019050919050565b6000613bdf602d83614200565b9150613bea82614d49565b604082019050919050565b6000613c02601d83614200565b9150613c0d82614d98565b602082019050919050565b604082016000820151613c2e60008501826136c5565b506020820151613c416020850182613c56565b50505050565b613c508161439b565b82525050565b613c5f816143a5565b82525050565b6000613c718285613764565b9150613c7d8284613764565b91508190509392505050565b6000613c9482613aba565b9150819050919050565b6000602082019050613cb360008301846136d4565b92915050565b6000608082019050613cce60008301876136d4565b613cdb60208301866136d4565b613ce86040830185613c47565b8181036060830152613cfa81846136f2565b905095945050505050565b6000602082019050613d1a60008301846136e3565b92915050565b60006020820190508181036000830152613d3a818461372b565b905092915050565b60006020820190508181036000830152613d5b81613795565b9050919050565b60006020820190508181036000830152613d7b816137b8565b9050919050565b60006020820190508181036000830152613d9b816137db565b9050919050565b60006020820190508181036000830152613dbb816137fe565b9050919050565b60006020820190508181036000830152613ddb81613821565b9050919050565b60006020820190508181036000830152613dfb81613844565b9050919050565b60006020820190508181036000830152613e1b81613867565b9050919050565b60006020820190508181036000830152613e3b8161388a565b9050919050565b60006020820190508181036000830152613e5b816138ad565b9050919050565b60006020820190508181036000830152613e7b816138d0565b9050919050565b60006020820190508181036000830152613e9b816138f3565b9050919050565b60006020820190508181036000830152613ebb81613916565b9050919050565b60006020820190508181036000830152613edb81613939565b9050919050565b60006020820190508181036000830152613efb8161395c565b9050919050565b60006020820190508181036000830152613f1b8161397f565b9050919050565b60006020820190508181036000830152613f3b816139a2565b9050919050565b60006020820190508181036000830152613f5b816139c5565b9050919050565b60006020820190508181036000830152613f7b816139e8565b9050919050565b60006020820190508181036000830152613f9b81613a0b565b9050919050565b60006020820190508181036000830152613fbb81613a2e565b9050919050565b60006020820190508181036000830152613fdb81613a51565b9050919050565b60006020820190508181036000830152613ffb81613a74565b9050919050565b6000602082019050818103600083015261401b81613a97565b9050919050565b6000602082019050818103600083015261403b81613add565b9050919050565b6000602082019050818103600083015261405b81613b00565b9050919050565b6000602082019050818103600083015261407b81613b23565b9050919050565b6000602082019050818103600083015261409b81613b46565b9050919050565b600060208201905081810360008301526140bb81613b69565b9050919050565b600060208201905081810360008301526140db81613b8c565b9050919050565b600060208201905081810360008301526140fb81613baf565b9050919050565b6000602082019050818103600083015261411b81613bd2565b9050919050565b6000602082019050818103600083015261413b81613bf5565b9050919050565b60006040820190506141576000830184613c18565b92915050565b60006020820190506141726000830184613c47565b92915050565b6000614182614193565b905061418e828261442d565b919050565b6000604051905090565b600067ffffffffffffffff8211156141b8576141b7614594565b5b6141c1826145e1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142278261439b565b91506142328361439b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614267576142666144d8565b5b828201905092915050565b600061427d8261439b565b91506142888361439b565b92508261429857614297614507565b5b828204905092915050565b60006142ae8261439b565b91506142b98361439b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142f2576142f16144d8565b5b828202905092915050565b60006143088261439b565b91506143138361439b565b925082821015614326576143256144d8565b5b828203905092915050565b600061433c8261437b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156143e65780820151818401526020810190506143cb565b838111156143f5576000848401525b50505050565b6000600282049050600182168061441357607f821691505b6020821081141561442757614426614536565b5b50919050565b614436826145e1565b810181811067ffffffffffffffff8211171561445557614454614594565b5b80604052505050565b60006144698261439b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561449c5761449b6144d8565b5b600182019050919050565b60006144b28261439b565b91506144bd8361439b565b9250826144cd576144cc614507565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4e6f206d696e74696e67207965742e0000000000000000000000000000000000600082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f596f7520617265206e6f74207468652073656e6465722e000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f20726573657276652e00000000000000000000600082015250565b7f534f4c44204f5554210000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f57616c6c6574206c696d69742072656163686564210000000000000000000000600082015250565b7f54686520616d6f756e74206973206e6f7420636f72726563742e000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4d617820706572207472616e73616374696f6e2065786365656465642e000000600082015250565b614dca81614331565b8114614dd557600080fd5b50565b614de181614343565b8114614dec57600080fd5b50565b614df88161434f565b8114614e0357600080fd5b50565b614e0f8161439b565b8114614e1a57600080fd5b5056fea2646970667358221220478beb37a2d6bd8534c64745f0a76ea4e6546445485133b4462cfd1aeb28f5b264736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102255760003560e01c80638da5cb5b11610123578063c87b56dd116100ab578063dc33e6811161006f578063dc33e681146107e4578063e268e4d314610821578063e985e9c51461084a578063f2fde38b14610887578063f968adbe146108b057610225565b8063c87b56dd1461070f578063d12397301461074c578063d3dd5fe014610777578063d5abeb011461078e578063d7224ba0146107b957610225565b8063a035b1fe116100f2578063a035b1fe1461064d578063a0712d6814610678578063a22cb46514610694578063b88d4fde146106bd578063c6f6f216146106e657610225565b80638da5cb5b1461059157806391b7f5ed146105bc5780639231ab2a146105e557806395d89b411461062257610225565b806342842e0e116101b15780636c0360eb116101755780636c0360eb146104c05780636f8b44b0146104eb57806370a0823114610514578063715018a614610551578063819b25ba1461056857610225565b806342842e0e146103c9578063453c2310146103f25780634f6ccce71461041d57806355f804b31461045a5780636352211e1461048357610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632d20fb601461034c5780632f745c59146103755780633ccfd60b146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906135f1565b6108db565b60405161025e9190613d05565b60405180910390f35b34801561027357600080fd5b5061027c610a25565b6040516102899190613d20565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613698565b610ab7565b6040516102c69190613c9e565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906135b1565b610b3c565b005b34801561030457600080fd5b5061030d610c55565b60405161031a919061415d565b60405180910390f35b34801561032f57600080fd5b5061034a6004803603810190610345919061349b565b610c5e565b005b34801561035857600080fd5b50610373600480360381019061036e9190613698565b610c6e565b005b34801561038157600080fd5b5061039c600480360381019061039791906135b1565b610d4c565b6040516103a9919061415d565b60405180910390f35b3480156103be57600080fd5b506103c7610f3e565b005b3480156103d557600080fd5b506103f060048036038101906103eb919061349b565b6110bf565b005b3480156103fe57600080fd5b506104076110df565b604051610414919061415d565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190613698565b6110e5565b604051610451919061415d565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c919061364b565b611138565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613698565b6111ca565b6040516104b79190613c9e565b60405180910390f35b3480156104cc57600080fd5b506104d56111e0565b6040516104e29190613d20565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190613698565b61126e565b005b34801561052057600080fd5b5061053b6004803603810190610536919061342e565b6112f4565b604051610548919061415d565b60405180910390f35b34801561055d57600080fd5b506105666113dd565b005b34801561057457600080fd5b5061058f600480360381019061058a9190613698565b611465565b005b34801561059d57600080fd5b506105a6611550565b6040516105b39190613c9e565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190613698565b61157a565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613698565b611600565b6040516106199190614142565b60405180910390f35b34801561062e57600080fd5b50610637611618565b6040516106449190613d20565b60405180910390f35b34801561065957600080fd5b506106626116aa565b60405161066f919061415d565b60405180910390f35b610692600480360381019061068d9190613698565b6116b0565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613571565b6118d3565b005b3480156106c957600080fd5b506106e460048036038101906106df91906134ee565b611a54565b005b3480156106f257600080fd5b5061070d60048036038101906107089190613698565b611ab0565b005b34801561071b57600080fd5b5061073660048036038101906107319190613698565b611b36565b6040516107439190613d20565b60405180910390f35b34801561075857600080fd5b50610761611bde565b60405161076e9190613d05565b60405180910390f35b34801561078357600080fd5b5061078c611bf1565b005b34801561079a57600080fd5b506107a3611c99565b6040516107b0919061415d565b60405180910390f35b3480156107c557600080fd5b506107ce611c9f565b6040516107db919061415d565b60405180910390f35b3480156107f057600080fd5b5061080b6004803603810190610806919061342e565b611ca5565b604051610818919061415d565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613698565b611cb7565b005b34801561085657600080fd5b50610871600480360381019061086c919061345b565b611d3d565b60405161087e9190613d05565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a9919061342e565b611dd1565b005b3480156108bc57600080fd5b506108c5611ec9565b6040516108d2919061415d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1e5750610a1d82611ecf565b5b9050919050565b606060018054610a34906143fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a60906143fb565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac282611f39565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af890614102565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b47826111ca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90614002565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd7611f46565b73ffffffffffffffffffffffffffffffffffffffff161480610c065750610c0581610c00611f46565b611d3d565b5b610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90613e62565b60405180910390fd5b610c50838383611f4e565b505050565b60008054905090565b610c69838383612000565b505050565b610c76611f46565b73ffffffffffffffffffffffffffffffffffffffff16610c94611550565b73ffffffffffffffffffffffffffffffffffffffff1614610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190613f42565b60405180910390fd5b60026008541415610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d27906140c2565b60405180910390fd5b6002600881905550610d4181612540565b600160088190555050565b6000610d57836112f4565b8210610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613d42565b60405180910390fd5b6000610da2610c55565b905060008060005b83811015610efc576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e9c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eee5786841415610ee5578195505050505050610f38565b83806001019450505b508080600101915050610daa565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f906140a2565b60405180910390fd5b92915050565b610f46611f46565b73ffffffffffffffffffffffffffffffffffffffff16610f64611550565b73ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190613f42565b60405180910390fd5b60026008541415611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff7906140c2565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161102e90613c89565b60006040518083038185875af1925050503d806000811461106b576040519150601f19603f3d011682016040523d82523d6000602084013e611070565b606091505b50509050806110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90614022565b60405180910390fd5b506001600881905550565b6110da83838360405180602001604052806000815250611a54565b505050565b600c5481565b60006110ef610c55565b8210611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613dc2565b60405180910390fd5b819050919050565b611140611f46565b73ffffffffffffffffffffffffffffffffffffffff1661115e611550565b73ffffffffffffffffffffffffffffffffffffffff16146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90613f42565b60405180910390fd5b8181600a91906111c5929190613222565b505050565b60006111d582612772565b600001519050919050565b600a80546111ed906143fb565b80601f0160208091040260200160405190810160405280929190818152602001828054611219906143fb565b80156112665780601f1061123b57610100808354040283529160200191611266565b820191906000526020600020905b81548152906001019060200180831161124957829003601f168201915b505050505081565b611276611f46565b73ffffffffffffffffffffffffffffffffffffffff16611294611550565b73ffffffffffffffffffffffffffffffffffffffff16146112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190613f42565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613ec2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113e5611f46565b73ffffffffffffffffffffffffffffffffffffffff16611403611550565b73ffffffffffffffffffffffffffffffffffffffff1614611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090613f42565b60405180910390fd5b611463600061290c565b565b61146d611f46565b73ffffffffffffffffffffffffffffffffffffffff1661148b611550565b73ffffffffffffffffffffffffffffffffffffffff16146114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890613f42565b60405180910390fd5b6001600d546114f0919061421c565b816114f9610c55565b611503919061421c565b10611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90613f02565b60405180910390fd5b61154d33826129d2565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611582611f46565b73ffffffffffffffffffffffffffffffffffffffff166115a0611550565b73ffffffffffffffffffffffffffffffffffffffff16146115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90613f42565b60405180910390fd5b80600e8190555050565b6116086132a8565b61161182612772565b9050919050565b606060028054611627906143fb565b80601f0160208091040260200160405190810160405280929190818152602001828054611653906143fb565b80156116a05780601f10611675576101008083540402835291602001916116a0565b820191906000526020600020905b81548152906001019060200180831161168357829003601f168201915b5050505050905090565b600e5481565b6001600b546116bf919061421c565b8110611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790614122565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590613ea2565b60405180910390fd5b600c548161177b33611ca5565b611785919061421c565b11156117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd90613fc2565b60405180910390fd5b6001600d546117d5919061421c565b816117de610c55565b6117e8919061421c565b10611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613f22565b60405180910390fd5b600e548161183691906142a3565b3414611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e90613fe2565b60405180910390fd5b600f60009054906101000a900460ff166118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90613e22565b60405180910390fd5b6118d033826129d2565b50565b6118db611f46565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090613f82565b60405180910390fd5b8060066000611956611f46565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a03611f46565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a489190613d05565b60405180910390a35050565b611a5f848484612000565b611a6b848484846129f0565b611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa190614042565b60405180910390fd5b50505050565b611ab8611f46565b73ffffffffffffffffffffffffffffffffffffffff16611ad6611550565b73ffffffffffffffffffffffffffffffffffffffff1614611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2390613f42565b60405180910390fd5b80600b8190555050565b6060611b4182611f39565b611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790613f62565b60405180910390fd5b6000611b8a612b87565b9050600081511415611bab5760405180602001604052806000815250611bd6565b80611bb584612c19565b604051602001611bc6929190613c65565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b611bf9611f46565b73ffffffffffffffffffffffffffffffffffffffff16611c17611550565b73ffffffffffffffffffffffffffffffffffffffff1614611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490613f42565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600d5481565b60095481565b6000611cb082612d7a565b9050919050565b611cbf611f46565b73ffffffffffffffffffffffffffffffffffffffff16611cdd611550565b73ffffffffffffffffffffffffffffffffffffffff1614611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90613f42565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dd9611f46565b73ffffffffffffffffffffffffffffffffffffffff16611df7611550565b73ffffffffffffffffffffffffffffffffffffffff1614611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4490613f42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb490613d62565b60405180910390fd5b611ec68161290c565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061200b82612772565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612032611f46565b73ffffffffffffffffffffffffffffffffffffffff16148061208e5750612057611f46565b73ffffffffffffffffffffffffffffffffffffffff1661207684610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b806120aa57506120a982600001516120a4611f46565b611d3d565b5b9050806120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e390613fa2565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215590613ee2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590613de2565b60405180910390fd5b6121db8585856001612e63565b6121eb6000848460000151611f4e565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124d05761242f81611f39565b156124cf5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125398585856001612e69565b5050505050565b6000811415612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b90613e82565b60405180910390fd5b6000805414156125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c090613da2565b60405180910390fd5b600060095490506000548110612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b90613e42565b60405180910390fd5b600060018383010390506000546001820111156126345760016000540390505b60008290505b81811161276257600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127555760006126b782612772565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b808060010191505061263a565b5060018101600981905550505050565b61277a6132a8565b61278382611f39565b6127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b990613d82565b60405180910390fd5b60008290505b600081106128cb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128bc578092505050612907565b508080600190039150506127c8565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fe906140e2565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129ec828260405180602001604052806000815250612e6f565b5050565b6000612a118473ffffffffffffffffffffffffffffffffffffffff16612e81565b15612b7a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a3a611f46565b8786866040518563ffffffff1660e01b8152600401612a5c9493929190613cb9565b602060405180830381600087803b158015612a7657600080fd5b505af1925050508015612aa757506040513d601f19601f82011682018060405250810190612aa4919061361e565b60015b612b2a573d8060008114612ad7576040519150601f19603f3d011682016040523d82523d6000602084013e612adc565b606091505b50600081511415612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1990614042565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b7f565b600190505b949350505050565b6060600a8054612b96906143fb565b80601f0160208091040260200160405190810160405280929190818152602001828054612bc2906143fb565b8015612c0f5780601f10612be457610100808354040283529160200191612c0f565b820191906000526020600020905b815481529060010190602001808311612bf257829003601f168201915b5050505050905090565b60606000821415612c61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d75565b600082905060005b60008214612c93578080612c7c9061445e565b915050600a82612c8c9190614272565b9150612c69565b60008167ffffffffffffffff811115612caf57612cae614594565b5b6040519080825280601f01601f191660200182016040528015612ce15781602001600182028036833780820191505090505b5090505b60008514612d6e57600182612cfa91906142fd565b9150600a85612d0991906144a7565b6030612d15919061421c565b60f81b818381518110612d2b57612d2a614565565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d679190614272565b9450612ce5565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de290613e02565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612e7c8383836001612ea4565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1190614062565b60405180910390fd5b6000841415612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5590614082565b60405180910390fd5b612f6b6000868387612e63565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561320557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156131f0576131b060008884886129f0565b6131ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e690614042565b60405180910390fd5b5b81806001019250508080600101915050613139565b50806000819055505061321b6000868387612e69565b5050505050565b82805461322e906143fb565b90600052602060002090601f0160209004810192826132505760008555613297565b82601f1061326957803560ff1916838001178555613297565b82800160010185558215613297579182015b8281111561329657823582559160200191906001019061327b565b5b5090506132a491906132e2565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156132fb5760008160009055506001016132e3565b5090565b600061331261330d8461419d565b614178565b90508281526020810184848401111561332e5761332d6145d2565b5b6133398482856143b9565b509392505050565b60008135905061335081614dc1565b92915050565b60008135905061336581614dd8565b92915050565b60008135905061337a81614def565b92915050565b60008151905061338f81614def565b92915050565b600082601f8301126133aa576133a96145c8565b5b81356133ba8482602086016132ff565b91505092915050565b60008083601f8401126133d9576133d86145c8565b5b8235905067ffffffffffffffff8111156133f6576133f56145c3565b5b602083019150836001820283011115613412576134116145cd565b5b9250929050565b60008135905061342881614e06565b92915050565b600060208284031215613444576134436145dc565b5b600061345284828501613341565b91505092915050565b60008060408385031215613472576134716145dc565b5b600061348085828601613341565b925050602061349185828601613341565b9150509250929050565b6000806000606084860312156134b4576134b36145dc565b5b60006134c286828701613341565b93505060206134d386828701613341565b92505060406134e486828701613419565b9150509250925092565b60008060008060808587031215613508576135076145dc565b5b600061351687828801613341565b945050602061352787828801613341565b935050604061353887828801613419565b925050606085013567ffffffffffffffff811115613559576135586145d7565b5b61356587828801613395565b91505092959194509250565b60008060408385031215613588576135876145dc565b5b600061359685828601613341565b92505060206135a785828601613356565b9150509250929050565b600080604083850312156135c8576135c76145dc565b5b60006135d685828601613341565b92505060206135e785828601613419565b9150509250929050565b600060208284031215613607576136066145dc565b5b60006136158482850161336b565b91505092915050565b600060208284031215613634576136336145dc565b5b600061364284828501613380565b91505092915050565b60008060208385031215613662576136616145dc565b5b600083013567ffffffffffffffff8111156136805761367f6145d7565b5b61368c858286016133c3565b92509250509250929050565b6000602082840312156136ae576136ad6145dc565b5b60006136bc84828501613419565b91505092915050565b6136ce81614331565b82525050565b6136dd81614331565b82525050565b6136ec81614343565b82525050565b60006136fd826141ce565b61370781856141e4565b93506137178185602086016143c8565b613720816145e1565b840191505092915050565b6000613736826141d9565b6137408185614200565b93506137508185602086016143c8565b613759816145e1565b840191505092915050565b600061376f826141d9565b6137798185614211565b93506137898185602086016143c8565b80840191505092915050565b60006137a2602283614200565b91506137ad826145f2565b604082019050919050565b60006137c5602683614200565b91506137d082614641565b604082019050919050565b60006137e8602a83614200565b91506137f382614690565b604082019050919050565b600061380b601483614200565b9150613816826146df565b602082019050919050565b600061382e602383614200565b915061383982614708565b604082019050919050565b6000613851602583614200565b915061385c82614757565b604082019050919050565b6000613874603183614200565b915061387f826147a6565b604082019050919050565b6000613897600f83614200565b91506138a2826147f5565b602082019050919050565b60006138ba601c83614200565b91506138c58261481e565b602082019050919050565b60006138dd603983614200565b91506138e882614847565b604082019050919050565b6000613900601883614200565b915061390b82614896565b602082019050919050565b6000613923601783614200565b915061392e826148bf565b602082019050919050565b6000613946602b83614200565b9150613951826148e8565b604082019050919050565b6000613969602683614200565b915061397482614937565b604082019050919050565b600061398c601683614200565b915061399782614986565b602082019050919050565b60006139af600983614200565b91506139ba826149af565b602082019050919050565b60006139d2602083614200565b91506139dd826149d8565b602082019050919050565b60006139f5602f83614200565b9150613a0082614a01565b604082019050919050565b6000613a18601a83614200565b9150613a2382614a50565b602082019050919050565b6000613a3b603283614200565b9150613a4682614a79565b604082019050919050565b6000613a5e601583614200565b9150613a6982614ac8565b602082019050919050565b6000613a81601a83614200565b9150613a8c82614af1565b602082019050919050565b6000613aa4602283614200565b9150613aaf82614b1a565b604082019050919050565b6000613ac76000836141f5565b9150613ad282614b69565b600082019050919050565b6000613aea601083614200565b9150613af582614b6c565b602082019050919050565b6000613b0d603383614200565b9150613b1882614b95565b604082019050919050565b6000613b30602183614200565b9150613b3b82614be4565b604082019050919050565b6000613b53602883614200565b9150613b5e82614c33565b604082019050919050565b6000613b76602e83614200565b9150613b8182614c82565b604082019050919050565b6000613b99601f83614200565b9150613ba482614cd1565b602082019050919050565b6000613bbc602f83614200565b9150613bc782614cfa565b604082019050919050565b6000613bdf602d83614200565b9150613bea82614d49565b604082019050919050565b6000613c02601d83614200565b9150613c0d82614d98565b602082019050919050565b604082016000820151613c2e60008501826136c5565b506020820151613c416020850182613c56565b50505050565b613c508161439b565b82525050565b613c5f816143a5565b82525050565b6000613c718285613764565b9150613c7d8284613764565b91508190509392505050565b6000613c9482613aba565b9150819050919050565b6000602082019050613cb360008301846136d4565b92915050565b6000608082019050613cce60008301876136d4565b613cdb60208301866136d4565b613ce86040830185613c47565b8181036060830152613cfa81846136f2565b905095945050505050565b6000602082019050613d1a60008301846136e3565b92915050565b60006020820190508181036000830152613d3a818461372b565b905092915050565b60006020820190508181036000830152613d5b81613795565b9050919050565b60006020820190508181036000830152613d7b816137b8565b9050919050565b60006020820190508181036000830152613d9b816137db565b9050919050565b60006020820190508181036000830152613dbb816137fe565b9050919050565b60006020820190508181036000830152613ddb81613821565b9050919050565b60006020820190508181036000830152613dfb81613844565b9050919050565b60006020820190508181036000830152613e1b81613867565b9050919050565b60006020820190508181036000830152613e3b8161388a565b9050919050565b60006020820190508181036000830152613e5b816138ad565b9050919050565b60006020820190508181036000830152613e7b816138d0565b9050919050565b60006020820190508181036000830152613e9b816138f3565b9050919050565b60006020820190508181036000830152613ebb81613916565b9050919050565b60006020820190508181036000830152613edb81613939565b9050919050565b60006020820190508181036000830152613efb8161395c565b9050919050565b60006020820190508181036000830152613f1b8161397f565b9050919050565b60006020820190508181036000830152613f3b816139a2565b9050919050565b60006020820190508181036000830152613f5b816139c5565b9050919050565b60006020820190508181036000830152613f7b816139e8565b9050919050565b60006020820190508181036000830152613f9b81613a0b565b9050919050565b60006020820190508181036000830152613fbb81613a2e565b9050919050565b60006020820190508181036000830152613fdb81613a51565b9050919050565b60006020820190508181036000830152613ffb81613a74565b9050919050565b6000602082019050818103600083015261401b81613a97565b9050919050565b6000602082019050818103600083015261403b81613add565b9050919050565b6000602082019050818103600083015261405b81613b00565b9050919050565b6000602082019050818103600083015261407b81613b23565b9050919050565b6000602082019050818103600083015261409b81613b46565b9050919050565b600060208201905081810360008301526140bb81613b69565b9050919050565b600060208201905081810360008301526140db81613b8c565b9050919050565b600060208201905081810360008301526140fb81613baf565b9050919050565b6000602082019050818103600083015261411b81613bd2565b9050919050565b6000602082019050818103600083015261413b81613bf5565b9050919050565b60006040820190506141576000830184613c18565b92915050565b60006020820190506141726000830184613c47565b92915050565b6000614182614193565b905061418e828261442d565b919050565b6000604051905090565b600067ffffffffffffffff8211156141b8576141b7614594565b5b6141c1826145e1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142278261439b565b91506142328361439b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614267576142666144d8565b5b828201905092915050565b600061427d8261439b565b91506142888361439b565b92508261429857614297614507565b5b828204905092915050565b60006142ae8261439b565b91506142b98361439b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142f2576142f16144d8565b5b828202905092915050565b60006143088261439b565b91506143138361439b565b925082821015614326576143256144d8565b5b828203905092915050565b600061433c8261437b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156143e65780820151818401526020810190506143cb565b838111156143f5576000848401525b50505050565b6000600282049050600182168061441357607f821691505b6020821081141561442757614426614536565b5b50919050565b614436826145e1565b810181811067ffffffffffffffff8211171561445557614454614594565b5b80604052505050565b60006144698261439b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561449c5761449b6144d8565b5b600182019050919050565b60006144b28261439b565b91506144bd8361439b565b9250826144cd576144cc614507565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4e6f206d696e74696e67207965742e0000000000000000000000000000000000600082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f596f7520617265206e6f74207468652073656e6465722e000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f20726573657276652e00000000000000000000600082015250565b7f534f4c44204f5554210000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f57616c6c6574206c696d69742072656163686564210000000000000000000000600082015250565b7f54686520616d6f756e74206973206e6f7420636f72726563742e000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4d617820706572207472616e73616374696f6e2065786365656465642e000000600082015250565b614dca81614331565b8114614dd557600080fd5b50565b614de181614343565b8114614dec57600080fd5b50565b614df88161434f565b8114614e0357600080fd5b50565b614e0f8161439b565b8114614e1a57600080fd5b5056fea2646970667358221220478beb37a2d6bd8534c64745f0a76ea4e6546445485133b4462cfd1aeb28f5b264736f6c63430008070033
Deployed Bytecode Sourcemap
50158:3555:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37018:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38904:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40466:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39987:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35275:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41342:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52219:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35939:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51924:176;;;;;;;;;;;;;:::i;:::-;;41583:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50339:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35452:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51218:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38713:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50268:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51712:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37454:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10410:103;;;;;;;;;;;;;:::i;:::-;;50564:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9759:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51320:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52343:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39073:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50428:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50733:479;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40752:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41839:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51496:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39248:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50480:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51408:82;;;;;;;;;;;;;:::i;:::-;;50382:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50223:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52106:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51596:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41111:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10668:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50296:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37018:372;37120:4;37172:25;37157:40;;;:11;:40;;;;:105;;;;37229:33;37214:48;;;:11;:48;;;;37157:105;:172;;;;37294:35;37279:50;;;:11;:50;;;;37157:172;:225;;;;37346:36;37370:11;37346:23;:36::i;:::-;37157:225;37137:245;;37018:372;;;:::o;38904:100::-;38958:13;38991:5;38984:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38904:100;:::o;40466:214::-;40534:7;40562:16;40570:7;40562;:16::i;:::-;40554:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40648:15;:24;40664:7;40648:24;;;;;;;;;;;;;;;;;;;;;40641:31;;40466:214;;;:::o;39987:413::-;40060:13;40076:24;40092:7;40076:15;:24::i;:::-;40060:40;;40125:5;40119:11;;:2;:11;;;;40111:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40220:5;40204:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40229:37;40246:5;40253:12;:10;:12::i;:::-;40229:16;:37::i;:::-;40204:62;40182:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40364:28;40373:2;40377:7;40386:5;40364:8;:28::i;:::-;40049:351;39987:413;;:::o;35275:100::-;35328:7;35355:12;;35348:19;;35275:100;:::o;41342:170::-;41476:28;41486:4;41492:2;41496:7;41476:9;:28::i;:::-;41342:170;;;:::o;52219:118::-;9990:12;:10;:12::i;:::-;9979:23;;:7;:5;:7::i;:::-;:23;;;9971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4733:1:::1;5331:7;;:19;;5323:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4733:1;5464:7;:18;;;;52303:28:::2;52322:8;52303:18;:28::i;:::-;4689:1:::1;5643:7;:22;;;;52219:118:::0;:::o;35939:1007::-;36028:7;36064:16;36074:5;36064:9;:16::i;:::-;36056:5;:24;36048:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36130:22;36155:13;:11;:13::i;:::-;36130:38;;36179:19;36209:25;36398:9;36393:466;36413:14;36409:1;:18;36393:466;;;36453:31;36487:11;:14;36499:1;36487:14;;;;;;;;;;;36453:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36550:1;36524:28;;:9;:14;;;:28;;;36520:111;;36597:9;:14;;;36577:34;;36520:111;36674:5;36653:26;;:17;:26;;;36649:195;;;36723:5;36708:11;:20;36704:85;;;36764:1;36757:8;;;;;;;;;36704:85;36811:13;;;;;;;36649:195;36434:425;36429:3;;;;;;;36393:466;;;;36882:56;;;;;;;;;;:::i;:::-;;;;;;;;35939:1007;;;;;:::o;51924:176::-;9990:12;:10;:12::i;:::-;9979:23;;:7;:5;:7::i;:::-;:23;;;9971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4733:1:::1;5331:7;;:19;;5323:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4733:1;5464:7;:18;;;;51984:12:::2;52002:10;:15;;52025:21;52002:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51983:68;;;52066:7;52058:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;51976:124;4689:1:::1;5643:7;:22;;;;51924:176::o:0;41583:185::-;41721:39;41738:4;41744:2;41748:7;41721:39;;;;;;;;;;;;:16;:39::i;:::-;41583:185;;;:::o;50339:38::-;;;;:::o;35452:187::-;35519:7;35555:13;:11;:13::i;:::-;35547:5;:21;35539:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35626:5;35619:12;;35452:187;;;:::o;51218:96::-;9990:12;:10;:12::i;:::-;9979:23;;:7;:5;:7::i;:::-;:23;;;9971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51300:8:::1;;51290:7;:18;;;;;;;:::i;:::-;;51218:96:::0;;:::o;38713:124::-;38777:7;38804:20;38816:7;38804:11;:20::i;:::-;:25;;;38797:32;;38713:124;;;:::o;50268:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51712:98::-;9990:12;:10;:12::i;:::-;9979:23;;:7;:5;:7::i;:::-;:23;;;9971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51794:10:::1;51782:9;:22;;;;51712:98:::0;:::o;37454:221::-;37518:7;37563:1;37546:19;;:5;:19;;;;37538:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37639:12;:19;37652:5;37639:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37631:36;;37624:43;;37454:221;;;:::o;10410:103::-;9990:12;:10;:12::i;:::-;9979:23;;:7;:5;:7::i;:::-;:23;;;9971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10475:30:::1;10502:1;10475:18;:30::i;:::-;10410:103::o:0;50564:163::-;9990:12;:10;:12::i;:::-;9979:23;;:7;:5;:7::i;:::-;:23;;;9971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50661:1:::1;50649:9;;:13;;;;:::i;:::-;50643:3;50627:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;50619:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50695:26;50705:10;50717:3;50695:9;:26::i;:::-;50564:163:::0;:::o;9759:87::-;9805:7;9832:6;;;;;;;;;;;9825:13;;9759:87;:::o;51320:82::-;9990:12;:10;:12::i;:::-;9979:23;;:7;:5;:7::i;:::-;:23;;;9971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51390:6:::1;51382:5;:14;;;;51320:82:::0;:::o;52343:129::-;52409:21;;:::i;:::-;52446:20;52458:7;52446:11;:20::i;:::-;52439:27;;52343:129;;;:::o;39073:104::-;39129:13;39162:7;39155:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39073:104;:::o;50428:47::-;;;;:::o;50733:479::-;50809:1;50798:8;;:12;;;;:::i;:::-;50792:3;:18;50783:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;50873:9;50859:23;;:10;:23;;;50851:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50958:12;;50951:3;50924:24;50937:10;50924:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;50916:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;51044:1;51032:9;;:13;;;;:::i;:::-;51026:3;51010:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51002:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51092:5;;51086:3;:11;;;;:::i;:::-;51073:9;:24;51065:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51142:11;;;;;;;;;;;51134:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;51180:26;51190:10;51202:3;51180:9;:26::i;:::-;50733:479;:::o;40752:288::-;40859:12;:10;:12::i;:::-;40847:24;;:8;:24;;;;40839:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40960:8;40915:18;:32;40934:12;:10;:12::i;:::-;40915:32;;;;;;;;;;;;;;;:42;40948:8;40915:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41013:8;40984:48;;40999:12;:10;:12::i;:::-;40984:48;;;41023:8;40984:48;;;;;;:::i;:::-;;;;;;;;40752:288;;:::o;41839:355::-;41998:28;42008:4;42014:2;42018:7;41998:9;:28::i;:::-;42059:48;42082:4;42088:2;42092:7;42101:5;42059:22;:48::i;:::-;42037:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41839:355;;;;:::o;51496:94::-;9990:12;:10;:12::i;:::-;9979:23;;:7;:5;:7::i;:::-;:23;;;9971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51575:9:::1;51564:8;:20;;;;51496:94:::0;:::o;39248:335::-;39321:13;39355:16;39363:7;39355;:16::i;:::-;39347:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39436:21;39460:10;:8;:10::i;:::-;39436:34;;39513:1;39494:7;39488:21;:26;;:87;;;;;;;;;;;;;;;;;39541:7;39550:18;:7;:16;:18::i;:::-;39524:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39488:87;39481:94;;;39248:335;;;:::o;50480:27::-;;;;;;;;;;;;;:::o;51408:82::-;9990:12;:10;:12::i;:::-;9979:23;;:7;:5;:7::i;:::-;:23;;;9971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51473:11:::1;;;;;;;;;;;51472:12;51458:11;;:26;;;;;;;;;;;;;;;;;;51408:82::o:0;50382:41::-;;;;:::o;50223:40::-;;;;:::o;52106:107::-;52164:7;52187:20;52201:5;52187:13;:20::i;:::-;52180:27;;52106:107;;;:::o;51596:110::-;9990:12;:10;:12::i;:::-;9979:23;;:7;:5;:7::i;:::-;:23;;;9971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51687:13:::1;51672:12;:28;;;;51596:110:::0;:::o;41111:164::-;41208:4;41232:18;:25;41251:5;41232:25;;;;;;;;;;;;;;;:35;41258:8;41232:35;;;;;;;;;;;;;;;;;;;;;;;;;41225:42;;41111:164;;;;:::o;10668:201::-;9990:12;:10;:12::i;:::-;9979:23;;:7;:5;:7::i;:::-;:23;;;9971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10777:1:::1;10757:22;;:8;:22;;;;10749:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10833:28;10852:8;10833:18;:28::i;:::-;10668:201:::0;:::o;50296:38::-;;;;:::o;26538:157::-;26623:4;26662:25;26647:40;;;:11;:40;;;;26640:47;;26538:157;;;:::o;42449:111::-;42506:4;42540:12;;42530:7;:22;42523:29;;42449:111;;;:::o;8483:98::-;8536:7;8563:10;8556:17;;8483:98;:::o;47369:196::-;47511:2;47484:15;:24;47500:7;47484:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47549:7;47545:2;47529:28;;47538:5;47529:28;;;;;;;;;;;;47369:196;;;:::o;45249:2002::-;45364:35;45402:20;45414:7;45402:11;:20::i;:::-;45364:58;;45435:22;45477:13;:18;;;45461:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45536:12;:10;:12::i;:::-;45512:36;;:20;45524:7;45512:11;:20::i;:::-;:36;;;45461:87;:154;;;;45565:50;45582:13;:18;;;45602:12;:10;:12::i;:::-;45565:16;:50::i;:::-;45461:154;45435:181;;45637:17;45629:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45752:4;45730:26;;:13;:18;;;:26;;;45722:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45832:1;45818:16;;:2;:16;;;;45810:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45889:43;45911:4;45917:2;45921:7;45930:1;45889:21;:43::i;:::-;45997:49;46014:1;46018:7;46027:13;:18;;;45997:8;:49::i;:::-;46372:1;46342:12;:18;46355:4;46342:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46416:1;46388:12;:16;46401:2;46388:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46462:2;46434:11;:20;46446:7;46434:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46524:15;46479:11;:20;46491:7;46479:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46792:19;46824:1;46814:7;:11;46792:33;;46885:1;46844:43;;:11;:24;46856:11;46844:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46840:295;;;46912:20;46920:11;46912:7;:20::i;:::-;46908:212;;;46989:13;:18;;;46957:11;:24;46969:11;46957:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47072:13;:28;;;47030:11;:24;47042:11;47030:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46908:212;46840:295;46317:829;47182:7;47178:2;47163:27;;47172:4;47163:27;;;;;;;;;;;;47201:42;47222:4;47228:2;47232:7;47241:1;47201:20;:42::i;:::-;45353:1898;;45249:2002;;;:::o;52580:1130::-;52664:1;52652:8;:13;;52644:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;52727:1;52711:12;;:17;;52703:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;52762:33;52798:24;;52762:60;;52867:12;;52839:25;:40;52831:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;53050:16;53108:1;53097:8;53069:25;:36;:40;53050:59;;53202:12;;53198:1;53187:8;:12;:27;53183:91;;;53259:1;53244:12;;:16;53233:27;;53183:91;53293:9;53305:25;53293:37;;53288:354;53337:8;53332:1;:13;53288:354;;53404:1;53373:33;;:11;:14;53385:1;53373:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;53369:260;;;53429:31;53463:14;53475:1;53463:11;:14::i;:::-;53429:48;;53520:9;:14;;;53498:11;:14;53510:1;53498:14;;;;;;;;;;;:19;;;:36;;;;;;;;;;;;;;;;;;53587:9;:24;;;53555:11;:14;53567:1;53555:14;;;;;;;;;;;:29;;;:56;;;;;;;;;;;;;;;;;;53408:221;53369:260;53347:3;;;;;;;53288:354;;;;53694:1;53683:8;:12;53656:24;:39;;;;53027:678;52635:1075;52580:1130;:::o;38114:537::-;38175:21;;:::i;:::-;38217:16;38225:7;38217;:16::i;:::-;38209:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38323:12;38338:7;38323:22;;38318:245;38355:1;38347:4;:9;38318:245;;38385:31;38419:11;:17;38431:4;38419:17;;;;;;;;;;;38385:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38485:1;38459:28;;:9;:14;;;:28;;;38455:93;;38519:9;38512:16;;;;;;38455:93;38366:197;38358:6;;;;;;;;38318:245;;;;38586:57;;;;;;;;;;:::i;:::-;;;;;;;;38114:537;;;;:::o;11029:191::-;11103:16;11122:6;;;;;;;;;;;11103:25;;11148:8;11139:6;;:17;;;;;;;;;;;;;;;;;;11203:8;11172:40;;11193:8;11172:40;;;;;;;;;;;;11092:128;11029:191;:::o;42568:104::-;42637:27;42647:2;42651:8;42637:27;;;;;;;;;;;;:9;:27::i;:::-;42568:104;;:::o;48130:804::-;48285:4;48306:15;:2;:13;;;:15::i;:::-;48302:625;;;48358:2;48342:36;;;48379:12;:10;:12::i;:::-;48393:4;48399:7;48408:5;48342:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48338:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48605:1;48588:6;:13;:18;48584:273;;;48631:61;;;;;;;;;;:::i;:::-;;;;;;;;48584:273;48807:6;48801:13;48792:6;48788:2;48784:15;48777:38;48338:534;48475:45;;;48465:55;;;:6;:55;;;;48458:62;;;;;48302:625;48911:4;48904:11;;48130:804;;;;;;;:::o;51816:102::-;51876:13;51905:7;51898:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51816:102;:::o;6045:723::-;6101:13;6331:1;6322:5;:10;6318:53;;;6349:10;;;;;;;;;;;;;;;;;;;;;6318:53;6381:12;6396:5;6381:20;;6412:14;6437:78;6452:1;6444:4;:9;6437:78;;6470:8;;;;;:::i;:::-;;;;6501:2;6493:10;;;;;:::i;:::-;;;6437:78;;;6525:19;6557:6;6547:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6525:39;;6575:154;6591:1;6582:5;:10;6575:154;;6619:1;6609:11;;;;;:::i;:::-;;;6686:2;6678:5;:10;;;;:::i;:::-;6665:2;:24;;;;:::i;:::-;6652:39;;6635:6;6642;6635:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6715:2;6706:11;;;;;:::i;:::-;;;6575:154;;;6753:6;6739:21;;;;;6045:723;;;;:::o;37683:229::-;37744:7;37789:1;37772:19;;:5;:19;;;;37764:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37871:12;:19;37884:5;37871:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;37863:41;;37856:48;;37683:229;;;:::o;49422:159::-;;;;;:::o;49993:158::-;;;;;:::o;43035:163::-;43158:32;43164:2;43168:8;43178:5;43185:4;43158:5;:32::i;:::-;43035:163;;;:::o;12460:326::-;12520:4;12777:1;12755:7;:19;;;:23;12748:30;;12460:326;;;:::o;43457:1538::-;43596:20;43619:12;;43596:35;;43664:1;43650:16;;:2;:16;;;;43642:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43735:1;43723:8;:13;;43715:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43794:61;43824:1;43828:2;43832:12;43846:8;43794:21;:61::i;:::-;44169:8;44133:12;:16;44146:2;44133:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44234:8;44193:12;:16;44206:2;44193:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44293:2;44260:11;:25;44272:12;44260:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44360:15;44310:11;:25;44322:12;44310:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44393:20;44416:12;44393:35;;44450:9;44445:415;44465:8;44461:1;:12;44445:415;;;44529:12;44525:2;44504:38;;44521:1;44504:38;;;;;;;;;;;;44565:4;44561:249;;;44628:59;44659:1;44663:2;44667:12;44681:5;44628:22;:59::i;:::-;44594:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44561:249;44830:14;;;;;;;44475:3;;;;;;;44445:415;;;;44891:12;44876;:27;;;;44108:807;44927:60;44956:1;44960:2;44964:12;44978:8;44927:20;:60::i;:::-;43585:1410;43457:1538;;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:::-;12307:3;12328:67;12392:2;12387:3;12328:67;:::i;:::-;12321:74;;12404:93;12493:3;12404:93;:::i;:::-;12522:2;12517:3;12513:12;12506:19;;12165:366;;;:::o;12537:::-;12679:3;12700:67;12764:2;12759:3;12700:67;:::i;:::-;12693:74;;12776:93;12865:3;12776:93;:::i;:::-;12894:2;12889:3;12885:12;12878:19;;12537:366;;;:::o;12909:::-;13051:3;13072:67;13136:2;13131:3;13072:67;:::i;:::-;13065:74;;13148:93;13237:3;13148:93;:::i;:::-;13266:2;13261:3;13257:12;13250:19;;12909:366;;;:::o;13281:::-;13423:3;13444:67;13508:2;13503:3;13444:67;:::i;:::-;13437:74;;13520:93;13609:3;13520:93;:::i;:::-;13638:2;13633:3;13629:12;13622:19;;13281:366;;;:::o;13653:::-;13795:3;13816:67;13880:2;13875:3;13816:67;:::i;:::-;13809:74;;13892:93;13981:3;13892:93;:::i;:::-;14010:2;14005:3;14001:12;13994:19;;13653:366;;;:::o;14025:365::-;14167:3;14188:66;14252:1;14247:3;14188:66;:::i;:::-;14181:73;;14263:93;14352:3;14263:93;:::i;:::-;14381:2;14376:3;14372:12;14365:19;;14025:365;;;:::o;14396:366::-;14538:3;14559:67;14623:2;14618:3;14559:67;:::i;:::-;14552:74;;14635:93;14724:3;14635:93;:::i;:::-;14753:2;14748:3;14744:12;14737:19;;14396:366;;;:::o;14768:::-;14910:3;14931:67;14995:2;14990:3;14931:67;:::i;:::-;14924:74;;15007:93;15096:3;15007:93;:::i;:::-;15125:2;15120:3;15116:12;15109:19;;14768:366;;;:::o;15140:::-;15282:3;15303:67;15367:2;15362:3;15303:67;:::i;:::-;15296:74;;15379:93;15468:3;15379:93;:::i;:::-;15497:2;15492:3;15488:12;15481:19;;15140:366;;;:::o;15512:::-;15654:3;15675:67;15739:2;15734:3;15675:67;:::i;:::-;15668:74;;15751:93;15840:3;15751:93;:::i;:::-;15869:2;15864:3;15860:12;15853:19;;15512:366;;;:::o;15884:::-;16026:3;16047:67;16111:2;16106:3;16047:67;:::i;:::-;16040:74;;16123:93;16212:3;16123:93;:::i;:::-;16241:2;16236:3;16232:12;16225:19;;15884:366;;;:::o;16256:::-;16398:3;16419:67;16483:2;16478:3;16419:67;:::i;:::-;16412:74;;16495:93;16584:3;16495:93;:::i;:::-;16613:2;16608:3;16604:12;16597:19;;16256:366;;;:::o;16628:::-;16770:3;16791:67;16855:2;16850:3;16791:67;:::i;:::-;16784:74;;16867:93;16956:3;16867:93;:::i;:::-;16985:2;16980:3;16976:12;16969:19;;16628:366;;;:::o;17000:398::-;17159:3;17180:83;17261:1;17256:3;17180:83;:::i;:::-;17173:90;;17272:93;17361:3;17272:93;:::i;:::-;17390:1;17385:3;17381:11;17374:18;;17000:398;;;:::o;17404:366::-;17546:3;17567:67;17631:2;17626:3;17567:67;:::i;:::-;17560:74;;17643:93;17732:3;17643:93;:::i;:::-;17761:2;17756:3;17752:12;17745:19;;17404:366;;;:::o;17776:::-;17918:3;17939:67;18003:2;17998:3;17939:67;:::i;:::-;17932:74;;18015:93;18104:3;18015:93;:::i;:::-;18133:2;18128:3;18124:12;18117:19;;17776:366;;;:::o;18148:::-;18290:3;18311:67;18375:2;18370:3;18311:67;:::i;:::-;18304:74;;18387:93;18476:3;18387:93;:::i;:::-;18505:2;18500:3;18496:12;18489:19;;18148:366;;;:::o;18520:::-;18662:3;18683:67;18747:2;18742:3;18683:67;:::i;:::-;18676:74;;18759:93;18848:3;18759:93;:::i;:::-;18877:2;18872:3;18868:12;18861:19;;18520:366;;;:::o;18892:::-;19034:3;19055:67;19119:2;19114:3;19055:67;:::i;:::-;19048:74;;19131:93;19220:3;19131:93;:::i;:::-;19249:2;19244:3;19240:12;19233:19;;18892:366;;;:::o;19264:::-;19406:3;19427:67;19491:2;19486:3;19427:67;:::i;:::-;19420:74;;19503:93;19592:3;19503:93;:::i;:::-;19621:2;19616:3;19612:12;19605:19;;19264:366;;;:::o;19636:::-;19778:3;19799:67;19863:2;19858:3;19799:67;:::i;:::-;19792:74;;19875:93;19964:3;19875:93;:::i;:::-;19993:2;19988:3;19984:12;19977:19;;19636:366;;;:::o;20008:::-;20150:3;20171:67;20235:2;20230:3;20171:67;:::i;:::-;20164:74;;20247:93;20336:3;20247:93;:::i;:::-;20365:2;20360:3;20356:12;20349:19;;20008:366;;;:::o;20380:::-;20522:3;20543:67;20607:2;20602:3;20543:67;:::i;:::-;20536:74;;20619:93;20708:3;20619:93;:::i;:::-;20737:2;20732:3;20728:12;20721:19;;20380:366;;;:::o;20822:529::-;20983:4;20978:3;20974:14;21070:4;21063:5;21059:16;21053:23;21089:63;21146:4;21141:3;21137:14;21123:12;21089:63;:::i;:::-;20998:164;21254:4;21247:5;21243:16;21237:23;21273:61;21328:4;21323:3;21319:14;21305:12;21273:61;:::i;:::-;21172:172;20952:399;20822:529;;:::o;21357:118::-;21444:24;21462:5;21444:24;:::i;:::-;21439:3;21432:37;21357:118;;:::o;21481:105::-;21556:23;21573:5;21556:23;:::i;:::-;21551:3;21544:36;21481:105;;:::o;21592:435::-;21772:3;21794:95;21885:3;21876:6;21794:95;:::i;:::-;21787:102;;21906:95;21997:3;21988:6;21906:95;:::i;:::-;21899:102;;22018:3;22011:10;;21592:435;;;;;:::o;22033:379::-;22217:3;22239:147;22382:3;22239:147;:::i;:::-;22232:154;;22403:3;22396:10;;22033:379;;;:::o;22418:222::-;22511:4;22549:2;22538:9;22534:18;22526:26;;22562:71;22630:1;22619:9;22615:17;22606:6;22562:71;:::i;:::-;22418:222;;;;:::o;22646:640::-;22841:4;22879:3;22868:9;22864:19;22856:27;;22893:71;22961:1;22950:9;22946:17;22937:6;22893:71;:::i;:::-;22974:72;23042:2;23031:9;23027:18;23018:6;22974:72;:::i;:::-;23056;23124:2;23113:9;23109:18;23100:6;23056:72;:::i;:::-;23175:9;23169:4;23165:20;23160:2;23149:9;23145:18;23138:48;23203:76;23274:4;23265:6;23203:76;:::i;:::-;23195:84;;22646:640;;;;;;;:::o;23292:210::-;23379:4;23417:2;23406:9;23402:18;23394:26;;23430:65;23492:1;23481:9;23477:17;23468:6;23430:65;:::i;:::-;23292:210;;;;:::o;23508:313::-;23621:4;23659:2;23648:9;23644:18;23636:26;;23708:9;23702:4;23698:20;23694:1;23683:9;23679:17;23672:47;23736:78;23809:4;23800:6;23736:78;:::i;:::-;23728:86;;23508:313;;;;:::o;23827:419::-;23993:4;24031:2;24020:9;24016:18;24008:26;;24080:9;24074:4;24070:20;24066:1;24055:9;24051:17;24044:47;24108:131;24234:4;24108:131;:::i;:::-;24100:139;;23827:419;;;:::o;24252:::-;24418:4;24456:2;24445:9;24441:18;24433:26;;24505:9;24499:4;24495:20;24491:1;24480:9;24476:17;24469:47;24533:131;24659:4;24533:131;:::i;:::-;24525:139;;24252:419;;;:::o;24677:::-;24843:4;24881:2;24870:9;24866:18;24858:26;;24930:9;24924:4;24920:20;24916:1;24905:9;24901:17;24894:47;24958:131;25084:4;24958:131;:::i;:::-;24950:139;;24677:419;;;:::o;25102:::-;25268:4;25306:2;25295:9;25291:18;25283:26;;25355:9;25349:4;25345:20;25341:1;25330:9;25326:17;25319:47;25383:131;25509:4;25383:131;:::i;:::-;25375:139;;25102:419;;;:::o;25527:::-;25693:4;25731:2;25720:9;25716:18;25708:26;;25780:9;25774:4;25770:20;25766:1;25755:9;25751:17;25744:47;25808:131;25934:4;25808:131;:::i;:::-;25800:139;;25527:419;;;:::o;25952:::-;26118:4;26156:2;26145:9;26141:18;26133:26;;26205:9;26199:4;26195:20;26191:1;26180:9;26176:17;26169:47;26233:131;26359:4;26233:131;:::i;:::-;26225:139;;25952:419;;;:::o;26377:::-;26543:4;26581:2;26570:9;26566:18;26558:26;;26630:9;26624:4;26620:20;26616:1;26605:9;26601:17;26594:47;26658:131;26784:4;26658:131;:::i;:::-;26650:139;;26377:419;;;:::o;26802:::-;26968:4;27006:2;26995:9;26991:18;26983:26;;27055:9;27049:4;27045:20;27041:1;27030:9;27026:17;27019:47;27083:131;27209:4;27083:131;:::i;:::-;27075:139;;26802:419;;;:::o;27227:::-;27393:4;27431:2;27420:9;27416:18;27408:26;;27480:9;27474:4;27470:20;27466:1;27455:9;27451:17;27444:47;27508:131;27634:4;27508:131;:::i;:::-;27500:139;;27227:419;;;:::o;27652:::-;27818:4;27856:2;27845:9;27841:18;27833:26;;27905:9;27899:4;27895:20;27891:1;27880:9;27876:17;27869:47;27933:131;28059:4;27933:131;:::i;:::-;27925:139;;27652:419;;;:::o;28077:::-;28243:4;28281:2;28270:9;28266:18;28258:26;;28330:9;28324:4;28320:20;28316:1;28305:9;28301:17;28294:47;28358:131;28484:4;28358:131;:::i;:::-;28350:139;;28077:419;;;:::o;28502:::-;28668:4;28706:2;28695:9;28691:18;28683:26;;28755:9;28749:4;28745:20;28741:1;28730:9;28726:17;28719:47;28783:131;28909:4;28783:131;:::i;:::-;28775:139;;28502:419;;;:::o;28927:::-;29093:4;29131:2;29120:9;29116:18;29108:26;;29180:9;29174:4;29170:20;29166:1;29155:9;29151:17;29144:47;29208:131;29334:4;29208:131;:::i;:::-;29200:139;;28927:419;;;:::o;29352:::-;29518:4;29556:2;29545:9;29541:18;29533:26;;29605:9;29599:4;29595:20;29591:1;29580:9;29576:17;29569:47;29633:131;29759:4;29633:131;:::i;:::-;29625:139;;29352:419;;;:::o;29777:::-;29943:4;29981:2;29970:9;29966:18;29958:26;;30030:9;30024:4;30020:20;30016:1;30005:9;30001:17;29994:47;30058:131;30184:4;30058:131;:::i;:::-;30050:139;;29777:419;;;:::o;30202:::-;30368:4;30406:2;30395:9;30391:18;30383:26;;30455:9;30449:4;30445:20;30441:1;30430:9;30426:17;30419:47;30483:131;30609:4;30483:131;:::i;:::-;30475:139;;30202:419;;;:::o;30627:::-;30793:4;30831:2;30820:9;30816:18;30808:26;;30880:9;30874:4;30870:20;30866:1;30855:9;30851:17;30844:47;30908:131;31034:4;30908:131;:::i;:::-;30900:139;;30627:419;;;:::o;31052:::-;31218:4;31256:2;31245:9;31241:18;31233:26;;31305:9;31299:4;31295:20;31291:1;31280:9;31276:17;31269:47;31333:131;31459:4;31333:131;:::i;:::-;31325:139;;31052:419;;;:::o;31477:::-;31643:4;31681:2;31670:9;31666:18;31658:26;;31730:9;31724:4;31720:20;31716:1;31705:9;31701:17;31694:47;31758:131;31884:4;31758:131;:::i;:::-;31750:139;;31477:419;;;:::o;31902:::-;32068:4;32106:2;32095:9;32091:18;32083:26;;32155:9;32149:4;32145:20;32141:1;32130:9;32126:17;32119:47;32183:131;32309:4;32183:131;:::i;:::-;32175:139;;31902:419;;;:::o;32327:::-;32493:4;32531:2;32520:9;32516:18;32508:26;;32580:9;32574:4;32570:20;32566:1;32555:9;32551:17;32544:47;32608:131;32734:4;32608:131;:::i;:::-;32600:139;;32327:419;;;:::o;32752:::-;32918:4;32956:2;32945:9;32941:18;32933:26;;33005:9;32999:4;32995:20;32991:1;32980:9;32976:17;32969:47;33033:131;33159:4;33033:131;:::i;:::-;33025:139;;32752:419;;;:::o;33177:::-;33343:4;33381:2;33370:9;33366:18;33358:26;;33430:9;33424:4;33420:20;33416:1;33405:9;33401:17;33394:47;33458:131;33584:4;33458:131;:::i;:::-;33450:139;;33177:419;;;:::o;33602:::-;33768:4;33806:2;33795:9;33791:18;33783:26;;33855:9;33849:4;33845:20;33841:1;33830:9;33826:17;33819:47;33883:131;34009:4;33883:131;:::i;:::-;33875:139;;33602:419;;;:::o;34027:::-;34193:4;34231:2;34220:9;34216:18;34208:26;;34280:9;34274:4;34270:20;34266:1;34255:9;34251:17;34244:47;34308:131;34434:4;34308:131;:::i;:::-;34300:139;;34027:419;;;:::o;34452:::-;34618:4;34656:2;34645:9;34641:18;34633:26;;34705:9;34699:4;34695:20;34691:1;34680:9;34676:17;34669:47;34733:131;34859:4;34733:131;:::i;:::-;34725:139;;34452:419;;;:::o;34877:::-;35043:4;35081:2;35070:9;35066:18;35058:26;;35130:9;35124:4;35120:20;35116:1;35105:9;35101:17;35094:47;35158:131;35284:4;35158:131;:::i;:::-;35150:139;;34877:419;;;:::o;35302:::-;35468:4;35506:2;35495:9;35491:18;35483:26;;35555:9;35549:4;35545:20;35541:1;35530:9;35526:17;35519:47;35583:131;35709:4;35583:131;:::i;:::-;35575:139;;35302:419;;;:::o;35727:::-;35893:4;35931:2;35920:9;35916:18;35908:26;;35980:9;35974:4;35970:20;35966:1;35955:9;35951:17;35944:47;36008:131;36134:4;36008:131;:::i;:::-;36000:139;;35727:419;;;:::o;36152:::-;36318:4;36356:2;36345:9;36341:18;36333:26;;36405:9;36399:4;36395:20;36391:1;36380:9;36376:17;36369:47;36433:131;36559:4;36433:131;:::i;:::-;36425:139;;36152:419;;;:::o;36577:::-;36743:4;36781:2;36770:9;36766:18;36758:26;;36830:9;36824:4;36820:20;36816:1;36805:9;36801:17;36794:47;36858:131;36984:4;36858:131;:::i;:::-;36850:139;;36577:419;;;:::o;37002:::-;37168:4;37206:2;37195:9;37191:18;37183:26;;37255:9;37249:4;37245:20;37241:1;37230:9;37226:17;37219:47;37283:131;37409:4;37283:131;:::i;:::-;37275:139;;37002:419;;;:::o;37427:350::-;37584:4;37622:2;37611:9;37607:18;37599:26;;37635:135;37767:1;37756:9;37752:17;37743:6;37635:135;:::i;:::-;37427:350;;;;:::o;37783:222::-;37876:4;37914:2;37903:9;37899:18;37891:26;;37927:71;37995:1;37984:9;37980:17;37971:6;37927:71;:::i;:::-;37783:222;;;;:::o;38011:129::-;38045:6;38072:20;;:::i;:::-;38062:30;;38101:33;38129:4;38121:6;38101:33;:::i;:::-;38011:129;;;:::o;38146:75::-;38179:6;38212:2;38206:9;38196:19;;38146:75;:::o;38227:307::-;38288:4;38378:18;38370:6;38367:30;38364:56;;;38400:18;;:::i;:::-;38364:56;38438:29;38460:6;38438:29;:::i;:::-;38430:37;;38522:4;38516;38512:15;38504:23;;38227:307;;;:::o;38540:98::-;38591:6;38625:5;38619:12;38609:22;;38540:98;;;:::o;38644:99::-;38696:6;38730:5;38724:12;38714:22;;38644:99;;;:::o;38749:168::-;38832:11;38866:6;38861:3;38854:19;38906:4;38901:3;38897:14;38882:29;;38749:168;;;;:::o;38923:147::-;39024:11;39061:3;39046:18;;38923:147;;;;:::o;39076:169::-;39160:11;39194:6;39189:3;39182:19;39234:4;39229:3;39225:14;39210:29;;39076:169;;;;:::o;39251:148::-;39353:11;39390:3;39375:18;;39251:148;;;;:::o;39405:305::-;39445:3;39464:20;39482:1;39464:20;:::i;:::-;39459:25;;39498:20;39516:1;39498:20;:::i;:::-;39493:25;;39652:1;39584:66;39580:74;39577:1;39574:81;39571:107;;;39658:18;;:::i;:::-;39571:107;39702:1;39699;39695:9;39688:16;;39405:305;;;;:::o;39716:185::-;39756:1;39773:20;39791:1;39773:20;:::i;:::-;39768:25;;39807:20;39825:1;39807:20;:::i;:::-;39802:25;;39846:1;39836:35;;39851:18;;:::i;:::-;39836:35;39893:1;39890;39886:9;39881:14;;39716:185;;;;:::o;39907:348::-;39947:7;39970:20;39988:1;39970:20;:::i;:::-;39965:25;;40004:20;40022:1;40004:20;:::i;:::-;39999:25;;40192:1;40124:66;40120:74;40117:1;40114:81;40109:1;40102:9;40095:17;40091:105;40088:131;;;40199:18;;:::i;:::-;40088:131;40247:1;40244;40240:9;40229:20;;39907:348;;;;:::o;40261:191::-;40301:4;40321:20;40339:1;40321:20;:::i;:::-;40316:25;;40355:20;40373:1;40355:20;:::i;:::-;40350:25;;40394:1;40391;40388:8;40385:34;;;40399:18;;:::i;:::-;40385:34;40444:1;40441;40437:9;40429:17;;40261:191;;;;:::o;40458:96::-;40495:7;40524:24;40542:5;40524:24;:::i;:::-;40513:35;;40458:96;;;:::o;40560:90::-;40594:7;40637:5;40630:13;40623:21;40612:32;;40560:90;;;:::o;40656:149::-;40692:7;40732:66;40725:5;40721:78;40710:89;;40656:149;;;:::o;40811:126::-;40848:7;40888:42;40881:5;40877:54;40866:65;;40811:126;;;:::o;40943:77::-;40980:7;41009:5;40998:16;;40943:77;;;:::o;41026:101::-;41062:7;41102:18;41095:5;41091:30;41080:41;;41026:101;;;:::o;41133:154::-;41217:6;41212:3;41207;41194:30;41279:1;41270:6;41265:3;41261:16;41254:27;41133:154;;;:::o;41293:307::-;41361:1;41371:113;41385:6;41382:1;41379:13;41371:113;;;41470:1;41465:3;41461:11;41455:18;41451:1;41446:3;41442:11;41435:39;41407:2;41404:1;41400:10;41395:15;;41371:113;;;41502:6;41499:1;41496:13;41493:101;;;41582:1;41573:6;41568:3;41564:16;41557:27;41493:101;41342:258;41293:307;;;:::o;41606:320::-;41650:6;41687:1;41681:4;41677:12;41667:22;;41734:1;41728:4;41724:12;41755:18;41745:81;;41811:4;41803:6;41799:17;41789:27;;41745:81;41873:2;41865:6;41862:14;41842:18;41839:38;41836:84;;;41892:18;;:::i;:::-;41836:84;41657:269;41606:320;;;:::o;41932:281::-;42015:27;42037:4;42015:27;:::i;:::-;42007:6;42003:40;42145:6;42133:10;42130:22;42109:18;42097:10;42094:34;42091:62;42088:88;;;42156:18;;:::i;:::-;42088:88;42196:10;42192:2;42185:22;41975:238;41932:281;;:::o;42219:233::-;42258:3;42281:24;42299:5;42281:24;:::i;:::-;42272:33;;42327:66;42320:5;42317:77;42314:103;;;42397:18;;:::i;:::-;42314:103;42444:1;42437:5;42433:13;42426:20;;42219:233;;;:::o;42458:176::-;42490:1;42507:20;42525:1;42507:20;:::i;:::-;42502:25;;42541:20;42559:1;42541:20;:::i;:::-;42536:25;;42580:1;42570:35;;42585:18;;:::i;:::-;42570:35;42626:1;42623;42619:9;42614:14;;42458:176;;;;:::o;42640:180::-;42688:77;42685:1;42678:88;42785:4;42782:1;42775:15;42809:4;42806:1;42799:15;42826:180;42874:77;42871:1;42864:88;42971:4;42968:1;42961:15;42995:4;42992:1;42985:15;43012:180;43060:77;43057:1;43050:88;43157:4;43154:1;43147:15;43181:4;43178:1;43171:15;43198:180;43246:77;43243:1;43236:88;43343:4;43340:1;43333:15;43367:4;43364:1;43357:15;43384:180;43432:77;43429:1;43422:88;43529:4;43526:1;43519:15;43553:4;43550:1;43543:15;43570:117;43679:1;43676;43669:12;43693:117;43802:1;43799;43792:12;43816:117;43925:1;43922;43915:12;43939:117;44048:1;44045;44038:12;44062:117;44171:1;44168;44161:12;44185:117;44294:1;44291;44284:12;44308:102;44349:6;44400:2;44396:7;44391:2;44384:5;44380:14;44376:28;44366:38;;44308:102;;;:::o;44416:221::-;44556:34;44552:1;44544:6;44540:14;44533:58;44625:4;44620:2;44612:6;44608:15;44601:29;44416:221;:::o;44643:225::-;44783:34;44779:1;44771:6;44767:14;44760:58;44852:8;44847:2;44839:6;44835:15;44828:33;44643:225;:::o;44874:229::-;45014:34;45010:1;45002:6;44998:14;44991:58;45083:12;45078:2;45070:6;45066:15;45059:37;44874:229;:::o;45109:170::-;45249:22;45245:1;45237:6;45233:14;45226:46;45109:170;:::o;45285:222::-;45425:34;45421:1;45413:6;45409:14;45402:58;45494:5;45489:2;45481:6;45477:15;45470:30;45285:222;:::o;45513:224::-;45653:34;45649:1;45641:6;45637:14;45630:58;45722:7;45717:2;45709:6;45705:15;45698:32;45513:224;:::o;45743:236::-;45883:34;45879:1;45871:6;45867:14;45860:58;45952:19;45947:2;45939:6;45935:15;45928:44;45743:236;:::o;45985:165::-;46125:17;46121:1;46113:6;46109:14;46102:41;45985:165;:::o;46156:178::-;46296:30;46292:1;46284:6;46280:14;46273:54;46156:178;:::o;46340:244::-;46480:34;46476:1;46468:6;46464:14;46457:58;46549:27;46544:2;46536:6;46532:15;46525:52;46340:244;:::o;46590:174::-;46730:26;46726:1;46718:6;46714:14;46707:50;46590:174;:::o;46770:173::-;46910:25;46906:1;46898:6;46894:14;46887:49;46770:173;:::o;46949:230::-;47089:34;47085:1;47077:6;47073:14;47066:58;47158:13;47153:2;47145:6;47141:15;47134:38;46949:230;:::o;47185:225::-;47325:34;47321:1;47313:6;47309:14;47302:58;47394:8;47389:2;47381:6;47377:15;47370:33;47185:225;:::o;47416:172::-;47556:24;47552:1;47544:6;47540:14;47533:48;47416:172;:::o;47594:159::-;47734:11;47730:1;47722:6;47718:14;47711:35;47594:159;:::o;47759:182::-;47899:34;47895:1;47887:6;47883:14;47876:58;47759:182;:::o;47947:234::-;48087:34;48083:1;48075:6;48071:14;48064:58;48156:17;48151:2;48143:6;48139:15;48132:42;47947:234;:::o;48187:176::-;48327:28;48323:1;48315:6;48311:14;48304:52;48187:176;:::o;48369:237::-;48509:34;48505:1;48497:6;48493:14;48486:58;48578:20;48573:2;48565:6;48561:15;48554:45;48369:237;:::o;48612:171::-;48752:23;48748:1;48740:6;48736:14;48729:47;48612:171;:::o;48789:176::-;48929:28;48925:1;48917:6;48913:14;48906:52;48789:176;:::o;48971:221::-;49111:34;49107:1;49099:6;49095:14;49088:58;49180:4;49175:2;49167:6;49163:15;49156:29;48971:221;:::o;49198:114::-;;:::o;49318:166::-;49458:18;49454:1;49446:6;49442:14;49435:42;49318:166;:::o;49490:238::-;49630:34;49626:1;49618:6;49614:14;49607:58;49699:21;49694:2;49686:6;49682:15;49675:46;49490:238;:::o;49734:220::-;49874:34;49870:1;49862:6;49858:14;49851:58;49943:3;49938:2;49930:6;49926:15;49919:28;49734:220;:::o;49960:227::-;50100:34;50096:1;50088:6;50084:14;50077:58;50169:10;50164:2;50156:6;50152:15;50145:35;49960:227;:::o;50193:233::-;50333:34;50329:1;50321:6;50317:14;50310:58;50402:16;50397:2;50389:6;50385:15;50378:41;50193:233;:::o;50432:181::-;50572:33;50568:1;50560:6;50556:14;50549:57;50432:181;:::o;50619:234::-;50759:34;50755:1;50747:6;50743:14;50736:58;50828:17;50823:2;50815:6;50811:15;50804:42;50619:234;:::o;50859:232::-;50999:34;50995:1;50987:6;50983:14;50976:58;51068:15;51063:2;51055:6;51051:15;51044:40;50859:232;:::o;51097:179::-;51237:31;51233:1;51225:6;51221:14;51214:55;51097:179;:::o;51282:122::-;51355:24;51373:5;51355:24;:::i;:::-;51348:5;51345:35;51335:63;;51394:1;51391;51384:12;51335:63;51282:122;:::o;51410:116::-;51480:21;51495:5;51480:21;:::i;:::-;51473:5;51470:32;51460:60;;51516:1;51513;51506:12;51460:60;51410:116;:::o;51532:120::-;51604:23;51621:5;51604:23;:::i;:::-;51597:5;51594:34;51584:62;;51642:1;51639;51632:12;51584:62;51532:120;:::o;51658:122::-;51731:24;51749:5;51731:24;:::i;:::-;51724:5;51721:35;51711:63;;51770:1;51767;51760:12;51711:63;51658:122;:::o
Swarm Source
ipfs://478beb37a2d6bd8534c64745f0a76ea4e6546445485133b4462cfd1aeb28f5b2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.