ERC-721
Overview
Max Total Supply
610 DULL
Holders
63
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DULLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DullGuys
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-17 */ // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // 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: ERC721A.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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public 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 {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: DullGuys.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.11; /* ________ ____ ___.____ .____ ________ ____ ________.___. _________ \______ \ | | \ | | | / _____/| | \__ | |/ _____/ | | \| | / | | | / \ ___| | // | |\_____ \ | ` \ | /| |___| |___ \ \_\ \ | / \____ |/ \ /_______ /______/ |_______ \_______ \ \______ /______/ / ______/_______ / \/ \/ \/ \/ \/ \/ */ contract DullGuys is ERC721A, Ownable { using SafeMath for uint256; uint public constant MAX_SUPPLY = 10000; uint public PRICE = 0.00 ether; uint public greedyAmount = 20; uint public greedyPrice = 0.05 ether; uint256 public mintLimit = 3; string private BASE_URI; bool public saleActive; uint256 public maxPerWallet = 150; constructor(string memory initBaseURI) ERC721A("Dull Guys", "DULL") { saleActive = false; updateBaseUri(initBaseURI); } function toggleSale() public onlyOwner { saleActive = !saleActive; } function getSaleActive() public view returns (bool) { return saleActive == true; } function updateBaseUri(string memory baseUri) public onlyOwner { BASE_URI = baseUri; } function updatePrice(uint price) public onlyOwner { PRICE = price; } function updateGreedyPrice(uint newGreedyPrice) public onlyOwner { greedyPrice = newGreedyPrice; } function updateGreedyAmount(uint256 newGreedyAmount) public onlyOwner { greedyAmount = newGreedyAmount; } function updateMaxPerWallet(uint256 newMaxPerWallet) public onlyOwner { maxPerWallet = newMaxPerWallet; } function updateMintLimit(uint256 newMintLimit) public onlyOwner { mintLimit = newMintLimit; } function ownerMint(address to, uint256 quantity) public onlyOwner { _safeMint(to, quantity); } function mint(uint256 quantity) external payable { require(saleActive, "Sale is not active" ); require( quantity <= mintLimit, "Too many tokens for one transaction" ); require( PRICE * quantity <= msg.value, "Insufficient funds sent" ); require( balanceOf(msg.sender) + quantity <= maxPerWallet, "Too many tokens for one wallet" ); secureMint(quantity); } function greedyMint() external payable { require( saleActive, "Sale is not active" ); require( greedyPrice <= msg.value, "Insufficient funds sent" ); require( balanceOf(msg.sender) + greedyAmount <= maxPerWallet, "Too many tokens for one wallet" ); require( totalSupply().add(greedyAmount) < MAX_SUPPLY, "No items left to mint" ); _safeMint(msg.sender, greedyAmount); } function secureMint(uint256 quantity) internal { require( quantity > 0, "Quantity cannot be zero" ); require( totalSupply().add(quantity) < MAX_SUPPLY, "No items left to mint" ); _safeMint(msg.sender, quantity); } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function _baseURI() internal view override returns (string memory) { return BASE_URI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"greedyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"greedyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"greedyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","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":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"updateBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newGreedyAmount","type":"uint256"}],"name":"updateGreedyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newGreedyPrice","type":"uint256"}],"name":"updateGreedyPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"updateMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintLimit","type":"uint256"}],"name":"updateMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600855601460095566b1a2bc2ec50000600a556003600b556096600e553480156200003057600080fd5b50604051620048c5380380620048c583398181016040528101906200005691906200054b565b6040518060400160405280600981526020017f44756c6c204775797300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f44554c4c000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000da929190620002fe565b508060029080519060200190620000f3929190620002fe565b505050620001166200010a6200014960201b60201c565b6200015160201b60201c565b6000600d60006101000a81548160ff02191690831515021790555062000142816200021760201b60201c565b5062000684565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002276200024360201b60201c565b80600c90805190602001906200023f929190620002fe565b5050565b620002536200014960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000279620002d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c990620005fd565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200030c906200064e565b90600052602060002090601f0160209004810192826200033057600085556200037c565b82601f106200034b57805160ff19168380011785556200037c565b828001600101855582156200037c579182015b828111156200037b5782518255916020019190600101906200035e565b5b5090506200038b91906200038f565b5090565b5b80821115620003aa57600081600090555060010162000390565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200041782620003cc565b810181811067ffffffffffffffff82111715620004395762000438620003dd565b5b80604052505050565b60006200044e620003ae565b90506200045c82826200040c565b919050565b600067ffffffffffffffff8211156200047f576200047e620003dd565b5b6200048a82620003cc565b9050602081019050919050565b60005b83811015620004b75780820151818401526020810190506200049a565b83811115620004c7576000848401525b50505050565b6000620004e4620004de8462000461565b62000442565b905082815260208101848484011115620005035762000502620003c7565b5b6200051084828562000497565b509392505050565b600082601f83011262000530576200052f620003c2565b5b815162000542848260208601620004cd565b91505092915050565b600060208284031215620005645762000563620003b8565b5b600082015167ffffffffffffffff811115620005855762000584620003bd565b5b620005938482850162000518565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620005e56020836200059c565b9150620005f282620005ad565b602082019050919050565b600060208201905081810360008301526200061881620005d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066757607f821691505b602082108114156200067e576200067d6200061f565b5b50919050565b61423180620006946000396000f3fe6080604052600436106102255760003560e01c80637d8966e411610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107a1578063e01d55c5146107de578063e985e9c514610807578063f2fde38b14610844578063fecfda491461086d57610225565b8063a0712d6814610700578063a22cb4651461071c578063b0aa49a414610745578063b37cfec91461076e578063b88d4fde1461077857610225565b80638da5cb5b116100f25780638da5cb5b1461062b57806395d89b411461065657806397db4fe314610681578063996517cf146106ac5780639e0156a2146106d757610225565b80637d8966e4146105955780637e8929fd146105ac5780638d6cc56d146105d75780638d859f3e1461060057610225565b80633ccfd60b116101b15780636352211e116101755780636352211e146104ae57806368428a1b146104eb57806370a0823114610516578063715018a614610553578063792592051461056a57610225565b80633ccfd60b146103dd57806342842e0e146103f4578063453c23101461041d578063484b973c146104485780634f6ccce71461047157610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c57806332cb6b0c1461038957806339f7e37f146103b457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612ac2565b610896565b60405161025e9190612b0a565b60405180910390f35b34801561027357600080fd5b5061027c6109e0565b6040516102899190612bbe565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612c16565b610a72565b6040516102c69190612c84565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612ccb565b610af7565b005b34801561030457600080fd5b5061030d610c10565b60405161031a9190612d1a565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612d35565b610c19565b005b34801561035857600080fd5b50610373600480360381019061036e9190612ccb565b610c29565b6040516103809190612d1a565b60405180910390f35b34801561039557600080fd5b5061039e610e1b565b6040516103ab9190612d1a565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190612ebd565b610e21565b005b3480156103e957600080fd5b506103f2610e43565b005b34801561040057600080fd5b5061041b60048036038101906104169190612d35565b610e9a565b005b34801561042957600080fd5b50610432610eba565b60405161043f9190612d1a565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190612ccb565b610ec0565b005b34801561047d57600080fd5b5061049860048036038101906104939190612c16565b610ed6565b6040516104a59190612d1a565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612c16565b610f29565b6040516104e29190612c84565b60405180910390f35b3480156104f757600080fd5b50610500610f3f565b60405161050d9190612b0a565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190612f06565b610f52565b60405161054a9190612d1a565b60405180910390f35b34801561055f57600080fd5b5061056861103b565b005b34801561057657600080fd5b5061057f61104f565b60405161058c9190612d1a565b60405180910390f35b3480156105a157600080fd5b506105aa611055565b005b3480156105b857600080fd5b506105c1611089565b6040516105ce9190612d1a565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190612c16565b61108f565b005b34801561060c57600080fd5b506106156110a1565b6040516106229190612d1a565b60405180910390f35b34801561063757600080fd5b506106406110a7565b60405161064d9190612c84565b60405180910390f35b34801561066257600080fd5b5061066b6110d1565b6040516106789190612bbe565b60405180910390f35b34801561068d57600080fd5b50610696611163565b6040516106a39190612b0a565b60405180910390f35b3480156106b857600080fd5b506106c1611181565b6040516106ce9190612d1a565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190612c16565b611187565b005b61071a60048036038101906107159190612c16565b611199565b005b34801561072857600080fd5b50610743600480360381019061073e9190612f5f565b6112e1565b005b34801561075157600080fd5b5061076c60048036038101906107679190612c16565b611462565b005b610776611474565b005b34801561078457600080fd5b5061079f600480360381019061079a9190613040565b6115cf565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190612c16565b61162b565b6040516107d59190612bbe565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190612c16565b6116d3565b005b34801561081357600080fd5b5061082e600480360381019061082991906130c3565b6116e5565b60405161083b9190612b0a565b60405180910390f35b34801561085057600080fd5b5061086b60048036038101906108669190612f06565b611779565b005b34801561087957600080fd5b50610894600480360381019061088f9190612c16565b6117fd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d957506109d88261180f565b5b9050919050565b6060600180546109ef90613132565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b90613132565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b6000610a7d82611879565b610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab3906131d6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0282610f29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90613268565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b92611886565b73ffffffffffffffffffffffffffffffffffffffff161480610bc15750610bc081610bbb611886565b6116e5565b5b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf7906132fa565b60405180910390fd5b610c0b83838361188e565b505050565b60008054905090565b610c24838383611940565b505050565b6000610c3483610f52565b8210610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c9061338c565b60405180910390fd5b6000610c7f610c10565b905060008060005b83811015610dd9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcb5786841415610dc2578195505050505050610e15565b83806001019450505b508080600101915050610c87565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c9061341e565b60405180910390fd5b92915050565b61271081565b610e29611e80565b80600c9080519060200190610e3f929190612979565b5050565b610e4b611e80565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e96573d6000803e3d6000fd5b5050565b610eb5838383604051806020016040528060008152506115cf565b505050565b600e5481565b610ec8611e80565b610ed28282611efe565b5050565b6000610ee0610c10565b8210610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906134b0565b60405180910390fd5b819050919050565b6000610f3482611f1c565b600001519050919050565b600d60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613542565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611043611e80565b61104d60006120b6565b565b600a5481565b61105d611e80565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60095481565b611097611e80565b8060088190555050565b60085481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110e090613132565b80601f016020809104026020016040519081016040528092919081815260200182805461110c90613132565b80156111595780601f1061112e57610100808354040283529160200191611159565b820191906000526020600020905b81548152906001019060200180831161113c57829003601f168201915b5050505050905090565b600060011515600d60009054906101000a900460ff16151514905090565b600b5481565b61118f611e80565b80600a8190555050565b600d60009054906101000a900460ff166111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df906135ae565b60405180910390fd5b600b5481111561122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490613640565b60405180910390fd5b348160085461123c919061368f565b111561127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490613735565b60405180910390fd5b600e548161128a33610f52565b6112949190613755565b11156112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc906137f7565b60405180910390fd5b6112de8161217c565b50565b6112e9611886565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90613863565b60405180910390fd5b8060066000611364611886565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611411611886565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114569190612b0a565b60405180910390a35050565b61146a611e80565b8060098190555050565b600d60009054906101000a900460ff166114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba906135ae565b60405180910390fd5b34600a541115611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90613735565b60405180910390fd5b600e5460095461151733610f52565b6115219190613755565b1115611562576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611559906137f7565b60405180910390fd5b612710611581600954611573610c10565b61222990919063ffffffff16565b106115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b8906138cf565b60405180910390fd5b6115cd33600954611efe565b565b6115da848484611940565b6115e68484848461223f565b611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613961565b60405180910390fd5b50505050565b606061163682611879565b611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c906139f3565b60405180910390fd5b600061167f6123c7565b90506000815114156116a057604051806020016040528060008152506116cb565b806116aa84612459565b6040516020016116bb929190613a4f565b6040516020818303038152906040525b915050919050565b6116db611e80565b80600b8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611781611e80565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890613ae5565b60405180910390fd5b6117fa816120b6565b50565b611805611e80565b80600e8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061194b82611f1c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611972611886565b73ffffffffffffffffffffffffffffffffffffffff1614806119ce5750611997611886565b73ffffffffffffffffffffffffffffffffffffffff166119b684610a72565b73ffffffffffffffffffffffffffffffffffffffff16145b806119ea57506119e982600001516119e4611886565b6116e5565b5b905080611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390613b77565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9590613c09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590613c9b565b60405180910390fd5b611b1b85858560016125ba565b611b2b600084846000015161188e565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e1057611d6f81611879565b15611e0f5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e7985858560016125c0565b5050505050565b611e88611886565b73ffffffffffffffffffffffffffffffffffffffff16611ea66110a7565b73ffffffffffffffffffffffffffffffffffffffff1614611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390613d07565b60405180910390fd5b565b611f188282604051806020016040528060008152506125c6565b5050565b611f246129ff565b611f2d82611879565b611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6390613d99565b60405180910390fd5b60008290505b60008110612075576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120665780925050506120b1565b50808060019003915050611f72565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890613e2b565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081116121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b690613e97565b60405180910390fd5b6127106121dc826121ce610c10565b61222990919063ffffffff16565b1061221c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612213906138cf565b60405180910390fd5b6122263382611efe565b50565b600081836122379190613755565b905092915050565b60006122608473ffffffffffffffffffffffffffffffffffffffff166125d8565b156123ba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612289611886565b8786866040518563ffffffff1660e01b81526004016122ab9493929190613f0c565b6020604051808303816000875af19250505080156122e757506040513d601f19601f820116820180604052508101906122e49190613f6d565b60015b61236a573d8060008114612317576040519150601f19603f3d011682016040523d82523d6000602084013e61231c565b606091505b50600081511415612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235990613961565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123bf565b600190505b949350505050565b6060600c80546123d690613132565b80601f016020809104026020016040519081016040528092919081815260200182805461240290613132565b801561244f5780601f106124245761010080835404028352916020019161244f565b820191906000526020600020905b81548152906001019060200180831161243257829003601f168201915b5050505050905090565b606060008214156124a1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125b5565b600082905060005b600082146124d35780806124bc90613f9a565b915050600a826124cc9190614012565b91506124a9565b60008167ffffffffffffffff8111156124ef576124ee612d92565b5b6040519080825280601f01601f1916602001820160405280156125215781602001600182028036833780820191505090505b5090505b600085146125ae5760018261253a9190614043565b9150600a856125499190614077565b60306125559190613755565b60f81b81838151811061256b5761256a6140a8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125a79190614012565b9450612525565b8093505050505b919050565b50505050565b50505050565b6125d383838360016125fb565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266890614149565b60405180910390fd5b60008414156126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac906141db565b60405180910390fd5b6126c260008683876125ba565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561295c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561294757612907600088848861223f565b612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d90613961565b60405180910390fd5b5b81806001019250508080600101915050612890565b50806000819055505061297260008683876125c0565b5050505050565b82805461298590613132565b90600052602060002090601f0160209004810192826129a757600085556129ee565b82601f106129c057805160ff19168380011785556129ee565b828001600101855582156129ee579182015b828111156129ed5782518255916020019190600101906129d2565b5b5090506129fb9190612a39565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a52576000816000905550600101612a3a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a9f81612a6a565b8114612aaa57600080fd5b50565b600081359050612abc81612a96565b92915050565b600060208284031215612ad857612ad7612a60565b5b6000612ae684828501612aad565b91505092915050565b60008115159050919050565b612b0481612aef565b82525050565b6000602082019050612b1f6000830184612afb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b5f578082015181840152602081019050612b44565b83811115612b6e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b9082612b25565b612b9a8185612b30565b9350612baa818560208601612b41565b612bb381612b74565b840191505092915050565b60006020820190508181036000830152612bd88184612b85565b905092915050565b6000819050919050565b612bf381612be0565b8114612bfe57600080fd5b50565b600081359050612c1081612bea565b92915050565b600060208284031215612c2c57612c2b612a60565b5b6000612c3a84828501612c01565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c6e82612c43565b9050919050565b612c7e81612c63565b82525050565b6000602082019050612c996000830184612c75565b92915050565b612ca881612c63565b8114612cb357600080fd5b50565b600081359050612cc581612c9f565b92915050565b60008060408385031215612ce257612ce1612a60565b5b6000612cf085828601612cb6565b9250506020612d0185828601612c01565b9150509250929050565b612d1481612be0565b82525050565b6000602082019050612d2f6000830184612d0b565b92915050565b600080600060608486031215612d4e57612d4d612a60565b5b6000612d5c86828701612cb6565b9350506020612d6d86828701612cb6565b9250506040612d7e86828701612c01565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dca82612b74565b810181811067ffffffffffffffff82111715612de957612de8612d92565b5b80604052505050565b6000612dfc612a56565b9050612e088282612dc1565b919050565b600067ffffffffffffffff821115612e2857612e27612d92565b5b612e3182612b74565b9050602081019050919050565b82818337600083830152505050565b6000612e60612e5b84612e0d565b612df2565b905082815260208101848484011115612e7c57612e7b612d8d565b5b612e87848285612e3e565b509392505050565b600082601f830112612ea457612ea3612d88565b5b8135612eb4848260208601612e4d565b91505092915050565b600060208284031215612ed357612ed2612a60565b5b600082013567ffffffffffffffff811115612ef157612ef0612a65565b5b612efd84828501612e8f565b91505092915050565b600060208284031215612f1c57612f1b612a60565b5b6000612f2a84828501612cb6565b91505092915050565b612f3c81612aef565b8114612f4757600080fd5b50565b600081359050612f5981612f33565b92915050565b60008060408385031215612f7657612f75612a60565b5b6000612f8485828601612cb6565b9250506020612f9585828601612f4a565b9150509250929050565b600067ffffffffffffffff821115612fba57612fb9612d92565b5b612fc382612b74565b9050602081019050919050565b6000612fe3612fde84612f9f565b612df2565b905082815260208101848484011115612fff57612ffe612d8d565b5b61300a848285612e3e565b509392505050565b600082601f83011261302757613026612d88565b5b8135613037848260208601612fd0565b91505092915050565b6000806000806080858703121561305a57613059612a60565b5b600061306887828801612cb6565b945050602061307987828801612cb6565b935050604061308a87828801612c01565b925050606085013567ffffffffffffffff8111156130ab576130aa612a65565b5b6130b787828801613012565b91505092959194509250565b600080604083850312156130da576130d9612a60565b5b60006130e885828601612cb6565b92505060206130f985828601612cb6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061314a57607f821691505b6020821081141561315e5761315d613103565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006131c0602d83612b30565b91506131cb82613164565b604082019050919050565b600060208201905081810360008301526131ef816131b3565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613252602283612b30565b915061325d826131f6565b604082019050919050565b6000602082019050818103600083015261328181613245565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006132e4603983612b30565b91506132ef82613288565b604082019050919050565b60006020820190508181036000830152613313816132d7565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613376602283612b30565b91506133818261331a565b604082019050919050565b600060208201905081810360008301526133a581613369565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613408602e83612b30565b9150613413826133ac565b604082019050919050565b60006020820190508181036000830152613437816133fb565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061349a602383612b30565b91506134a58261343e565b604082019050919050565b600060208201905081810360008301526134c98161348d565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061352c602b83612b30565b9150613537826134d0565b604082019050919050565b6000602082019050818103600083015261355b8161351f565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613598601283612b30565b91506135a382613562565b602082019050919050565b600060208201905081810360008301526135c78161358b565b9050919050565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b600061362a602383612b30565b9150613635826135ce565b604082019050919050565b600060208201905081810360008301526136598161361d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061369a82612be0565b91506136a583612be0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136de576136dd613660565b5b828202905092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b600061371f601783612b30565b915061372a826136e9565b602082019050919050565b6000602082019050818103600083015261374e81613712565b9050919050565b600061376082612be0565b915061376b83612be0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137a05761379f613660565b5b828201905092915050565b7f546f6f206d616e7920746f6b656e7320666f72206f6e652077616c6c65740000600082015250565b60006137e1601e83612b30565b91506137ec826137ab565b602082019050919050565b60006020820190508181036000830152613810816137d4565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061384d601a83612b30565b915061385882613817565b602082019050919050565b6000602082019050818103600083015261387c81613840565b9050919050565b7f4e6f206974656d73206c65667420746f206d696e740000000000000000000000600082015250565b60006138b9601583612b30565b91506138c482613883565b602082019050919050565b600060208201905081810360008301526138e8816138ac565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061394b603383612b30565b9150613956826138ef565b604082019050919050565b6000602082019050818103600083015261397a8161393e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006139dd602f83612b30565b91506139e882613981565b604082019050919050565b60006020820190508181036000830152613a0c816139d0565b9050919050565b600081905092915050565b6000613a2982612b25565b613a338185613a13565b9350613a43818560208601612b41565b80840191505092915050565b6000613a5b8285613a1e565b9150613a678284613a1e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613acf602683612b30565b9150613ada82613a73565b604082019050919050565b60006020820190508181036000830152613afe81613ac2565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613b61603283612b30565b9150613b6c82613b05565b604082019050919050565b60006020820190508181036000830152613b9081613b54565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613bf3602683612b30565b9150613bfe82613b97565b604082019050919050565b60006020820190508181036000830152613c2281613be6565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c85602583612b30565b9150613c9082613c29565b604082019050919050565b60006020820190508181036000830152613cb481613c78565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cf1602083612b30565b9150613cfc82613cbb565b602082019050919050565b60006020820190508181036000830152613d2081613ce4565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613d83602a83612b30565b9150613d8e82613d27565b604082019050919050565b60006020820190508181036000830152613db281613d76565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613e15602f83612b30565b9150613e2082613db9565b604082019050919050565b60006020820190508181036000830152613e4481613e08565b9050919050565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b6000613e81601783612b30565b9150613e8c82613e4b565b602082019050919050565b60006020820190508181036000830152613eb081613e74565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ede82613eb7565b613ee88185613ec2565b9350613ef8818560208601612b41565b613f0181612b74565b840191505092915050565b6000608082019050613f216000830187612c75565b613f2e6020830186612c75565b613f3b6040830185612d0b565b8181036060830152613f4d8184613ed3565b905095945050505050565b600081519050613f6781612a96565b92915050565b600060208284031215613f8357613f82612a60565b5b6000613f9184828501613f58565b91505092915050565b6000613fa582612be0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fd857613fd7613660565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061401d82612be0565b915061402883612be0565b92508261403857614037613fe3565b5b828204905092915050565b600061404e82612be0565b915061405983612be0565b92508282101561406c5761406b613660565b5b828203905092915050565b600061408282612be0565b915061408d83612be0565b92508261409d5761409c613fe3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614133602183612b30565b915061413e826140d7565b604082019050919050565b6000602082019050818103600083015261416281614126565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006141c5602883612b30565b91506141d082614169565b604082019050919050565b600060208201905081810360008301526141f4816141b8565b905091905056fea2646970667358221220f18e9f5563e242adbe2c9c76ee43d7a48b1910ee70886987db3eefa52195fd8364736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c80637d8966e411610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107a1578063e01d55c5146107de578063e985e9c514610807578063f2fde38b14610844578063fecfda491461086d57610225565b8063a0712d6814610700578063a22cb4651461071c578063b0aa49a414610745578063b37cfec91461076e578063b88d4fde1461077857610225565b80638da5cb5b116100f25780638da5cb5b1461062b57806395d89b411461065657806397db4fe314610681578063996517cf146106ac5780639e0156a2146106d757610225565b80637d8966e4146105955780637e8929fd146105ac5780638d6cc56d146105d75780638d859f3e1461060057610225565b80633ccfd60b116101b15780636352211e116101755780636352211e146104ae57806368428a1b146104eb57806370a0823114610516578063715018a614610553578063792592051461056a57610225565b80633ccfd60b146103dd57806342842e0e146103f4578063453c23101461041d578063484b973c146104485780634f6ccce71461047157610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c57806332cb6b0c1461038957806339f7e37f146103b457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612ac2565b610896565b60405161025e9190612b0a565b60405180910390f35b34801561027357600080fd5b5061027c6109e0565b6040516102899190612bbe565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612c16565b610a72565b6040516102c69190612c84565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612ccb565b610af7565b005b34801561030457600080fd5b5061030d610c10565b60405161031a9190612d1a565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612d35565b610c19565b005b34801561035857600080fd5b50610373600480360381019061036e9190612ccb565b610c29565b6040516103809190612d1a565b60405180910390f35b34801561039557600080fd5b5061039e610e1b565b6040516103ab9190612d1a565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190612ebd565b610e21565b005b3480156103e957600080fd5b506103f2610e43565b005b34801561040057600080fd5b5061041b60048036038101906104169190612d35565b610e9a565b005b34801561042957600080fd5b50610432610eba565b60405161043f9190612d1a565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190612ccb565b610ec0565b005b34801561047d57600080fd5b5061049860048036038101906104939190612c16565b610ed6565b6040516104a59190612d1a565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612c16565b610f29565b6040516104e29190612c84565b60405180910390f35b3480156104f757600080fd5b50610500610f3f565b60405161050d9190612b0a565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190612f06565b610f52565b60405161054a9190612d1a565b60405180910390f35b34801561055f57600080fd5b5061056861103b565b005b34801561057657600080fd5b5061057f61104f565b60405161058c9190612d1a565b60405180910390f35b3480156105a157600080fd5b506105aa611055565b005b3480156105b857600080fd5b506105c1611089565b6040516105ce9190612d1a565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190612c16565b61108f565b005b34801561060c57600080fd5b506106156110a1565b6040516106229190612d1a565b60405180910390f35b34801561063757600080fd5b506106406110a7565b60405161064d9190612c84565b60405180910390f35b34801561066257600080fd5b5061066b6110d1565b6040516106789190612bbe565b60405180910390f35b34801561068d57600080fd5b50610696611163565b6040516106a39190612b0a565b60405180910390f35b3480156106b857600080fd5b506106c1611181565b6040516106ce9190612d1a565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190612c16565b611187565b005b61071a60048036038101906107159190612c16565b611199565b005b34801561072857600080fd5b50610743600480360381019061073e9190612f5f565b6112e1565b005b34801561075157600080fd5b5061076c60048036038101906107679190612c16565b611462565b005b610776611474565b005b34801561078457600080fd5b5061079f600480360381019061079a9190613040565b6115cf565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190612c16565b61162b565b6040516107d59190612bbe565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190612c16565b6116d3565b005b34801561081357600080fd5b5061082e600480360381019061082991906130c3565b6116e5565b60405161083b9190612b0a565b60405180910390f35b34801561085057600080fd5b5061086b60048036038101906108669190612f06565b611779565b005b34801561087957600080fd5b50610894600480360381019061088f9190612c16565b6117fd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d957506109d88261180f565b5b9050919050565b6060600180546109ef90613132565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b90613132565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b6000610a7d82611879565b610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab3906131d6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0282610f29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90613268565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b92611886565b73ffffffffffffffffffffffffffffffffffffffff161480610bc15750610bc081610bbb611886565b6116e5565b5b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf7906132fa565b60405180910390fd5b610c0b83838361188e565b505050565b60008054905090565b610c24838383611940565b505050565b6000610c3483610f52565b8210610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c9061338c565b60405180910390fd5b6000610c7f610c10565b905060008060005b83811015610dd9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcb5786841415610dc2578195505050505050610e15565b83806001019450505b508080600101915050610c87565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c9061341e565b60405180910390fd5b92915050565b61271081565b610e29611e80565b80600c9080519060200190610e3f929190612979565b5050565b610e4b611e80565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e96573d6000803e3d6000fd5b5050565b610eb5838383604051806020016040528060008152506115cf565b505050565b600e5481565b610ec8611e80565b610ed28282611efe565b5050565b6000610ee0610c10565b8210610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906134b0565b60405180910390fd5b819050919050565b6000610f3482611f1c565b600001519050919050565b600d60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613542565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611043611e80565b61104d60006120b6565b565b600a5481565b61105d611e80565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60095481565b611097611e80565b8060088190555050565b60085481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110e090613132565b80601f016020809104026020016040519081016040528092919081815260200182805461110c90613132565b80156111595780601f1061112e57610100808354040283529160200191611159565b820191906000526020600020905b81548152906001019060200180831161113c57829003601f168201915b5050505050905090565b600060011515600d60009054906101000a900460ff16151514905090565b600b5481565b61118f611e80565b80600a8190555050565b600d60009054906101000a900460ff166111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df906135ae565b60405180910390fd5b600b5481111561122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490613640565b60405180910390fd5b348160085461123c919061368f565b111561127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490613735565b60405180910390fd5b600e548161128a33610f52565b6112949190613755565b11156112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc906137f7565b60405180910390fd5b6112de8161217c565b50565b6112e9611886565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90613863565b60405180910390fd5b8060066000611364611886565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611411611886565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114569190612b0a565b60405180910390a35050565b61146a611e80565b8060098190555050565b600d60009054906101000a900460ff166114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba906135ae565b60405180910390fd5b34600a541115611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90613735565b60405180910390fd5b600e5460095461151733610f52565b6115219190613755565b1115611562576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611559906137f7565b60405180910390fd5b612710611581600954611573610c10565b61222990919063ffffffff16565b106115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b8906138cf565b60405180910390fd5b6115cd33600954611efe565b565b6115da848484611940565b6115e68484848461223f565b611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613961565b60405180910390fd5b50505050565b606061163682611879565b611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c906139f3565b60405180910390fd5b600061167f6123c7565b90506000815114156116a057604051806020016040528060008152506116cb565b806116aa84612459565b6040516020016116bb929190613a4f565b6040516020818303038152906040525b915050919050565b6116db611e80565b80600b8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611781611e80565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890613ae5565b60405180910390fd5b6117fa816120b6565b50565b611805611e80565b80600e8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061194b82611f1c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611972611886565b73ffffffffffffffffffffffffffffffffffffffff1614806119ce5750611997611886565b73ffffffffffffffffffffffffffffffffffffffff166119b684610a72565b73ffffffffffffffffffffffffffffffffffffffff16145b806119ea57506119e982600001516119e4611886565b6116e5565b5b905080611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390613b77565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9590613c09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590613c9b565b60405180910390fd5b611b1b85858560016125ba565b611b2b600084846000015161188e565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e1057611d6f81611879565b15611e0f5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e7985858560016125c0565b5050505050565b611e88611886565b73ffffffffffffffffffffffffffffffffffffffff16611ea66110a7565b73ffffffffffffffffffffffffffffffffffffffff1614611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390613d07565b60405180910390fd5b565b611f188282604051806020016040528060008152506125c6565b5050565b611f246129ff565b611f2d82611879565b611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6390613d99565b60405180910390fd5b60008290505b60008110612075576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120665780925050506120b1565b50808060019003915050611f72565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890613e2b565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081116121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b690613e97565b60405180910390fd5b6127106121dc826121ce610c10565b61222990919063ffffffff16565b1061221c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612213906138cf565b60405180910390fd5b6122263382611efe565b50565b600081836122379190613755565b905092915050565b60006122608473ffffffffffffffffffffffffffffffffffffffff166125d8565b156123ba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612289611886565b8786866040518563ffffffff1660e01b81526004016122ab9493929190613f0c565b6020604051808303816000875af19250505080156122e757506040513d601f19601f820116820180604052508101906122e49190613f6d565b60015b61236a573d8060008114612317576040519150601f19603f3d011682016040523d82523d6000602084013e61231c565b606091505b50600081511415612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235990613961565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123bf565b600190505b949350505050565b6060600c80546123d690613132565b80601f016020809104026020016040519081016040528092919081815260200182805461240290613132565b801561244f5780601f106124245761010080835404028352916020019161244f565b820191906000526020600020905b81548152906001019060200180831161243257829003601f168201915b5050505050905090565b606060008214156124a1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125b5565b600082905060005b600082146124d35780806124bc90613f9a565b915050600a826124cc9190614012565b91506124a9565b60008167ffffffffffffffff8111156124ef576124ee612d92565b5b6040519080825280601f01601f1916602001820160405280156125215781602001600182028036833780820191505090505b5090505b600085146125ae5760018261253a9190614043565b9150600a856125499190614077565b60306125559190613755565b60f81b81838151811061256b5761256a6140a8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125a79190614012565b9450612525565b8093505050505b919050565b50505050565b50505050565b6125d383838360016125fb565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266890614149565b60405180910390fd5b60008414156126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac906141db565b60405180910390fd5b6126c260008683876125ba565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561295c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561294757612907600088848861223f565b612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d90613961565b60405180910390fd5b5b81806001019250508080600101915050612890565b50806000819055505061297260008683876125c0565b5050505050565b82805461298590613132565b90600052602060002090601f0160209004810192826129a757600085556129ee565b82601f106129c057805160ff19168380011785556129ee565b828001600101855582156129ee579182015b828111156129ed5782518255916020019190600101906129d2565b5b5090506129fb9190612a39565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a52576000816000905550600101612a3a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a9f81612a6a565b8114612aaa57600080fd5b50565b600081359050612abc81612a96565b92915050565b600060208284031215612ad857612ad7612a60565b5b6000612ae684828501612aad565b91505092915050565b60008115159050919050565b612b0481612aef565b82525050565b6000602082019050612b1f6000830184612afb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b5f578082015181840152602081019050612b44565b83811115612b6e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b9082612b25565b612b9a8185612b30565b9350612baa818560208601612b41565b612bb381612b74565b840191505092915050565b60006020820190508181036000830152612bd88184612b85565b905092915050565b6000819050919050565b612bf381612be0565b8114612bfe57600080fd5b50565b600081359050612c1081612bea565b92915050565b600060208284031215612c2c57612c2b612a60565b5b6000612c3a84828501612c01565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c6e82612c43565b9050919050565b612c7e81612c63565b82525050565b6000602082019050612c996000830184612c75565b92915050565b612ca881612c63565b8114612cb357600080fd5b50565b600081359050612cc581612c9f565b92915050565b60008060408385031215612ce257612ce1612a60565b5b6000612cf085828601612cb6565b9250506020612d0185828601612c01565b9150509250929050565b612d1481612be0565b82525050565b6000602082019050612d2f6000830184612d0b565b92915050565b600080600060608486031215612d4e57612d4d612a60565b5b6000612d5c86828701612cb6565b9350506020612d6d86828701612cb6565b9250506040612d7e86828701612c01565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dca82612b74565b810181811067ffffffffffffffff82111715612de957612de8612d92565b5b80604052505050565b6000612dfc612a56565b9050612e088282612dc1565b919050565b600067ffffffffffffffff821115612e2857612e27612d92565b5b612e3182612b74565b9050602081019050919050565b82818337600083830152505050565b6000612e60612e5b84612e0d565b612df2565b905082815260208101848484011115612e7c57612e7b612d8d565b5b612e87848285612e3e565b509392505050565b600082601f830112612ea457612ea3612d88565b5b8135612eb4848260208601612e4d565b91505092915050565b600060208284031215612ed357612ed2612a60565b5b600082013567ffffffffffffffff811115612ef157612ef0612a65565b5b612efd84828501612e8f565b91505092915050565b600060208284031215612f1c57612f1b612a60565b5b6000612f2a84828501612cb6565b91505092915050565b612f3c81612aef565b8114612f4757600080fd5b50565b600081359050612f5981612f33565b92915050565b60008060408385031215612f7657612f75612a60565b5b6000612f8485828601612cb6565b9250506020612f9585828601612f4a565b9150509250929050565b600067ffffffffffffffff821115612fba57612fb9612d92565b5b612fc382612b74565b9050602081019050919050565b6000612fe3612fde84612f9f565b612df2565b905082815260208101848484011115612fff57612ffe612d8d565b5b61300a848285612e3e565b509392505050565b600082601f83011261302757613026612d88565b5b8135613037848260208601612fd0565b91505092915050565b6000806000806080858703121561305a57613059612a60565b5b600061306887828801612cb6565b945050602061307987828801612cb6565b935050604061308a87828801612c01565b925050606085013567ffffffffffffffff8111156130ab576130aa612a65565b5b6130b787828801613012565b91505092959194509250565b600080604083850312156130da576130d9612a60565b5b60006130e885828601612cb6565b92505060206130f985828601612cb6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061314a57607f821691505b6020821081141561315e5761315d613103565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006131c0602d83612b30565b91506131cb82613164565b604082019050919050565b600060208201905081810360008301526131ef816131b3565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613252602283612b30565b915061325d826131f6565b604082019050919050565b6000602082019050818103600083015261328181613245565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006132e4603983612b30565b91506132ef82613288565b604082019050919050565b60006020820190508181036000830152613313816132d7565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613376602283612b30565b91506133818261331a565b604082019050919050565b600060208201905081810360008301526133a581613369565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613408602e83612b30565b9150613413826133ac565b604082019050919050565b60006020820190508181036000830152613437816133fb565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061349a602383612b30565b91506134a58261343e565b604082019050919050565b600060208201905081810360008301526134c98161348d565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061352c602b83612b30565b9150613537826134d0565b604082019050919050565b6000602082019050818103600083015261355b8161351f565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613598601283612b30565b91506135a382613562565b602082019050919050565b600060208201905081810360008301526135c78161358b565b9050919050565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b600061362a602383612b30565b9150613635826135ce565b604082019050919050565b600060208201905081810360008301526136598161361d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061369a82612be0565b91506136a583612be0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136de576136dd613660565b5b828202905092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b600061371f601783612b30565b915061372a826136e9565b602082019050919050565b6000602082019050818103600083015261374e81613712565b9050919050565b600061376082612be0565b915061376b83612be0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137a05761379f613660565b5b828201905092915050565b7f546f6f206d616e7920746f6b656e7320666f72206f6e652077616c6c65740000600082015250565b60006137e1601e83612b30565b91506137ec826137ab565b602082019050919050565b60006020820190508181036000830152613810816137d4565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061384d601a83612b30565b915061385882613817565b602082019050919050565b6000602082019050818103600083015261387c81613840565b9050919050565b7f4e6f206974656d73206c65667420746f206d696e740000000000000000000000600082015250565b60006138b9601583612b30565b91506138c482613883565b602082019050919050565b600060208201905081810360008301526138e8816138ac565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061394b603383612b30565b9150613956826138ef565b604082019050919050565b6000602082019050818103600083015261397a8161393e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006139dd602f83612b30565b91506139e882613981565b604082019050919050565b60006020820190508181036000830152613a0c816139d0565b9050919050565b600081905092915050565b6000613a2982612b25565b613a338185613a13565b9350613a43818560208601612b41565b80840191505092915050565b6000613a5b8285613a1e565b9150613a678284613a1e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613acf602683612b30565b9150613ada82613a73565b604082019050919050565b60006020820190508181036000830152613afe81613ac2565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613b61603283612b30565b9150613b6c82613b05565b604082019050919050565b60006020820190508181036000830152613b9081613b54565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613bf3602683612b30565b9150613bfe82613b97565b604082019050919050565b60006020820190508181036000830152613c2281613be6565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c85602583612b30565b9150613c9082613c29565b604082019050919050565b60006020820190508181036000830152613cb481613c78565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cf1602083612b30565b9150613cfc82613cbb565b602082019050919050565b60006020820190508181036000830152613d2081613ce4565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613d83602a83612b30565b9150613d8e82613d27565b604082019050919050565b60006020820190508181036000830152613db281613d76565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613e15602f83612b30565b9150613e2082613db9565b604082019050919050565b60006020820190508181036000830152613e4481613e08565b9050919050565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b6000613e81601783612b30565b9150613e8c82613e4b565b602082019050919050565b60006020820190508181036000830152613eb081613e74565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ede82613eb7565b613ee88185613ec2565b9350613ef8818560208601612b41565b613f0181612b74565b840191505092915050565b6000608082019050613f216000830187612c75565b613f2e6020830186612c75565b613f3b6040830185612d0b565b8181036060830152613f4d8184613ed3565b905095945050505050565b600081519050613f6781612a96565b92915050565b600060208284031215613f8357613f82612a60565b5b6000613f9184828501613f58565b91505092915050565b6000613fa582612be0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fd857613fd7613660565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061401d82612be0565b915061402883612be0565b92508261403857614037613fe3565b5b828204905092915050565b600061404e82612be0565b915061405983612be0565b92508282101561406c5761406b613660565b5b828203905092915050565b600061408282612be0565b915061408d83612be0565b92508261409d5761409c613fe3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614133602183612b30565b915061413e826140d7565b604082019050919050565b6000602082019050818103600083015261416281614126565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006141c5602883612b30565b91506141d082614169565b604082019050919050565b600060208201905081810360008301526141f4816141b8565b905091905056fea2646970667358221220f18e9f5563e242adbe2c9c76ee43d7a48b1910ee70886987db3eefa52195fd8364736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initBaseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
48720:3214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32297:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34183:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35745:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35266:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30554:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36621:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31218:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48800:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49446:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51682:140;;;;;;;;;;;;;:::i;:::-;;36854:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49056:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50133:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30731:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33992:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49027:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32733:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47302:103;;;;;;;;;;;;;:::i;:::-;;48919:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49252:82;;;;;;;;;;;;;:::i;:::-;;48883:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49554:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48846:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46654:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34352:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49342:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48962:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49644:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50249:530;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36031:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49764:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50787:562;;;:::i;:::-;;37102:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34527:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50018:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36390:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47560:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49891:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32297:372;32399:4;32451:25;32436:40;;;:11;:40;;;;:105;;;;32508:33;32493:48;;;:11;:48;;;;32436:105;:172;;;;32573:35;32558:50;;;:11;:50;;;;32436:172;:225;;;;32625:36;32649:11;32625:23;:36::i;:::-;32436:225;32416:245;;32297:372;;;:::o;34183:100::-;34237:13;34270:5;34263:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34183:100;:::o;35745:214::-;35813:7;35841:16;35849:7;35841;:16::i;:::-;35833:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;35927:15;:24;35943:7;35927:24;;;;;;;;;;;;;;;;;;;;;35920:31;;35745:214;;;:::o;35266:413::-;35339:13;35355:24;35371:7;35355:15;:24::i;:::-;35339:40;;35404:5;35398:11;;:2;:11;;;;35390:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35499:5;35483:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;35508:37;35525:5;35532:12;:10;:12::i;:::-;35508:16;:37::i;:::-;35483:62;35461:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;35643:28;35652:2;35656:7;35665:5;35643:8;:28::i;:::-;35328:351;35266:413;;:::o;30554:100::-;30607:7;30634:12;;30627:19;;30554:100;:::o;36621:162::-;36747:28;36757:4;36763:2;36767:7;36747:9;:28::i;:::-;36621:162;;;:::o;31218:1007::-;31307:7;31343:16;31353:5;31343:9;:16::i;:::-;31335:5;:24;31327:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31409:22;31434:13;:11;:13::i;:::-;31409:38;;31458:19;31488:25;31677:9;31672:466;31692:14;31688:1;:18;31672:466;;;31732:31;31766:11;:14;31778:1;31766:14;;;;;;;;;;;31732:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31829:1;31803:28;;:9;:14;;;:28;;;31799:111;;31876:9;:14;;;31856:34;;31799:111;31953:5;31932:26;;:17;:26;;;31928:195;;;32002:5;31987:11;:20;31983:85;;;32043:1;32036:8;;;;;;;;;31983:85;32090:13;;;;;;;31928:195;31713:425;31708:3;;;;;;;31672:466;;;;32161:56;;;;;;;;;;:::i;:::-;;;;;;;;31218:1007;;;;;:::o;48800:39::-;48834:5;48800:39;:::o;49446:100::-;46540:13;:11;:13::i;:::-;49531:7:::1;49520:8;:18;;;;;;;;;;;;:::i;:::-;;49446:100:::0;:::o;51682:140::-;46540:13;:11;:13::i;:::-;51730:12:::1;51745:21;51730:36;;51785:10;51777:28;;:37;51806:7;51777:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;51719:103;51682:140::o:0;36854:177::-;36984:39;37001:4;37007:2;37011:7;36984:39;;;;;;;;;;;;:16;:39::i;:::-;36854:177;;;:::o;49056:33::-;;;;:::o;50133:108::-;46540:13;:11;:13::i;:::-;50210:23:::1;50220:2;50224:8;50210:9;:23::i;:::-;50133:108:::0;;:::o;30731:187::-;30798:7;30834:13;:11;:13::i;:::-;30826:5;:21;30818:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;30905:5;30898:12;;30731:187;;;:::o;33992:124::-;34056:7;34083:20;34095:7;34083:11;:20::i;:::-;:25;;;34076:32;;33992:124;;;:::o;49027:22::-;;;;;;;;;;;;;:::o;32733:221::-;32797:7;32842:1;32825:19;;:5;:19;;;;32817:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;32918:12;:19;32931:5;32918:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32910:36;;32903:43;;32733:221;;;:::o;47302:103::-;46540:13;:11;:13::i;:::-;47367:30:::1;47394:1;47367:18;:30::i;:::-;47302:103::o:0;48919:36::-;;;;:::o;49252:82::-;46540:13;:11;:13::i;:::-;49316:10:::1;;;;;;;;;;;49315:11;49302:10;;:24;;;;;;;;;;;;;;;;;;49252:82::o:0;48883:29::-;;;;:::o;49554:82::-;46540:13;:11;:13::i;:::-;49623:5:::1;49615;:13;;;;49554:82:::0;:::o;48846:30::-;;;;:::o;46654:87::-;46700:7;46727:6;;;;;;;;;;;46720:13;;46654:87;:::o;34352:104::-;34408:13;34441:7;34434:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34352:104;:::o;49342:96::-;49388:4;49426;49412:18;;:10;;;;;;;;;;;:18;;;49405:25;;49342:96;:::o;48962:28::-;;;;:::o;49644:112::-;46540:13;:11;:13::i;:::-;49734:14:::1;49720:11;:28;;;;49644:112:::0;:::o;50249:530::-;50317:10;;;;;;;;;;;50309:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;50415:9;;50403:8;:21;;50381:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;50540:9;50528:8;50520:5;;:16;;;;:::i;:::-;:29;;50498:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;50670:12;;50658:8;50634:21;50644:10;50634:9;:21::i;:::-;:32;;;;:::i;:::-;:48;;50612:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;50751:20;50762:8;50751:10;:20::i;:::-;50249:530;:::o;36031:288::-;36138:12;:10;:12::i;:::-;36126:24;;:8;:24;;;;36118:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;36239:8;36194:18;:32;36213:12;:10;:12::i;:::-;36194:32;;;;;;;;;;;;;;;:42;36227:8;36194:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36292:8;36263:48;;36278:12;:10;:12::i;:::-;36263:48;;;36302:8;36263:48;;;;;;:::i;:::-;;;;;;;;36031:288;;:::o;49764:119::-;46540:13;:11;:13::i;:::-;49860:15:::1;49845:12;:30;;;;49764:119:::0;:::o;50787:562::-;50859:10;;;;;;;;;;;50837:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;50964:9;50949:11;;:24;;50927:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51098:12;;51082;;51058:21;51068:10;51058:9;:21::i;:::-;:36;;;;:::i;:::-;:52;;51036:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;48834:5;51201:31;51219:12;;51201:13;:11;:13::i;:::-;:17;;:31;;;;:::i;:::-;:44;51179:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;51306:35;51316:10;51328:12;;51306:9;:35::i;:::-;50787:562::o;37102:355::-;37261:28;37271:4;37277:2;37281:7;37261:9;:28::i;:::-;37322:48;37345:4;37351:2;37355:7;37364:5;37322:22;:48::i;:::-;37300:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;37102:355;;;;:::o;34527:335::-;34600:13;34634:16;34642:7;34634;:16::i;:::-;34626:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;34715:21;34739:10;:8;:10::i;:::-;34715:34;;34792:1;34773:7;34767:21;:26;;:87;;;;;;;;;;;;;;;;;34820:7;34829:18;:7;:16;:18::i;:::-;34803:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34767:87;34760:94;;;34527:335;;;:::o;50018:107::-;46540:13;:11;:13::i;:::-;50105:12:::1;50093:9;:24;;;;50018:107:::0;:::o;36390:164::-;36487:4;36511:18;:25;36530:5;36511:25;;;;;;;;;;;;;;;:35;36537:8;36511:35;;;;;;;;;;;;;;;;;;;;;;;;;36504:42;;36390:164;;;;:::o;47560:201::-;46540:13;:11;:13::i;:::-;47669:1:::1;47649:22;;:8;:22;;;;47641:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47725:28;47744:8;47725:18;:28::i;:::-;47560:201:::0;:::o;49891:119::-;46540:13;:11;:13::i;:::-;49987:15:::1;49972:12;:30;;;;49891:119:::0;:::o;11389:157::-;11474:4;11513:25;11498:40;;;:11;:40;;;;11491:47;;11389:157;;;:::o;37712:111::-;37769:4;37803:12;;37793:7;:22;37786:29;;37712:111;;;:::o;28537:98::-;28590:7;28617:10;28610:17;;28537:98;:::o;42632:196::-;42774:2;42747:15;:24;42763:7;42747:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42812:7;42808:2;42792:28;;42801:5;42792:28;;;;;;;;;;;;42632:196;;;:::o;40512:2002::-;40627:35;40665:20;40677:7;40665:11;:20::i;:::-;40627:58;;40698:22;40740:13;:18;;;40724:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;40799:12;:10;:12::i;:::-;40775:36;;:20;40787:7;40775:11;:20::i;:::-;:36;;;40724:87;:154;;;;40828:50;40845:13;:18;;;40865:12;:10;:12::i;:::-;40828:16;:50::i;:::-;40724:154;40698:181;;40900:17;40892:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;41015:4;40993:26;;:13;:18;;;:26;;;40985:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;41095:1;41081:16;;:2;:16;;;;41073:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41152:43;41174:4;41180:2;41184:7;41193:1;41152:21;:43::i;:::-;41260:49;41277:1;41281:7;41290:13;:18;;;41260:8;:49::i;:::-;41635:1;41605:12;:18;41618:4;41605:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41679:1;41651:12;:16;41664:2;41651:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41725:2;41697:11;:20;41709:7;41697:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41787:15;41742:11;:20;41754:7;41742:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42055:19;42087:1;42077:7;:11;42055:33;;42148:1;42107:43;;:11;:24;42119:11;42107:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42103:295;;;42175:20;42183:11;42175:7;:20::i;:::-;42171:212;;;42252:13;:18;;;42220:11;:24;42232:11;42220:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42335:13;:28;;;42293:11;:24;42305:11;42293:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42171:212;42103:295;41580:829;42445:7;42441:2;42426:27;;42435:4;42426:27;;;;;;;;;;;;42464:42;42485:4;42491:2;42495:7;42504:1;42464:20;:42::i;:::-;40616:1898;;40512:2002;;;:::o;46819:132::-;46894:12;:10;:12::i;:::-;46883:23;;:7;:5;:7::i;:::-;:23;;;46875:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46819:132::o;37831:104::-;37900:27;37910:2;37914:8;37900:27;;;;;;;;;;;;:9;:27::i;:::-;37831:104;;:::o;33393:537::-;33454:21;;:::i;:::-;33496:16;33504:7;33496;:16::i;:::-;33488:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33602:12;33617:7;33602:22;;33597:245;33634:1;33626:4;:9;33597:245;;33664:31;33698:11;:17;33710:4;33698:17;;;;;;;;;;;33664:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33764:1;33738:28;;:9;:14;;;:28;;;33734:93;;33798:9;33791:16;;;;;;33734:93;33645:197;33637:6;;;;;;;;33597:245;;;;33865:57;;;;;;;;;;:::i;:::-;;;;;;;;33393:537;;;;:::o;47921:191::-;47995:16;48014:6;;;;;;;;;;;47995:25;;48040:8;48031:6;;:17;;;;;;;;;;;;;;;;;;48095:8;48064:40;;48085:8;48064:40;;;;;;;;;;;;47984:128;47921:191;:::o;51357:317::-;51448:1;51437:8;:12;51415:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;48834:5;51534:27;51552:8;51534:13;:11;:13::i;:::-;:17;;:27;;;;:::i;:::-;:40;51512:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;51635:31;51645:10;51657:8;51635:9;:31::i;:::-;51357:317;:::o;23693:98::-;23751:7;23782:1;23778;:5;;;;:::i;:::-;23771:12;;23693:98;;;;:::o;43393:804::-;43548:4;43569:15;:2;:13;;;:15::i;:::-;43565:625;;;43621:2;43605:36;;;43642:12;:10;:12::i;:::-;43656:4;43662:7;43671:5;43605:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43601:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43868:1;43851:6;:13;:18;43847:273;;;43894:61;;;;;;;;;;:::i;:::-;;;;;;;;43847:273;44070:6;44064:13;44055:6;44051:2;44047:15;44040:38;43601:534;43738:45;;;43728:55;;;:6;:55;;;;43721:62;;;;;43565:625;44174:4;44167:11;;43393:804;;;;;;;:::o;51830:101::-;51882:13;51915:8;51908:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51830:101;:::o;18750:723::-;18806:13;19036:1;19027:5;:10;19023:53;;;19054:10;;;;;;;;;;;;;;;;;;;;;19023:53;19086:12;19101:5;19086:20;;19117:14;19142:78;19157:1;19149:4;:9;19142:78;;19175:8;;;;;:::i;:::-;;;;19206:2;19198:10;;;;;:::i;:::-;;;19142:78;;;19230:19;19262:6;19252:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19230:39;;19280:154;19296:1;19287:5;:10;19280:154;;19324:1;19314:11;;;;;:::i;:::-;;;19391:2;19383:5;:10;;;;:::i;:::-;19370:2;:24;;;;:::i;:::-;19357:39;;19340:6;19347;19340:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19420:2;19411:11;;;;;:::i;:::-;;;19280:154;;;19458:6;19444:21;;;;;18750:723;;;;:::o;44685:159::-;;;;;:::o;45256:158::-;;;;;:::o;38298:163::-;38421:32;38427:2;38431:8;38441:5;38448:4;38421:5;:32::i;:::-;38298:163;;;:::o;1233:326::-;1293:4;1550:1;1528:7;:19;;;:23;1521:30;;1233:326;;;:::o;38720:1538::-;38859:20;38882:12;;38859:35;;38927:1;38913:16;;:2;:16;;;;38905:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;38998:1;38986:8;:13;;38978:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39057:61;39087:1;39091:2;39095:12;39109:8;39057:21;:61::i;:::-;39432:8;39396:12;:16;39409:2;39396:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39497:8;39456:12;:16;39469:2;39456:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39556:2;39523:11;:25;39535:12;39523:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39623:15;39573:11;:25;39585:12;39573:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39656:20;39679:12;39656:35;;39713:9;39708:415;39728:8;39724:1;:12;39708:415;;;39792:12;39788:2;39767:38;;39784:1;39767:38;;;;;;;;;;;;39828:4;39824:249;;;39891:59;39922:1;39926:2;39930:12;39944:5;39891:22;:59::i;:::-;39857:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;39824:249;40093:14;;;;;;;39738:3;;;;;;;39708:415;;;;40154:12;40139;:27;;;;39371:807;40190:60;40219:1;40223:2;40227:12;40241:8;40190:20;:60::i;:::-;38848:1410;38720:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;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:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:232::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:15;12837:2;12829:6;12825:15;12818:40;12633:232;:::o;12871:366::-;13013:3;13034:67;13098:2;13093:3;13034:67;:::i;:::-;13027:74;;13110:93;13199:3;13110:93;:::i;:::-;13228:2;13223:3;13219:12;13212:19;;12871:366;;;:::o;13243:419::-;13409:4;13447:2;13436:9;13432:18;13424:26;;13496:9;13490:4;13486:20;13482:1;13471:9;13467:17;13460:47;13524:131;13650:4;13524:131;:::i;:::-;13516:139;;13243:419;;;:::o;13668:221::-;13808:34;13804:1;13796:6;13792:14;13785:58;13877:4;13872:2;13864:6;13860:15;13853:29;13668:221;:::o;13895:366::-;14037:3;14058:67;14122:2;14117:3;14058:67;:::i;:::-;14051:74;;14134:93;14223:3;14134:93;:::i;:::-;14252:2;14247:3;14243:12;14236:19;;13895:366;;;:::o;14267:419::-;14433:4;14471:2;14460:9;14456:18;14448:26;;14520:9;14514:4;14510:20;14506:1;14495:9;14491:17;14484:47;14548:131;14674:4;14548:131;:::i;:::-;14540:139;;14267:419;;;:::o;14692:244::-;14832:34;14828:1;14820:6;14816:14;14809:58;14901:27;14896:2;14888:6;14884:15;14877:52;14692:244;:::o;14942:366::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:419::-;15480:4;15518:2;15507:9;15503:18;15495:26;;15567:9;15561:4;15557:20;15553:1;15542:9;15538:17;15531:47;15595:131;15721:4;15595:131;:::i;:::-;15587:139;;15314:419;;;:::o;15739:221::-;15879:34;15875:1;15867:6;15863:14;15856:58;15948:4;15943:2;15935:6;15931:15;15924:29;15739:221;:::o;15966:366::-;16108:3;16129:67;16193:2;16188:3;16129:67;:::i;:::-;16122:74;;16205:93;16294:3;16205:93;:::i;:::-;16323:2;16318:3;16314:12;16307:19;;15966:366;;;:::o;16338:419::-;16504:4;16542:2;16531:9;16527:18;16519:26;;16591:9;16585:4;16581:20;16577:1;16566:9;16562:17;16555:47;16619:131;16745:4;16619:131;:::i;:::-;16611:139;;16338:419;;;:::o;16763:233::-;16903:34;16899:1;16891:6;16887:14;16880:58;16972:16;16967:2;16959:6;16955:15;16948:41;16763:233;:::o;17002:366::-;17144:3;17165:67;17229:2;17224:3;17165:67;:::i;:::-;17158:74;;17241:93;17330:3;17241:93;:::i;:::-;17359:2;17354:3;17350:12;17343:19;;17002:366;;;:::o;17374:419::-;17540:4;17578:2;17567:9;17563:18;17555:26;;17627:9;17621:4;17617:20;17613:1;17602:9;17598:17;17591:47;17655:131;17781:4;17655:131;:::i;:::-;17647:139;;17374:419;;;:::o;17799:222::-;17939:34;17935:1;17927:6;17923:14;17916:58;18008:5;18003:2;17995:6;17991:15;17984:30;17799:222;:::o;18027:366::-;18169:3;18190:67;18254:2;18249:3;18190:67;:::i;:::-;18183:74;;18266:93;18355:3;18266:93;:::i;:::-;18384:2;18379:3;18375:12;18368:19;;18027:366;;;:::o;18399:419::-;18565:4;18603:2;18592:9;18588:18;18580:26;;18652:9;18646:4;18642:20;18638:1;18627:9;18623:17;18616:47;18680:131;18806:4;18680:131;:::i;:::-;18672:139;;18399:419;;;:::o;18824:230::-;18964:34;18960:1;18952:6;18948:14;18941:58;19033:13;19028:2;19020:6;19016:15;19009:38;18824:230;:::o;19060:366::-;19202:3;19223:67;19287:2;19282:3;19223:67;:::i;:::-;19216:74;;19299:93;19388:3;19299:93;:::i;:::-;19417:2;19412:3;19408:12;19401:19;;19060:366;;;:::o;19432:419::-;19598:4;19636:2;19625:9;19621:18;19613:26;;19685:9;19679:4;19675:20;19671:1;19660:9;19656:17;19649:47;19713:131;19839:4;19713:131;:::i;:::-;19705:139;;19432:419;;;:::o;19857:168::-;19997:20;19993:1;19985:6;19981:14;19974:44;19857:168;:::o;20031:366::-;20173:3;20194:67;20258:2;20253:3;20194:67;:::i;:::-;20187:74;;20270:93;20359:3;20270:93;:::i;:::-;20388:2;20383:3;20379:12;20372:19;;20031:366;;;:::o;20403:419::-;20569:4;20607:2;20596:9;20592:18;20584:26;;20656:9;20650:4;20646:20;20642:1;20631:9;20627:17;20620:47;20684:131;20810:4;20684:131;:::i;:::-;20676:139;;20403:419;;;:::o;20828:222::-;20968:34;20964:1;20956:6;20952:14;20945:58;21037:5;21032:2;21024:6;21020:15;21013:30;20828:222;:::o;21056:366::-;21198:3;21219:67;21283:2;21278:3;21219:67;:::i;:::-;21212:74;;21295:93;21384:3;21295:93;:::i;:::-;21413:2;21408:3;21404:12;21397:19;;21056:366;;;:::o;21428:419::-;21594:4;21632:2;21621:9;21617:18;21609:26;;21681:9;21675:4;21671:20;21667:1;21656:9;21652:17;21645:47;21709:131;21835:4;21709:131;:::i;:::-;21701:139;;21428:419;;;:::o;21853:180::-;21901:77;21898:1;21891:88;21998:4;21995:1;21988:15;22022:4;22019:1;22012:15;22039:348;22079:7;22102:20;22120:1;22102:20;:::i;:::-;22097:25;;22136:20;22154:1;22136:20;:::i;:::-;22131:25;;22324:1;22256:66;22252:74;22249:1;22246:81;22241:1;22234:9;22227:17;22223:105;22220:131;;;22331:18;;:::i;:::-;22220:131;22379:1;22376;22372:9;22361:20;;22039:348;;;;:::o;22393:173::-;22533:25;22529:1;22521:6;22517:14;22510:49;22393:173;:::o;22572:366::-;22714:3;22735:67;22799:2;22794:3;22735:67;:::i;:::-;22728:74;;22811:93;22900:3;22811:93;:::i;:::-;22929:2;22924:3;22920:12;22913:19;;22572:366;;;:::o;22944:419::-;23110:4;23148:2;23137:9;23133:18;23125:26;;23197:9;23191:4;23187:20;23183:1;23172:9;23168:17;23161:47;23225:131;23351:4;23225:131;:::i;:::-;23217:139;;22944:419;;;:::o;23369:305::-;23409:3;23428:20;23446:1;23428:20;:::i;:::-;23423:25;;23462:20;23480:1;23462:20;:::i;:::-;23457:25;;23616:1;23548:66;23544:74;23541:1;23538:81;23535:107;;;23622:18;;:::i;:::-;23535:107;23666:1;23663;23659:9;23652:16;;23369:305;;;;:::o;23680:180::-;23820:32;23816:1;23808:6;23804:14;23797:56;23680:180;:::o;23866:366::-;24008:3;24029:67;24093:2;24088:3;24029:67;:::i;:::-;24022:74;;24105:93;24194:3;24105:93;:::i;:::-;24223:2;24218:3;24214:12;24207:19;;23866:366;;;:::o;24238:419::-;24404:4;24442:2;24431:9;24427:18;24419:26;;24491:9;24485:4;24481:20;24477:1;24466:9;24462:17;24455:47;24519:131;24645:4;24519:131;:::i;:::-;24511:139;;24238:419;;;:::o;24663:176::-;24803:28;24799:1;24791:6;24787:14;24780:52;24663:176;:::o;24845:366::-;24987:3;25008:67;25072:2;25067:3;25008:67;:::i;:::-;25001:74;;25084:93;25173:3;25084:93;:::i;:::-;25202:2;25197:3;25193:12;25186:19;;24845:366;;;:::o;25217:419::-;25383:4;25421:2;25410:9;25406:18;25398:26;;25470:9;25464:4;25460:20;25456:1;25445:9;25441:17;25434:47;25498:131;25624:4;25498:131;:::i;:::-;25490:139;;25217:419;;;:::o;25642:171::-;25782:23;25778:1;25770:6;25766:14;25759:47;25642:171;:::o;25819:366::-;25961:3;25982:67;26046:2;26041:3;25982:67;:::i;:::-;25975:74;;26058:93;26147:3;26058:93;:::i;:::-;26176:2;26171:3;26167:12;26160:19;;25819:366;;;:::o;26191:419::-;26357:4;26395:2;26384:9;26380:18;26372:26;;26444:9;26438:4;26434:20;26430:1;26419:9;26415:17;26408:47;26472:131;26598:4;26472:131;:::i;:::-;26464:139;;26191:419;;;:::o;26616:238::-;26756:34;26752:1;26744:6;26740:14;26733:58;26825:21;26820:2;26812:6;26808:15;26801:46;26616:238;:::o;26860:366::-;27002:3;27023:67;27087:2;27082:3;27023:67;:::i;:::-;27016:74;;27099:93;27188:3;27099:93;:::i;:::-;27217:2;27212:3;27208:12;27201:19;;26860:366;;;:::o;27232:419::-;27398:4;27436:2;27425:9;27421:18;27413:26;;27485:9;27479:4;27475:20;27471:1;27460:9;27456:17;27449:47;27513:131;27639:4;27513:131;:::i;:::-;27505:139;;27232:419;;;:::o;27657:234::-;27797:34;27793:1;27785:6;27781:14;27774:58;27866:17;27861:2;27853:6;27849:15;27842:42;27657:234;:::o;27897:366::-;28039:3;28060:67;28124:2;28119:3;28060:67;:::i;:::-;28053:74;;28136:93;28225:3;28136:93;:::i;:::-;28254:2;28249:3;28245:12;28238:19;;27897:366;;;:::o;28269:419::-;28435:4;28473:2;28462:9;28458:18;28450:26;;28522:9;28516:4;28512:20;28508:1;28497:9;28493:17;28486:47;28550:131;28676:4;28550:131;:::i;:::-;28542:139;;28269:419;;;:::o;28694:148::-;28796:11;28833:3;28818:18;;28694:148;;;;:::o;28848:377::-;28954:3;28982:39;29015:5;28982:39;:::i;:::-;29037:89;29119:6;29114:3;29037:89;:::i;:::-;29030:96;;29135:52;29180:6;29175:3;29168:4;29161:5;29157:16;29135:52;:::i;:::-;29212:6;29207:3;29203:16;29196:23;;28958:267;28848:377;;;;:::o;29231:435::-;29411:3;29433:95;29524:3;29515:6;29433:95;:::i;:::-;29426:102;;29545:95;29636:3;29627:6;29545:95;:::i;:::-;29538:102;;29657:3;29650:10;;29231:435;;;;;:::o;29672:225::-;29812:34;29808:1;29800:6;29796:14;29789:58;29881:8;29876:2;29868:6;29864:15;29857:33;29672:225;:::o;29903:366::-;30045:3;30066:67;30130:2;30125:3;30066:67;:::i;:::-;30059:74;;30142:93;30231:3;30142:93;:::i;:::-;30260:2;30255:3;30251:12;30244:19;;29903:366;;;:::o;30275:419::-;30441:4;30479:2;30468:9;30464:18;30456:26;;30528:9;30522:4;30518:20;30514:1;30503:9;30499:17;30492:47;30556:131;30682:4;30556:131;:::i;:::-;30548:139;;30275:419;;;:::o;30700:237::-;30840:34;30836:1;30828:6;30824:14;30817:58;30909:20;30904:2;30896:6;30892:15;30885:45;30700:237;:::o;30943:366::-;31085:3;31106:67;31170:2;31165:3;31106:67;:::i;:::-;31099:74;;31182:93;31271:3;31182:93;:::i;:::-;31300:2;31295:3;31291:12;31284:19;;30943:366;;;:::o;31315:419::-;31481:4;31519:2;31508:9;31504:18;31496:26;;31568:9;31562:4;31558:20;31554:1;31543:9;31539:17;31532:47;31596:131;31722:4;31596:131;:::i;:::-;31588:139;;31315:419;;;:::o;31740:225::-;31880:34;31876:1;31868:6;31864:14;31857:58;31949:8;31944:2;31936:6;31932:15;31925:33;31740:225;:::o;31971:366::-;32113:3;32134:67;32198:2;32193:3;32134:67;:::i;:::-;32127:74;;32210:93;32299:3;32210:93;:::i;:::-;32328:2;32323:3;32319:12;32312:19;;31971:366;;;:::o;32343:419::-;32509:4;32547:2;32536:9;32532:18;32524:26;;32596:9;32590:4;32586:20;32582:1;32571:9;32567:17;32560:47;32624:131;32750:4;32624:131;:::i;:::-;32616:139;;32343:419;;;:::o;32768:224::-;32908:34;32904:1;32896:6;32892:14;32885:58;32977:7;32972:2;32964:6;32960:15;32953:32;32768:224;:::o;32998:366::-;33140:3;33161:67;33225:2;33220:3;33161:67;:::i;:::-;33154:74;;33237:93;33326:3;33237:93;:::i;:::-;33355:2;33350:3;33346:12;33339:19;;32998:366;;;:::o;33370:419::-;33536:4;33574:2;33563:9;33559:18;33551:26;;33623:9;33617:4;33613:20;33609:1;33598:9;33594:17;33587:47;33651:131;33777:4;33651:131;:::i;:::-;33643:139;;33370:419;;;:::o;33795:182::-;33935:34;33931:1;33923:6;33919:14;33912:58;33795:182;:::o;33983:366::-;34125:3;34146:67;34210:2;34205:3;34146:67;:::i;:::-;34139:74;;34222:93;34311:3;34222:93;:::i;:::-;34340:2;34335:3;34331:12;34324:19;;33983:366;;;:::o;34355:419::-;34521:4;34559:2;34548:9;34544:18;34536:26;;34608:9;34602:4;34598:20;34594:1;34583:9;34579:17;34572:47;34636:131;34762:4;34636:131;:::i;:::-;34628:139;;34355:419;;;:::o;34780:229::-;34920:34;34916:1;34908:6;34904:14;34897:58;34989:12;34984:2;34976:6;34972:15;34965:37;34780:229;:::o;35015:366::-;35157:3;35178:67;35242:2;35237:3;35178:67;:::i;:::-;35171:74;;35254:93;35343:3;35254:93;:::i;:::-;35372:2;35367:3;35363:12;35356:19;;35015:366;;;:::o;35387:419::-;35553:4;35591:2;35580:9;35576:18;35568:26;;35640:9;35634:4;35630:20;35626:1;35615:9;35611:17;35604:47;35668:131;35794:4;35668:131;:::i;:::-;35660:139;;35387:419;;;:::o;35812:234::-;35952:34;35948:1;35940:6;35936:14;35929:58;36021:17;36016:2;36008:6;36004:15;35997:42;35812:234;:::o;36052:366::-;36194:3;36215:67;36279:2;36274:3;36215:67;:::i;:::-;36208:74;;36291:93;36380:3;36291:93;:::i;:::-;36409:2;36404:3;36400:12;36393:19;;36052:366;;;:::o;36424:419::-;36590:4;36628:2;36617:9;36613:18;36605:26;;36677:9;36671:4;36667:20;36663:1;36652:9;36648:17;36641:47;36705:131;36831:4;36705:131;:::i;:::-;36697:139;;36424:419;;;:::o;36849:173::-;36989:25;36985:1;36977:6;36973:14;36966:49;36849:173;:::o;37028:366::-;37170:3;37191:67;37255:2;37250:3;37191:67;:::i;:::-;37184:74;;37267:93;37356:3;37267:93;:::i;:::-;37385:2;37380:3;37376:12;37369:19;;37028:366;;;:::o;37400:419::-;37566:4;37604:2;37593:9;37589:18;37581:26;;37653:9;37647:4;37643:20;37639:1;37628:9;37624:17;37617:47;37681:131;37807:4;37681:131;:::i;:::-;37673:139;;37400:419;;;:::o;37825:98::-;37876:6;37910:5;37904:12;37894:22;;37825:98;;;:::o;37929:168::-;38012:11;38046:6;38041:3;38034:19;38086:4;38081:3;38077:14;38062:29;;37929:168;;;;:::o;38103:360::-;38189:3;38217:38;38249:5;38217:38;:::i;:::-;38271:70;38334:6;38329:3;38271:70;:::i;:::-;38264:77;;38350:52;38395:6;38390:3;38383:4;38376:5;38372:16;38350:52;:::i;:::-;38427:29;38449:6;38427:29;:::i;:::-;38422:3;38418:39;38411:46;;38193:270;38103:360;;;;:::o;38469:640::-;38664:4;38702:3;38691:9;38687:19;38679:27;;38716:71;38784:1;38773:9;38769:17;38760:6;38716:71;:::i;:::-;38797:72;38865:2;38854:9;38850:18;38841:6;38797:72;:::i;:::-;38879;38947:2;38936:9;38932:18;38923:6;38879:72;:::i;:::-;38998:9;38992:4;38988:20;38983:2;38972:9;38968:18;38961:48;39026:76;39097:4;39088:6;39026:76;:::i;:::-;39018:84;;38469:640;;;;;;;:::o;39115:141::-;39171:5;39202:6;39196:13;39187:22;;39218:32;39244:5;39218:32;:::i;:::-;39115:141;;;;:::o;39262:349::-;39331:6;39380:2;39368:9;39359:7;39355:23;39351:32;39348:119;;;39386:79;;:::i;:::-;39348:119;39506:1;39531:63;39586:7;39577:6;39566:9;39562:22;39531:63;:::i;:::-;39521:73;;39477:127;39262:349;;;;:::o;39617:233::-;39656:3;39679:24;39697:5;39679:24;:::i;:::-;39670:33;;39725:66;39718:5;39715:77;39712:103;;;39795:18;;:::i;:::-;39712:103;39842:1;39835:5;39831:13;39824:20;;39617:233;;;:::o;39856:180::-;39904:77;39901:1;39894:88;40001:4;39998:1;39991:15;40025:4;40022:1;40015:15;40042:185;40082:1;40099:20;40117:1;40099:20;:::i;:::-;40094:25;;40133:20;40151:1;40133:20;:::i;:::-;40128:25;;40172:1;40162:35;;40177:18;;:::i;:::-;40162:35;40219:1;40216;40212:9;40207:14;;40042:185;;;;:::o;40233:191::-;40273:4;40293:20;40311:1;40293:20;:::i;:::-;40288:25;;40327:20;40345:1;40327:20;:::i;:::-;40322:25;;40366:1;40363;40360:8;40357:34;;;40371:18;;:::i;:::-;40357:34;40416:1;40413;40409:9;40401:17;;40233:191;;;;:::o;40430:176::-;40462:1;40479:20;40497:1;40479:20;:::i;:::-;40474:25;;40513:20;40531:1;40513:20;:::i;:::-;40508:25;;40552:1;40542:35;;40557:18;;:::i;:::-;40542:35;40598:1;40595;40591:9;40586:14;;40430:176;;;;:::o;40612:180::-;40660:77;40657:1;40650:88;40757:4;40754:1;40747:15;40781:4;40778:1;40771:15;40798:220;40938:34;40934:1;40926:6;40922:14;40915:58;41007:3;41002:2;40994:6;40990:15;40983:28;40798:220;:::o;41024:366::-;41166:3;41187:67;41251:2;41246:3;41187:67;:::i;:::-;41180:74;;41263:93;41352:3;41263:93;:::i;:::-;41381:2;41376:3;41372:12;41365:19;;41024:366;;;:::o;41396:419::-;41562:4;41600:2;41589:9;41585:18;41577:26;;41649:9;41643:4;41639:20;41635:1;41624:9;41620:17;41613:47;41677:131;41803:4;41677:131;:::i;:::-;41669:139;;41396:419;;;:::o;41821:227::-;41961:34;41957:1;41949:6;41945:14;41938:58;42030:10;42025:2;42017:6;42013:15;42006:35;41821:227;:::o;42054:366::-;42196:3;42217:67;42281:2;42276:3;42217:67;:::i;:::-;42210:74;;42293:93;42382:3;42293:93;:::i;:::-;42411:2;42406:3;42402:12;42395:19;;42054:366;;;:::o;42426:419::-;42592:4;42630:2;42619:9;42615:18;42607:26;;42679:9;42673:4;42669:20;42665:1;42654:9;42650:17;42643:47;42707:131;42833:4;42707:131;:::i;:::-;42699:139;;42426:419;;;:::o
Swarm Source
ipfs://f18e9f5563e242adbe2c9c76ee43d7a48b1910ee70886987db3eefa52195fd83
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.