ERC-721
NFT
Overview
Max Total Supply
5,000 BRIAN
Holders
1,027
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 BRIANLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BrianNftsByBraindom
Compiler Version
v0.8.12+commit.f00d7308
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.9; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract BrianNftsByBraindom is ReentrancyGuard , ERC721("Brian Nfts By Braindom", "BRIAN") { using SafeMath for uint256; string public baseURI; string public endingPrefix; // Booleans bool public isPublicSaleActive = false; bool public isWhitelistActive = false; bool public isRaffleSaleActive = false; bool public isDevSaleStarted = false; bool public isRevealed = false; // Base variables uint256 public circulatingSupply; address public owner = msg.sender; uint256 public itemPrice = 0.25 ether; uint256 public whitelistPrice = 0.25 ether; uint256 public raffleSalePrice = 0.25 ether; uint256 public constant _totalSupply = 9_999; uint256 public devReserved = 300; // Limits uint256 internal walletLimit = 2; mapping(address => bool) private whitelist; mapping(address => bool) private raffleSaleList; mapping(address => bool) private devAllowlist; mapping(address => uint256) private addressIndices; // Variables for random indexed tokens uint internal nonce = 0; //Public mint, Whitelist mint, Raffle mint and Dev mint function publicMint(uint256 _amount) external payable tokensAvailable(_amount) callerIsUser() { address minter = msg.sender; require(isPublicSaleActive, "Public sale not started"); require(addressIndices[minter] + _amount <= walletLimit, "Max wallet mint limit reached"); require(msg.value >= _amount * itemPrice, "Incorrect payable amount"); for (uint256 i = 0; i < _amount; i++) { ++addressIndices[minter]; _safeMint(minter, ++circulatingSupply); } } function whitelistMint(uint256 _amount) external payable tokensAvailable(_amount) whitelistSaleStarted() callerIsUser() { address minter = msg.sender; require(whitelist[minter] == true, "Not allowed to whitelist mint"); require(addressIndices[minter] + _amount <= walletLimit, "Max wallet mint limit reached"); require(msg.value >= _amount * whitelistPrice, "Incorrect payable amount"); if(addressIndices[minter] + _amount >= walletLimit) { whitelist[minter] = false; } for(uint256 i = 0; i < _amount; i++) { ++addressIndices[minter]; _safeMint(minter, ++circulatingSupply); } } function raffleMint(uint256 _amount) external payable tokensAvailable(_amount) raffleSaleStarted() callerIsUser() { address minter = msg.sender; require(raffleSaleList[minter] == true, "Not allowed to raffle mint"); require(addressIndices[minter] + _amount <= walletLimit, "Max wallet mint limit reached"); require(msg.value >= _amount * raffleSalePrice, "Incorrect payable amount"); if(addressIndices[minter] + _amount >= walletLimit) { raffleSaleList[minter] = false; } for(uint256 i = 0; i < _amount; i++) { ++addressIndices[minter]; _safeMint(minter, ++circulatingSupply); } } function devMint(uint256 _amount) external payable tokensAvailable(_amount) devSaleStarted() callerIsUser() { address minter = msg.sender; require(devAllowlist[minter] == true, "Not allowed"); require(addressIndices[minter] + _amount <= walletLimit, "Max wallet mint limit reached"); require(devReserved - _amount > 0, "Dev sale sold out"); if(addressIndices[minter] + _amount >= walletLimit) { devAllowlist[minter] = false; } for(uint256 i = 0; i < _amount; i++) { --devReserved; ++addressIndices[minter]; _safeMint(minter, ++circulatingSupply); } } //QUERIES function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { return isRevealed ? string(abi.encodePacked(baseURI, '/', Strings.toString(tokenId), endingPrefix)) : baseURI; } function tokensRemaining() public view returns (uint256) { return _totalSupply - circulatingSupply; } function getWalletLimit() public view returns (uint256) { return walletLimit; } function isRaffleSaleAllowed() public view returns(bool) { return raffleSaleList[msg.sender] == true; } function isWhitelistSaleAllowed() public view returns(bool) { return whitelist[msg.sender] == true; } function isDevSaleAllowed() public view returns(bool) { return devAllowlist[msg.sender] == true; } //OWNER ONLY function addToWhitelistSaleList(address[] calldata _whitelistMinters) external onlyOwner { for(uint256 i = 0; i < _whitelistMinters.length; i++) whitelist[_whitelistMinters[i]] = true; } function addToRaffleList(address[] calldata _raffleSaleMinters) external onlyOwner { for(uint256 i = 0; i < _raffleSaleMinters.length; i++) raffleSaleList[_raffleSaleMinters[i]] = true; } function addToDevList(address[] calldata _devSaleMinters) external onlyOwner { for(uint256 i = 0; i < _devSaleMinters.length; i++) devAllowlist[_devSaleMinters[i]] = true; } function setBaseURI(string memory __baseURI) external onlyOwner { baseURI = __baseURI; } function togglePublicSale() external onlyOwner { isPublicSaleActive = !isPublicSaleActive; } function toggleWhitelistSale() external onlyOwner { isWhitelistActive = !isWhitelistActive; } function toggleRaffleSale() external onlyOwner { isRaffleSaleActive = !isRaffleSaleActive; } function toggleDevSale() external onlyOwner { isDevSaleStarted = !isDevSaleStarted; } function toggleReveal() external onlyOwner { isRevealed = !isRevealed; } function updateWhitelistSalePrice(uint256 _price) external onlyOwner { whitelistPrice = _price; } function updatePublicSalePrice(uint256 _price) external onlyOwner { itemPrice = _price; } function updateRaffleSalePrice(uint256 _price) external onlyOwner { raffleSalePrice = _price; } function updateDevSaleReserveds(uint256 _amount) external onlyOwner { devReserved = _amount; } function updateWalletLimit(uint256 _newLimit) external onlyOwner { walletLimit = _newLimit; } function unlistWhitelistMinter(address[] calldata _minters) external onlyOwner { for(uint256 i = 0; i < _minters.length; i++) whitelist[_minters[i]] = false; } function unlistRaffleMinter(address[] calldata _minters) external onlyOwner { for(uint256 i = 0; i < _minters.length; i++) raffleSaleList[_minters[i]] = false; } function setEndingPrefix(string calldata _prefix) external onlyOwner { endingPrefix = _prefix; } function withdraw() external onlyOwner nonReentrant callerIsUser() { (bool isTransfered, ) = msg.sender.call{value: address(this).balance}(""); require(isTransfered, "Transfer failed"); } function totalSupply() public view returns (uint256) { return circulatingSupply; } function burn( uint256 _tokenId ) external onlyOwner validNFToken(_tokenId) { circulatingSupply--; _burn(_tokenId); } //MODIFIERS modifier tokensAvailable(uint256 _amount) { require(_amount <= tokensRemaining(), "Try minting less tokens"); _; } modifier raffleSaleStarted() { require(isRaffleSaleActive == true, "Raffle Minting is not started"); _; } modifier whitelistSaleStarted() { require(isWhitelistActive == true, "Whitelist sale is not started"); _; } modifier devSaleStarted() { require(isDevSaleStarted == true, "Dev sale not started"); _; } modifier onlyOwner() { require(owner == msg.sender, "Ownable: Caller is not the owner"); _; } /** * @dev Guarantees that _tokenId is a valid Token. * @param _tokenId ID of the NFT to validate. */ modifier validNFToken( uint256 _tokenId ) { require(ownerOf(_tokenId) != address(0)); _; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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 v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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 v4.4.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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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; } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"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":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_devSaleMinters","type":"address[]"}],"name":"addToDevList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_raffleSaleMinters","type":"address[]"}],"name":"addToRaffleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistMinters","type":"address[]"}],"name":"addToWhitelistSaleList","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"devReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endingPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDevSaleAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDevSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRaffleSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRaffleSaleAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistSaleAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"raffleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"raffleSalePrice","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_prefix","type":"string"}],"name":"setEndingPrefix","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":"toggleDevSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleRaffleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_minters","type":"address[]"}],"name":"unlistRaffleMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_minters","type":"address[]"}],"name":"unlistWhitelistMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateDevSaleReserveds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updatePublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updateRaffleSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"updateWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updateWhitelistSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055506000600960026101000a81548160ff0219169083151502179055506000600960036101000a81548160ff0219169083151502179055506000600960046101000a81548160ff02191690831515021790555033600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506703782dace9d90000600c556703782dace9d90000600d556703782dace9d90000600e5561012c600f55600260105560006015553480156200010d57600080fd5b506040518060400160405280601681526020017f427269616e204e66747320427920427261696e646f6d000000000000000000008152506040518060400160405280600581526020017f425249414e000000000000000000000000000000000000000000000000000000815250600160008190555081600190805190602001906200019a929190620001bc565b508060029080519060200190620001b3929190620001bc565b505050620002d1565b828054620001ca906200029b565b90600052602060002090601f016020900481019282620001ee57600085556200023a565b82601f106200020957805160ff19168380011785556200023a565b828001600101855582156200023a579182015b82811115620002395782518255916020019190600101906200021c565b5b5090506200024991906200024d565b5090565b5b80821115620002685760008160009055506001016200024e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002b457607f821691505b60208210811415620002cb57620002ca6200026c565b5b50919050565b615e9380620002e16000396000f3fe60806040526004361061036b5760003560e01c8063649afecc116101c6578063a22cb465116100f7578063dac6db1c11610095578063e985e9c51161006f578063e985e9c514610bb0578063eda9ffca14610bed578063fa4317bc14610c16578063fc1a1c3614610c415761036b565b8063dac6db1c14610b45578063de6f742514610b70578063e222c7f914610b995761036b565b8063b88d4fde116100d1578063b88d4fde14610a8b578063c87b56dd14610ab4578063c8b0812514610af1578063d5fb070714610b1c5761036b565b8063a22cb46514610a22578063a2778e3114610a4b578063aaa70af814610a745761036b565b8063868ff4a2116101645780639358928b1161013e5780639358928b1461098c57806395d89b41146109b757806396562601146109e25780639eae9ac114610a0b5761036b565b8063868ff4a21461091a578063893a8f5b146109365780638da5cb5b146109615761036b565b80636c0360eb116101a05780636c0360eb1461085e57806370a082311461088957806384d577e7146108c657806385dd4ce1146108f15761036b565b8063649afecc146107df578063652782341461080a5780636ae0ca5f146108335761036b565b8063375a069a116102a0578063524513d61161023e57806359eda1b51161021857806359eda1b5146107495780635b8ad429146107605780635ffd2080146107775780636352211e146107a25761036b565b8063524513d6146106ca57806354214f69146106f557806355f804b3146107205761036b565b806342842e0e1161027a57806342842e0e1461062457806342966c681461064d5780634f7fbdde14610676578063517e511a1461069f5761036b565b8063375a069a146105c65780633ccfd60b146105e25780633eaaf86b146105f95761036b565b80632110a6781161030d5780632a5ea0b7116102e75780632a5ea0b71461053c5780632a6d210d146105655780632b46f3ba146105815780632db11544146105aa5761036b565b80632110a678146104bd57806323b872dd146104e857806328809b7e146105115761036b565b8063095ea7b311610349578063095ea7b31461041557806311080fbf1461043e57806318160ddd146104675780631e84c413146104925761036b565b806301ffc9a71461037057806306fdde03146103ad578063081812fc146103d8575b600080fd5b34801561037c57600080fd5b5061039760048036038101906103929190614458565b610c6c565b6040516103a491906144a0565b60405180910390f35b3480156103b957600080fd5b506103c2610d4e565b6040516103cf9190614554565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906145ac565b610de0565b60405161040c919061461a565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190614661565b610e65565b005b34801561044a57600080fd5b5061046560048036038101906104609190614706565b610f7d565b005b34801561047357600080fd5b5061047c6110b2565b6040516104899190614762565b60405180910390f35b34801561049e57600080fd5b506104a76110bc565b6040516104b491906144a0565b60405180910390f35b3480156104c957600080fd5b506104d26110cf565b6040516104df9190614554565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a919061477d565b61115d565b005b34801561051d57600080fd5b506105266111bd565b60405161053391906144a0565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e91906145ac565b611218565b005b61057f600480360381019061057a91906145ac565b6112b2565b005b34801561058d57600080fd5b506105a860048036038101906105a39190614706565b611679565b005b6105c460048036038101906105bf91906145ac565b6117ae565b005b6105e060048036038101906105db91906145ac565b611a2f565b005b3480156105ee57600080fd5b506105f7611e0c565b005b34801561060557600080fd5b5061060e61200f565b60405161061b9190614762565b60405180910390f35b34801561063057600080fd5b5061064b6004803603810190610646919061477d565b612015565b005b34801561065957600080fd5b50610674600480360381019061066f91906145ac565b612035565b005b34801561068257600080fd5b5061069d600480360381019061069891906145ac565b61212d565b005b3480156106ab57600080fd5b506106b46121c7565b6040516106c19190614762565b60405180910390f35b3480156106d657600080fd5b506106df6121d1565b6040516106ec91906144a0565b60405180910390f35b34801561070157600080fd5b5061070a6121e4565b60405161071791906144a0565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190614900565b6121f7565b005b34801561075557600080fd5b5061075e6122a1565b005b34801561076c57600080fd5b5061077561235d565b005b34801561078357600080fd5b5061078c612419565b6040516107999190614762565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c491906145ac565b61241f565b6040516107d6919061461a565b60405180910390f35b3480156107eb57600080fd5b506107f46124d1565b60405161080191906144a0565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c91906145ac565b6124e4565b005b34801561083f57600080fd5b5061084861257e565b60405161085591906144a0565b60405180910390f35b34801561086a57600080fd5b506108736125d9565b6040516108809190614554565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab9190614949565b612667565b6040516108bd9190614762565b60405180910390f35b3480156108d257600080fd5b506108db61271f565b6040516108e891906144a0565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190614706565b61277a565b005b610934600480360381019061092f91906145ac565b6128af565b005b34801561094257600080fd5b5061094b612c76565b6040516109589190614762565b60405180910390f35b34801561096d57600080fd5b50610976612c7c565b604051610983919061461a565b60405180910390f35b34801561099857600080fd5b506109a1612ca2565b6040516109ae9190614762565b60405180910390f35b3480156109c357600080fd5b506109cc612ca8565b6040516109d99190614554565b60405180910390f35b3480156109ee57600080fd5b50610a096004803603810190610a049190614706565b612d3a565b005b348015610a1757600080fd5b50610a20612e6f565b005b348015610a2e57600080fd5b50610a496004803603810190610a4491906149a2565b612f2b565b005b348015610a5757600080fd5b50610a726004803603810190610a6d9190614706565b612f41565b005b348015610a8057600080fd5b50610a89613076565b005b348015610a9757600080fd5b50610ab26004803603810190610aad9190614a83565b613132565b005b348015610ac057600080fd5b50610adb6004803603810190610ad691906145ac565b613194565b604051610ae89190614554565b60405180910390f35b348015610afd57600080fd5b50610b06613270565b604051610b139190614762565b60405180910390f35b348015610b2857600080fd5b50610b436004803603810190610b3e9190614b5c565b613287565b005b348015610b5157600080fd5b50610b5a61332d565b604051610b679190614762565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906145ac565b613333565b005b348015610ba557600080fd5b50610bae6133cd565b005b348015610bbc57600080fd5b50610bd76004803603810190610bd29190614ba9565b613489565b604051610be491906144a0565b60405180910390f35b348015610bf957600080fd5b50610c146004803603810190610c0f91906145ac565b61351d565b005b348015610c2257600080fd5b50610c2b6135b7565b604051610c3891906144a0565b60405180910390f35b348015610c4d57600080fd5b50610c566135ca565b604051610c639190614762565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d3757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d475750610d46826135d0565b5b9050919050565b606060018054610d5d90614c18565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8990614c18565b8015610dd65780601f10610dab57610100808354040283529160200191610dd6565b820191906000526020600020905b815481529060010190602001808311610db957829003601f168201915b5050505050905090565b6000610deb8261363a565b610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190614cbc565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e708261241f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890614d4e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f006136a6565b73ffffffffffffffffffffffffffffffffffffffff161480610f2f5750610f2e81610f296136a6565b613489565b5b610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590614de0565b60405180910390fd5b610f7883836136ae565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461100d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100490614e4c565b60405180910390fd5b60005b828290508110156110ad5760006012600085858581811061103457611033614e6c565b5b90506020020160208101906110499190614949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806110a590614eca565b915050611010565b505050565b6000600a54905090565b600960009054906101000a900460ff1681565b600880546110dc90614c18565b80601f016020809104026020016040519081016040528092919081815260200182805461110890614c18565b80156111555780601f1061112a57610100808354040283529160200191611155565b820191906000526020600020905b81548152906001019060200180831161113857829003601f168201915b505050505081565b61116e6111686136a6565b82613767565b6111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490614f85565b60405180910390fd5b6111b8838383613845565b505050565b600060011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514905090565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614e4c565b60405180910390fd5b80600e8190555050565b806112bb613270565b8111156112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f490614ff1565b60405180910390fd5b60011515600960029054906101000a900460ff16151514611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a9061505d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b8906150c9565b60405180910390fd5b600033905060011515601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090615135565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a79190615155565b11156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df906151f7565b60405180910390fd5b600e54836114f69190615217565b341015611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f906152bd565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115869190615155565b106115e4576000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60005b8381101561167357601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815461163b90614eca565b9190508190555061166082600a6000815461165590614eca565b919050819055613aa1565b808061166b90614eca565b9150506115e7565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090614e4c565b60405180910390fd5b60005b828290508110156117a9576001601160008585858181106117305761172f614e6c565b5b90506020020160208101906117459190614949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806117a190614eca565b91505061170c565b505050565b806117b7613270565b8111156117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090614ff1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e906150c9565b60405180910390fd5b6000339050600960009054906101000a900460ff166118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290615329565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119099190615155565b111561194a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611941906151f7565b60405180910390fd5b600c54836119589190615217565b34101561199a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611991906152bd565b60405180910390fd5b60005b83811015611a2957601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546119f190614eca565b91905081905550611a1682600a60008154611a0b90614eca565b919050819055613aa1565b8080611a2190614eca565b91505061199d565b50505050565b80611a38613270565b811115611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190614ff1565b60405180910390fd5b60011515600960039054906101000a900460ff16151514611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790615395565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b35906150c9565b60405180910390fd5b600033905060011515601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd90615401565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c249190615155565b1115611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c906151f7565b60405180910390fd5b600083600f54611c759190615421565b11611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac906154a1565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d039190615155565b10611d61576000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60005b83811015611e0657600f60008154611d7b906154c1565b91905081905550601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154611dce90614eca565b91905081905550611df382600a60008154611de890614eca565b919050819055613aa1565b8080611dfe90614eca565b915050611d64565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390614e4c565b60405180910390fd5b60026000541415611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990615537565b60405180910390fd5b60026000819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f906150c9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611f7e90615588565b60006040518083038185875af1925050503d8060008114611fbb576040519150601f19603f3d011682016040523d82523d6000602084013e611fc0565b606091505b5050905080612004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffb906155e9565b60405180910390fd5b506001600081905550565b61270f81565b61203083838360405180602001604052806000815250613132565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bc90614e4c565b60405180910390fd5b80600073ffffffffffffffffffffffffffffffffffffffff166120e78261241f565b73ffffffffffffffffffffffffffffffffffffffff16141561210857600080fd5b600a600081548092919061211b906154c1565b919050555061212982613abf565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b490614e4c565b60405180910390fd5b8060108190555050565b6000601054905090565b600960019054906101000a900460ff1681565b600960049054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e90614e4c565b60405180910390fd5b806007908051906020019061229d9291906142c3565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232890614e4c565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e490614e4c565b60405180910390fd5b600960049054906101000a900460ff1615600960046101000a81548160ff021916908315150217905550565b600f5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bf9061567b565b60405180910390fd5b80915050919050565b600960039054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90614e4c565b60405180910390fd5b80600f8190555050565b600060011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514905090565b600780546125e690614c18565b80601f016020809104026020016040519081016040528092919081815260200182805461261290614c18565b801561265f5780601f106126345761010080835404028352916020019161265f565b820191906000526020600020905b81548152906001019060200180831161264257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cf9061570d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600060011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514905090565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461280a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280190614e4c565b60405180910390fd5b60005b828290508110156128aa5760016013600085858581811061283157612830614e6c565b5b90506020020160208101906128469190614949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806128a290614eca565b91505061280d565b505050565b806128b8613270565b8111156128fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f190614ff1565b60405180910390fd5b60011515600960019054906101000a900460ff16151514612950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294790615779565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146129be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b5906150c9565b60405180910390fd5b600033905060011515601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4d906157e5565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aa49190615155565b1115612ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adc906151f7565b60405180910390fd5b600d5483612af39190615217565b341015612b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2c906152bd565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b839190615155565b10612be1576000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60005b83811015612c7057601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154612c3890614eca565b91905081905550612c5d82600a60008154612c5290614eca565b919050819055613aa1565b8080612c6890614eca565b915050612be4565b50505050565b600e5481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b606060028054612cb790614c18565b80601f0160208091040260200160405190810160405280929190818152602001828054612ce390614c18565b8015612d305780601f10612d0557610100808354040283529160200191612d30565b820191906000526020600020905b815481529060010190602001808311612d1357829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc190614e4c565b60405180910390fd5b60005b82829050811015612e6a57600060116000858585818110612df157612df0614e6c565b5b9050602002016020810190612e069190614949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612e6290614eca565b915050612dcd565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef690614e4c565b60405180910390fd5b600960039054906101000a900460ff1615600960036101000a81548160ff021916908315150217905550565b612f3d612f366136a6565b8383613bd0565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc890614e4c565b60405180910390fd5b60005b8282905081101561307157600160126000858585818110612ff857612ff7614e6c565b5b905060200201602081019061300d9190614949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061306990614eca565b915050612fd4565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fd90614e4c565b60405180910390fd5b600960029054906101000a900460ff1615600960026101000a81548160ff021916908315150217905550565b61314361313d6136a6565b83613767565b613182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317990614f85565b60405180910390fd5b61318e84848484613d3d565b50505050565b6060600960049054906101000a900460ff1661323a57600780546131b790614c18565b80601f01602080910402602001604051908101604052809291908181526020018280546131e390614c18565b80156132305780601f1061320557610100808354040283529160200191613230565b820191906000526020600020905b81548152906001019060200180831161321357829003601f168201915b5050505050613269565b600761324583613d99565b600860405160200161325993929190615921565b6040516020818303038152906040525b9050919050565b6000600a5461270f6132829190615421565b905090565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330e90614e4c565b60405180910390fd5b818160089190613328929190614349565b505050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146133c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ba90614e4c565b60405180910390fd5b80600c8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461345d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345490614e4c565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146135ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a490614e4c565b60405180910390fd5b80600d8190555050565b600960029054906101000a900460ff1681565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166137218361241f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006137728261363a565b6137b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137a8906159cf565b60405180910390fd5b60006137bc8361241f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061382b57508373ffffffffffffffffffffffffffffffffffffffff1661381384610de0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061383c575061383b8185613489565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166138658261241f565b73ffffffffffffffffffffffffffffffffffffffff16146138bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b290615a61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561392b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392290615af3565b60405180910390fd5b613936838383613efa565b6139416000826136ae565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139919190615421565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139e89190615155565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b613abb828260405180602001604052806000815250613eff565b5050565b6000613aca8261241f565b9050613ad881600084613efa565b613ae36000836136ae565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b339190615421565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3690615b5f565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051613d3091906144a0565b60405180910390a3505050565b613d48848484613845565b613d5484848484613f5a565b613d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d8a90615bf1565b60405180910390fd5b50505050565b60606000821415613de1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613ef5565b600082905060005b60008214613e13578080613dfc90614eca565b915050600a82613e0c9190615c40565b9150613de9565b60008167ffffffffffffffff811115613e2f57613e2e6147d5565b5b6040519080825280601f01601f191660200182016040528015613e615781602001600182028036833780820191505090505b5090505b60008514613eee57600182613e7a9190615421565b9150600a85613e899190615c71565b6030613e959190615155565b60f81b818381518110613eab57613eaa614e6c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613ee79190615c40565b9450613e65565b8093505050505b919050565b505050565b613f0983836140e2565b613f166000848484613f5a565b613f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f4c90615bf1565b60405180910390fd5b505050565b6000613f7b8473ffffffffffffffffffffffffffffffffffffffff166142b0565b156140d5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613fa46136a6565b8786866040518563ffffffff1660e01b8152600401613fc69493929190615cf7565b6020604051808303816000875af192505050801561400257506040513d601f19601f82011682018060405250810190613fff9190615d58565b60015b614085573d8060008114614032576040519150601f19603f3d011682016040523d82523d6000602084013e614037565b606091505b5060008151141561407d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161407490615bf1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506140da565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161414990615dd1565b60405180910390fd5b61415b8161363a565b1561419b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161419290615e3d565b60405180910390fd5b6141a760008383613efa565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546141f79190615155565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546142cf90614c18565b90600052602060002090601f0160209004810192826142f15760008555614338565b82601f1061430a57805160ff1916838001178555614338565b82800160010185558215614338579182015b8281111561433757825182559160200191906001019061431c565b5b50905061434591906143cf565b5090565b82805461435590614c18565b90600052602060002090601f01602090048101928261437757600085556143be565b82601f1061439057803560ff19168380011785556143be565b828001600101855582156143be579182015b828111156143bd5782358255916020019190600101906143a2565b5b5090506143cb91906143cf565b5090565b5b808211156143e85760008160009055506001016143d0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61443581614400565b811461444057600080fd5b50565b6000813590506144528161442c565b92915050565b60006020828403121561446e5761446d6143f6565b5b600061447c84828501614443565b91505092915050565b60008115159050919050565b61449a81614485565b82525050565b60006020820190506144b56000830184614491565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156144f55780820151818401526020810190506144da565b83811115614504576000848401525b50505050565b6000601f19601f8301169050919050565b6000614526826144bb565b61453081856144c6565b93506145408185602086016144d7565b6145498161450a565b840191505092915050565b6000602082019050818103600083015261456e818461451b565b905092915050565b6000819050919050565b61458981614576565b811461459457600080fd5b50565b6000813590506145a681614580565b92915050565b6000602082840312156145c2576145c16143f6565b5b60006145d084828501614597565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614604826145d9565b9050919050565b614614816145f9565b82525050565b600060208201905061462f600083018461460b565b92915050565b61463e816145f9565b811461464957600080fd5b50565b60008135905061465b81614635565b92915050565b60008060408385031215614678576146776143f6565b5b60006146868582860161464c565b925050602061469785828601614597565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126146c6576146c56146a1565b5b8235905067ffffffffffffffff8111156146e3576146e26146a6565b5b6020830191508360208202830111156146ff576146fe6146ab565b5b9250929050565b6000806020838503121561471d5761471c6143f6565b5b600083013567ffffffffffffffff81111561473b5761473a6143fb565b5b614747858286016146b0565b92509250509250929050565b61475c81614576565b82525050565b60006020820190506147776000830184614753565b92915050565b600080600060608486031215614796576147956143f6565b5b60006147a48682870161464c565b93505060206147b58682870161464c565b92505060406147c686828701614597565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61480d8261450a565b810181811067ffffffffffffffff8211171561482c5761482b6147d5565b5b80604052505050565b600061483f6143ec565b905061484b8282614804565b919050565b600067ffffffffffffffff82111561486b5761486a6147d5565b5b6148748261450a565b9050602081019050919050565b82818337600083830152505050565b60006148a361489e84614850565b614835565b9050828152602081018484840111156148bf576148be6147d0565b5b6148ca848285614881565b509392505050565b600082601f8301126148e7576148e66146a1565b5b81356148f7848260208601614890565b91505092915050565b600060208284031215614916576149156143f6565b5b600082013567ffffffffffffffff811115614934576149336143fb565b5b614940848285016148d2565b91505092915050565b60006020828403121561495f5761495e6143f6565b5b600061496d8482850161464c565b91505092915050565b61497f81614485565b811461498a57600080fd5b50565b60008135905061499c81614976565b92915050565b600080604083850312156149b9576149b86143f6565b5b60006149c78582860161464c565b92505060206149d88582860161498d565b9150509250929050565b600067ffffffffffffffff8211156149fd576149fc6147d5565b5b614a068261450a565b9050602081019050919050565b6000614a26614a21846149e2565b614835565b905082815260208101848484011115614a4257614a416147d0565b5b614a4d848285614881565b509392505050565b600082601f830112614a6a57614a696146a1565b5b8135614a7a848260208601614a13565b91505092915050565b60008060008060808587031215614a9d57614a9c6143f6565b5b6000614aab8782880161464c565b9450506020614abc8782880161464c565b9350506040614acd87828801614597565b925050606085013567ffffffffffffffff811115614aee57614aed6143fb565b5b614afa87828801614a55565b91505092959194509250565b60008083601f840112614b1c57614b1b6146a1565b5b8235905067ffffffffffffffff811115614b3957614b386146a6565b5b602083019150836001820283011115614b5557614b546146ab565b5b9250929050565b60008060208385031215614b7357614b726143f6565b5b600083013567ffffffffffffffff811115614b9157614b906143fb565b5b614b9d85828601614b06565b92509250509250929050565b60008060408385031215614bc057614bbf6143f6565b5b6000614bce8582860161464c565b9250506020614bdf8582860161464c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614c3057607f821691505b60208210811415614c4457614c43614be9565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614ca6602c836144c6565b9150614cb182614c4a565b604082019050919050565b60006020820190508181036000830152614cd581614c99565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d386021836144c6565b9150614d4382614cdc565b604082019050919050565b60006020820190508181036000830152614d6781614d2b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614dca6038836144c6565b9150614dd582614d6e565b604082019050919050565b60006020820190508181036000830152614df981614dbd565b9050919050565b7f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e366020836144c6565b9150614e4182614e00565b602082019050919050565b60006020820190508181036000830152614e6581614e29565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614ed582614576565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f0857614f07614e9b565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614f6f6031836144c6565b9150614f7a82614f13565b604082019050919050565b60006020820190508181036000830152614f9e81614f62565b9050919050565b7f547279206d696e74696e67206c65737320746f6b656e73000000000000000000600082015250565b6000614fdb6017836144c6565b9150614fe682614fa5565b602082019050919050565b6000602082019050818103600083015261500a81614fce565b9050919050565b7f526166666c65204d696e74696e67206973206e6f742073746172746564000000600082015250565b6000615047601d836144c6565b915061505282615011565b602082019050919050565b600060208201905081810360008301526150768161503a565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006150b3601e836144c6565b91506150be8261507d565b602082019050919050565b600060208201905081810360008301526150e2816150a6565b9050919050565b7f4e6f7420616c6c6f77656420746f20726166666c65206d696e74000000000000600082015250565b600061511f601a836144c6565b915061512a826150e9565b602082019050919050565b6000602082019050818103600083015261514e81615112565b9050919050565b600061516082614576565b915061516b83614576565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151a05761519f614e9b565b5b828201905092915050565b7f4d61782077616c6c6574206d696e74206c696d69742072656163686564000000600082015250565b60006151e1601d836144c6565b91506151ec826151ab565b602082019050919050565b60006020820190508181036000830152615210816151d4565b9050919050565b600061522282614576565b915061522d83614576565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561526657615265614e9b565b5b828202905092915050565b7f496e636f72726563742070617961626c6520616d6f756e740000000000000000600082015250565b60006152a76018836144c6565b91506152b282615271565b602082019050919050565b600060208201905081810360008301526152d68161529a565b9050919050565b7f5075626c69632073616c65206e6f742073746172746564000000000000000000600082015250565b60006153136017836144c6565b915061531e826152dd565b602082019050919050565b6000602082019050818103600083015261534281615306565b9050919050565b7f4465762073616c65206e6f742073746172746564000000000000000000000000600082015250565b600061537f6014836144c6565b915061538a82615349565b602082019050919050565b600060208201905081810360008301526153ae81615372565b9050919050565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b60006153eb600b836144c6565b91506153f6826153b5565b602082019050919050565b6000602082019050818103600083015261541a816153de565b9050919050565b600061542c82614576565b915061543783614576565b92508282101561544a57615449614e9b565b5b828203905092915050565b7f4465762073616c6520736f6c64206f7574000000000000000000000000000000600082015250565b600061548b6011836144c6565b915061549682615455565b602082019050919050565b600060208201905081810360008301526154ba8161547e565b9050919050565b60006154cc82614576565b915060008214156154e0576154df614e9b565b5b600182039050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000615521601f836144c6565b915061552c826154eb565b602082019050919050565b6000602082019050818103600083015261555081615514565b9050919050565b600081905092915050565b50565b6000615572600083615557565b915061557d82615562565b600082019050919050565b600061559382615565565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006155d3600f836144c6565b91506155de8261559d565b602082019050919050565b60006020820190508181036000830152615602816155c6565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006156656029836144c6565b915061567082615609565b604082019050919050565b6000602082019050818103600083015261569481615658565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006156f7602a836144c6565b91506157028261569b565b604082019050919050565b60006020820190508181036000830152615726816156ea565b9050919050565b7f57686974656c6973742073616c65206973206e6f742073746172746564000000600082015250565b6000615763601d836144c6565b915061576e8261572d565b602082019050919050565b6000602082019050818103600083015261579281615756565b9050919050565b7f4e6f7420616c6c6f77656420746f2077686974656c697374206d696e74000000600082015250565b60006157cf601d836144c6565b91506157da82615799565b602082019050919050565b600060208201905081810360008301526157fe816157c2565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461583281614c18565b61583c8186615805565b9450600182166000811461585757600181146158685761589b565b60ff1983168652818601935061589b565b61587185615810565b60005b8381101561589357815481890152600182019150602081019050615874565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006158da600183615805565b91506158e5826158a4565b600182019050919050565b60006158fb826144bb565b6159058185615805565b93506159158185602086016144d7565b80840191505092915050565b600061592d8286615825565b9150615938826158cd565b915061594482856158f0565b91506159508284615825565b9150819050949350505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006159b9602c836144c6565b91506159c48261595d565b604082019050919050565b600060208201905081810360008301526159e8816159ac565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615a4b6029836144c6565b9150615a56826159ef565b604082019050919050565b60006020820190508181036000830152615a7a81615a3e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615add6024836144c6565b9150615ae882615a81565b604082019050919050565b60006020820190508181036000830152615b0c81615ad0565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615b496019836144c6565b9150615b5482615b13565b602082019050919050565b60006020820190508181036000830152615b7881615b3c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615bdb6032836144c6565b9150615be682615b7f565b604082019050919050565b60006020820190508181036000830152615c0a81615bce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615c4b82614576565b9150615c5683614576565b925082615c6657615c65615c11565b5b828204905092915050565b6000615c7c82614576565b9150615c8783614576565b925082615c9757615c96615c11565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615cc982615ca2565b615cd38185615cad565b9350615ce38185602086016144d7565b615cec8161450a565b840191505092915050565b6000608082019050615d0c600083018761460b565b615d19602083018661460b565b615d266040830185614753565b8181036060830152615d388184615cbe565b905095945050505050565b600081519050615d528161442c565b92915050565b600060208284031215615d6e57615d6d6143f6565b5b6000615d7c84828501615d43565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615dbb6020836144c6565b9150615dc682615d85565b602082019050919050565b60006020820190508181036000830152615dea81615dae565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615e27601c836144c6565b9150615e3282615df1565b602082019050919050565b60006020820190508181036000830152615e5681615e1a565b905091905056fea264697066735822122006078760f5cc693b21cfa4669f1d7647078722c0fb1e4b36511e0be95dea9c4064736f6c634300080c0033
Deployed Bytecode
0x60806040526004361061036b5760003560e01c8063649afecc116101c6578063a22cb465116100f7578063dac6db1c11610095578063e985e9c51161006f578063e985e9c514610bb0578063eda9ffca14610bed578063fa4317bc14610c16578063fc1a1c3614610c415761036b565b8063dac6db1c14610b45578063de6f742514610b70578063e222c7f914610b995761036b565b8063b88d4fde116100d1578063b88d4fde14610a8b578063c87b56dd14610ab4578063c8b0812514610af1578063d5fb070714610b1c5761036b565b8063a22cb46514610a22578063a2778e3114610a4b578063aaa70af814610a745761036b565b8063868ff4a2116101645780639358928b1161013e5780639358928b1461098c57806395d89b41146109b757806396562601146109e25780639eae9ac114610a0b5761036b565b8063868ff4a21461091a578063893a8f5b146109365780638da5cb5b146109615761036b565b80636c0360eb116101a05780636c0360eb1461085e57806370a082311461088957806384d577e7146108c657806385dd4ce1146108f15761036b565b8063649afecc146107df578063652782341461080a5780636ae0ca5f146108335761036b565b8063375a069a116102a0578063524513d61161023e57806359eda1b51161021857806359eda1b5146107495780635b8ad429146107605780635ffd2080146107775780636352211e146107a25761036b565b8063524513d6146106ca57806354214f69146106f557806355f804b3146107205761036b565b806342842e0e1161027a57806342842e0e1461062457806342966c681461064d5780634f7fbdde14610676578063517e511a1461069f5761036b565b8063375a069a146105c65780633ccfd60b146105e25780633eaaf86b146105f95761036b565b80632110a6781161030d5780632a5ea0b7116102e75780632a5ea0b71461053c5780632a6d210d146105655780632b46f3ba146105815780632db11544146105aa5761036b565b80632110a678146104bd57806323b872dd146104e857806328809b7e146105115761036b565b8063095ea7b311610349578063095ea7b31461041557806311080fbf1461043e57806318160ddd146104675780631e84c413146104925761036b565b806301ffc9a71461037057806306fdde03146103ad578063081812fc146103d8575b600080fd5b34801561037c57600080fd5b5061039760048036038101906103929190614458565b610c6c565b6040516103a491906144a0565b60405180910390f35b3480156103b957600080fd5b506103c2610d4e565b6040516103cf9190614554565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906145ac565b610de0565b60405161040c919061461a565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190614661565b610e65565b005b34801561044a57600080fd5b5061046560048036038101906104609190614706565b610f7d565b005b34801561047357600080fd5b5061047c6110b2565b6040516104899190614762565b60405180910390f35b34801561049e57600080fd5b506104a76110bc565b6040516104b491906144a0565b60405180910390f35b3480156104c957600080fd5b506104d26110cf565b6040516104df9190614554565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a919061477d565b61115d565b005b34801561051d57600080fd5b506105266111bd565b60405161053391906144a0565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e91906145ac565b611218565b005b61057f600480360381019061057a91906145ac565b6112b2565b005b34801561058d57600080fd5b506105a860048036038101906105a39190614706565b611679565b005b6105c460048036038101906105bf91906145ac565b6117ae565b005b6105e060048036038101906105db91906145ac565b611a2f565b005b3480156105ee57600080fd5b506105f7611e0c565b005b34801561060557600080fd5b5061060e61200f565b60405161061b9190614762565b60405180910390f35b34801561063057600080fd5b5061064b6004803603810190610646919061477d565b612015565b005b34801561065957600080fd5b50610674600480360381019061066f91906145ac565b612035565b005b34801561068257600080fd5b5061069d600480360381019061069891906145ac565b61212d565b005b3480156106ab57600080fd5b506106b46121c7565b6040516106c19190614762565b60405180910390f35b3480156106d657600080fd5b506106df6121d1565b6040516106ec91906144a0565b60405180910390f35b34801561070157600080fd5b5061070a6121e4565b60405161071791906144a0565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190614900565b6121f7565b005b34801561075557600080fd5b5061075e6122a1565b005b34801561076c57600080fd5b5061077561235d565b005b34801561078357600080fd5b5061078c612419565b6040516107999190614762565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c491906145ac565b61241f565b6040516107d6919061461a565b60405180910390f35b3480156107eb57600080fd5b506107f46124d1565b60405161080191906144a0565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c91906145ac565b6124e4565b005b34801561083f57600080fd5b5061084861257e565b60405161085591906144a0565b60405180910390f35b34801561086a57600080fd5b506108736125d9565b6040516108809190614554565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab9190614949565b612667565b6040516108bd9190614762565b60405180910390f35b3480156108d257600080fd5b506108db61271f565b6040516108e891906144a0565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190614706565b61277a565b005b610934600480360381019061092f91906145ac565b6128af565b005b34801561094257600080fd5b5061094b612c76565b6040516109589190614762565b60405180910390f35b34801561096d57600080fd5b50610976612c7c565b604051610983919061461a565b60405180910390f35b34801561099857600080fd5b506109a1612ca2565b6040516109ae9190614762565b60405180910390f35b3480156109c357600080fd5b506109cc612ca8565b6040516109d99190614554565b60405180910390f35b3480156109ee57600080fd5b50610a096004803603810190610a049190614706565b612d3a565b005b348015610a1757600080fd5b50610a20612e6f565b005b348015610a2e57600080fd5b50610a496004803603810190610a4491906149a2565b612f2b565b005b348015610a5757600080fd5b50610a726004803603810190610a6d9190614706565b612f41565b005b348015610a8057600080fd5b50610a89613076565b005b348015610a9757600080fd5b50610ab26004803603810190610aad9190614a83565b613132565b005b348015610ac057600080fd5b50610adb6004803603810190610ad691906145ac565b613194565b604051610ae89190614554565b60405180910390f35b348015610afd57600080fd5b50610b06613270565b604051610b139190614762565b60405180910390f35b348015610b2857600080fd5b50610b436004803603810190610b3e9190614b5c565b613287565b005b348015610b5157600080fd5b50610b5a61332d565b604051610b679190614762565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906145ac565b613333565b005b348015610ba557600080fd5b50610bae6133cd565b005b348015610bbc57600080fd5b50610bd76004803603810190610bd29190614ba9565b613489565b604051610be491906144a0565b60405180910390f35b348015610bf957600080fd5b50610c146004803603810190610c0f91906145ac565b61351d565b005b348015610c2257600080fd5b50610c2b6135b7565b604051610c3891906144a0565b60405180910390f35b348015610c4d57600080fd5b50610c566135ca565b604051610c639190614762565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d3757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d475750610d46826135d0565b5b9050919050565b606060018054610d5d90614c18565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8990614c18565b8015610dd65780601f10610dab57610100808354040283529160200191610dd6565b820191906000526020600020905b815481529060010190602001808311610db957829003601f168201915b5050505050905090565b6000610deb8261363a565b610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190614cbc565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e708261241f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890614d4e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f006136a6565b73ffffffffffffffffffffffffffffffffffffffff161480610f2f5750610f2e81610f296136a6565b613489565b5b610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590614de0565b60405180910390fd5b610f7883836136ae565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461100d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100490614e4c565b60405180910390fd5b60005b828290508110156110ad5760006012600085858581811061103457611033614e6c565b5b90506020020160208101906110499190614949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806110a590614eca565b915050611010565b505050565b6000600a54905090565b600960009054906101000a900460ff1681565b600880546110dc90614c18565b80601f016020809104026020016040519081016040528092919081815260200182805461110890614c18565b80156111555780601f1061112a57610100808354040283529160200191611155565b820191906000526020600020905b81548152906001019060200180831161113857829003601f168201915b505050505081565b61116e6111686136a6565b82613767565b6111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490614f85565b60405180910390fd5b6111b8838383613845565b505050565b600060011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514905090565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614e4c565b60405180910390fd5b80600e8190555050565b806112bb613270565b8111156112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f490614ff1565b60405180910390fd5b60011515600960029054906101000a900460ff16151514611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a9061505d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b8906150c9565b60405180910390fd5b600033905060011515601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090615135565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a79190615155565b11156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df906151f7565b60405180910390fd5b600e54836114f69190615217565b341015611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f906152bd565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115869190615155565b106115e4576000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60005b8381101561167357601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815461163b90614eca565b9190508190555061166082600a6000815461165590614eca565b919050819055613aa1565b808061166b90614eca565b9150506115e7565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090614e4c565b60405180910390fd5b60005b828290508110156117a9576001601160008585858181106117305761172f614e6c565b5b90506020020160208101906117459190614949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806117a190614eca565b91505061170c565b505050565b806117b7613270565b8111156117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090614ff1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e906150c9565b60405180910390fd5b6000339050600960009054906101000a900460ff166118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290615329565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119099190615155565b111561194a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611941906151f7565b60405180910390fd5b600c54836119589190615217565b34101561199a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611991906152bd565b60405180910390fd5b60005b83811015611a2957601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546119f190614eca565b91905081905550611a1682600a60008154611a0b90614eca565b919050819055613aa1565b8080611a2190614eca565b91505061199d565b50505050565b80611a38613270565b811115611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190614ff1565b60405180910390fd5b60011515600960039054906101000a900460ff16151514611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790615395565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b35906150c9565b60405180910390fd5b600033905060011515601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd90615401565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c249190615155565b1115611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c906151f7565b60405180910390fd5b600083600f54611c759190615421565b11611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac906154a1565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d039190615155565b10611d61576000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60005b83811015611e0657600f60008154611d7b906154c1565b91905081905550601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154611dce90614eca565b91905081905550611df382600a60008154611de890614eca565b919050819055613aa1565b8080611dfe90614eca565b915050611d64565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390614e4c565b60405180910390fd5b60026000541415611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990615537565b60405180910390fd5b60026000819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f906150c9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611f7e90615588565b60006040518083038185875af1925050503d8060008114611fbb576040519150601f19603f3d011682016040523d82523d6000602084013e611fc0565b606091505b5050905080612004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffb906155e9565b60405180910390fd5b506001600081905550565b61270f81565b61203083838360405180602001604052806000815250613132565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bc90614e4c565b60405180910390fd5b80600073ffffffffffffffffffffffffffffffffffffffff166120e78261241f565b73ffffffffffffffffffffffffffffffffffffffff16141561210857600080fd5b600a600081548092919061211b906154c1565b919050555061212982613abf565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b490614e4c565b60405180910390fd5b8060108190555050565b6000601054905090565b600960019054906101000a900460ff1681565b600960049054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e90614e4c565b60405180910390fd5b806007908051906020019061229d9291906142c3565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232890614e4c565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e490614e4c565b60405180910390fd5b600960049054906101000a900460ff1615600960046101000a81548160ff021916908315150217905550565b600f5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bf9061567b565b60405180910390fd5b80915050919050565b600960039054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90614e4c565b60405180910390fd5b80600f8190555050565b600060011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514905090565b600780546125e690614c18565b80601f016020809104026020016040519081016040528092919081815260200182805461261290614c18565b801561265f5780601f106126345761010080835404028352916020019161265f565b820191906000526020600020905b81548152906001019060200180831161264257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cf9061570d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600060011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514905090565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461280a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280190614e4c565b60405180910390fd5b60005b828290508110156128aa5760016013600085858581811061283157612830614e6c565b5b90506020020160208101906128469190614949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806128a290614eca565b91505061280d565b505050565b806128b8613270565b8111156128fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f190614ff1565b60405180910390fd5b60011515600960019054906101000a900460ff16151514612950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294790615779565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146129be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b5906150c9565b60405180910390fd5b600033905060011515601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4d906157e5565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aa49190615155565b1115612ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adc906151f7565b60405180910390fd5b600d5483612af39190615217565b341015612b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2c906152bd565b60405180910390fd5b60105483601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b839190615155565b10612be1576000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60005b83811015612c7057601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154612c3890614eca565b91905081905550612c5d82600a60008154612c5290614eca565b919050819055613aa1565b8080612c6890614eca565b915050612be4565b50505050565b600e5481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b606060028054612cb790614c18565b80601f0160208091040260200160405190810160405280929190818152602001828054612ce390614c18565b8015612d305780601f10612d0557610100808354040283529160200191612d30565b820191906000526020600020905b815481529060010190602001808311612d1357829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc190614e4c565b60405180910390fd5b60005b82829050811015612e6a57600060116000858585818110612df157612df0614e6c565b5b9050602002016020810190612e069190614949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612e6290614eca565b915050612dcd565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef690614e4c565b60405180910390fd5b600960039054906101000a900460ff1615600960036101000a81548160ff021916908315150217905550565b612f3d612f366136a6565b8383613bd0565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc890614e4c565b60405180910390fd5b60005b8282905081101561307157600160126000858585818110612ff857612ff7614e6c565b5b905060200201602081019061300d9190614949565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061306990614eca565b915050612fd4565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fd90614e4c565b60405180910390fd5b600960029054906101000a900460ff1615600960026101000a81548160ff021916908315150217905550565b61314361313d6136a6565b83613767565b613182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317990614f85565b60405180910390fd5b61318e84848484613d3d565b50505050565b6060600960049054906101000a900460ff1661323a57600780546131b790614c18565b80601f01602080910402602001604051908101604052809291908181526020018280546131e390614c18565b80156132305780601f1061320557610100808354040283529160200191613230565b820191906000526020600020905b81548152906001019060200180831161321357829003601f168201915b5050505050613269565b600761324583613d99565b600860405160200161325993929190615921565b6040516020818303038152906040525b9050919050565b6000600a5461270f6132829190615421565b905090565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330e90614e4c565b60405180910390fd5b818160089190613328929190614349565b505050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146133c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ba90614e4c565b60405180910390fd5b80600c8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461345d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345490614e4c565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146135ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a490614e4c565b60405180910390fd5b80600d8190555050565b600960029054906101000a900460ff1681565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166137218361241f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006137728261363a565b6137b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137a8906159cf565b60405180910390fd5b60006137bc8361241f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061382b57508373ffffffffffffffffffffffffffffffffffffffff1661381384610de0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061383c575061383b8185613489565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166138658261241f565b73ffffffffffffffffffffffffffffffffffffffff16146138bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b290615a61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561392b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392290615af3565b60405180910390fd5b613936838383613efa565b6139416000826136ae565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139919190615421565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139e89190615155565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b613abb828260405180602001604052806000815250613eff565b5050565b6000613aca8261241f565b9050613ad881600084613efa565b613ae36000836136ae565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b339190615421565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3690615b5f565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051613d3091906144a0565b60405180910390a3505050565b613d48848484613845565b613d5484848484613f5a565b613d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d8a90615bf1565b60405180910390fd5b50505050565b60606000821415613de1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613ef5565b600082905060005b60008214613e13578080613dfc90614eca565b915050600a82613e0c9190615c40565b9150613de9565b60008167ffffffffffffffff811115613e2f57613e2e6147d5565b5b6040519080825280601f01601f191660200182016040528015613e615781602001600182028036833780820191505090505b5090505b60008514613eee57600182613e7a9190615421565b9150600a85613e899190615c71565b6030613e959190615155565b60f81b818381518110613eab57613eaa614e6c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613ee79190615c40565b9450613e65565b8093505050505b919050565b505050565b613f0983836140e2565b613f166000848484613f5a565b613f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f4c90615bf1565b60405180910390fd5b505050565b6000613f7b8473ffffffffffffffffffffffffffffffffffffffff166142b0565b156140d5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613fa46136a6565b8786866040518563ffffffff1660e01b8152600401613fc69493929190615cf7565b6020604051808303816000875af192505050801561400257506040513d601f19601f82011682018060405250810190613fff9190615d58565b60015b614085573d8060008114614032576040519150601f19603f3d011682016040523d82523d6000602084013e614037565b606091505b5060008151141561407d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161407490615bf1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506140da565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161414990615dd1565b60405180910390fd5b61415b8161363a565b1561419b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161419290615e3d565b60405180910390fd5b6141a760008383613efa565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546141f79190615155565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546142cf90614c18565b90600052602060002090601f0160209004810192826142f15760008555614338565b82601f1061430a57805160ff1916838001178555614338565b82800160010185558215614338579182015b8281111561433757825182559160200191906001019061431c565b5b50905061434591906143cf565b5090565b82805461435590614c18565b90600052602060002090601f01602090048101928261437757600085556143be565b82601f1061439057803560ff19168380011785556143be565b828001600101855582156143be579182015b828111156143bd5782358255916020019190600101906143a2565b5b5090506143cb91906143cf565b5090565b5b808211156143e85760008160009055506001016143d0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61443581614400565b811461444057600080fd5b50565b6000813590506144528161442c565b92915050565b60006020828403121561446e5761446d6143f6565b5b600061447c84828501614443565b91505092915050565b60008115159050919050565b61449a81614485565b82525050565b60006020820190506144b56000830184614491565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156144f55780820151818401526020810190506144da565b83811115614504576000848401525b50505050565b6000601f19601f8301169050919050565b6000614526826144bb565b61453081856144c6565b93506145408185602086016144d7565b6145498161450a565b840191505092915050565b6000602082019050818103600083015261456e818461451b565b905092915050565b6000819050919050565b61458981614576565b811461459457600080fd5b50565b6000813590506145a681614580565b92915050565b6000602082840312156145c2576145c16143f6565b5b60006145d084828501614597565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614604826145d9565b9050919050565b614614816145f9565b82525050565b600060208201905061462f600083018461460b565b92915050565b61463e816145f9565b811461464957600080fd5b50565b60008135905061465b81614635565b92915050565b60008060408385031215614678576146776143f6565b5b60006146868582860161464c565b925050602061469785828601614597565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126146c6576146c56146a1565b5b8235905067ffffffffffffffff8111156146e3576146e26146a6565b5b6020830191508360208202830111156146ff576146fe6146ab565b5b9250929050565b6000806020838503121561471d5761471c6143f6565b5b600083013567ffffffffffffffff81111561473b5761473a6143fb565b5b614747858286016146b0565b92509250509250929050565b61475c81614576565b82525050565b60006020820190506147776000830184614753565b92915050565b600080600060608486031215614796576147956143f6565b5b60006147a48682870161464c565b93505060206147b58682870161464c565b92505060406147c686828701614597565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61480d8261450a565b810181811067ffffffffffffffff8211171561482c5761482b6147d5565b5b80604052505050565b600061483f6143ec565b905061484b8282614804565b919050565b600067ffffffffffffffff82111561486b5761486a6147d5565b5b6148748261450a565b9050602081019050919050565b82818337600083830152505050565b60006148a361489e84614850565b614835565b9050828152602081018484840111156148bf576148be6147d0565b5b6148ca848285614881565b509392505050565b600082601f8301126148e7576148e66146a1565b5b81356148f7848260208601614890565b91505092915050565b600060208284031215614916576149156143f6565b5b600082013567ffffffffffffffff811115614934576149336143fb565b5b614940848285016148d2565b91505092915050565b60006020828403121561495f5761495e6143f6565b5b600061496d8482850161464c565b91505092915050565b61497f81614485565b811461498a57600080fd5b50565b60008135905061499c81614976565b92915050565b600080604083850312156149b9576149b86143f6565b5b60006149c78582860161464c565b92505060206149d88582860161498d565b9150509250929050565b600067ffffffffffffffff8211156149fd576149fc6147d5565b5b614a068261450a565b9050602081019050919050565b6000614a26614a21846149e2565b614835565b905082815260208101848484011115614a4257614a416147d0565b5b614a4d848285614881565b509392505050565b600082601f830112614a6a57614a696146a1565b5b8135614a7a848260208601614a13565b91505092915050565b60008060008060808587031215614a9d57614a9c6143f6565b5b6000614aab8782880161464c565b9450506020614abc8782880161464c565b9350506040614acd87828801614597565b925050606085013567ffffffffffffffff811115614aee57614aed6143fb565b5b614afa87828801614a55565b91505092959194509250565b60008083601f840112614b1c57614b1b6146a1565b5b8235905067ffffffffffffffff811115614b3957614b386146a6565b5b602083019150836001820283011115614b5557614b546146ab565b5b9250929050565b60008060208385031215614b7357614b726143f6565b5b600083013567ffffffffffffffff811115614b9157614b906143fb565b5b614b9d85828601614b06565b92509250509250929050565b60008060408385031215614bc057614bbf6143f6565b5b6000614bce8582860161464c565b9250506020614bdf8582860161464c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614c3057607f821691505b60208210811415614c4457614c43614be9565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614ca6602c836144c6565b9150614cb182614c4a565b604082019050919050565b60006020820190508181036000830152614cd581614c99565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d386021836144c6565b9150614d4382614cdc565b604082019050919050565b60006020820190508181036000830152614d6781614d2b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614dca6038836144c6565b9150614dd582614d6e565b604082019050919050565b60006020820190508181036000830152614df981614dbd565b9050919050565b7f4f776e61626c653a2043616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e366020836144c6565b9150614e4182614e00565b602082019050919050565b60006020820190508181036000830152614e6581614e29565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614ed582614576565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f0857614f07614e9b565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614f6f6031836144c6565b9150614f7a82614f13565b604082019050919050565b60006020820190508181036000830152614f9e81614f62565b9050919050565b7f547279206d696e74696e67206c65737320746f6b656e73000000000000000000600082015250565b6000614fdb6017836144c6565b9150614fe682614fa5565b602082019050919050565b6000602082019050818103600083015261500a81614fce565b9050919050565b7f526166666c65204d696e74696e67206973206e6f742073746172746564000000600082015250565b6000615047601d836144c6565b915061505282615011565b602082019050919050565b600060208201905081810360008301526150768161503a565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006150b3601e836144c6565b91506150be8261507d565b602082019050919050565b600060208201905081810360008301526150e2816150a6565b9050919050565b7f4e6f7420616c6c6f77656420746f20726166666c65206d696e74000000000000600082015250565b600061511f601a836144c6565b915061512a826150e9565b602082019050919050565b6000602082019050818103600083015261514e81615112565b9050919050565b600061516082614576565b915061516b83614576565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151a05761519f614e9b565b5b828201905092915050565b7f4d61782077616c6c6574206d696e74206c696d69742072656163686564000000600082015250565b60006151e1601d836144c6565b91506151ec826151ab565b602082019050919050565b60006020820190508181036000830152615210816151d4565b9050919050565b600061522282614576565b915061522d83614576565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561526657615265614e9b565b5b828202905092915050565b7f496e636f72726563742070617961626c6520616d6f756e740000000000000000600082015250565b60006152a76018836144c6565b91506152b282615271565b602082019050919050565b600060208201905081810360008301526152d68161529a565b9050919050565b7f5075626c69632073616c65206e6f742073746172746564000000000000000000600082015250565b60006153136017836144c6565b915061531e826152dd565b602082019050919050565b6000602082019050818103600083015261534281615306565b9050919050565b7f4465762073616c65206e6f742073746172746564000000000000000000000000600082015250565b600061537f6014836144c6565b915061538a82615349565b602082019050919050565b600060208201905081810360008301526153ae81615372565b9050919050565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b60006153eb600b836144c6565b91506153f6826153b5565b602082019050919050565b6000602082019050818103600083015261541a816153de565b9050919050565b600061542c82614576565b915061543783614576565b92508282101561544a57615449614e9b565b5b828203905092915050565b7f4465762073616c6520736f6c64206f7574000000000000000000000000000000600082015250565b600061548b6011836144c6565b915061549682615455565b602082019050919050565b600060208201905081810360008301526154ba8161547e565b9050919050565b60006154cc82614576565b915060008214156154e0576154df614e9b565b5b600182039050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000615521601f836144c6565b915061552c826154eb565b602082019050919050565b6000602082019050818103600083015261555081615514565b9050919050565b600081905092915050565b50565b6000615572600083615557565b915061557d82615562565b600082019050919050565b600061559382615565565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006155d3600f836144c6565b91506155de8261559d565b602082019050919050565b60006020820190508181036000830152615602816155c6565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006156656029836144c6565b915061567082615609565b604082019050919050565b6000602082019050818103600083015261569481615658565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006156f7602a836144c6565b91506157028261569b565b604082019050919050565b60006020820190508181036000830152615726816156ea565b9050919050565b7f57686974656c6973742073616c65206973206e6f742073746172746564000000600082015250565b6000615763601d836144c6565b915061576e8261572d565b602082019050919050565b6000602082019050818103600083015261579281615756565b9050919050565b7f4e6f7420616c6c6f77656420746f2077686974656c697374206d696e74000000600082015250565b60006157cf601d836144c6565b91506157da82615799565b602082019050919050565b600060208201905081810360008301526157fe816157c2565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461583281614c18565b61583c8186615805565b9450600182166000811461585757600181146158685761589b565b60ff1983168652818601935061589b565b61587185615810565b60005b8381101561589357815481890152600182019150602081019050615874565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006158da600183615805565b91506158e5826158a4565b600182019050919050565b60006158fb826144bb565b6159058185615805565b93506159158185602086016144d7565b80840191505092915050565b600061592d8286615825565b9150615938826158cd565b915061594482856158f0565b91506159508284615825565b9150819050949350505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006159b9602c836144c6565b91506159c48261595d565b604082019050919050565b600060208201905081810360008301526159e8816159ac565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615a4b6029836144c6565b9150615a56826159ef565b604082019050919050565b60006020820190508181036000830152615a7a81615a3e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615add6024836144c6565b9150615ae882615a81565b604082019050919050565b60006020820190508181036000830152615b0c81615ad0565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615b496019836144c6565b9150615b5482615b13565b602082019050919050565b60006020820190508181036000830152615b7881615b3c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615bdb6032836144c6565b9150615be682615b7f565b604082019050919050565b60006020820190508181036000830152615c0a81615bce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615c4b82614576565b9150615c5683614576565b925082615c6657615c65615c11565b5b828204905092915050565b6000615c7c82614576565b9150615c8783614576565b925082615c9757615c96615c11565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615cc982615ca2565b615cd38185615cad565b9350615ce38185602086016144d7565b615cec8161450a565b840191505092915050565b6000608082019050615d0c600083018761460b565b615d19602083018661460b565b615d266040830185614753565b8181036060830152615d388184615cbe565b905095945050505050565b600081519050615d528161442c565b92915050565b600060208284031215615d6e57615d6d6143f6565b5b6000615d7c84828501615d43565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615dbb6020836144c6565b9150615dc682615d85565b602082019050919050565b60006020820190508181036000830152615dea81615dae565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615e27601c836144c6565b9150615e3282615df1565b602082019050919050565b60006020820190508181036000830152615e5681615e1a565b905091905056fea264697066735822122006078760f5cc693b21cfa4669f1d7647078722c0fb1e4b36511e0be95dea9c4064736f6c634300080c0033
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.