ERC-721
Overview
Max Total Supply
225 RHINOWORLD
Holders
87
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RhinoWorld
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract RhinoWorld is Ownable, ERC721A, ReentrancyGuard { bool public saleActive = true; bool public saleDone = false; struct SaleConfig { uint32 whitelistSaleStartTime; uint256 WL_PRICE; uint32 publicSaleStartTime; uint256 PUBLIC_PRICE; } SaleConfig public saleConfig; mapping(address => uint256) public wllist; constructor( uint32 maxBatchSize_, uint256 collectionSize_, uint32 _whitelistSaleStartTime, uint32 _publicSaleStartTime ) ERC721A("Rhino World", "RHINOWORLD", maxBatchSize_, collectionSize_) { saleConfig.WL_PRICE = 0.15 ether; saleConfig.PUBLIC_PRICE = 0.25 ether; saleConfig.whitelistSaleStartTime = _whitelistSaleStartTime; saleConfig.publicSaleStartTime = _publicSaleStartTime; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function publicSaleMint(uint256 quantity) external payable callerIsUser { SaleConfig memory config = saleConfig; uint256 publicPrice = uint256(config.PUBLIC_PRICE); require( isPublicSaleOn(), "public sale has not begun yet" ); require(totalSupply() + quantity <= collectionSize, "reached max supply"); _safeMint(msg.sender, quantity); refundIfOver(publicPrice * quantity); } function wlSaleMint(uint256 quantity) external payable callerIsUser { SaleConfig memory config = saleConfig; uint256 wlPrice = uint256(config.WL_PRICE); require( isWLSaleOn(), "wl sale has not begun yet" ); require(totalSupply() + quantity <= collectionSize, "reached max supply"); require(wllist[msg.sender] > 0, "no allocation available for this address"); require(wllist[msg.sender] >= quantity, "trying to mint too much"); wllist[msg.sender] = wllist[msg.sender] - quantity; _safeMint(msg.sender, quantity); refundIfOver(wlPrice * quantity); } function refundIfOver(uint256 price) private { require(msg.value >= price, "Need to send more ETH."); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } function isPublicSaleOn() public view returns (bool) { return saleDone == false && saleActive == true && block.timestamp >= saleConfig.publicSaleStartTime; } function isWLSaleOn() public view returns (bool) { return saleDone == false && saleActive == true && block.timestamp >= saleConfig.whitelistSaleStartTime; } function addwllist(address[] memory addresses, uint256[] memory numSlots) external onlyOwner { require( addresses.length == numSlots.length, "addresses does not match numSlots length" ); for (uint256 i = 0; i < addresses.length; i++) { wllist[addresses[i]] = numSlots[i]; } } function devMint(uint256 quantity, address mintTo, string calldata reasoning) external onlyOwner { // Reasoning allows on chain visualization for dev mint call for future auditing i.e. devMint(100, address(BrandA), "Off chain sale with Brand A") require( quantity % maxBatchSize == 0, "can only mint a multiple of the maxBatchSize" ); require(saleDone == false, "sale already over"); require(totalSupply() + quantity <= collectionSize, "reached max supply"); uint256 numChunks = quantity / maxBatchSize; for (uint256 i = 0; i < numChunks; i++) { _safeMint(mintTo, maxBatchSize); } } function toggleActive() external onlyOwner { saleActive = !saleActive; } function EndSale() external onlyOwner { saleDone = true; } function updateSale( uint32 _whitelistSaleStartTime, uint256 _WL_PRICE, uint32 _publicSaleStartTime, uint256 _PUBLIC_PRICE ) external onlyOwner { saleConfig = SaleConfig( _whitelistSaleStartTime, _WL_PRICE, _publicSaleStartTime, _PUBLIC_PRICE ); } // // metadata URI string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; /** * @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..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ 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 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @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(collectionSize). 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 = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; 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); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; 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 Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); 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); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership( prevOwnership.addr, 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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint32","name":"maxBatchSize_","type":"uint32"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint32","name":"_whitelistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"_publicSaleStartTime","type":"uint32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"EndSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"addwllist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"mintTo","type":"address"},{"internalType":"string","name":"reasoning","type":"string"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWLSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"whitelistSaleStartTime","type":"uint32"},{"internalType":"uint256","name":"WL_PRICE","type":"uint256"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint256","name":"PUBLIC_PRICE","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_whitelistSaleStartTime","type":"uint32"},{"internalType":"uint256","name":"_WL_PRICE","type":"uint256"},{"internalType":"uint32","name":"_publicSaleStartTime","type":"uint32"},{"internalType":"uint256","name":"_PUBLIC_PRICE","type":"uint256"}],"name":"updateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"wlSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wllist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c0604052600060015560006008556001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055503480156200005157600080fd5b506040516200602338038062006023833981810160405281019062000077919062000405565b6040518060400160405280600b81526020017f5268696e6f20576f726c640000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f5248494e4f574f524c44000000000000000000000000000000000000000000008152508563ffffffff16856200010b620000ff6200025b60201b60201c565b6200026360201b60201c565b6000811162000151576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014890620004e7565b60405180910390fd5b6000821162000197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018e90620004c5565b60405180910390fd5b8360029080519060200190620001af92919062000327565b508260039080519060200190620001c892919062000327565b508160a081815250508060808181525050505050506001600981905550670214e8348c4f0000600b600101819055506703782dace9d90000600b6003018190555081600b60000160006101000a81548163ffffffff021916908363ffffffff16021790555080600b60020160006101000a81548163ffffffff021916908363ffffffff1602179055505050505062000670565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003359062000534565b90600052602060002090601f016020900481019282620003595760008555620003a5565b82601f106200037457805160ff1916838001178555620003a5565b82800160010185558215620003a5579182015b82811115620003a457825182559160200191906001019062000387565b5b509050620003b49190620003b8565b5090565b5b80821115620003d3576000816000905550600101620003b9565b5090565b600081519050620003e8816200063c565b92915050565b600081519050620003ff8162000656565b92915050565b6000806000806080858703121562000422576200042162000599565b5b60006200043287828801620003ee565b94505060206200044587828801620003d7565b93505060406200045887828801620003ee565b92505060606200046b87828801620003ee565b91505092959194509250565b60006200048660278362000509565b915062000493826200059e565b604082019050919050565b6000620004ad602e8362000509565b9150620004ba82620005ed565b604082019050919050565b60006020820190508181036000830152620004e08162000477565b9050919050565b6000602082019050818103600083015262000502816200049e565b9050919050565b600082825260208201905092915050565b6000819050919050565b600063ffffffff82169050919050565b600060028204905060018216806200054d57607f821691505b602082108114156200056457620005636200056a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b62000647816200051a565b81146200065357600080fd5b50565b620006618162000524565b81146200066d57600080fd5b50565b60805160a05161594e620006d5600039600081816114fa015281816116330152818161167001528181612b1501528181612b3e01526132bd015260008181610d86015281816115bc01528181611cb40152818161289d01526128d1015261594e6000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063b3ab66b0116100ab578063dc33e6811161006f578063dc33e681146107c6578063e985e9c514610803578063f2fde38b14610840578063f75d330514610869578063fc429dbf146108a657610225565b8063b3ab66b0146106ee578063b81e417a1461070a578063b88d4fde14610735578063c87b56dd1461075e578063d7224ba01461079b57610225565b806390aa0b0f116100f257806390aa0b0f146106185780639231ab2a1461064657806395d89b4114610683578063a22cb465146106ae578063ac446002146106d757610225565b806370a0823114610582578063715018a6146105bf57806376b1dda3146105d65780638da5cb5b146105ed57610225565b80632f745c59116101b15780635c3bcf86116101755780635c3bcf861461049f5780636064904c146104c85780636352211e146104f15780636735d3121461052e57806368428a1b1461055757610225565b80632f745c59146103a85780633f5e4741146103e557806342842e0e146104105780634f6ccce71461043957806355f804b31461047657610225565b806318160ddd116101f857806318160ddd146102f85780631e3433171461032357806323b872dd1461033f57806329c68dc1146103685780632d20fb601461037f57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613ca2565b6108d1565b60405161025e9190614509565b60405180910390f35b34801561027357600080fd5b5061027c610a1b565b6040516102899190614524565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613d49565b610aad565b6040516102c691906144a2565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613bea565b610b32565b005b34801561030457600080fd5b5061030d610c4b565b60405161031a91906149c1565b60405180910390f35b61033d60048036038101906103389190613d49565b610c55565b005b34801561034b57600080fd5b5061036660048036038101906103619190613ad4565b610fae565b005b34801561037457600080fd5b5061037d610fbe565b005b34801561038b57600080fd5b506103a660048036038101906103a19190613d49565b610ff2565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190613bea565b61105c565b6040516103dc91906149c1565b60405180910390f35b3480156103f157600080fd5b506103fa61125a565b6040516104079190614509565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613ad4565b6112bd565b005b34801561044557600080fd5b50610460600480360381019061045b9190613d49565b6112dd565b60405161046d91906149c1565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190613cfc565b611330565b005b3480156104ab57600080fd5b506104c660048036038101906104c19190613dea565b61134e565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190613c2a565b6113f0565b005b3480156104fd57600080fd5b5061051860048036038101906105139190613d49565b6114d8565b60405161052591906144a2565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190613d76565b6114ee565b005b34801561056357600080fd5b5061056c6116af565b6040516105799190614509565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190613a67565b6116c2565b6040516105b691906149c1565b60405180910390f35b3480156105cb57600080fd5b506105d46117ab565b005b3480156105e257600080fd5b506105eb6117bf565b005b3480156105f957600080fd5b506106026117e4565b60405161060f91906144a2565b60405180910390f35b34801561062457600080fd5b5061062d61180d565b60405161063d94939291906149dc565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613d49565b61184b565b60405161067a91906149a6565b60405180910390f35b34801561068f57600080fd5b50610698611863565b6040516106a59190614524565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190613baa565b6118f5565b005b3480156106e357600080fd5b506106ec611a76565b005b61070860048036038101906107039190613d49565b611b83565b005b34801561071657600080fd5b5061071f611d4a565b60405161072c9190614509565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190613b27565b611dad565b005b34801561076a57600080fd5b5061078560048036038101906107809190613d49565b611e09565b6040516107929190614524565b60405180910390f35b3480156107a757600080fd5b506107b0611eb0565b6040516107bd91906149c1565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190613a67565b611eb6565b6040516107fa91906149c1565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190613a94565b611ec8565b6040516108379190614509565b60405180910390f35b34801561084c57600080fd5b5061086760048036038101906108629190613a67565b611f5c565b005b34801561087557600080fd5b50610890600480360381019061088b9190613a67565b611fe0565b60405161089d91906149c1565b60405180910390f35b3480156108b257600080fd5b506108bb611ff8565b6040516108c89190614509565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a145750610a138261200b565b5b9050919050565b606060028054610a2a90614dcc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5690614dcc565b8015610aa35780601f10610a7857610100808354040283529160200191610aa3565b820191906000526020600020905b815481529060010190602001808311610a8657829003601f168201915b5050505050905090565b6000610ab882612075565b610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90614946565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3d826114d8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba5906147c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bcd612083565b73ffffffffffffffffffffffffffffffffffffffff161480610bfc5750610bfb81610bf6612083565b611ec8565b5b610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290614666565b60405180910390fd5b610c4683838361208b565b505050565b6000600154905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90614626565b60405180910390fd5b6000600b6040518060800160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481526020016002820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016003820154815250509050600081602001519050610d45611d4a565b610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90614646565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083610dae610c4b565b610db89190614b63565b1115610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906146c6565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7290614886565b60405180910390fd5b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490614706565b60405180910390fd5b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f489190614c78565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f95338461213d565b610fa98382610fa49190614bea565b61215b565b505050565b610fb98383836121fc565b505050565b610fc66127b5565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b610ffa6127b5565b60026009541415611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790614906565b60405180910390fd5b600260098190555061105181612833565b600160098190555050565b6000611067836116c2565b82106110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90614546565b60405180910390fd5b60006110b2610c4b565b905060008060005b83811015611218576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111ac57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561120457868414156111f5578195505050505050611254565b838061120090614e2f565b9450505b50808061121090614e2f565b9150506110ba565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b906148c6565b60405180910390fd5b92915050565b6000801515600a60019054906101000a900460ff161515148015611291575060011515600a60009054906101000a900460ff161515145b80156112b85750600b60020160009054906101000a900463ffffffff1663ffffffff164210155b905090565b6112d883838360405180602001604052806000815250611dad565b505050565b60006112e7610c4b565b8210611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906145c6565b60405180910390fd5b819050919050565b6113386127b5565b81816010919061134992919061370a565b505050565b6113566127b5565b60405180608001604052808563ffffffff1681526020018481526020018363ffffffff16815260200182815250600b60008201518160000160006101000a81548163ffffffff021916908363ffffffff1602179055506020820151816001015560408201518160020160006101000a81548163ffffffff021916908363ffffffff1602179055506060820151816003015590505050505050565b6113f86127b5565b805182511461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390614986565b60405180910390fd5b60005b82518110156114d35781818151811061145b5761145a614f36565b5b6020026020010151600f600085848151811061147a57611479614f36565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806114cb90614e2f565b91505061143f565b505050565b60006114e382612ac1565b600001519050919050565b6114f66127b5565b60007f0000000000000000000000000000000000000000000000000000000000000000856115249190614e78565b14611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b906145a6565b60405180910390fd5b60001515600a60019054906101000a900460ff161515146115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190614866565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000846115e4610c4b565b6115ee9190614b63565b111561162f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611626906146c6565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008561165d9190614bb9565b905060005b818110156116a757611694857f000000000000000000000000000000000000000000000000000000000000000061213d565b808061169f90614e2f565b915050611662565b505050505050565b600a60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a906146a6565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117b36127b5565b6117bd6000612cc4565b565b6117c76127b5565b6001600a60016101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b8060000160009054906101000a900463ffffffff16908060010154908060020160009054906101000a900463ffffffff16908060030154905084565b611853613790565b61185c82612ac1565b9050919050565b60606003805461187290614dcc565b80601f016020809104026020016040519081016040528092919081815260200182805461189e90614dcc565b80156118eb5780601f106118c0576101008083540402835291602001916118eb565b820191906000526020600020905b8154815290600101906020018083116118ce57829003601f168201915b5050505050905090565b6118fd612083565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290614766565b60405180910390fd5b8060076000611978612083565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a25612083565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a6a9190614509565b60405180910390a35050565b611a7e6127b5565b60026009541415611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb90614906565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611af29061448d565b60006040518083038185875af1925050503d8060008114611b2f576040519150601f19603f3d011682016040523d82523d6000602084013e611b34565b606091505b5050905080611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f906147e6565b60405180910390fd5b506001600981905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be890614626565b60405180910390fd5b6000600b6040518060800160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481526020016002820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016003820154815250509050600081606001519050611c7361125a565b611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca9906147a6565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083611cdc610c4b565b611ce69190614b63565b1115611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e906146c6565b60405180910390fd5b611d31338461213d565b611d458382611d409190614bea565b61215b565b505050565b6000801515600a60019054906101000a900460ff161515148015611d81575060011515600a60009054906101000a900460ff161515145b8015611da85750600b60000160009054906101000a900463ffffffff1663ffffffff164210155b905090565b611db88484846121fc565b611dc484848484612d88565b611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa90614806565b60405180910390fd5b50505050565b6060611e1482612075565b611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90614746565b60405180910390fd5b6000611e5d612f1f565b90506000815111611e7d5760405180602001604052806000815250611ea8565b80611e8784612fb1565b604051602001611e98929190614469565b6040516020818303038152906040525b915050919050565b60085481565b6000611ec182613112565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f646127b5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb90614566565b60405180910390fd5b611fdd81612cc4565b50565b600f6020528060005260406000206000915090505481565b600a60019054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6121578282604051806020016040528060008152506131fb565b5050565b8034101561219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219590614826565b60405180910390fd5b803411156121f9573373ffffffffffffffffffffffffffffffffffffffff166108fc82346121cc9190614c78565b9081150290604051600060405180830381858888f193505050501580156121f7573d6000803e3d6000fd5b505b50565b600061220782612ac1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661222e612083565b73ffffffffffffffffffffffffffffffffffffffff16148061228a5750612253612083565b73ffffffffffffffffffffffffffffffffffffffff1661227284610aad565b73ffffffffffffffffffffffffffffffffffffffff16145b806122a657506122a582600001516122a0612083565b611ec8565b5b9050806122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df90614786565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461235a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612351906146e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c1906145e6565b60405180910390fd5b6123d785858560016136db565b6123e7600084846000015161208b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124559190614c44565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124f99190614b1d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846125ff9190614b63565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127455761267581612075565b15612744576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127ad86868660016136e1565b505050505050565b6127bd612083565b73ffffffffffffffffffffffffffffffffffffffff166127db6117e4565b73ffffffffffffffffffffffffffffffffffffffff1614612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282890614726565b60405180910390fd5b565b600060085490506000821161287d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287490614686565b60405180910390fd5b60006001838361288d9190614b63565b6128979190614c78565b905060017f00000000000000000000000000000000000000000000000000000000000000006128c69190614c78565b8111156128fd5760017f00000000000000000000000000000000000000000000000000000000000000006128fa9190614c78565b90505b61290681612075565b612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c906148e6565b60405180910390fd5b60008290505b818111612aa857600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a955760006129c882612ac1565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612aa090614e2f565b91505061294b565b50600181612ab69190614b63565b600881905550505050565b612ac9613790565b612ad282612075565b612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0890614586565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612b755760017f000000000000000000000000000000000000000000000000000000000000000084612b689190614c78565b612b729190614b63565b90505b60008390505b818110612c83576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c6f57809350505050612cbf565b508080612c7b90614da2565b915050612b7b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb690614926565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612da98473ffffffffffffffffffffffffffffffffffffffff166136e7565b15612f12578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dd2612083565b8786866040518563ffffffff1660e01b8152600401612df494939291906144bd565b602060405180830381600087803b158015612e0e57600080fd5b505af1925050508015612e3f57506040513d601f19601f82011682018060405250810190612e3c9190613ccf565b60015b612ec2573d8060008114612e6f576040519150601f19603f3d011682016040523d82523d6000602084013e612e74565b606091505b50600081511415612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb190614806565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f17565b600190505b949350505050565b606060108054612f2e90614dcc565b80601f0160208091040260200160405190810160405280929190818152602001828054612f5a90614dcc565b8015612fa75780601f10612f7c57610100808354040283529160200191612fa7565b820191906000526020600020905b815481529060010190602001808311612f8a57829003601f168201915b5050505050905090565b60606000821415612ff9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061310d565b600082905060005b6000821461302b57808061301490614e2f565b915050600a826130249190614bb9565b9150613001565b60008167ffffffffffffffff81111561304757613046614f65565b5b6040519080825280601f01601f1916602001820160405280156130795781602001600182028036833780820191505090505b5090505b60008514613106576001826130929190614c78565b9150600a856130a19190614e78565b60306130ad9190614b63565b60f81b8183815181106130c3576130c2614f36565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130ff9190614bb9565b945061307d565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317a90614606565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613272576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613269906148a6565b60405180910390fd5b61327b81612075565b156132bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b290614846565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561331e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331590614966565b60405180910390fd5b61332b60008583866136db565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516134289190614b1d565b6fffffffffffffffffffffffffffffffff16815260200185836020015161344f9190614b1d565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156136be57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461365e6000888488612d88565b61369d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369490614806565b60405180910390fd5b81806136a890614e2f565b92505080806136b690614e2f565b9150506135ed565b50806001819055506136d360008785886136e1565b505050505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461371690614dcc565b90600052602060002090601f016020900481019282613738576000855561377f565b82601f1061375157803560ff191683800117855561377f565b8280016001018555821561377f579182015b8281111561377e578235825591602001919060010190613763565b5b50905061378c91906137ca565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156137e35760008160009055506001016137cb565b5090565b60006137fa6137f584614a46565b614a21565b9050808382526020820190508285602086028201111561381d5761381c614f9e565b5b60005b8581101561384d57816138338882613909565b845260208401935060208301925050600181019050613820565b5050509392505050565b600061386a61386584614a72565b614a21565b9050808382526020820190508285602086028201111561388d5761388c614f9e565b5b60005b858110156138bd57816138a38882613a3d565b845260208401935060208301925050600181019050613890565b5050509392505050565b60006138da6138d584614a9e565b614a21565b9050828152602081018484840111156138f6576138f5614fa3565b5b613901848285614d60565b509392505050565b600081359050613918816158a5565b92915050565b600082601f83011261393357613932614f99565b5b81356139438482602086016137e7565b91505092915050565b600082601f83011261396157613960614f99565b5b8135613971848260208601613857565b91505092915050565b600081359050613989816158bc565b92915050565b60008135905061399e816158d3565b92915050565b6000815190506139b3816158d3565b92915050565b600082601f8301126139ce576139cd614f99565b5b81356139de8482602086016138c7565b91505092915050565b60008083601f8401126139fd576139fc614f99565b5b8235905067ffffffffffffffff811115613a1a57613a19614f94565b5b602083019150836001820283011115613a3657613a35614f9e565b5b9250929050565b600081359050613a4c816158ea565b92915050565b600081359050613a6181615901565b92915050565b600060208284031215613a7d57613a7c614fad565b5b6000613a8b84828501613909565b91505092915050565b60008060408385031215613aab57613aaa614fad565b5b6000613ab985828601613909565b9250506020613aca85828601613909565b9150509250929050565b600080600060608486031215613aed57613aec614fad565b5b6000613afb86828701613909565b9350506020613b0c86828701613909565b9250506040613b1d86828701613a3d565b9150509250925092565b60008060008060808587031215613b4157613b40614fad565b5b6000613b4f87828801613909565b9450506020613b6087828801613909565b9350506040613b7187828801613a3d565b925050606085013567ffffffffffffffff811115613b9257613b91614fa8565b5b613b9e878288016139b9565b91505092959194509250565b60008060408385031215613bc157613bc0614fad565b5b6000613bcf85828601613909565b9250506020613be08582860161397a565b9150509250929050565b60008060408385031215613c0157613c00614fad565b5b6000613c0f85828601613909565b9250506020613c2085828601613a3d565b9150509250929050565b60008060408385031215613c4157613c40614fad565b5b600083013567ffffffffffffffff811115613c5f57613c5e614fa8565b5b613c6b8582860161391e565b925050602083013567ffffffffffffffff811115613c8c57613c8b614fa8565b5b613c988582860161394c565b9150509250929050565b600060208284031215613cb857613cb7614fad565b5b6000613cc68482850161398f565b91505092915050565b600060208284031215613ce557613ce4614fad565b5b6000613cf3848285016139a4565b91505092915050565b60008060208385031215613d1357613d12614fad565b5b600083013567ffffffffffffffff811115613d3157613d30614fa8565b5b613d3d858286016139e7565b92509250509250929050565b600060208284031215613d5f57613d5e614fad565b5b6000613d6d84828501613a3d565b91505092915050565b60008060008060608587031215613d9057613d8f614fad565b5b6000613d9e87828801613a3d565b9450506020613daf87828801613909565b935050604085013567ffffffffffffffff811115613dd057613dcf614fa8565b5b613ddc878288016139e7565b925092505092959194509250565b60008060008060808587031215613e0457613e03614fad565b5b6000613e1287828801613a52565b9450506020613e2387828801613a3d565b9350506040613e3487828801613a52565b9250506060613e4587828801613a3d565b91505092959194509250565b613e5a81614cac565b82525050565b613e6981614cac565b82525050565b613e7881614cbe565b82525050565b6000613e8982614acf565b613e938185614ae5565b9350613ea3818560208601614d6f565b613eac81614fb2565b840191505092915050565b6000613ec282614ada565b613ecc8185614b01565b9350613edc818560208601614d6f565b613ee581614fb2565b840191505092915050565b6000613efb82614ada565b613f058185614b12565b9350613f15818560208601614d6f565b80840191505092915050565b6000613f2e602283614b01565b9150613f3982614fc3565b604082019050919050565b6000613f51602683614b01565b9150613f5c82615012565b604082019050919050565b6000613f74602a83614b01565b9150613f7f82615061565b604082019050919050565b6000613f97602c83614b01565b9150613fa2826150b0565b604082019050919050565b6000613fba602383614b01565b9150613fc5826150ff565b604082019050919050565b6000613fdd602583614b01565b9150613fe88261514e565b604082019050919050565b6000614000603183614b01565b915061400b8261519d565b604082019050919050565b6000614023601e83614b01565b915061402e826151ec565b602082019050919050565b6000614046601983614b01565b915061405182615215565b602082019050919050565b6000614069603983614b01565b91506140748261523e565b604082019050919050565b600061408c601883614b01565b91506140978261528d565b602082019050919050565b60006140af602b83614b01565b91506140ba826152b6565b604082019050919050565b60006140d2601283614b01565b91506140dd82615305565b602082019050919050565b60006140f5602683614b01565b91506141008261532e565b604082019050919050565b6000614118601783614b01565b91506141238261537d565b602082019050919050565b600061413b602083614b01565b9150614146826153a6565b602082019050919050565b600061415e602f83614b01565b9150614169826153cf565b604082019050919050565b6000614181601a83614b01565b915061418c8261541e565b602082019050919050565b60006141a4603283614b01565b91506141af82615447565b604082019050919050565b60006141c7601d83614b01565b91506141d282615496565b602082019050919050565b60006141ea602283614b01565b91506141f5826154bf565b604082019050919050565b600061420d600083614af6565b91506142188261550e565b600082019050919050565b6000614230601083614b01565b915061423b82615511565b602082019050919050565b6000614253603383614b01565b915061425e8261553a565b604082019050919050565b6000614276601683614b01565b915061428182615589565b602082019050919050565b6000614299601d83614b01565b91506142a4826155b2565b602082019050919050565b60006142bc601183614b01565b91506142c7826155db565b602082019050919050565b60006142df602883614b01565b91506142ea82615604565b604082019050919050565b6000614302602183614b01565b915061430d82615653565b604082019050919050565b6000614325602e83614b01565b9150614330826156a2565b604082019050919050565b6000614348602683614b01565b9150614353826156f1565b604082019050919050565b600061436b601f83614b01565b915061437682615740565b602082019050919050565b600061438e602f83614b01565b915061439982615769565b604082019050919050565b60006143b1602d83614b01565b91506143bc826157b8565b604082019050919050565b60006143d4602283614b01565b91506143df82615807565b604082019050919050565b60006143f7602883614b01565b915061440282615856565b604082019050919050565b6040820160008201516144236000850182613e51565b506020820151614436602085018261445a565b50505050565b61444581614d32565b82525050565b61445481614d3c565b82525050565b61446381614d4c565b82525050565b60006144758285613ef0565b91506144818284613ef0565b91508190509392505050565b600061449882614200565b9150819050919050565b60006020820190506144b76000830184613e60565b92915050565b60006080820190506144d26000830187613e60565b6144df6020830186613e60565b6144ec604083018561443c565b81810360608301526144fe8184613e7e565b905095945050505050565b600060208201905061451e6000830184613e6f565b92915050565b6000602082019050818103600083015261453e8184613eb7565b905092915050565b6000602082019050818103600083015261455f81613f21565b9050919050565b6000602082019050818103600083015261457f81613f44565b9050919050565b6000602082019050818103600083015261459f81613f67565b9050919050565b600060208201905081810360008301526145bf81613f8a565b9050919050565b600060208201905081810360008301526145df81613fad565b9050919050565b600060208201905081810360008301526145ff81613fd0565b9050919050565b6000602082019050818103600083015261461f81613ff3565b9050919050565b6000602082019050818103600083015261463f81614016565b9050919050565b6000602082019050818103600083015261465f81614039565b9050919050565b6000602082019050818103600083015261467f8161405c565b9050919050565b6000602082019050818103600083015261469f8161407f565b9050919050565b600060208201905081810360008301526146bf816140a2565b9050919050565b600060208201905081810360008301526146df816140c5565b9050919050565b600060208201905081810360008301526146ff816140e8565b9050919050565b6000602082019050818103600083015261471f8161410b565b9050919050565b6000602082019050818103600083015261473f8161412e565b9050919050565b6000602082019050818103600083015261475f81614151565b9050919050565b6000602082019050818103600083015261477f81614174565b9050919050565b6000602082019050818103600083015261479f81614197565b9050919050565b600060208201905081810360008301526147bf816141ba565b9050919050565b600060208201905081810360008301526147df816141dd565b9050919050565b600060208201905081810360008301526147ff81614223565b9050919050565b6000602082019050818103600083015261481f81614246565b9050919050565b6000602082019050818103600083015261483f81614269565b9050919050565b6000602082019050818103600083015261485f8161428c565b9050919050565b6000602082019050818103600083015261487f816142af565b9050919050565b6000602082019050818103600083015261489f816142d2565b9050919050565b600060208201905081810360008301526148bf816142f5565b9050919050565b600060208201905081810360008301526148df81614318565b9050919050565b600060208201905081810360008301526148ff8161433b565b9050919050565b6000602082019050818103600083015261491f8161435e565b9050919050565b6000602082019050818103600083015261493f81614381565b9050919050565b6000602082019050818103600083015261495f816143a4565b9050919050565b6000602082019050818103600083015261497f816143c7565b9050919050565b6000602082019050818103600083015261499f816143ea565b9050919050565b60006040820190506149bb600083018461440d565b92915050565b60006020820190506149d6600083018461443c565b92915050565b60006080820190506149f1600083018761444b565b6149fe602083018661443c565b614a0b604083018561444b565b614a18606083018461443c565b95945050505050565b6000614a2b614a3c565b9050614a378282614dfe565b919050565b6000604051905090565b600067ffffffffffffffff821115614a6157614a60614f65565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614a8d57614a8c614f65565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ab957614ab8614f65565b5b614ac282614fb2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b2882614cf6565b9150614b3383614cf6565b9250826fffffffffffffffffffffffffffffffff03821115614b5857614b57614ea9565b5b828201905092915050565b6000614b6e82614d32565b9150614b7983614d32565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614bae57614bad614ea9565b5b828201905092915050565b6000614bc482614d32565b9150614bcf83614d32565b925082614bdf57614bde614ed8565b5b828204905092915050565b6000614bf582614d32565b9150614c0083614d32565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c3957614c38614ea9565b5b828202905092915050565b6000614c4f82614cf6565b9150614c5a83614cf6565b925082821015614c6d57614c6c614ea9565b5b828203905092915050565b6000614c8382614d32565b9150614c8e83614d32565b925082821015614ca157614ca0614ea9565b5b828203905092915050565b6000614cb782614d12565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614d8d578082015181840152602081019050614d72565b83811115614d9c576000848401525b50505050565b6000614dad82614d32565b91506000821415614dc157614dc0614ea9565b5b600182039050919050565b60006002820490506001821680614de457607f821691505b60208210811415614df857614df7614f07565b5b50919050565b614e0782614fb2565b810181811067ffffffffffffffff82111715614e2657614e25614f65565b5b80604052505050565b6000614e3a82614d32565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e6d57614e6c614ea9565b5b600182019050919050565b6000614e8382614d32565b9150614e8e83614d32565b925082614e9e57614e9d614ed8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f776c2073616c6520686173206e6f7420626567756e2079657400000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f747279696e6720746f206d696e7420746f6f206d756368000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f73616c6520616c7265616479206f766572000000000000000000000000000000600082015250565b7f6e6f20616c6c6f636174696f6e20617661696c61626c6520666f72207468697360008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b6158ae81614cac565b81146158b957600080fd5b50565b6158c581614cbe565b81146158d057600080fd5b50565b6158dc81614cca565b81146158e757600080fd5b50565b6158f381614d32565b81146158fe57600080fd5b50565b61590a81614d3c565b811461591557600080fd5b5056fea26469706673582212206070cb16fc1046cd2414b3b644b602a7a4df597b16316670d7a75962dc351ad664736f6c634300080700330000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000205a00000000000000000000000000000000000000000000000000000000635991c000000000000000000000000000000000000000000000000000000000635991c0
Deployed Bytecode
0x6080604052600436106102255760003560e01c806370a0823111610123578063b3ab66b0116100ab578063dc33e6811161006f578063dc33e681146107c6578063e985e9c514610803578063f2fde38b14610840578063f75d330514610869578063fc429dbf146108a657610225565b8063b3ab66b0146106ee578063b81e417a1461070a578063b88d4fde14610735578063c87b56dd1461075e578063d7224ba01461079b57610225565b806390aa0b0f116100f257806390aa0b0f146106185780639231ab2a1461064657806395d89b4114610683578063a22cb465146106ae578063ac446002146106d757610225565b806370a0823114610582578063715018a6146105bf57806376b1dda3146105d65780638da5cb5b146105ed57610225565b80632f745c59116101b15780635c3bcf86116101755780635c3bcf861461049f5780636064904c146104c85780636352211e146104f15780636735d3121461052e57806368428a1b1461055757610225565b80632f745c59146103a85780633f5e4741146103e557806342842e0e146104105780634f6ccce71461043957806355f804b31461047657610225565b806318160ddd116101f857806318160ddd146102f85780631e3433171461032357806323b872dd1461033f57806329c68dc1146103685780632d20fb601461037f57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613ca2565b6108d1565b60405161025e9190614509565b60405180910390f35b34801561027357600080fd5b5061027c610a1b565b6040516102899190614524565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613d49565b610aad565b6040516102c691906144a2565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613bea565b610b32565b005b34801561030457600080fd5b5061030d610c4b565b60405161031a91906149c1565b60405180910390f35b61033d60048036038101906103389190613d49565b610c55565b005b34801561034b57600080fd5b5061036660048036038101906103619190613ad4565b610fae565b005b34801561037457600080fd5b5061037d610fbe565b005b34801561038b57600080fd5b506103a660048036038101906103a19190613d49565b610ff2565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190613bea565b61105c565b6040516103dc91906149c1565b60405180910390f35b3480156103f157600080fd5b506103fa61125a565b6040516104079190614509565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613ad4565b6112bd565b005b34801561044557600080fd5b50610460600480360381019061045b9190613d49565b6112dd565b60405161046d91906149c1565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190613cfc565b611330565b005b3480156104ab57600080fd5b506104c660048036038101906104c19190613dea565b61134e565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190613c2a565b6113f0565b005b3480156104fd57600080fd5b5061051860048036038101906105139190613d49565b6114d8565b60405161052591906144a2565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190613d76565b6114ee565b005b34801561056357600080fd5b5061056c6116af565b6040516105799190614509565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190613a67565b6116c2565b6040516105b691906149c1565b60405180910390f35b3480156105cb57600080fd5b506105d46117ab565b005b3480156105e257600080fd5b506105eb6117bf565b005b3480156105f957600080fd5b506106026117e4565b60405161060f91906144a2565b60405180910390f35b34801561062457600080fd5b5061062d61180d565b60405161063d94939291906149dc565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613d49565b61184b565b60405161067a91906149a6565b60405180910390f35b34801561068f57600080fd5b50610698611863565b6040516106a59190614524565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190613baa565b6118f5565b005b3480156106e357600080fd5b506106ec611a76565b005b61070860048036038101906107039190613d49565b611b83565b005b34801561071657600080fd5b5061071f611d4a565b60405161072c9190614509565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190613b27565b611dad565b005b34801561076a57600080fd5b5061078560048036038101906107809190613d49565b611e09565b6040516107929190614524565b60405180910390f35b3480156107a757600080fd5b506107b0611eb0565b6040516107bd91906149c1565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190613a67565b611eb6565b6040516107fa91906149c1565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190613a94565b611ec8565b6040516108379190614509565b60405180910390f35b34801561084c57600080fd5b5061086760048036038101906108629190613a67565b611f5c565b005b34801561087557600080fd5b50610890600480360381019061088b9190613a67565b611fe0565b60405161089d91906149c1565b60405180910390f35b3480156108b257600080fd5b506108bb611ff8565b6040516108c89190614509565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a145750610a138261200b565b5b9050919050565b606060028054610a2a90614dcc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5690614dcc565b8015610aa35780601f10610a7857610100808354040283529160200191610aa3565b820191906000526020600020905b815481529060010190602001808311610a8657829003601f168201915b5050505050905090565b6000610ab882612075565b610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90614946565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3d826114d8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba5906147c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bcd612083565b73ffffffffffffffffffffffffffffffffffffffff161480610bfc5750610bfb81610bf6612083565b611ec8565b5b610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290614666565b60405180910390fd5b610c4683838361208b565b505050565b6000600154905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90614626565b60405180910390fd5b6000600b6040518060800160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481526020016002820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016003820154815250509050600081602001519050610d45611d4a565b610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90614646565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000205a83610dae610c4b565b610db89190614b63565b1115610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906146c6565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7290614886565b60405180910390fd5b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490614706565b60405180910390fd5b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f489190614c78565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f95338461213d565b610fa98382610fa49190614bea565b61215b565b505050565b610fb98383836121fc565b505050565b610fc66127b5565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b610ffa6127b5565b60026009541415611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790614906565b60405180910390fd5b600260098190555061105181612833565b600160098190555050565b6000611067836116c2565b82106110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90614546565b60405180910390fd5b60006110b2610c4b565b905060008060005b83811015611218576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111ac57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561120457868414156111f5578195505050505050611254565b838061120090614e2f565b9450505b50808061121090614e2f565b9150506110ba565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b906148c6565b60405180910390fd5b92915050565b6000801515600a60019054906101000a900460ff161515148015611291575060011515600a60009054906101000a900460ff161515145b80156112b85750600b60020160009054906101000a900463ffffffff1663ffffffff164210155b905090565b6112d883838360405180602001604052806000815250611dad565b505050565b60006112e7610c4b565b8210611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906145c6565b60405180910390fd5b819050919050565b6113386127b5565b81816010919061134992919061370a565b505050565b6113566127b5565b60405180608001604052808563ffffffff1681526020018481526020018363ffffffff16815260200182815250600b60008201518160000160006101000a81548163ffffffff021916908363ffffffff1602179055506020820151816001015560408201518160020160006101000a81548163ffffffff021916908363ffffffff1602179055506060820151816003015590505050505050565b6113f86127b5565b805182511461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390614986565b60405180910390fd5b60005b82518110156114d35781818151811061145b5761145a614f36565b5b6020026020010151600f600085848151811061147a57611479614f36565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806114cb90614e2f565b91505061143f565b505050565b60006114e382612ac1565b600001519050919050565b6114f66127b5565b60007f0000000000000000000000000000000000000000000000000000000000000005856115249190614e78565b14611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b906145a6565b60405180910390fd5b60001515600a60019054906101000a900460ff161515146115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190614866565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000205a846115e4610c4b565b6115ee9190614b63565b111561162f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611626906146c6565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000058561165d9190614bb9565b905060005b818110156116a757611694857f000000000000000000000000000000000000000000000000000000000000000561213d565b808061169f90614e2f565b915050611662565b505050505050565b600a60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a906146a6565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117b36127b5565b6117bd6000612cc4565b565b6117c76127b5565b6001600a60016101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b8060000160009054906101000a900463ffffffff16908060010154908060020160009054906101000a900463ffffffff16908060030154905084565b611853613790565b61185c82612ac1565b9050919050565b60606003805461187290614dcc565b80601f016020809104026020016040519081016040528092919081815260200182805461189e90614dcc565b80156118eb5780601f106118c0576101008083540402835291602001916118eb565b820191906000526020600020905b8154815290600101906020018083116118ce57829003601f168201915b5050505050905090565b6118fd612083565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290614766565b60405180910390fd5b8060076000611978612083565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a25612083565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a6a9190614509565b60405180910390a35050565b611a7e6127b5565b60026009541415611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb90614906565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611af29061448d565b60006040518083038185875af1925050503d8060008114611b2f576040519150601f19603f3d011682016040523d82523d6000602084013e611b34565b606091505b5050905080611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f906147e6565b60405180910390fd5b506001600981905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be890614626565b60405180910390fd5b6000600b6040518060800160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481526020016002820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016003820154815250509050600081606001519050611c7361125a565b611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca9906147a6565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000205a83611cdc610c4b565b611ce69190614b63565b1115611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e906146c6565b60405180910390fd5b611d31338461213d565b611d458382611d409190614bea565b61215b565b505050565b6000801515600a60019054906101000a900460ff161515148015611d81575060011515600a60009054906101000a900460ff161515145b8015611da85750600b60000160009054906101000a900463ffffffff1663ffffffff164210155b905090565b611db88484846121fc565b611dc484848484612d88565b611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa90614806565b60405180910390fd5b50505050565b6060611e1482612075565b611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90614746565b60405180910390fd5b6000611e5d612f1f565b90506000815111611e7d5760405180602001604052806000815250611ea8565b80611e8784612fb1565b604051602001611e98929190614469565b6040516020818303038152906040525b915050919050565b60085481565b6000611ec182613112565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f646127b5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb90614566565b60405180910390fd5b611fdd81612cc4565b50565b600f6020528060005260406000206000915090505481565b600a60019054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6121578282604051806020016040528060008152506131fb565b5050565b8034101561219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219590614826565b60405180910390fd5b803411156121f9573373ffffffffffffffffffffffffffffffffffffffff166108fc82346121cc9190614c78565b9081150290604051600060405180830381858888f193505050501580156121f7573d6000803e3d6000fd5b505b50565b600061220782612ac1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661222e612083565b73ffffffffffffffffffffffffffffffffffffffff16148061228a5750612253612083565b73ffffffffffffffffffffffffffffffffffffffff1661227284610aad565b73ffffffffffffffffffffffffffffffffffffffff16145b806122a657506122a582600001516122a0612083565b611ec8565b5b9050806122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df90614786565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461235a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612351906146e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c1906145e6565b60405180910390fd5b6123d785858560016136db565b6123e7600084846000015161208b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124559190614c44565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124f99190614b1d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846125ff9190614b63565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127455761267581612075565b15612744576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127ad86868660016136e1565b505050505050565b6127bd612083565b73ffffffffffffffffffffffffffffffffffffffff166127db6117e4565b73ffffffffffffffffffffffffffffffffffffffff1614612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282890614726565b60405180910390fd5b565b600060085490506000821161287d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287490614686565b60405180910390fd5b60006001838361288d9190614b63565b6128979190614c78565b905060017f000000000000000000000000000000000000000000000000000000000000205a6128c69190614c78565b8111156128fd5760017f000000000000000000000000000000000000000000000000000000000000205a6128fa9190614c78565b90505b61290681612075565b612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c906148e6565b60405180910390fd5b60008290505b818111612aa857600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a955760006129c882612ac1565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612aa090614e2f565b91505061294b565b50600181612ab69190614b63565b600881905550505050565b612ac9613790565b612ad282612075565b612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0890614586565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000058310612b755760017f000000000000000000000000000000000000000000000000000000000000000584612b689190614c78565b612b729190614b63565b90505b60008390505b818110612c83576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c6f57809350505050612cbf565b508080612c7b90614da2565b915050612b7b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb690614926565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612da98473ffffffffffffffffffffffffffffffffffffffff166136e7565b15612f12578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dd2612083565b8786866040518563ffffffff1660e01b8152600401612df494939291906144bd565b602060405180830381600087803b158015612e0e57600080fd5b505af1925050508015612e3f57506040513d601f19601f82011682018060405250810190612e3c9190613ccf565b60015b612ec2573d8060008114612e6f576040519150601f19603f3d011682016040523d82523d6000602084013e612e74565b606091505b50600081511415612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb190614806565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f17565b600190505b949350505050565b606060108054612f2e90614dcc565b80601f0160208091040260200160405190810160405280929190818152602001828054612f5a90614dcc565b8015612fa75780601f10612f7c57610100808354040283529160200191612fa7565b820191906000526020600020905b815481529060010190602001808311612f8a57829003601f168201915b5050505050905090565b60606000821415612ff9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061310d565b600082905060005b6000821461302b57808061301490614e2f565b915050600a826130249190614bb9565b9150613001565b60008167ffffffffffffffff81111561304757613046614f65565b5b6040519080825280601f01601f1916602001820160405280156130795781602001600182028036833780820191505090505b5090505b60008514613106576001826130929190614c78565b9150600a856130a19190614e78565b60306130ad9190614b63565b60f81b8183815181106130c3576130c2614f36565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130ff9190614bb9565b945061307d565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317a90614606565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613272576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613269906148a6565b60405180910390fd5b61327b81612075565b156132bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b290614846565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000583111561331e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331590614966565b60405180910390fd5b61332b60008583866136db565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516134289190614b1d565b6fffffffffffffffffffffffffffffffff16815260200185836020015161344f9190614b1d565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156136be57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461365e6000888488612d88565b61369d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369490614806565b60405180910390fd5b81806136a890614e2f565b92505080806136b690614e2f565b9150506135ed565b50806001819055506136d360008785886136e1565b505050505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461371690614dcc565b90600052602060002090601f016020900481019282613738576000855561377f565b82601f1061375157803560ff191683800117855561377f565b8280016001018555821561377f579182015b8281111561377e578235825591602001919060010190613763565b5b50905061378c91906137ca565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156137e35760008160009055506001016137cb565b5090565b60006137fa6137f584614a46565b614a21565b9050808382526020820190508285602086028201111561381d5761381c614f9e565b5b60005b8581101561384d57816138338882613909565b845260208401935060208301925050600181019050613820565b5050509392505050565b600061386a61386584614a72565b614a21565b9050808382526020820190508285602086028201111561388d5761388c614f9e565b5b60005b858110156138bd57816138a38882613a3d565b845260208401935060208301925050600181019050613890565b5050509392505050565b60006138da6138d584614a9e565b614a21565b9050828152602081018484840111156138f6576138f5614fa3565b5b613901848285614d60565b509392505050565b600081359050613918816158a5565b92915050565b600082601f83011261393357613932614f99565b5b81356139438482602086016137e7565b91505092915050565b600082601f83011261396157613960614f99565b5b8135613971848260208601613857565b91505092915050565b600081359050613989816158bc565b92915050565b60008135905061399e816158d3565b92915050565b6000815190506139b3816158d3565b92915050565b600082601f8301126139ce576139cd614f99565b5b81356139de8482602086016138c7565b91505092915050565b60008083601f8401126139fd576139fc614f99565b5b8235905067ffffffffffffffff811115613a1a57613a19614f94565b5b602083019150836001820283011115613a3657613a35614f9e565b5b9250929050565b600081359050613a4c816158ea565b92915050565b600081359050613a6181615901565b92915050565b600060208284031215613a7d57613a7c614fad565b5b6000613a8b84828501613909565b91505092915050565b60008060408385031215613aab57613aaa614fad565b5b6000613ab985828601613909565b9250506020613aca85828601613909565b9150509250929050565b600080600060608486031215613aed57613aec614fad565b5b6000613afb86828701613909565b9350506020613b0c86828701613909565b9250506040613b1d86828701613a3d565b9150509250925092565b60008060008060808587031215613b4157613b40614fad565b5b6000613b4f87828801613909565b9450506020613b6087828801613909565b9350506040613b7187828801613a3d565b925050606085013567ffffffffffffffff811115613b9257613b91614fa8565b5b613b9e878288016139b9565b91505092959194509250565b60008060408385031215613bc157613bc0614fad565b5b6000613bcf85828601613909565b9250506020613be08582860161397a565b9150509250929050565b60008060408385031215613c0157613c00614fad565b5b6000613c0f85828601613909565b9250506020613c2085828601613a3d565b9150509250929050565b60008060408385031215613c4157613c40614fad565b5b600083013567ffffffffffffffff811115613c5f57613c5e614fa8565b5b613c6b8582860161391e565b925050602083013567ffffffffffffffff811115613c8c57613c8b614fa8565b5b613c988582860161394c565b9150509250929050565b600060208284031215613cb857613cb7614fad565b5b6000613cc68482850161398f565b91505092915050565b600060208284031215613ce557613ce4614fad565b5b6000613cf3848285016139a4565b91505092915050565b60008060208385031215613d1357613d12614fad565b5b600083013567ffffffffffffffff811115613d3157613d30614fa8565b5b613d3d858286016139e7565b92509250509250929050565b600060208284031215613d5f57613d5e614fad565b5b6000613d6d84828501613a3d565b91505092915050565b60008060008060608587031215613d9057613d8f614fad565b5b6000613d9e87828801613a3d565b9450506020613daf87828801613909565b935050604085013567ffffffffffffffff811115613dd057613dcf614fa8565b5b613ddc878288016139e7565b925092505092959194509250565b60008060008060808587031215613e0457613e03614fad565b5b6000613e1287828801613a52565b9450506020613e2387828801613a3d565b9350506040613e3487828801613a52565b9250506060613e4587828801613a3d565b91505092959194509250565b613e5a81614cac565b82525050565b613e6981614cac565b82525050565b613e7881614cbe565b82525050565b6000613e8982614acf565b613e938185614ae5565b9350613ea3818560208601614d6f565b613eac81614fb2565b840191505092915050565b6000613ec282614ada565b613ecc8185614b01565b9350613edc818560208601614d6f565b613ee581614fb2565b840191505092915050565b6000613efb82614ada565b613f058185614b12565b9350613f15818560208601614d6f565b80840191505092915050565b6000613f2e602283614b01565b9150613f3982614fc3565b604082019050919050565b6000613f51602683614b01565b9150613f5c82615012565b604082019050919050565b6000613f74602a83614b01565b9150613f7f82615061565b604082019050919050565b6000613f97602c83614b01565b9150613fa2826150b0565b604082019050919050565b6000613fba602383614b01565b9150613fc5826150ff565b604082019050919050565b6000613fdd602583614b01565b9150613fe88261514e565b604082019050919050565b6000614000603183614b01565b915061400b8261519d565b604082019050919050565b6000614023601e83614b01565b915061402e826151ec565b602082019050919050565b6000614046601983614b01565b915061405182615215565b602082019050919050565b6000614069603983614b01565b91506140748261523e565b604082019050919050565b600061408c601883614b01565b91506140978261528d565b602082019050919050565b60006140af602b83614b01565b91506140ba826152b6565b604082019050919050565b60006140d2601283614b01565b91506140dd82615305565b602082019050919050565b60006140f5602683614b01565b91506141008261532e565b604082019050919050565b6000614118601783614b01565b91506141238261537d565b602082019050919050565b600061413b602083614b01565b9150614146826153a6565b602082019050919050565b600061415e602f83614b01565b9150614169826153cf565b604082019050919050565b6000614181601a83614b01565b915061418c8261541e565b602082019050919050565b60006141a4603283614b01565b91506141af82615447565b604082019050919050565b60006141c7601d83614b01565b91506141d282615496565b602082019050919050565b60006141ea602283614b01565b91506141f5826154bf565b604082019050919050565b600061420d600083614af6565b91506142188261550e565b600082019050919050565b6000614230601083614b01565b915061423b82615511565b602082019050919050565b6000614253603383614b01565b915061425e8261553a565b604082019050919050565b6000614276601683614b01565b915061428182615589565b602082019050919050565b6000614299601d83614b01565b91506142a4826155b2565b602082019050919050565b60006142bc601183614b01565b91506142c7826155db565b602082019050919050565b60006142df602883614b01565b91506142ea82615604565b604082019050919050565b6000614302602183614b01565b915061430d82615653565b604082019050919050565b6000614325602e83614b01565b9150614330826156a2565b604082019050919050565b6000614348602683614b01565b9150614353826156f1565b604082019050919050565b600061436b601f83614b01565b915061437682615740565b602082019050919050565b600061438e602f83614b01565b915061439982615769565b604082019050919050565b60006143b1602d83614b01565b91506143bc826157b8565b604082019050919050565b60006143d4602283614b01565b91506143df82615807565b604082019050919050565b60006143f7602883614b01565b915061440282615856565b604082019050919050565b6040820160008201516144236000850182613e51565b506020820151614436602085018261445a565b50505050565b61444581614d32565b82525050565b61445481614d3c565b82525050565b61446381614d4c565b82525050565b60006144758285613ef0565b91506144818284613ef0565b91508190509392505050565b600061449882614200565b9150819050919050565b60006020820190506144b76000830184613e60565b92915050565b60006080820190506144d26000830187613e60565b6144df6020830186613e60565b6144ec604083018561443c565b81810360608301526144fe8184613e7e565b905095945050505050565b600060208201905061451e6000830184613e6f565b92915050565b6000602082019050818103600083015261453e8184613eb7565b905092915050565b6000602082019050818103600083015261455f81613f21565b9050919050565b6000602082019050818103600083015261457f81613f44565b9050919050565b6000602082019050818103600083015261459f81613f67565b9050919050565b600060208201905081810360008301526145bf81613f8a565b9050919050565b600060208201905081810360008301526145df81613fad565b9050919050565b600060208201905081810360008301526145ff81613fd0565b9050919050565b6000602082019050818103600083015261461f81613ff3565b9050919050565b6000602082019050818103600083015261463f81614016565b9050919050565b6000602082019050818103600083015261465f81614039565b9050919050565b6000602082019050818103600083015261467f8161405c565b9050919050565b6000602082019050818103600083015261469f8161407f565b9050919050565b600060208201905081810360008301526146bf816140a2565b9050919050565b600060208201905081810360008301526146df816140c5565b9050919050565b600060208201905081810360008301526146ff816140e8565b9050919050565b6000602082019050818103600083015261471f8161410b565b9050919050565b6000602082019050818103600083015261473f8161412e565b9050919050565b6000602082019050818103600083015261475f81614151565b9050919050565b6000602082019050818103600083015261477f81614174565b9050919050565b6000602082019050818103600083015261479f81614197565b9050919050565b600060208201905081810360008301526147bf816141ba565b9050919050565b600060208201905081810360008301526147df816141dd565b9050919050565b600060208201905081810360008301526147ff81614223565b9050919050565b6000602082019050818103600083015261481f81614246565b9050919050565b6000602082019050818103600083015261483f81614269565b9050919050565b6000602082019050818103600083015261485f8161428c565b9050919050565b6000602082019050818103600083015261487f816142af565b9050919050565b6000602082019050818103600083015261489f816142d2565b9050919050565b600060208201905081810360008301526148bf816142f5565b9050919050565b600060208201905081810360008301526148df81614318565b9050919050565b600060208201905081810360008301526148ff8161433b565b9050919050565b6000602082019050818103600083015261491f8161435e565b9050919050565b6000602082019050818103600083015261493f81614381565b9050919050565b6000602082019050818103600083015261495f816143a4565b9050919050565b6000602082019050818103600083015261497f816143c7565b9050919050565b6000602082019050818103600083015261499f816143ea565b9050919050565b60006040820190506149bb600083018461440d565b92915050565b60006020820190506149d6600083018461443c565b92915050565b60006080820190506149f1600083018761444b565b6149fe602083018661443c565b614a0b604083018561444b565b614a18606083018461443c565b95945050505050565b6000614a2b614a3c565b9050614a378282614dfe565b919050565b6000604051905090565b600067ffffffffffffffff821115614a6157614a60614f65565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614a8d57614a8c614f65565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ab957614ab8614f65565b5b614ac282614fb2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b2882614cf6565b9150614b3383614cf6565b9250826fffffffffffffffffffffffffffffffff03821115614b5857614b57614ea9565b5b828201905092915050565b6000614b6e82614d32565b9150614b7983614d32565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614bae57614bad614ea9565b5b828201905092915050565b6000614bc482614d32565b9150614bcf83614d32565b925082614bdf57614bde614ed8565b5b828204905092915050565b6000614bf582614d32565b9150614c0083614d32565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c3957614c38614ea9565b5b828202905092915050565b6000614c4f82614cf6565b9150614c5a83614cf6565b925082821015614c6d57614c6c614ea9565b5b828203905092915050565b6000614c8382614d32565b9150614c8e83614d32565b925082821015614ca157614ca0614ea9565b5b828203905092915050565b6000614cb782614d12565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614d8d578082015181840152602081019050614d72565b83811115614d9c576000848401525b50505050565b6000614dad82614d32565b91506000821415614dc157614dc0614ea9565b5b600182039050919050565b60006002820490506001821680614de457607f821691505b60208210811415614df857614df7614f07565b5b50919050565b614e0782614fb2565b810181811067ffffffffffffffff82111715614e2657614e25614f65565b5b80604052505050565b6000614e3a82614d32565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e6d57614e6c614ea9565b5b600182019050919050565b6000614e8382614d32565b9150614e8e83614d32565b925082614e9e57614e9d614ed8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f776c2073616c6520686173206e6f7420626567756e2079657400000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f747279696e6720746f206d696e7420746f6f206d756368000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f73616c6520616c7265616479206f766572000000000000000000000000000000600082015250565b7f6e6f20616c6c6f636174696f6e20617661696c61626c6520666f72207468697360008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b6158ae81614cac565b81146158b957600080fd5b50565b6158c581614cbe565b81146158d057600080fd5b50565b6158dc81614cca565b81146158e757600080fd5b50565b6158f381614d32565b81146158fe57600080fd5b50565b61590a81614d3c565b811461591557600080fd5b5056fea26469706673582212206070cb16fc1046cd2414b3b644b602a7a4df597b16316670d7a75962dc351ad664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000205a00000000000000000000000000000000000000000000000000000000635991c000000000000000000000000000000000000000000000000000000000635991c0
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint32): 5
Arg [1] : collectionSize_ (uint256): 8282
Arg [2] : _whitelistSaleStartTime (uint32): 1666814400
Arg [3] : _publicSaleStartTime (uint32): 1666814400
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [1] : 000000000000000000000000000000000000000000000000000000000000205a
Arg [2] : 00000000000000000000000000000000000000000000000000000000635991c0
Arg [3] : 00000000000000000000000000000000000000000000000000000000635991c0
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.