Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
10,000 BB
Holders
1,353
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 BBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BadBitches
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* Developed by Waqas & Meraj Bugti, Blochain Developers @ www.themetaconcepts.com ** Flattened file, Containing all extensions. ** Contract Bad Bitches On A Scooter start at line 1350. // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: gist-270e50cc401a88221663666c2f449393/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: gist-270e50cc401a88221663666c2f449393/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: gist-270e50cc401a88221663666c2f449393/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: gist-270e50cc401a88221663666c2f449393/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: gist-270e50cc401a88221663666c2f449393/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: gist-270e50cc401a88221663666c2f449393/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: gist-270e50cc401a88221663666c2f449393/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: gist-270e50cc401a88221663666c2f449393/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (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: gist-270e50cc401a88221663666c2f449393/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: gist-270e50cc401a88221663666c2f449393/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: gist-270e50cc401a88221663666c2f449393/XrootDotDev.sol /* Contract Bad Bitches On A Scooter * Using OpenZeppelin Contracts, utils/Strings.sol * Using OpenZeppelin Contracts, access/Ownable.sol * Using ERC-721A, Creator: Chiru Labs */ pragma solidity ^0.8.0; contract BadBitches is ERC721A, Ownable { using Strings for uint256; string public baseURI = "ipfs://QmZ3cUeHeD5VVoyxt1pBmdmXfPdQEJ5LLtGpcAQBQyUGtM/"; string public baseExtension = ".json"; string public notRevealedUri = "ipfs://Qmbp1itvuGHBqbpebmYkAtPAi8Gy1MJ8ruwA88dMe9STYd/"; //Max supply is 10000 NFTs // Max mint amount Per Tx is 10, and is modifiable functions //Max amount of NFTs an address can own is set to 10, It is also Modifiable //Presale mint supply is 1000 and cost is 0 eth //Cost is set to 0.05 ether for public Mint uint256 public cost; uint256 public maxSupply = 10000; uint256 public Presale_Supply=1000; uint256 public maxMintAmount = 5; uint256 public nftPerAddressLimit = 5; // Reveal status bool public revealed = false; // Contract status, 0=pause, 1=Presale, 2=publicSale uint public status = 1; // Name and Symbol are not Modifiable once deployed. constructor() ERC721A("Bad Bitches On A Scooter", "BB") {} // public functions // Presale Mint //Presale mint supply is 1000 and cost is 0 eth function mintPresale(uint256 _mintAmount) public payable { require(status == 1, "Freemint not active"); require(_mintAmount > 0,"Mint Quantity should be more than 0"); require(totalSupply() + _mintAmount <= Presale_Supply, "Reached max Pre-supply"); //require the (mintAmount + balanceOf) doesnot exceeds PeradressLimit uint256 ownerTokenCount = balanceOf(msg.sender); require (ownerTokenCount + _mintAmount <= nftPerAddressLimit, "Mint amount is exceeding Perwallet Token limit"); _safeMint(msg.sender, _mintAmount); } //public can mint after status is changes to 2 function mint(uint256 _mintAmount) public payable { //Basic Requirements for all require(status == 2, "mint not active"); uint256 supply = totalSupply(); require(_mintAmount > 0, "Mint amount must be greater than 0"); require(supply + _mintAmount <= maxSupply, "Mint amount must be equal to or below available tokens"); if (msg.sender != owner()) { // these requirements doesnot Apply to owner Address require(msg.value >= cost * _mintAmount, "Insufficient balance"); require(_mintAmount <= maxMintAmount, "Mint amount is greater than max mint amount"); //require the (mintAmount + balanceOf) doesnot exceeds PeradressLimit uint256 ownerTokenCount = balanceOf(msg.sender); require (ownerTokenCount + _mintAmount <= nftPerAddressLimit, "Mint amount is exceeding Perwallet Token limit"); } _safeMint(msg.sender, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner funtions function reveal() public onlyOwner { revealed = true; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } // Contract status, 0=pause, 1=Presale, 2=publicSale //Presale mint supply is 1000 and cost is 0 eth //Public Mint cost is 0.044 eth function setStatus(uint256 s)external onlyOwner{ status = s; if(s==1){ cost=0 ether; Presale_Supply=1000; } else{ cost=0.044 ether; } } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } // to Airdrop tokens function AirDrop(address _to, uint256 _mintAmount) public onlyOwner { uint256 supply = totalSupply(); require(status == 1 || status == 2, "contract is paused"); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); _safeMint(_to, _mintAmount); } }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": false, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"AirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Presale_Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"s","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052604051806060016040528060368152602001620053e76036913960089080519060200190620000359291906200028e565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000839291906200028e565b506040518060600160405280603681526020016200541d60369139600a9080519060200190620000b59291906200028e565b50612710600c556103e8600d556005600e556005600f556000601060006101000a81548160ff0219169083151502179055506001601155348015620000f957600080fd5b506040518060400160405280601881526020017f4261642042697463686573204f6e20412053636f6f74657200000000000000008152506040518060400160405280600281526020017f424200000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200017e9291906200028e565b508060029080519060200190620001979291906200028e565b505050620001ba620001ae620001c060201b60201c565b620001c860201b60201c565b620003a3565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029c906200033e565b90600052602060002090601f016020900481019282620002c057600085556200030c565b82601f10620002db57805160ff19168380011785556200030c565b828001600101855582156200030c579182015b828111156200030b578251825591602001919060010190620002ee565b5b5090506200031b91906200031f565b5090565b5b808211156200033a57600081600090555060010162000320565b5090565b600060028204905060018216806200035757607f821691505b602082108114156200036e576200036d62000374565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61503480620003b36000396000f3fe6080604052600436106102515760003560e01c806369ba1a7511610139578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb0114610884578063da3ef23f146108af578063e985e9c5146108d8578063f2c4ce1e14610915578063f2fde38b1461093e578063f759867a1461096757610251565b8063b88d4fde1461079f578063ba7d2c76146107c8578063c6682862146107f3578063c87b56dd1461081e578063d0eb26b01461085b57610251565b80638da5cb5b116100fd5780638da5cb5b146106ed57806395d89b4114610718578063a0712d6814610743578063a22cb4651461075f578063a475b5dd1461078857610251565b806369ba1a751461061c5780636c0360eb1461064557806370a0823114610670578063715018a6146106ad5780637f00c7a6146106c457610251565b80632a2f3a6f116101d257806344a0d68a1161019657806344a0d68a146104fa5780634f6ccce714610523578063518302271461056057806355f804b31461058b57806358f58d86146105b45780636352211e146105df57610251565b80632a2f3a6f146104245780632f745c591461044d5780633ccfd60b1461048a57806342842e0e14610494578063438b6300146104bd57610251565b806313faede61161021957806313faede61461034f57806318160ddd1461037a578063200d2ed2146103a5578063239c70ae146103d057806323b872dd146103fb57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063081c8c44146102fb578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613756565b610983565b60405161028a9190613ee3565b60405180910390f35b34801561029f57600080fd5b506102a8610acd565b6040516102b59190613efe565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906137f9565b610b5f565b6040516102f29190613e5a565b60405180910390f35b34801561030757600080fd5b50610310610be4565b60405161031d9190613efe565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613716565b610c72565b005b34801561035b57600080fd5b50610364610d8b565b60405161037191906142c0565b60405180910390f35b34801561038657600080fd5b5061038f610d91565b60405161039c91906142c0565b60405180910390f35b3480156103b157600080fd5b506103ba610d9a565b6040516103c791906142c0565b60405180910390f35b3480156103dc57600080fd5b506103e5610da0565b6040516103f291906142c0565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d9190613600565b610da6565b005b34801561043057600080fd5b5061044b60048036038101906104469190613716565b610db6565b005b34801561045957600080fd5b50610474600480360381019061046f9190613716565b610ed5565b60405161048191906142c0565b60405180910390f35b6104926110c7565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190613600565b6111c3565b005b3480156104c957600080fd5b506104e460048036038101906104df9190613593565b6111e3565b6040516104f19190613ec1565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c91906137f9565b611291565b005b34801561052f57600080fd5b5061054a600480360381019061054591906137f9565b611317565b60405161055791906142c0565b60405180910390f35b34801561056c57600080fd5b5061057561136a565b6040516105829190613ee3565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad91906137b0565b61137d565b005b3480156105c057600080fd5b506105c9611413565b6040516105d691906142c0565b60405180910390f35b3480156105eb57600080fd5b50610606600480360381019061060191906137f9565b611419565b6040516106139190613e5a565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e91906137f9565b61142f565b005b34801561065157600080fd5b5061065a6114e3565b6040516106679190613efe565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190613593565b611571565b6040516106a491906142c0565b60405180910390f35b3480156106b957600080fd5b506106c261165a565b005b3480156106d057600080fd5b506106eb60048036038101906106e691906137f9565b6116e2565b005b3480156106f957600080fd5b50610702611768565b60405161070f9190613e5a565b60405180910390f35b34801561072457600080fd5b5061072d611792565b60405161073a9190613efe565b60405180910390f35b61075d600480360381019061075891906137f9565b611824565b005b34801561076b57600080fd5b50610786600480360381019061078191906136d6565b611a44565b005b34801561079457600080fd5b5061079d611bc5565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190613653565b611c5e565b005b3480156107d457600080fd5b506107dd611cba565b6040516107ea91906142c0565b60405180910390f35b3480156107ff57600080fd5b50610808611cc0565b6040516108159190613efe565b60405180910390f35b34801561082a57600080fd5b50610845600480360381019061084091906137f9565b611d4e565b6040516108529190613efe565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d91906137f9565b611ea7565b005b34801561089057600080fd5b50610899611f2d565b6040516108a691906142c0565b60405180910390f35b3480156108bb57600080fd5b506108d660048036038101906108d191906137b0565b611f33565b005b3480156108e457600080fd5b506108ff60048036038101906108fa91906135c0565b611fc9565b60405161090c9190613ee3565b60405180910390f35b34801561092157600080fd5b5061093c600480360381019061093791906137b0565b61205d565b005b34801561094a57600080fd5b5061096560048036038101906109609190613593565b6120f3565b005b610981600480360381019061097c91906137f9565b6121eb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac65750610ac582612335565b5b9050919050565b606060018054610adc906145c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b08906145c9565b8015610b555780601f10610b2a57610100808354040283529160200191610b55565b820191906000526020600020905b815481529060010190602001808311610b3857829003601f168201915b5050505050905090565b6000610b6a8261239f565b610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba0906142a0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a8054610bf1906145c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1d906145c9565b8015610c6a5780601f10610c3f57610100808354040283529160200191610c6a565b820191906000526020600020905b815481529060010190602001808311610c4d57829003601f168201915b505050505081565b6000610c7d82611419565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce5906141c0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d0d6123ac565b73ffffffffffffffffffffffffffffffffffffffff161480610d3c5750610d3b81610d366123ac565b611fc9565b5b610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290614040565b60405180910390fd5b610d868383836123b4565b505050565b600b5481565b60008054905090565b60115481565b600e5481565b610db1838383612466565b505050565b610dbe6123ac565b73ffffffffffffffffffffffffffffffffffffffff16610ddc611768565b73ffffffffffffffffffffffffffffffffffffffff1614610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e29906140e0565b60405180910390fd5b6000610e3c610d91565b905060016011541480610e5157506002601154145b610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790613fc0565b60405180910390fd5b60008211610e9d57600080fd5b600e54821115610eac57600080fd5b600c548282610ebb91906143fe565b1115610ec657600080fd5b610ed083836129a6565b505050565b6000610ee083611571565b8210610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890613f20565b60405180910390fd5b6000610f2b610d91565b905060008060005b83811015611085576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461102557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611077578684141561106e5781955050505050506110c1565b83806001019450505b508080600101915050610f33565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890614260565b60405180910390fd5b92915050565b6110cf6123ac565b73ffffffffffffffffffffffffffffffffffffffff166110ed611768565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a906140e0565b60405180910390fd5b600061114d611768565b73ffffffffffffffffffffffffffffffffffffffff164760405161117090613e45565b60006040518083038185875af1925050503d80600081146111ad576040519150601f19603f3d011682016040523d82523d6000602084013e6111b2565b606091505b50509050806111c057600080fd5b50565b6111de83838360405180602001604052806000815250611c5e565b505050565b606060006111f083611571565b905060008167ffffffffffffffff81111561120e5761120d614762565b5b60405190808252806020026020018201604052801561123c5781602001602082028036833780820191505090505b50905060005b82811015611286576112548582610ed5565b82828151811061126757611266614733565b5b602002602001018181525050808061127e9061462c565b915050611242565b508092505050919050565b6112996123ac565b73ffffffffffffffffffffffffffffffffffffffff166112b7611768565b73ffffffffffffffffffffffffffffffffffffffff161461130d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611304906140e0565b60405180910390fd5b80600b8190555050565b6000611321610d91565b8210611362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135990613fe0565b60405180910390fd5b819050919050565b601060009054906101000a900460ff1681565b6113856123ac565b73ffffffffffffffffffffffffffffffffffffffff166113a3611768565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f0906140e0565b60405180910390fd5b806008908051906020019061140f92919061336d565b5050565b600d5481565b6000611424826129c4565b600001519050919050565b6114376123ac565b73ffffffffffffffffffffffffffffffffffffffff16611455611768565b73ffffffffffffffffffffffffffffffffffffffff16146114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a2906140e0565b60405180910390fd5b8060118190555060018114156114d1576000600b819055506103e8600d819055506114e0565b669c51c4521e0000600b819055505b50565b600880546114f0906145c9565b80601f016020809104026020016040519081016040528092919081815260200182805461151c906145c9565b80156115695780601f1061153e57610100808354040283529160200191611569565b820191906000526020600020905b81548152906001019060200180831161154c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d9906140a0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116626123ac565b73ffffffffffffffffffffffffffffffffffffffff16611680611768565b73ffffffffffffffffffffffffffffffffffffffff16146116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd906140e0565b60405180910390fd5b6116e06000612b5e565b565b6116ea6123ac565b73ffffffffffffffffffffffffffffffffffffffff16611708611768565b73ffffffffffffffffffffffffffffffffffffffff161461175e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611755906140e0565b60405180910390fd5b80600e8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546117a1906145c9565b80601f01602080910402602001604051908101604052809291908181526020018280546117cd906145c9565b801561181a5780601f106117ef5761010080835404028352916020019161181a565b820191906000526020600020905b8154815290600101906020018083116117fd57829003601f168201915b5050505050905090565b600260115414611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186090614180565b60405180910390fd5b6000611873610d91565b9050600082116118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90614080565b60405180910390fd5b600c5482826118c791906143fe565b1115611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90614060565b60405180910390fd5b611910611768565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a365781600b546119509190614485565b341015611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990614020565b60405180910390fd5b600e548211156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90614160565b60405180910390fd5b60006119e233611571565b9050600f5483826119f391906143fe565b1115611a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2b90613f80565b60405180910390fd5b505b611a4033836129a6565b5050565b611a4c6123ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab190614120565b60405180910390fd5b8060066000611ac76123ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b746123ac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb99190613ee3565b60405180910390a35050565b611bcd6123ac565b73ffffffffffffffffffffffffffffffffffffffff16611beb611768565b73ffffffffffffffffffffffffffffffffffffffff1614611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c38906140e0565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b611c69848484612466565b611c7584848484612c24565b611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab906141e0565b60405180910390fd5b50505050565b600f5481565b60098054611ccd906145c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf9906145c9565b8015611d465780601f10611d1b57610100808354040283529160200191611d46565b820191906000526020600020905b815481529060010190602001808311611d2957829003601f168201915b505050505081565b6060611d598261239f565b611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90614100565b60405180910390fd5b60001515601060009054906101000a900460ff1615151415611e4657600a8054611dc1906145c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611ded906145c9565b8015611e3a5780601f10611e0f57610100808354040283529160200191611e3a565b820191906000526020600020905b815481529060010190602001808311611e1d57829003601f168201915b50505050509050611ea2565b6000611e50612dbb565b90506000815111611e705760405180602001604052806000815250611e9e565b80611e7a84612e4d565b6009604051602001611e8e93929190613e14565b6040516020818303038152906040525b9150505b919050565b611eaf6123ac565b73ffffffffffffffffffffffffffffffffffffffff16611ecd611768565b73ffffffffffffffffffffffffffffffffffffffff1614611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a906140e0565b60405180910390fd5b80600f8190555050565b600c5481565b611f3b6123ac565b73ffffffffffffffffffffffffffffffffffffffff16611f59611768565b73ffffffffffffffffffffffffffffffffffffffff1614611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa6906140e0565b60405180910390fd5b8060099080519060200190611fc592919061336d565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120656123ac565b73ffffffffffffffffffffffffffffffffffffffff16612083611768565b73ffffffffffffffffffffffffffffffffffffffff16146120d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d0906140e0565b60405180910390fd5b80600a90805190602001906120ef92919061336d565b5050565b6120fb6123ac565b73ffffffffffffffffffffffffffffffffffffffff16612119611768565b73ffffffffffffffffffffffffffffffffffffffff161461216f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612166906140e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d690613f40565b60405180910390fd5b6121e881612b5e565b50565b600160115414612230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612227906141a0565b60405180910390fd5b60008111612273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226a90613fa0565b60405180910390fd5b600d548161227f610d91565b61228991906143fe565b11156122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c190614240565b60405180910390fd5b60006122d533611571565b9050600f5482826122e691906143fe565b1115612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e90613f80565b60405180910390fd5b61233133836129a6565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612471826129c4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166124986123ac565b73ffffffffffffffffffffffffffffffffffffffff1614806124f457506124bd6123ac565b73ffffffffffffffffffffffffffffffffffffffff166124dc84610b5f565b73ffffffffffffffffffffffffffffffffffffffff16145b80612510575061250f826000015161250a6123ac565b611fc9565b5b905080612552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254990614140565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146125c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bb906140c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b90614000565b60405180910390fd5b6126418585856001612fae565b61265160008484600001516123b4565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612936576128958161239f565b156129355782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461299f8585856001612fb4565b5050505050565b6129c0828260405180602001604052806000815250612fba565b5050565b6129cc6133f3565b6129d58261239f565b612a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0b90613f60565b60405180910390fd5b60008290505b60008110612b1d576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b0e578092505050612b59565b50808060019003915050612a1a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5090614280565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612c458473ffffffffffffffffffffffffffffffffffffffff16612fcc565b15612dae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c6e6123ac565b8786866040518563ffffffff1660e01b8152600401612c909493929190613e75565b602060405180830381600087803b158015612caa57600080fd5b505af1925050508015612cdb57506040513d601f19601f82011682018060405250810190612cd89190613783565b60015b612d5e573d8060008114612d0b576040519150601f19603f3d011682016040523d82523d6000602084013e612d10565b606091505b50600081511415612d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4d906141e0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612db3565b600190505b949350505050565b606060088054612dca906145c9565b80601f0160208091040260200160405190810160405280929190818152602001828054612df6906145c9565b8015612e435780601f10612e1857610100808354040283529160200191612e43565b820191906000526020600020905b815481529060010190602001808311612e2657829003601f168201915b5050505050905090565b60606000821415612e95576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fa9565b600082905060005b60008214612ec7578080612eb09061462c565b915050600a82612ec09190614454565b9150612e9d565b60008167ffffffffffffffff811115612ee357612ee2614762565b5b6040519080825280601f01601f191660200182016040528015612f155781602001600182028036833780820191505090505b5090505b60008514612fa257600182612f2e91906144df565b9150600a85612f3d9190614675565b6030612f4991906143fe565b60f81b818381518110612f5f57612f5e614733565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f9b9190614454565b9450612f19565b8093505050505b919050565b50505050565b50505050565b612fc78383836001612fef565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305c90614200565b60405180910390fd5b60008414156130a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a090614220565b60405180910390fd5b6130b66000868387612fae565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561335057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561333b576132fb6000888488612c24565b61333a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613331906141e0565b60405180910390fd5b5b81806001019250508080600101915050613284565b5080600081905550506133666000868387612fb4565b5050505050565b828054613379906145c9565b90600052602060002090601f01602090048101928261339b57600085556133e2565b82601f106133b457805160ff19168380011785556133e2565b828001600101855582156133e2579182015b828111156133e15782518255916020019190600101906133c6565b5b5090506133ef919061342d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561344657600081600090555060010161342e565b5090565b600061345d61345884614300565b6142db565b90508281526020810184848401111561347957613478614796565b5b613484848285614587565b509392505050565b600061349f61349a84614331565b6142db565b9050828152602081018484840111156134bb576134ba614796565b5b6134c6848285614587565b509392505050565b6000813590506134dd81614fa2565b92915050565b6000813590506134f281614fb9565b92915050565b60008135905061350781614fd0565b92915050565b60008151905061351c81614fd0565b92915050565b600082601f83011261353757613536614791565b5b813561354784826020860161344a565b91505092915050565b600082601f83011261356557613564614791565b5b813561357584826020860161348c565b91505092915050565b60008135905061358d81614fe7565b92915050565b6000602082840312156135a9576135a86147a0565b5b60006135b7848285016134ce565b91505092915050565b600080604083850312156135d7576135d66147a0565b5b60006135e5858286016134ce565b92505060206135f6858286016134ce565b9150509250929050565b600080600060608486031215613619576136186147a0565b5b6000613627868287016134ce565b9350506020613638868287016134ce565b92505060406136498682870161357e565b9150509250925092565b6000806000806080858703121561366d5761366c6147a0565b5b600061367b878288016134ce565b945050602061368c878288016134ce565b935050604061369d8782880161357e565b925050606085013567ffffffffffffffff8111156136be576136bd61479b565b5b6136ca87828801613522565b91505092959194509250565b600080604083850312156136ed576136ec6147a0565b5b60006136fb858286016134ce565b925050602061370c858286016134e3565b9150509250929050565b6000806040838503121561372d5761372c6147a0565b5b600061373b858286016134ce565b925050602061374c8582860161357e565b9150509250929050565b60006020828403121561376c5761376b6147a0565b5b600061377a848285016134f8565b91505092915050565b600060208284031215613799576137986147a0565b5b60006137a78482850161350d565b91505092915050565b6000602082840312156137c6576137c56147a0565b5b600082013567ffffffffffffffff8111156137e4576137e361479b565b5b6137f084828501613550565b91505092915050565b60006020828403121561380f5761380e6147a0565b5b600061381d8482850161357e565b91505092915050565b60006138328383613df6565b60208301905092915050565b61384781614513565b82525050565b600061385882614387565b61386281856143b5565b935061386d83614362565b8060005b8381101561389e5781516138858882613826565b9750613890836143a8565b925050600181019050613871565b5085935050505092915050565b6138b481614525565b82525050565b60006138c582614392565b6138cf81856143c6565b93506138df818560208601614596565b6138e8816147a5565b840191505092915050565b60006138fe8261439d565b61390881856143e2565b9350613918818560208601614596565b613921816147a5565b840191505092915050565b60006139378261439d565b61394181856143f3565b9350613951818560208601614596565b80840191505092915050565b6000815461396a816145c9565b61397481866143f3565b9450600182166000811461398f57600181146139a0576139d3565b60ff198316865281860193506139d3565b6139a985614372565b60005b838110156139cb578154818901526001820191506020810190506139ac565b838801955050505b50505092915050565b60006139e96022836143e2565b91506139f4826147b6565b604082019050919050565b6000613a0c6026836143e2565b9150613a1782614805565b604082019050919050565b6000613a2f602a836143e2565b9150613a3a82614854565b604082019050919050565b6000613a52602e836143e2565b9150613a5d826148a3565b604082019050919050565b6000613a756023836143e2565b9150613a80826148f2565b604082019050919050565b6000613a986012836143e2565b9150613aa382614941565b602082019050919050565b6000613abb6023836143e2565b9150613ac68261496a565b604082019050919050565b6000613ade6025836143e2565b9150613ae9826149b9565b604082019050919050565b6000613b016014836143e2565b9150613b0c82614a08565b602082019050919050565b6000613b246039836143e2565b9150613b2f82614a31565b604082019050919050565b6000613b476036836143e2565b9150613b5282614a80565b604082019050919050565b6000613b6a6022836143e2565b9150613b7582614acf565b604082019050919050565b6000613b8d602b836143e2565b9150613b9882614b1e565b604082019050919050565b6000613bb06026836143e2565b9150613bbb82614b6d565b604082019050919050565b6000613bd36020836143e2565b9150613bde82614bbc565b602082019050919050565b6000613bf6602f836143e2565b9150613c0182614be5565b604082019050919050565b6000613c19601a836143e2565b9150613c2482614c34565b602082019050919050565b6000613c3c6032836143e2565b9150613c4782614c5d565b604082019050919050565b6000613c5f602b836143e2565b9150613c6a82614cac565b604082019050919050565b6000613c82600f836143e2565b9150613c8d82614cfb565b602082019050919050565b6000613ca56013836143e2565b9150613cb082614d24565b602082019050919050565b6000613cc86022836143e2565b9150613cd382614d4d565b604082019050919050565b6000613ceb6000836143d7565b9150613cf682614d9c565b600082019050919050565b6000613d0e6033836143e2565b9150613d1982614d9f565b604082019050919050565b6000613d316021836143e2565b9150613d3c82614dee565b604082019050919050565b6000613d546028836143e2565b9150613d5f82614e3d565b604082019050919050565b6000613d776016836143e2565b9150613d8282614e8c565b602082019050919050565b6000613d9a602e836143e2565b9150613da582614eb5565b604082019050919050565b6000613dbd602f836143e2565b9150613dc882614f04565b604082019050919050565b6000613de0602d836143e2565b9150613deb82614f53565b604082019050919050565b613dff8161457d565b82525050565b613e0e8161457d565b82525050565b6000613e20828661392c565b9150613e2c828561392c565b9150613e38828461395d565b9150819050949350505050565b6000613e5082613cde565b9150819050919050565b6000602082019050613e6f600083018461383e565b92915050565b6000608082019050613e8a600083018761383e565b613e97602083018661383e565b613ea46040830185613e05565b8181036060830152613eb681846138ba565b905095945050505050565b60006020820190508181036000830152613edb818461384d565b905092915050565b6000602082019050613ef860008301846138ab565b92915050565b60006020820190508181036000830152613f1881846138f3565b905092915050565b60006020820190508181036000830152613f39816139dc565b9050919050565b60006020820190508181036000830152613f59816139ff565b9050919050565b60006020820190508181036000830152613f7981613a22565b9050919050565b60006020820190508181036000830152613f9981613a45565b9050919050565b60006020820190508181036000830152613fb981613a68565b9050919050565b60006020820190508181036000830152613fd981613a8b565b9050919050565b60006020820190508181036000830152613ff981613aae565b9050919050565b6000602082019050818103600083015261401981613ad1565b9050919050565b6000602082019050818103600083015261403981613af4565b9050919050565b6000602082019050818103600083015261405981613b17565b9050919050565b6000602082019050818103600083015261407981613b3a565b9050919050565b6000602082019050818103600083015261409981613b5d565b9050919050565b600060208201905081810360008301526140b981613b80565b9050919050565b600060208201905081810360008301526140d981613ba3565b9050919050565b600060208201905081810360008301526140f981613bc6565b9050919050565b6000602082019050818103600083015261411981613be9565b9050919050565b6000602082019050818103600083015261413981613c0c565b9050919050565b6000602082019050818103600083015261415981613c2f565b9050919050565b6000602082019050818103600083015261417981613c52565b9050919050565b6000602082019050818103600083015261419981613c75565b9050919050565b600060208201905081810360008301526141b981613c98565b9050919050565b600060208201905081810360008301526141d981613cbb565b9050919050565b600060208201905081810360008301526141f981613d01565b9050919050565b6000602082019050818103600083015261421981613d24565b9050919050565b6000602082019050818103600083015261423981613d47565b9050919050565b6000602082019050818103600083015261425981613d6a565b9050919050565b6000602082019050818103600083015261427981613d8d565b9050919050565b6000602082019050818103600083015261429981613db0565b9050919050565b600060208201905081810360008301526142b981613dd3565b9050919050565b60006020820190506142d56000830184613e05565b92915050565b60006142e56142f6565b90506142f182826145fb565b919050565b6000604051905090565b600067ffffffffffffffff82111561431b5761431a614762565b5b614324826147a5565b9050602081019050919050565b600067ffffffffffffffff82111561434c5761434b614762565b5b614355826147a5565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144098261457d565b91506144148361457d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614449576144486146a6565b5b828201905092915050565b600061445f8261457d565b915061446a8361457d565b92508261447a576144796146d5565b5b828204905092915050565b60006144908261457d565b915061449b8361457d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144d4576144d36146a6565b5b828202905092915050565b60006144ea8261457d565b91506144f58361457d565b925082821015614508576145076146a6565b5b828203905092915050565b600061451e8261455d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145b4578082015181840152602081019050614599565b838111156145c3576000848401525b50505050565b600060028204905060018216806145e157607f821691505b602082108114156145f5576145f4614704565b5b50919050565b614604826147a5565b810181811067ffffffffffffffff8211171561462357614622614762565b5b80604052505050565b60006146378261457d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561466a576146696146a6565b5b600182019050919050565b60006146808261457d565b915061468b8361457d565b92508261469b5761469a6146d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e7420697320657863656564696e672050657277616c6c60008201527f657420546f6b656e206c696d6974000000000000000000000000000000000000602082015250565b7f4d696e74205175616e746974792073686f756c64206265206d6f72652074686160008201527f6e20300000000000000000000000000000000000000000000000000000000000602082015250565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4d696e7420616d6f756e74206d75737420626520657175616c20746f206f722060008201527f62656c6f7720617661696c61626c6520746f6b656e7300000000000000000000602082015250565b7f4d696e7420616d6f756e74206d7573742062652067726561746572207468616e60008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d696e7420616d6f756e742069732067726561746572207468616e206d61782060008201527f6d696e7420616d6f756e74000000000000000000000000000000000000000000602082015250565b7f6d696e74206e6f74206163746976650000000000000000000000000000000000600082015250565b7f467265656d696e74206e6f742061637469766500000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f52656163686564206d6178205072652d737570706c7900000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614fab81614513565b8114614fb657600080fd5b50565b614fc281614525565b8114614fcd57600080fd5b50565b614fd981614531565b8114614fe457600080fd5b50565b614ff08161457d565b8114614ffb57600080fd5b5056fea2646970667358221220f1eea6f76318cc689a1af1be54376f4d56886a0981e015f6b8dc0f9f7d5fb61064736f6c63430008070033697066733a2f2f516d5a336355654865443556566f7978743170426d646d5866506451454a354c4c7447706341514251795547744d2f697066733a2f2f516d6270316974767547484271627065626d596b4174504169384779314d4a38727577413838644d6539535459642f
Deployed Bytecode
0x6080604052600436106102515760003560e01c806369ba1a7511610139578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb0114610884578063da3ef23f146108af578063e985e9c5146108d8578063f2c4ce1e14610915578063f2fde38b1461093e578063f759867a1461096757610251565b8063b88d4fde1461079f578063ba7d2c76146107c8578063c6682862146107f3578063c87b56dd1461081e578063d0eb26b01461085b57610251565b80638da5cb5b116100fd5780638da5cb5b146106ed57806395d89b4114610718578063a0712d6814610743578063a22cb4651461075f578063a475b5dd1461078857610251565b806369ba1a751461061c5780636c0360eb1461064557806370a0823114610670578063715018a6146106ad5780637f00c7a6146106c457610251565b80632a2f3a6f116101d257806344a0d68a1161019657806344a0d68a146104fa5780634f6ccce714610523578063518302271461056057806355f804b31461058b57806358f58d86146105b45780636352211e146105df57610251565b80632a2f3a6f146104245780632f745c591461044d5780633ccfd60b1461048a57806342842e0e14610494578063438b6300146104bd57610251565b806313faede61161021957806313faede61461034f57806318160ddd1461037a578063200d2ed2146103a5578063239c70ae146103d057806323b872dd146103fb57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063081c8c44146102fb578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613756565b610983565b60405161028a9190613ee3565b60405180910390f35b34801561029f57600080fd5b506102a8610acd565b6040516102b59190613efe565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906137f9565b610b5f565b6040516102f29190613e5a565b60405180910390f35b34801561030757600080fd5b50610310610be4565b60405161031d9190613efe565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613716565b610c72565b005b34801561035b57600080fd5b50610364610d8b565b60405161037191906142c0565b60405180910390f35b34801561038657600080fd5b5061038f610d91565b60405161039c91906142c0565b60405180910390f35b3480156103b157600080fd5b506103ba610d9a565b6040516103c791906142c0565b60405180910390f35b3480156103dc57600080fd5b506103e5610da0565b6040516103f291906142c0565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d9190613600565b610da6565b005b34801561043057600080fd5b5061044b60048036038101906104469190613716565b610db6565b005b34801561045957600080fd5b50610474600480360381019061046f9190613716565b610ed5565b60405161048191906142c0565b60405180910390f35b6104926110c7565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190613600565b6111c3565b005b3480156104c957600080fd5b506104e460048036038101906104df9190613593565b6111e3565b6040516104f19190613ec1565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c91906137f9565b611291565b005b34801561052f57600080fd5b5061054a600480360381019061054591906137f9565b611317565b60405161055791906142c0565b60405180910390f35b34801561056c57600080fd5b5061057561136a565b6040516105829190613ee3565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad91906137b0565b61137d565b005b3480156105c057600080fd5b506105c9611413565b6040516105d691906142c0565b60405180910390f35b3480156105eb57600080fd5b50610606600480360381019061060191906137f9565b611419565b6040516106139190613e5a565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e91906137f9565b61142f565b005b34801561065157600080fd5b5061065a6114e3565b6040516106679190613efe565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190613593565b611571565b6040516106a491906142c0565b60405180910390f35b3480156106b957600080fd5b506106c261165a565b005b3480156106d057600080fd5b506106eb60048036038101906106e691906137f9565b6116e2565b005b3480156106f957600080fd5b50610702611768565b60405161070f9190613e5a565b60405180910390f35b34801561072457600080fd5b5061072d611792565b60405161073a9190613efe565b60405180910390f35b61075d600480360381019061075891906137f9565b611824565b005b34801561076b57600080fd5b50610786600480360381019061078191906136d6565b611a44565b005b34801561079457600080fd5b5061079d611bc5565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190613653565b611c5e565b005b3480156107d457600080fd5b506107dd611cba565b6040516107ea91906142c0565b60405180910390f35b3480156107ff57600080fd5b50610808611cc0565b6040516108159190613efe565b60405180910390f35b34801561082a57600080fd5b50610845600480360381019061084091906137f9565b611d4e565b6040516108529190613efe565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d91906137f9565b611ea7565b005b34801561089057600080fd5b50610899611f2d565b6040516108a691906142c0565b60405180910390f35b3480156108bb57600080fd5b506108d660048036038101906108d191906137b0565b611f33565b005b3480156108e457600080fd5b506108ff60048036038101906108fa91906135c0565b611fc9565b60405161090c9190613ee3565b60405180910390f35b34801561092157600080fd5b5061093c600480360381019061093791906137b0565b61205d565b005b34801561094a57600080fd5b5061096560048036038101906109609190613593565b6120f3565b005b610981600480360381019061097c91906137f9565b6121eb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac65750610ac582612335565b5b9050919050565b606060018054610adc906145c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b08906145c9565b8015610b555780601f10610b2a57610100808354040283529160200191610b55565b820191906000526020600020905b815481529060010190602001808311610b3857829003601f168201915b5050505050905090565b6000610b6a8261239f565b610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba0906142a0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a8054610bf1906145c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1d906145c9565b8015610c6a5780601f10610c3f57610100808354040283529160200191610c6a565b820191906000526020600020905b815481529060010190602001808311610c4d57829003601f168201915b505050505081565b6000610c7d82611419565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce5906141c0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d0d6123ac565b73ffffffffffffffffffffffffffffffffffffffff161480610d3c5750610d3b81610d366123ac565b611fc9565b5b610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290614040565b60405180910390fd5b610d868383836123b4565b505050565b600b5481565b60008054905090565b60115481565b600e5481565b610db1838383612466565b505050565b610dbe6123ac565b73ffffffffffffffffffffffffffffffffffffffff16610ddc611768565b73ffffffffffffffffffffffffffffffffffffffff1614610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e29906140e0565b60405180910390fd5b6000610e3c610d91565b905060016011541480610e5157506002601154145b610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790613fc0565b60405180910390fd5b60008211610e9d57600080fd5b600e54821115610eac57600080fd5b600c548282610ebb91906143fe565b1115610ec657600080fd5b610ed083836129a6565b505050565b6000610ee083611571565b8210610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890613f20565b60405180910390fd5b6000610f2b610d91565b905060008060005b83811015611085576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461102557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611077578684141561106e5781955050505050506110c1565b83806001019450505b508080600101915050610f33565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890614260565b60405180910390fd5b92915050565b6110cf6123ac565b73ffffffffffffffffffffffffffffffffffffffff166110ed611768565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a906140e0565b60405180910390fd5b600061114d611768565b73ffffffffffffffffffffffffffffffffffffffff164760405161117090613e45565b60006040518083038185875af1925050503d80600081146111ad576040519150601f19603f3d011682016040523d82523d6000602084013e6111b2565b606091505b50509050806111c057600080fd5b50565b6111de83838360405180602001604052806000815250611c5e565b505050565b606060006111f083611571565b905060008167ffffffffffffffff81111561120e5761120d614762565b5b60405190808252806020026020018201604052801561123c5781602001602082028036833780820191505090505b50905060005b82811015611286576112548582610ed5565b82828151811061126757611266614733565b5b602002602001018181525050808061127e9061462c565b915050611242565b508092505050919050565b6112996123ac565b73ffffffffffffffffffffffffffffffffffffffff166112b7611768565b73ffffffffffffffffffffffffffffffffffffffff161461130d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611304906140e0565b60405180910390fd5b80600b8190555050565b6000611321610d91565b8210611362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135990613fe0565b60405180910390fd5b819050919050565b601060009054906101000a900460ff1681565b6113856123ac565b73ffffffffffffffffffffffffffffffffffffffff166113a3611768565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f0906140e0565b60405180910390fd5b806008908051906020019061140f92919061336d565b5050565b600d5481565b6000611424826129c4565b600001519050919050565b6114376123ac565b73ffffffffffffffffffffffffffffffffffffffff16611455611768565b73ffffffffffffffffffffffffffffffffffffffff16146114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a2906140e0565b60405180910390fd5b8060118190555060018114156114d1576000600b819055506103e8600d819055506114e0565b669c51c4521e0000600b819055505b50565b600880546114f0906145c9565b80601f016020809104026020016040519081016040528092919081815260200182805461151c906145c9565b80156115695780601f1061153e57610100808354040283529160200191611569565b820191906000526020600020905b81548152906001019060200180831161154c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d9906140a0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116626123ac565b73ffffffffffffffffffffffffffffffffffffffff16611680611768565b73ffffffffffffffffffffffffffffffffffffffff16146116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd906140e0565b60405180910390fd5b6116e06000612b5e565b565b6116ea6123ac565b73ffffffffffffffffffffffffffffffffffffffff16611708611768565b73ffffffffffffffffffffffffffffffffffffffff161461175e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611755906140e0565b60405180910390fd5b80600e8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546117a1906145c9565b80601f01602080910402602001604051908101604052809291908181526020018280546117cd906145c9565b801561181a5780601f106117ef5761010080835404028352916020019161181a565b820191906000526020600020905b8154815290600101906020018083116117fd57829003601f168201915b5050505050905090565b600260115414611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186090614180565b60405180910390fd5b6000611873610d91565b9050600082116118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90614080565b60405180910390fd5b600c5482826118c791906143fe565b1115611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90614060565b60405180910390fd5b611910611768565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a365781600b546119509190614485565b341015611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990614020565b60405180910390fd5b600e548211156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90614160565b60405180910390fd5b60006119e233611571565b9050600f5483826119f391906143fe565b1115611a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2b90613f80565b60405180910390fd5b505b611a4033836129a6565b5050565b611a4c6123ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab190614120565b60405180910390fd5b8060066000611ac76123ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b746123ac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb99190613ee3565b60405180910390a35050565b611bcd6123ac565b73ffffffffffffffffffffffffffffffffffffffff16611beb611768565b73ffffffffffffffffffffffffffffffffffffffff1614611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c38906140e0565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b611c69848484612466565b611c7584848484612c24565b611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab906141e0565b60405180910390fd5b50505050565b600f5481565b60098054611ccd906145c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf9906145c9565b8015611d465780601f10611d1b57610100808354040283529160200191611d46565b820191906000526020600020905b815481529060010190602001808311611d2957829003601f168201915b505050505081565b6060611d598261239f565b611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90614100565b60405180910390fd5b60001515601060009054906101000a900460ff1615151415611e4657600a8054611dc1906145c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611ded906145c9565b8015611e3a5780601f10611e0f57610100808354040283529160200191611e3a565b820191906000526020600020905b815481529060010190602001808311611e1d57829003601f168201915b50505050509050611ea2565b6000611e50612dbb565b90506000815111611e705760405180602001604052806000815250611e9e565b80611e7a84612e4d565b6009604051602001611e8e93929190613e14565b6040516020818303038152906040525b9150505b919050565b611eaf6123ac565b73ffffffffffffffffffffffffffffffffffffffff16611ecd611768565b73ffffffffffffffffffffffffffffffffffffffff1614611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a906140e0565b60405180910390fd5b80600f8190555050565b600c5481565b611f3b6123ac565b73ffffffffffffffffffffffffffffffffffffffff16611f59611768565b73ffffffffffffffffffffffffffffffffffffffff1614611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa6906140e0565b60405180910390fd5b8060099080519060200190611fc592919061336d565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120656123ac565b73ffffffffffffffffffffffffffffffffffffffff16612083611768565b73ffffffffffffffffffffffffffffffffffffffff16146120d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d0906140e0565b60405180910390fd5b80600a90805190602001906120ef92919061336d565b5050565b6120fb6123ac565b73ffffffffffffffffffffffffffffffffffffffff16612119611768565b73ffffffffffffffffffffffffffffffffffffffff161461216f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612166906140e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d690613f40565b60405180910390fd5b6121e881612b5e565b50565b600160115414612230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612227906141a0565b60405180910390fd5b60008111612273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226a90613fa0565b60405180910390fd5b600d548161227f610d91565b61228991906143fe565b11156122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c190614240565b60405180910390fd5b60006122d533611571565b9050600f5482826122e691906143fe565b1115612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e90613f80565b60405180910390fd5b61233133836129a6565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612471826129c4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166124986123ac565b73ffffffffffffffffffffffffffffffffffffffff1614806124f457506124bd6123ac565b73ffffffffffffffffffffffffffffffffffffffff166124dc84610b5f565b73ffffffffffffffffffffffffffffffffffffffff16145b80612510575061250f826000015161250a6123ac565b611fc9565b5b905080612552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254990614140565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146125c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bb906140c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b90614000565b60405180910390fd5b6126418585856001612fae565b61265160008484600001516123b4565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612936576128958161239f565b156129355782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461299f8585856001612fb4565b5050505050565b6129c0828260405180602001604052806000815250612fba565b5050565b6129cc6133f3565b6129d58261239f565b612a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0b90613f60565b60405180910390fd5b60008290505b60008110612b1d576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b0e578092505050612b59565b50808060019003915050612a1a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5090614280565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612c458473ffffffffffffffffffffffffffffffffffffffff16612fcc565b15612dae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c6e6123ac565b8786866040518563ffffffff1660e01b8152600401612c909493929190613e75565b602060405180830381600087803b158015612caa57600080fd5b505af1925050508015612cdb57506040513d601f19601f82011682018060405250810190612cd89190613783565b60015b612d5e573d8060008114612d0b576040519150601f19603f3d011682016040523d82523d6000602084013e612d10565b606091505b50600081511415612d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4d906141e0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612db3565b600190505b949350505050565b606060088054612dca906145c9565b80601f0160208091040260200160405190810160405280929190818152602001828054612df6906145c9565b8015612e435780601f10612e1857610100808354040283529160200191612e43565b820191906000526020600020905b815481529060010190602001808311612e2657829003601f168201915b5050505050905090565b60606000821415612e95576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fa9565b600082905060005b60008214612ec7578080612eb09061462c565b915050600a82612ec09190614454565b9150612e9d565b60008167ffffffffffffffff811115612ee357612ee2614762565b5b6040519080825280601f01601f191660200182016040528015612f155781602001600182028036833780820191505090505b5090505b60008514612fa257600182612f2e91906144df565b9150600a85612f3d9190614675565b6030612f4991906143fe565b60f81b818381518110612f5f57612f5e614733565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f9b9190614454565b9450612f19565b8093505050505b919050565b50505050565b50505050565b612fc78383836001612fef565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305c90614200565b60405180910390fd5b60008414156130a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a090614220565b60405180910390fd5b6130b66000868387612fae565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561335057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561333b576132fb6000888488612c24565b61333a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613331906141e0565b60405180910390fd5b5b81806001019250508080600101915050613284565b5080600081905550506133666000868387612fb4565b5050505050565b828054613379906145c9565b90600052602060002090601f01602090048101928261339b57600085556133e2565b82601f106133b457805160ff19168380011785556133e2565b828001600101855582156133e2579182015b828111156133e15782518255916020019190600101906133c6565b5b5090506133ef919061342d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561344657600081600090555060010161342e565b5090565b600061345d61345884614300565b6142db565b90508281526020810184848401111561347957613478614796565b5b613484848285614587565b509392505050565b600061349f61349a84614331565b6142db565b9050828152602081018484840111156134bb576134ba614796565b5b6134c6848285614587565b509392505050565b6000813590506134dd81614fa2565b92915050565b6000813590506134f281614fb9565b92915050565b60008135905061350781614fd0565b92915050565b60008151905061351c81614fd0565b92915050565b600082601f83011261353757613536614791565b5b813561354784826020860161344a565b91505092915050565b600082601f83011261356557613564614791565b5b813561357584826020860161348c565b91505092915050565b60008135905061358d81614fe7565b92915050565b6000602082840312156135a9576135a86147a0565b5b60006135b7848285016134ce565b91505092915050565b600080604083850312156135d7576135d66147a0565b5b60006135e5858286016134ce565b92505060206135f6858286016134ce565b9150509250929050565b600080600060608486031215613619576136186147a0565b5b6000613627868287016134ce565b9350506020613638868287016134ce565b92505060406136498682870161357e565b9150509250925092565b6000806000806080858703121561366d5761366c6147a0565b5b600061367b878288016134ce565b945050602061368c878288016134ce565b935050604061369d8782880161357e565b925050606085013567ffffffffffffffff8111156136be576136bd61479b565b5b6136ca87828801613522565b91505092959194509250565b600080604083850312156136ed576136ec6147a0565b5b60006136fb858286016134ce565b925050602061370c858286016134e3565b9150509250929050565b6000806040838503121561372d5761372c6147a0565b5b600061373b858286016134ce565b925050602061374c8582860161357e565b9150509250929050565b60006020828403121561376c5761376b6147a0565b5b600061377a848285016134f8565b91505092915050565b600060208284031215613799576137986147a0565b5b60006137a78482850161350d565b91505092915050565b6000602082840312156137c6576137c56147a0565b5b600082013567ffffffffffffffff8111156137e4576137e361479b565b5b6137f084828501613550565b91505092915050565b60006020828403121561380f5761380e6147a0565b5b600061381d8482850161357e565b91505092915050565b60006138328383613df6565b60208301905092915050565b61384781614513565b82525050565b600061385882614387565b61386281856143b5565b935061386d83614362565b8060005b8381101561389e5781516138858882613826565b9750613890836143a8565b925050600181019050613871565b5085935050505092915050565b6138b481614525565b82525050565b60006138c582614392565b6138cf81856143c6565b93506138df818560208601614596565b6138e8816147a5565b840191505092915050565b60006138fe8261439d565b61390881856143e2565b9350613918818560208601614596565b613921816147a5565b840191505092915050565b60006139378261439d565b61394181856143f3565b9350613951818560208601614596565b80840191505092915050565b6000815461396a816145c9565b61397481866143f3565b9450600182166000811461398f57600181146139a0576139d3565b60ff198316865281860193506139d3565b6139a985614372565b60005b838110156139cb578154818901526001820191506020810190506139ac565b838801955050505b50505092915050565b60006139e96022836143e2565b91506139f4826147b6565b604082019050919050565b6000613a0c6026836143e2565b9150613a1782614805565b604082019050919050565b6000613a2f602a836143e2565b9150613a3a82614854565b604082019050919050565b6000613a52602e836143e2565b9150613a5d826148a3565b604082019050919050565b6000613a756023836143e2565b9150613a80826148f2565b604082019050919050565b6000613a986012836143e2565b9150613aa382614941565b602082019050919050565b6000613abb6023836143e2565b9150613ac68261496a565b604082019050919050565b6000613ade6025836143e2565b9150613ae9826149b9565b604082019050919050565b6000613b016014836143e2565b9150613b0c82614a08565b602082019050919050565b6000613b246039836143e2565b9150613b2f82614a31565b604082019050919050565b6000613b476036836143e2565b9150613b5282614a80565b604082019050919050565b6000613b6a6022836143e2565b9150613b7582614acf565b604082019050919050565b6000613b8d602b836143e2565b9150613b9882614b1e565b604082019050919050565b6000613bb06026836143e2565b9150613bbb82614b6d565b604082019050919050565b6000613bd36020836143e2565b9150613bde82614bbc565b602082019050919050565b6000613bf6602f836143e2565b9150613c0182614be5565b604082019050919050565b6000613c19601a836143e2565b9150613c2482614c34565b602082019050919050565b6000613c3c6032836143e2565b9150613c4782614c5d565b604082019050919050565b6000613c5f602b836143e2565b9150613c6a82614cac565b604082019050919050565b6000613c82600f836143e2565b9150613c8d82614cfb565b602082019050919050565b6000613ca56013836143e2565b9150613cb082614d24565b602082019050919050565b6000613cc86022836143e2565b9150613cd382614d4d565b604082019050919050565b6000613ceb6000836143d7565b9150613cf682614d9c565b600082019050919050565b6000613d0e6033836143e2565b9150613d1982614d9f565b604082019050919050565b6000613d316021836143e2565b9150613d3c82614dee565b604082019050919050565b6000613d546028836143e2565b9150613d5f82614e3d565b604082019050919050565b6000613d776016836143e2565b9150613d8282614e8c565b602082019050919050565b6000613d9a602e836143e2565b9150613da582614eb5565b604082019050919050565b6000613dbd602f836143e2565b9150613dc882614f04565b604082019050919050565b6000613de0602d836143e2565b9150613deb82614f53565b604082019050919050565b613dff8161457d565b82525050565b613e0e8161457d565b82525050565b6000613e20828661392c565b9150613e2c828561392c565b9150613e38828461395d565b9150819050949350505050565b6000613e5082613cde565b9150819050919050565b6000602082019050613e6f600083018461383e565b92915050565b6000608082019050613e8a600083018761383e565b613e97602083018661383e565b613ea46040830185613e05565b8181036060830152613eb681846138ba565b905095945050505050565b60006020820190508181036000830152613edb818461384d565b905092915050565b6000602082019050613ef860008301846138ab565b92915050565b60006020820190508181036000830152613f1881846138f3565b905092915050565b60006020820190508181036000830152613f39816139dc565b9050919050565b60006020820190508181036000830152613f59816139ff565b9050919050565b60006020820190508181036000830152613f7981613a22565b9050919050565b60006020820190508181036000830152613f9981613a45565b9050919050565b60006020820190508181036000830152613fb981613a68565b9050919050565b60006020820190508181036000830152613fd981613a8b565b9050919050565b60006020820190508181036000830152613ff981613aae565b9050919050565b6000602082019050818103600083015261401981613ad1565b9050919050565b6000602082019050818103600083015261403981613af4565b9050919050565b6000602082019050818103600083015261405981613b17565b9050919050565b6000602082019050818103600083015261407981613b3a565b9050919050565b6000602082019050818103600083015261409981613b5d565b9050919050565b600060208201905081810360008301526140b981613b80565b9050919050565b600060208201905081810360008301526140d981613ba3565b9050919050565b600060208201905081810360008301526140f981613bc6565b9050919050565b6000602082019050818103600083015261411981613be9565b9050919050565b6000602082019050818103600083015261413981613c0c565b9050919050565b6000602082019050818103600083015261415981613c2f565b9050919050565b6000602082019050818103600083015261417981613c52565b9050919050565b6000602082019050818103600083015261419981613c75565b9050919050565b600060208201905081810360008301526141b981613c98565b9050919050565b600060208201905081810360008301526141d981613cbb565b9050919050565b600060208201905081810360008301526141f981613d01565b9050919050565b6000602082019050818103600083015261421981613d24565b9050919050565b6000602082019050818103600083015261423981613d47565b9050919050565b6000602082019050818103600083015261425981613d6a565b9050919050565b6000602082019050818103600083015261427981613d8d565b9050919050565b6000602082019050818103600083015261429981613db0565b9050919050565b600060208201905081810360008301526142b981613dd3565b9050919050565b60006020820190506142d56000830184613e05565b92915050565b60006142e56142f6565b90506142f182826145fb565b919050565b6000604051905090565b600067ffffffffffffffff82111561431b5761431a614762565b5b614324826147a5565b9050602081019050919050565b600067ffffffffffffffff82111561434c5761434b614762565b5b614355826147a5565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144098261457d565b91506144148361457d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614449576144486146a6565b5b828201905092915050565b600061445f8261457d565b915061446a8361457d565b92508261447a576144796146d5565b5b828204905092915050565b60006144908261457d565b915061449b8361457d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144d4576144d36146a6565b5b828202905092915050565b60006144ea8261457d565b91506144f58361457d565b925082821015614508576145076146a6565b5b828203905092915050565b600061451e8261455d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145b4578082015181840152602081019050614599565b838111156145c3576000848401525b50505050565b600060028204905060018216806145e157607f821691505b602082108114156145f5576145f4614704565b5b50919050565b614604826147a5565b810181811067ffffffffffffffff8211171561462357614622614762565b5b80604052505050565b60006146378261457d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561466a576146696146a6565b5b600182019050919050565b60006146808261457d565b915061468b8361457d565b92508261469b5761469a6146d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e7420697320657863656564696e672050657277616c6c60008201527f657420546f6b656e206c696d6974000000000000000000000000000000000000602082015250565b7f4d696e74205175616e746974792073686f756c64206265206d6f72652074686160008201527f6e20300000000000000000000000000000000000000000000000000000000000602082015250565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4d696e7420616d6f756e74206d75737420626520657175616c20746f206f722060008201527f62656c6f7720617661696c61626c6520746f6b656e7300000000000000000000602082015250565b7f4d696e7420616d6f756e74206d7573742062652067726561746572207468616e60008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d696e7420616d6f756e742069732067726561746572207468616e206d61782060008201527f6d696e7420616d6f756e74000000000000000000000000000000000000000000602082015250565b7f6d696e74206e6f74206163746976650000000000000000000000000000000000600082015250565b7f467265656d696e74206e6f742061637469766500000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f52656163686564206d6178205072652d737570706c7900000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614fab81614513565b8114614fb657600080fd5b50565b614fc281614525565b8114614fcd57600080fd5b50565b614fd981614531565b8114614fe457600080fd5b50565b614ff08161457d565b8114614ffb57600080fd5b5056fea2646970667358221220f1eea6f76318cc689a1af1be54376f4d56886a0981e015f6b8dc0f9f7d5fb61064736f6c63430008070033
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.