ETH Price: $3,421.83 (-1.67%)
Gas: 5 Gwei

Token

Mintech (MINTECH)
 

Overview

Max Total Supply

0 MINTECH

Holders

298

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
shadyoak.eth
Balance
1 MINTECH
0x65aa9d769edbcc170aced9dceed464f19ed755a7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Mint all your favourite ETH drops, at lightning speed and most friendly way with MinTech.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MinTech

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";

import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Context.sol";

import "@openzeppelin/contracts/access/Ownable.sol";

error MintPriceNotPaid();

/*
      ___                       ___           ___           ___           ___           ___     
     /\__\          ___        /\__\         /\  \         /\  \         /\  \         /\__\    
    /::|  |        /\  \      /::|  |        \:\  \       /::\  \       /::\  \       /:/  /    
   /:|:|  |        \:\  \    /:|:|  |         \:\  \     /:/\:\  \     /:/\:\  \     /:/__/     
  /:/|:|__|__      /::\__\  /:/|:|  |__       /::\  \   /::\~\:\  \   /:/  \:\  \   /::\  \ ___ 
 /:/ |::::\__\  __/:/\/__/ /:/ |:| /\__\     /:/\:\__\ /:/\:\ \:\__\ /:/__/ \:\__\ /:/\:\  /\__\
 \/__/~~/:/  / /\/:/  /    \/__|:|/:/  /    /:/  \/__/ \:\~\:\ \/__/ \:\  \  \/__/ \/__\:\/:/  /
       /:/  /  \::/__/         |:/:/  /    /:/  /       \:\ \:\__\    \:\  \            \::/  / 
      /:/  /    \:\__\         |::/  /     \/__/         \:\ \/__/     \:\  \           /:/  /  
     /:/  /      \/__/         /:/  /                     \:\__\        \:\__\         /:/  /   
     \/__/                     \/__/                       \/__/         \/__/         \/__/  
                                                                                            
*/ 
/// @title The Best Web3 Automation Tool!
/// @author karlssonunderthebridge#3415
/// @notice Welcome and Congrats on joining MinTech!

contract MinTech is ERC721, Ownable {

    using Strings for uint;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    string private _tokenURI;
    string private _contractURI;
    
    uint256 public maxSupply = 300;
    uint256 public tokenPrice = 0.4 ether;
    uint256 public renewalPrice = 0.2 ether;

    bool public privateSaleActive = false;
    bool public saleActive = false;
    bool public transfersEnabled = true;
    bool public renewalsEnabled = true;
    bool public assertRenewed = true;

    mapping(address => bool) whitelistedAddresses;
    mapping(uint => uint256) public expiryTime;

    event tokenMinted(uint256 tokenId, uint256 _expiryTime);
    event tokenRenew(uint256 tokenId, uint256 _expiryTime);

    constructor(string memory tokenURI_, string memory contractURI_) ERC721("Mintech", "MINTECH") {
        _tokenURI = tokenURI_;
        _contractURI = contractURI_;
    }

    modifier noHaxxor() {
        require(msg.sender == tx.origin, "Haxxor access blocked");
        _;
    }

    function publicMint() external payable noHaxxor {
        uint256 tokenIndex = _tokenIdCounter.current() + 1;

        require(saleActive, "Sale is not active.");
        if (msg.value < tokenPrice) { revert MintPriceNotPaid(); }
        require(tokenIndex < maxSupply, "Minting this token would exceed total supply.");

        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenIndex);
        expiryTime[tokenIndex] = block.timestamp + 30 days;
        emit tokenMinted(tokenIndex, expiryTime[tokenIndex]);
    }

    function whitelistMint() public payable noHaxxor {
        uint256 tokenIndex = _tokenIdCounter.current() + 1;

        require(privateSaleActive, "Private sale is currently not active.");
        require(whitelistedAddresses[msg.sender], "Wallet is not whitelisted.");
        if (msg.value < tokenPrice) { revert MintPriceNotPaid(); }
        require(tokenIndex < maxSupply, "Minting this token would exceed total supply.");

        whitelistedAddresses[msg.sender] = false;
        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenIndex);
        expiryTime[tokenIndex] = block.timestamp + 30 days;
        emit tokenMinted(tokenIndex, expiryTime[tokenIndex]);
    }

    function renewToken(uint _tokenId) public payable noHaxxor {
        require(msg.value == renewalPrice, "Incorrect amount of ether sent.");
        require(_exists(_tokenId), "Token does not exist.");
        require(renewalsEnabled, "Renewals are currently disabled");

        uint256 _currentexpiryTime = expiryTime[_tokenId];

        if (block.timestamp > _currentexpiryTime) {
            expiryTime[_tokenId] = block.timestamp + 30 days;
        } else {
            expiryTime[_tokenId] += 30 days;
        }
        emit tokenRenew(_tokenId, expiryTime[_tokenId]);
    }

    //Admin functions

    function ownerOnlyMint(address _receiver) public onlyOwner {
        uint tokenIndex = _tokenIdCounter.current() + 1;

        require(_receiver != address(0), "Receiver cannot be zero address.");
        require(tokenIndex <= maxSupply, "Minting this token would exceed total supply.");

        if (msg.sender != _receiver) {
            require(balanceOf(_receiver) == 0, "Individual already owns a token.");
        }

        _tokenIdCounter.increment();

        _safeMint(_receiver, tokenIndex);
        expiryTime[tokenIndex] = block.timestamp + 30 days;
        emit tokenMinted(tokenIndex, expiryTime[tokenIndex]);

    }

    function ownerBatchMint(address[] calldata _addresses) public onlyOwner {
        uint256 quantity = _addresses.length;
        for (uint256 i=0; i < quantity;) {
            ownerOnlyMint(_addresses[i]);
            unchecked {++i;}
        }
    }

    function ownerRenewToken(uint _tokenId) external onlyOwner {
        require(_exists(_tokenId), "Token does not exist.");
        
        uint _currentexpiryTime = expiryTime[_tokenId];

        if (block.timestamp > _currentexpiryTime) {
            expiryTime[_tokenId] = block.timestamp + 30 days;
        } else {
            expiryTime[_tokenId] += 30 days;
        }
        emit tokenRenew(_tokenId, expiryTime[_tokenId]);
    }

    function ownerBatchRenewToken(uint[] calldata _tokenIds) external onlyOwner {
        uint256 _tokens_length = _tokenIds.length;
        uint256 i = 0;
        for (i; i < _tokens_length;) {
            this.ownerRenewToken(_tokenIds[i]);
            unchecked {++i;}
        }
    }

    function changeMintPrice(uint256 _changedMintPrice) external onlyOwner {
        require(tokenPrice != _changedMintPrice, "Price did not change.");
        tokenPrice = _changedMintPrice;
    }

    function addWhitelist(address[] calldata _addresses) public onlyOwner {
        uint256 _address_length = _addresses.length;
        uint256 i = 0;
        for (i; i < _address_length;) {
            whitelistedAddresses[_addresses[i]] = true;
            unchecked {++i;}
        }
    }

    function removeWhitelist(address[] calldata _addresses) public onlyOwner {
        uint256 _address_length = _addresses.length;
        uint256 i = 0;
        for (i; i < _address_length;) {
            whitelistedAddresses[_addresses[i]] = false;
            unchecked {++i;}
        }
    }

    function setRenewalsActive(bool _state) external onlyOwner {
        renewalsEnabled = _state;
    }

    function setRenewalsAssert(bool _state) external onlyOwner {
        assertRenewed = _state;
    }

    function changeRenewalPrice(uint256 _changedRenewalPrice) external onlyOwner {
        require(renewalPrice != _changedRenewalPrice, "Price did not change.");
        renewalPrice = _changedRenewalPrice;
    }

    function addTokenSupply(uint256 _newTokens) external onlyOwner {
        maxSupply += _newTokens;
    }

    function removeTokens(uint256 _numTokens) external onlyOwner {
        require(maxSupply - _numTokens >= currentSupply(), "Supply cannot fall below minted tokens.");
        maxSupply -= _numTokens;
    }

    function setTokenURI(string calldata tokenURI_) external onlyOwner {
        _tokenURI = tokenURI_;
    }

    function setContractURI(string calldata contractURI_) external onlyOwner {
        _contractURI = contractURI_;
    }

    function withdrawBalance() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
	}

    function startSale() public onlyOwner {
        saleActive = !saleActive;
    }

    function startPrivateSale() public onlyOwner {
        privateSaleActive = !privateSaleActive;
    }

    function activateTransfers() public onlyOwner {
        transfersEnabled = !transfersEnabled;
    }

    //View Functions

    function hasWhitelist(address _address) public view returns (bool) {
        return whitelistedAddresses[_address];
    }

    function authenticateUser(address _user, uint256 _tokenId) public view returns (bool) {
        require(_exists(_tokenId), "Token does not exist.");
        require(expiryTime[_tokenId] > block.timestamp || !renewalsEnabled, "Token has expired. Please renew your token!");

        return _user == ownerOf(_tokenId) ? true : false;
    }

    function authenticateUser(uint256 _tokenId) public view returns (bool) {
        require(_exists(_tokenId), "Token does not exist.");
        require(expiryTime[_tokenId] > block.timestamp  || !renewalsEnabled, "Token has expired. Please renew your token!");

        return msg.sender == ownerOf(_tokenId) ? true : false;
    }

    function currentSupply() public view returns (uint) {
        return _tokenIdCounter.current();
    }

    function tokenURI(uint _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(_tokenURI, _tokenId.toString()));
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(transfersEnabled, "Transfers are disabled");
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        require(expiryTime[tokenId] > block.timestamp || !renewalsEnabled || !assertRenewed, "Token is expired.");
        _safeTransfer(from, to, tokenId, _data);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        require(transfersEnabled, "Transfers are disabled");
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        require(expiryTime[tokenId] > block.timestamp || !renewalsEnabled || !assertRenewed, "Token is expired.");
        _transfer(from, to, tokenId);
    }

    receive() external payable {}
}

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 4 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 5 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 6 of 12 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 11 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 12 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenURI_","type":"string"},{"internalType":"string","name":"contractURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MintPriceNotPaid","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_expiryTime","type":"uint256"}],"name":"tokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_expiryTime","type":"uint256"}],"name":"tokenRenew","type":"event"},{"inputs":[],"name":"activateTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTokens","type":"uint256"}],"name":"addTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addWhitelist","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":[],"name":"assertRenewed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"authenticateUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"authenticateUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_changedMintPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_changedRenewalPrice","type":"uint256"}],"name":"changeRenewalPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"expiryTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"hasWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"ownerBatchRenewToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"ownerOnlyMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerRenewToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"privateSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"removeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"renewToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renewalPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renewalsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRenewalsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRenewalsAssert","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenURI_","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transfersEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405261012c600a5567058d15e176280000600b556702c68af0bb140000600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff0219169083151502179055506001600d60036101000a81548160ff0219169083151502179055506001600d60046101000a81548160ff021916908315150217905550348015620000b657600080fd5b5060405162005861380380620058618339818101604052810190620000dc91906200041b565b6040518060400160405280600781526020017f4d696e74656368000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4d494e54454348000000000000000000000000000000000000000000000000008152508160009081620001599190620006eb565b5080600190816200016b9190620006eb565b5050506200018e62000182620001ba60201b60201c565b620001c260201b60201c565b81600890816200019f9190620006eb565b508060099081620001b19190620006eb565b505050620007d2565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002f182620002a6565b810181811067ffffffffffffffff82111715620003135762000312620002b7565b5b80604052505050565b60006200032862000288565b9050620003368282620002e6565b919050565b600067ffffffffffffffff821115620003595762000358620002b7565b5b6200036482620002a6565b9050602081019050919050565b60005b838110156200039157808201518184015260208101905062000374565b60008484015250505050565b6000620003b4620003ae846200033b565b6200031c565b905082815260208101848484011115620003d357620003d2620002a1565b5b620003e084828562000371565b509392505050565b600082601f8301126200040057620003ff6200029c565b5b8151620004128482602086016200039d565b91505092915050565b6000806040838503121562000435576200043462000292565b5b600083015167ffffffffffffffff81111562000456576200045562000297565b5b6200046485828601620003e8565b925050602083015167ffffffffffffffff81111562000488576200048762000297565b5b6200049685828601620003e8565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f357607f821691505b602082108103620005095762000508620004ab565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000534565b6200057f868362000534565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005cc620005c6620005c08462000597565b620005a1565b62000597565b9050919050565b6000819050919050565b620005e883620005ab565b62000600620005f782620005d3565b84845462000541565b825550505050565b600090565b6200061762000608565b62000624818484620005dd565b505050565b5b818110156200064c57620006406000826200060d565b6001810190506200062a565b5050565b601f8211156200069b5762000665816200050f565b620006708462000524565b8101602085101562000680578190505b620006986200068f8562000524565b83018262000629565b50505b505050565b600082821c905092915050565b6000620006c060001984600802620006a0565b1980831691505092915050565b6000620006db8383620006ad565b9150826002028217905092915050565b620006f682620004a0565b67ffffffffffffffff811115620007125762000711620002b7565b5b6200071e8254620004da565b6200072b82828562000650565b600060209050601f8311600181146200076357600084156200074e578287015190505b6200075a8582620006cd565b865550620007ca565b601f19841662000773866200050f565b60005b828110156200079d5784890151825560018201915060208501945060208101905062000776565b86831015620007bd5784890151620007b9601f891682620006ad565b8355505b6001600288020188555050505b505050505050565b61507f80620007e26000396000f3fe6080604052600436106102e85760003560e01c80637ff9b59611610190578063c0c207c0116100dc578063e2b6304a11610095578063edac985b1161006f578063edac985b14610ab8578063f18d4dbb14610ae1578063f2fde38b14610b0a578063faab3def14610b33576102ef565b8063e2b6304a14610a27578063e8a3d48514610a50578063e985e9c514610a7b576102ef565b8063c0c207c014610905578063c87b56dd14610930578063cdffd6ed1461096d578063d5abeb01146109aa578063d854b991146109d5578063e0df5b6f146109fe576102ef565b8063a22cb46511610149578063b8cb65ee11610123578063b8cb65ee1461084b578063bb026e3214610874578063be010c401461089d578063bef97c87146108da576102ef565b8063a22cb465146107e2578063b66a0e5d1461080b578063b88d4fde14610822576102ef565b80637ff9b596146106f1578063804f43cd1461071c5780638cdb7e8b146107265780638da5cb5b14610763578063938e3d7b1461078e57806395d89b41146107b7576102ef565b80633fd173661161024f57806368428a1b1161020857806371e23947116101e257806371e2394714610654578063771282f61461067057806379b345d21461069b5780637b55297a146106c6576102ef565b806368428a1b146105d557806370a0823114610600578063715018a61461063d576102ef565b80633fd17366146104c957806342842e0e146104f25780634e5db1651461051b5780635fd8c710146105585780636352211e1461056f57806367805d71146105ac576102ef565b806326092b83116102a157806326092b83146104145780632a237bb61461041e5780632fb9329814610449578063338dbf59146104725780633a62244f146104895780633e262e5a146104a0576102ef565b806301ffc9a7146102f457806306fdde0314610331578063081812fc1461035c578063095ea7b31461039957806323245216146103c257806323b872dd146103eb576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b600480360381019061031691906134ce565b610b5c565b6040516103289190613516565b60405180910390f35b34801561033d57600080fd5b50610346610c3e565b60405161035391906135c1565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190613619565b610cd0565b6040516103909190613687565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb91906136ce565b610d16565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613773565b610e2d565b005b3480156103f757600080fd5b50610412600480360381019061040d91906137c0565b610ed8565b005b61041c61100c565b005b34801561042a57600080fd5b506104336111ec565b6040516104409190613516565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b919061383f565b6111ff565b005b34801561047e57600080fd5b50610487611224565b005b34801561049557600080fd5b5061049e611258565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190613773565b61128c565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190613619565b6112e8565b005b3480156104fe57600080fd5b50610519600480360381019061051491906137c0565b61133e565b005b34801561052757600080fd5b50610542600480360381019061053d91906136ce565b61135e565b60405161054f9190613516565b60405180910390f35b34801561056457600080fd5b5061056d611462565b005b34801561057b57600080fd5b5061059660048036038101906105919190613619565b6114b3565b6040516105a39190613687565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce919061386c565b611564565b005b3480156105e157600080fd5b506105ea611743565b6040516105f79190613516565b60405180910390f35b34801561060c57600080fd5b506106276004803603810190610622919061386c565b611756565b60405161063491906138a8565b60405180910390f35b34801561064957600080fd5b5061065261180d565b005b61066e60048036038101906106699190613619565b611821565b005b34801561067c57600080fd5b50610685611a33565b60405161069291906138a8565b60405180910390f35b3480156106a757600080fd5b506106b0611a44565b6040516106bd9190613516565b60405180910390f35b3480156106d257600080fd5b506106db611a57565b6040516106e891906138a8565b60405180910390f35b3480156106fd57600080fd5b50610706611a5d565b60405161071391906138a8565b60405180910390f35b610724611a63565b005b34801561073257600080fd5b5061074d6004803603810190610748919061386c565b611d27565b60405161075a9190613516565b60405180910390f35b34801561076f57600080fd5b50610778611d7d565b6040516107859190613687565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613919565b611da7565b005b3480156107c357600080fd5b506107cc611dc5565b6040516107d991906135c1565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190613966565b611e57565b005b34801561081757600080fd5b50610820611e6d565b005b34801561082e57600080fd5b5061084960048036038101906108449190613ad6565b611ea1565b005b34801561085757600080fd5b50610872600480360381019061086d9190613619565b611fd7565b005b34801561088057600080fd5b5061089b60048036038101906108969190613619565b612052565b005b3480156108a957600080fd5b506108c460048036038101906108bf9190613619565b6120a8565b6040516108d191906138a8565b60405180910390f35b3480156108e657600080fd5b506108ef6120c0565b6040516108fc9190613516565b60405180910390f35b34801561091157600080fd5b5061091a6120d3565b6040516109279190613516565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190613619565b6120e6565b60405161096491906135c1565b60405180910390f35b34801561097957600080fd5b50610994600480360381019061098f9190613619565b612162565b6040516109a19190613516565b60405180910390f35b3480156109b657600080fd5b506109bf612265565b6040516109cc91906138a8565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190613baf565b61226b565b005b348015610a0a57600080fd5b50610a256004803603810190610a209190613919565b61231b565b005b348015610a3357600080fd5b50610a4e6004803603810190610a49919061383f565b612339565b005b348015610a5c57600080fd5b50610a6561235e565b604051610a7291906135c1565b60405180910390f35b348015610a8757600080fd5b50610aa26004803603810190610a9d9190613bfc565b6123f0565b604051610aaf9190613516565b60405180910390f35b348015610ac457600080fd5b50610adf6004803603810190610ada9190613773565b612484565b005b348015610aed57600080fd5b50610b086004803603810190610b039190613619565b61252f565b005b348015610b1657600080fd5b50610b316004803603810190610b2c919061386c565b612553565b005b348015610b3f57600080fd5b50610b5a6004803603810190610b559190613619565b6125d6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c2757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c375750610c36826126ef565b5b9050919050565b606060008054610c4d90613c6b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7990613c6b565b8015610cc65780601f10610c9b57610100808354040283529160200191610cc6565b820191906000526020600020905b815481529060010190602001808311610ca957829003601f168201915b5050505050905090565b6000610cdb82612759565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d21826114b3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890613d0e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db06127a4565b73ffffffffffffffffffffffffffffffffffffffff161480610ddf5750610dde81610dd96127a4565b6123f0565b5b610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1590613da0565b60405180910390fd5b610e2883836127ac565b505050565b610e35612865565b600082829050905060005b81811015610ed2576000600e6000868685818110610e6157610e60613dc0565b5b9050602002016020810190610e76919061386c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050610e40565b50505050565b600d60029054906101000a900460ff16610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90613e3b565b60405180910390fd5b610f38610f326127a4565b826128e3565b610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90613ecd565b60405180910390fd5b42600f6000838152602001908152602001600020541180610fa55750600d60039054906101000a900460ff16155b80610fbd5750600d60049054906101000a900460ff16155b610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390613f39565b60405180910390fd5b611007838383612978565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190613fa5565b60405180910390fd5b600060016110886007612bde565b6110929190613ff4565b9050600d60019054906101000a900460ff166110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90614074565b60405180910390fd5b600b5434101561111f576040517f21e191e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548110611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90614106565b60405180910390fd5b61116d6007612bec565b6111773382612c02565b62278d00426111869190613ff4565b600f6000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479281600f6000848152602001908152602001600020546040516111e1929190614126565b60405180910390a150565b600d60009054906101000a900460ff1681565b611207612865565b80600d60036101000a81548160ff02191690831515021790555050565b61122c612865565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b611260612865565b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b611294612865565b600082829050905060005b818110156112e2576112d78484838181106112bd576112bc613dc0565b5b90506020020160208101906112d2919061386c565b611564565b80600101905061129f565b50505050565b6112f0612865565b80600b5403611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b9061419b565b60405180910390fd5b80600b8190555050565b61135983838360405180602001604052806000815250611ea1565b505050565b600061136982612c20565b6113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90614207565b60405180910390fd5b42600f60008481526020019081526020016000205411806113d65750600d60039054906101000a900460ff16155b611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90614299565b60405180910390fd5b61141e826114b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461145757600061145a565b60015b905092915050565b61146a612865565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156114b0573d6000803e3d6000fd5b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614305565b60405180910390fd5b80915050919050565b61156c612865565b6000600161157a6007612bde565b6115849190613ff4565b9050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90614371565b60405180910390fd5b600a5481111561163a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163190614106565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116b957600061167883611756565b146116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af906143dd565b60405180910390fd5b5b6116c36007612bec565b6116cd8282612c02565b62278d00426116dc9190613ff4565b600f6000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479281600f600084815260200190815260200160002054604051611737929190614126565b60405180910390a15050565b600d60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd9061446f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611815612865565b61181f6000612c8c565b565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613fa5565b60405180910390fd5b600c5434146118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca906144db565b60405180910390fd5b6118dc81612c20565b61191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290614207565b60405180910390fd5b600d60039054906101000a900460ff1661196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190614547565b60405180910390fd5b6000600f6000838152602001908152602001600020549050804211156119b55762278d00426119999190613ff4565b600f6000848152602001908152602001600020819055506119e3565b62278d00600f600084815260200190815260200160002060008282546119db9190613ff4565b925050819055505b7fc5b22e9a67a130743449e00b09e4a00a944ca980e143df60ab742426c534c4f982600f600085815260200190815260200160002054604051611a27929190614126565b60405180910390a15050565b6000611a3f6007612bde565b905090565b600d60039054906101000a900460ff1681565b600c5481565b600b5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890613fa5565b60405180910390fd5b60006001611adf6007612bde565b611ae99190613ff4565b9050600d60009054906101000a900460ff16611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b31906145d9565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd90614645565b60405180910390fd5b600b54341015611c02576040517f21e191e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548110611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d90614106565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611ca86007612bec565b611cb23382612c02565b62278d0042611cc19190613ff4565b600f6000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479281600f600084815260200190815260200160002054604051611d1c929190614126565b60405180910390a150565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611daf612865565b818160099182611dc092919061481c565b505050565b606060018054611dd490613c6b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0090613c6b565b8015611e4d5780601f10611e2257610100808354040283529160200191611e4d565b820191906000526020600020905b815481529060010190602001808311611e3057829003601f168201915b5050505050905090565b611e69611e626127a4565b8383612d52565b5050565b611e75612865565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600d60029054906101000a900460ff16611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790613e3b565b60405180910390fd5b611f01611efb6127a4565b836128e3565b611f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3790613ecd565b60405180910390fd5b42600f6000848152602001908152602001600020541180611f6e5750600d60039054906101000a900460ff16155b80611f865750600d60049054906101000a900460ff16155b611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90613f39565b60405180910390fd5b611fd184848484612ebe565b50505050565b611fdf612865565b611fe7611a33565b81600a54611ff591906148ec565b1015612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90614992565b60405180910390fd5b80600a600082825461204891906148ec565b9250508190555050565b61205a612865565b80600c540361209e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120959061419b565b60405180910390fd5b80600c8190555050565b600f6020528060005260406000206000915090505481565b600d60029054906101000a900460ff1681565b600d60049054906101000a900460ff1681565b60606120f182612c20565b612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790614207565b60405180910390fd5b600861213b83612f1a565b60405160200161214c929190614a71565b6040516020818303038152906040529050919050565b600061216d82612c20565b6121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a390614207565b60405180910390fd5b42600f60008481526020019081526020016000205411806121da5750600d60039054906101000a900460ff16155b612219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221090614299565b60405180910390fd5b612222826114b3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461225b57600061225e565b60015b9050919050565b600a5481565b612273612865565b600082829050905060005b81811015612315573073ffffffffffffffffffffffffffffffffffffffff1663faab3def8585848181106122b5576122b4613dc0565b5b905060200201356040518263ffffffff1660e01b81526004016122d891906138a8565b600060405180830381600087803b1580156122f257600080fd5b505af1158015612306573d6000803e3d6000fd5b5050505080600101905061227e565b50505050565b612323612865565b81816008918261233492919061481c565b505050565b612341612865565b80600d60046101000a81548160ff02191690831515021790555050565b60606009805461236d90613c6b565b80601f016020809104026020016040519081016040528092919081815260200182805461239990613c6b565b80156123e65780601f106123bb576101008083540402835291602001916123e6565b820191906000526020600020905b8154815290600101906020018083116123c957829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61248c612865565b600082829050905060005b81811015612529576001600e60008686858181106124b8576124b7613dc0565b5b90506020020160208101906124cd919061386c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050612497565b50505050565b612537612865565b80600a60008282546125499190613ff4565b9250508190555050565b61255b612865565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c190614b07565b60405180910390fd5b6125d381612c8c565b50565b6125de612865565b6125e781612c20565b612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d90614207565b60405180910390fd5b6000600f6000838152602001908152602001600020549050804211156126715762278d00426126559190613ff4565b600f60008481526020019081526020016000208190555061269f565b62278d00600f600084815260200190815260200160002060008282546126979190613ff4565b925050819055505b7fc5b22e9a67a130743449e00b09e4a00a944ca980e143df60ab742426c534c4f982600f6000858152602001908152602001600020546040516126e3929190614126565b60405180910390a15050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61276281612c20565b6127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279890614305565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661281f836114b3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61286d6127a4565b73ffffffffffffffffffffffffffffffffffffffff1661288b611d7d565b73ffffffffffffffffffffffffffffffffffffffff16146128e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d890614b73565b60405180910390fd5b565b6000806128ef836114b3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612931575061293081856123f0565b5b8061296f57508373ffffffffffffffffffffffffffffffffffffffff1661295784610cd0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612998826114b3565b73ffffffffffffffffffffffffffffffffffffffff16146129ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e590614c05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5490614c97565b60405180910390fd5b612a6883838361307a565b612a736000826127ac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac391906148ec565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b1a9190613ff4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bd983838361307f565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612c1c828260405180602001604052806000815250613084565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db790614d03565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612eb19190613516565b60405180910390a3505050565b612ec9848484612978565b612ed5848484846130df565b612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b90614d95565b60405180910390fd5b50505050565b606060008203612f61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613075565b600082905060005b60008214612f93578080612f7c90614db5565b915050600a82612f8c9190614e2c565b9150612f69565b60008167ffffffffffffffff811115612faf57612fae6139ab565b5b6040519080825280601f01601f191660200182016040528015612fe15781602001600182028036833780820191505090505b5090505b6000851461306e57600182612ffa91906148ec565b9150600a856130099190614e5d565b60306130159190613ff4565b60f81b81838151811061302b5761302a613dc0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130679190614e2c565b9450612fe5565b8093505050505b919050565b505050565b505050565b61308e8383613266565b61309b60008484846130df565b6130da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d190614d95565b60405180910390fd5b505050565b60006131008473ffffffffffffffffffffffffffffffffffffffff1661343f565b15613259578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131296127a4565b8786866040518563ffffffff1660e01b815260040161314b9493929190614ee3565b6020604051808303816000875af192505050801561318757506040513d601f19601f820116820180604052508101906131849190614f44565b60015b613209573d80600081146131b7576040519150601f19603f3d011682016040523d82523d6000602084013e6131bc565b606091505b506000815103613201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f890614d95565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061325e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cc90614fbd565b60405180910390fd5b6132de81612c20565b1561331e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331590615029565b60405180910390fd5b61332a6000838361307a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461337a9190613ff4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461343b6000838361307f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134ab81613476565b81146134b657600080fd5b50565b6000813590506134c8816134a2565b92915050565b6000602082840312156134e4576134e361346c565b5b60006134f2848285016134b9565b91505092915050565b60008115159050919050565b613510816134fb565b82525050565b600060208201905061352b6000830184613507565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561356b578082015181840152602081019050613550565b60008484015250505050565b6000601f19601f8301169050919050565b600061359382613531565b61359d818561353c565b93506135ad81856020860161354d565b6135b681613577565b840191505092915050565b600060208201905081810360008301526135db8184613588565b905092915050565b6000819050919050565b6135f6816135e3565b811461360157600080fd5b50565b600081359050613613816135ed565b92915050565b60006020828403121561362f5761362e61346c565b5b600061363d84828501613604565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061367182613646565b9050919050565b61368181613666565b82525050565b600060208201905061369c6000830184613678565b92915050565b6136ab81613666565b81146136b657600080fd5b50565b6000813590506136c8816136a2565b92915050565b600080604083850312156136e5576136e461346c565b5b60006136f3858286016136b9565b925050602061370485828601613604565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126137335761373261370e565b5b8235905067ffffffffffffffff8111156137505761374f613713565b5b60208301915083602082028301111561376c5761376b613718565b5b9250929050565b6000806020838503121561378a5761378961346c565b5b600083013567ffffffffffffffff8111156137a8576137a7613471565b5b6137b48582860161371d565b92509250509250929050565b6000806000606084860312156137d9576137d861346c565b5b60006137e7868287016136b9565b93505060206137f8868287016136b9565b925050604061380986828701613604565b9150509250925092565b61381c816134fb565b811461382757600080fd5b50565b60008135905061383981613813565b92915050565b6000602082840312156138555761385461346c565b5b60006138638482850161382a565b91505092915050565b6000602082840312156138825761388161346c565b5b6000613890848285016136b9565b91505092915050565b6138a2816135e3565b82525050565b60006020820190506138bd6000830184613899565b92915050565b60008083601f8401126138d9576138d861370e565b5b8235905067ffffffffffffffff8111156138f6576138f5613713565b5b60208301915083600182028301111561391257613911613718565b5b9250929050565b600080602083850312156139305761392f61346c565b5b600083013567ffffffffffffffff81111561394e5761394d613471565b5b61395a858286016138c3565b92509250509250929050565b6000806040838503121561397d5761397c61346c565b5b600061398b858286016136b9565b925050602061399c8582860161382a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139e382613577565b810181811067ffffffffffffffff82111715613a0257613a016139ab565b5b80604052505050565b6000613a15613462565b9050613a2182826139da565b919050565b600067ffffffffffffffff821115613a4157613a406139ab565b5b613a4a82613577565b9050602081019050919050565b82818337600083830152505050565b6000613a79613a7484613a26565b613a0b565b905082815260208101848484011115613a9557613a946139a6565b5b613aa0848285613a57565b509392505050565b600082601f830112613abd57613abc61370e565b5b8135613acd848260208601613a66565b91505092915050565b60008060008060808587031215613af057613aef61346c565b5b6000613afe878288016136b9565b9450506020613b0f878288016136b9565b9350506040613b2087828801613604565b925050606085013567ffffffffffffffff811115613b4157613b40613471565b5b613b4d87828801613aa8565b91505092959194509250565b60008083601f840112613b6f57613b6e61370e565b5b8235905067ffffffffffffffff811115613b8c57613b8b613713565b5b602083019150836020820283011115613ba857613ba7613718565b5b9250929050565b60008060208385031215613bc657613bc561346c565b5b600083013567ffffffffffffffff811115613be457613be3613471565b5b613bf085828601613b59565b92509250509250929050565b60008060408385031215613c1357613c1261346c565b5b6000613c21858286016136b9565b9250506020613c32858286016136b9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c8357607f821691505b602082108103613c9657613c95613c3c565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cf860218361353c565b9150613d0382613c9c565b604082019050919050565b60006020820190508181036000830152613d2781613ceb565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613d8a603e8361353c565b9150613d9582613d2e565b604082019050919050565b60006020820190508181036000830152613db981613d7d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5472616e7366657273206172652064697361626c656400000000000000000000600082015250565b6000613e2560168361353c565b9150613e3082613def565b602082019050919050565b60006020820190508181036000830152613e5481613e18565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613eb760318361353c565b9150613ec282613e5b565b604082019050919050565b60006020820190508181036000830152613ee681613eaa565b9050919050565b7f546f6b656e20697320657870697265642e000000000000000000000000000000600082015250565b6000613f2360118361353c565b9150613f2e82613eed565b602082019050919050565b60006020820190508181036000830152613f5281613f16565b9050919050565b7f486178786f722061636365737320626c6f636b65640000000000000000000000600082015250565b6000613f8f60158361353c565b9150613f9a82613f59565b602082019050919050565b60006020820190508181036000830152613fbe81613f82565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fff826135e3565b915061400a836135e3565b925082820190508082111561402257614021613fc5565b5b92915050565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b600061405e60138361353c565b915061406982614028565b602082019050919050565b6000602082019050818103600083015261408d81614051565b9050919050565b7f4d696e74696e67207468697320746f6b656e20776f756c64206578636565642060008201527f746f74616c20737570706c792e00000000000000000000000000000000000000602082015250565b60006140f0602d8361353c565b91506140fb82614094565b604082019050919050565b6000602082019050818103600083015261411f816140e3565b9050919050565b600060408201905061413b6000830185613899565b6141486020830184613899565b9392505050565b7f507269636520646964206e6f74206368616e67652e0000000000000000000000600082015250565b600061418560158361353c565b91506141908261414f565b602082019050919050565b600060208201905081810360008301526141b481614178565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006141f160158361353c565b91506141fc826141bb565b602082019050919050565b60006020820190508181036000830152614220816141e4565b9050919050565b7f546f6b656e2068617320657870697265642e20506c656173652072656e65772060008201527f796f757220746f6b656e21000000000000000000000000000000000000000000602082015250565b6000614283602b8361353c565b915061428e82614227565b604082019050919050565b600060208201905081810360008301526142b281614276565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006142ef60188361353c565b91506142fa826142b9565b602082019050919050565b6000602082019050818103600083015261431e816142e2565b9050919050565b7f52656365697665722063616e6e6f74206265207a65726f20616464726573732e600082015250565b600061435b60208361353c565b915061436682614325565b602082019050919050565b6000602082019050818103600083015261438a8161434e565b9050919050565b7f496e646976696475616c20616c7265616479206f776e73206120746f6b656e2e600082015250565b60006143c760208361353c565b91506143d282614391565b602082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061445960298361353c565b9150614464826143fd565b604082019050919050565b600060208201905081810360008301526144888161444c565b9050919050565b7f496e636f727265637420616d6f756e74206f662065746865722073656e742e00600082015250565b60006144c5601f8361353c565b91506144d08261448f565b602082019050919050565b600060208201905081810360008301526144f4816144b8565b9050919050565b7f52656e6577616c73206172652063757272656e746c792064697361626c656400600082015250565b6000614531601f8361353c565b915061453c826144fb565b602082019050919050565b6000602082019050818103600083015261456081614524565b9050919050565b7f507269766174652073616c652069732063757272656e746c79206e6f7420616360008201527f746976652e000000000000000000000000000000000000000000000000000000602082015250565b60006145c360258361353c565b91506145ce82614567565b604082019050919050565b600060208201905081810360008301526145f2816145b6565b9050919050565b7f57616c6c6574206973206e6f742077686974656c69737465642e000000000000600082015250565b600061462f601a8361353c565b915061463a826145f9565b602082019050919050565b6000602082019050818103600083015261465e81614622565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026146d27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614695565b6146dc8683614695565b95508019841693508086168417925050509392505050565b6000819050919050565b600061471961471461470f846135e3565b6146f4565b6135e3565b9050919050565b6000819050919050565b614733836146fe565b61474761473f82614720565b8484546146a2565b825550505050565b600090565b61475c61474f565b61476781848461472a565b505050565b5b8181101561478b57614780600082614754565b60018101905061476d565b5050565b601f8211156147d0576147a181614670565b6147aa84614685565b810160208510156147b9578190505b6147cd6147c585614685565b83018261476c565b50505b505050565b600082821c905092915050565b60006147f3600019846008026147d5565b1980831691505092915050565b600061480c83836147e2565b9150826002028217905092915050565b6148268383614665565b67ffffffffffffffff81111561483f5761483e6139ab565b5b6148498254613c6b565b61485482828561478f565b6000601f8311600181146148835760008415614871578287013590505b61487b8582614800565b8655506148e3565b601f19841661489186614670565b60005b828110156148b957848901358255600182019150602085019450602081019050614894565b868310156148d657848901356148d2601f8916826147e2565b8355505b6001600288020188555050505b50505050505050565b60006148f7826135e3565b9150614902836135e3565b925082820390508181111561491a57614919613fc5565b5b92915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b600061497c60278361353c565b915061498782614920565b604082019050919050565b600060208201905081810360008301526149ab8161496f565b9050919050565b600081905092915050565b600081546149ca81613c6b565b6149d481866149b2565b945060018216600081146149ef5760018114614a0457614a37565b60ff1983168652811515820286019350614a37565b614a0d85614670565b60005b83811015614a2f57815481890152600182019150602081019050614a10565b838801955050505b50505092915050565b6000614a4b82613531565b614a5581856149b2565b9350614a6581856020860161354d565b80840191505092915050565b6000614a7d82856149bd565b9150614a898284614a40565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614af160268361353c565b9150614afc82614a95565b604082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b5d60208361353c565b9150614b6882614b27565b602082019050919050565b60006020820190508181036000830152614b8c81614b50565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614bef60258361353c565b9150614bfa82614b93565b604082019050919050565b60006020820190508181036000830152614c1e81614be2565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c8160248361353c565b9150614c8c82614c25565b604082019050919050565b60006020820190508181036000830152614cb081614c74565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614ced60198361353c565b9150614cf882614cb7565b602082019050919050565b60006020820190508181036000830152614d1c81614ce0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614d7f60328361353c565b9150614d8a82614d23565b604082019050919050565b60006020820190508181036000830152614dae81614d72565b9050919050565b6000614dc0826135e3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614df257614df1613fc5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e37826135e3565b9150614e42836135e3565b925082614e5257614e51614dfd565b5b828204905092915050565b6000614e68826135e3565b9150614e73836135e3565b925082614e8357614e82614dfd565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614eb582614e8e565b614ebf8185614e99565b9350614ecf81856020860161354d565b614ed881613577565b840191505092915050565b6000608082019050614ef86000830187613678565b614f056020830186613678565b614f126040830185613899565b8181036060830152614f248184614eaa565b905095945050505050565b600081519050614f3e816134a2565b92915050565b600060208284031215614f5a57614f5961346c565b5b6000614f6884828501614f2f565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614fa760208361353c565b9150614fb282614f71565b602082019050919050565b60006020820190508181036000830152614fd681614f9a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615013601c8361353c565b915061501e82614fdd565b602082019050919050565b6000602082019050818103600083015261504281615006565b905091905056fea2646970667358221220c3ad100b7e010b8c09678dadd15cd2e238ba50c3ec82fd1c5bee59757a27894164736f6c634300081000330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80637ff9b59611610190578063c0c207c0116100dc578063e2b6304a11610095578063edac985b1161006f578063edac985b14610ab8578063f18d4dbb14610ae1578063f2fde38b14610b0a578063faab3def14610b33576102ef565b8063e2b6304a14610a27578063e8a3d48514610a50578063e985e9c514610a7b576102ef565b8063c0c207c014610905578063c87b56dd14610930578063cdffd6ed1461096d578063d5abeb01146109aa578063d854b991146109d5578063e0df5b6f146109fe576102ef565b8063a22cb46511610149578063b8cb65ee11610123578063b8cb65ee1461084b578063bb026e3214610874578063be010c401461089d578063bef97c87146108da576102ef565b8063a22cb465146107e2578063b66a0e5d1461080b578063b88d4fde14610822576102ef565b80637ff9b596146106f1578063804f43cd1461071c5780638cdb7e8b146107265780638da5cb5b14610763578063938e3d7b1461078e57806395d89b41146107b7576102ef565b80633fd173661161024f57806368428a1b1161020857806371e23947116101e257806371e2394714610654578063771282f61461067057806379b345d21461069b5780637b55297a146106c6576102ef565b806368428a1b146105d557806370a0823114610600578063715018a61461063d576102ef565b80633fd17366146104c957806342842e0e146104f25780634e5db1651461051b5780635fd8c710146105585780636352211e1461056f57806367805d71146105ac576102ef565b806326092b83116102a157806326092b83146104145780632a237bb61461041e5780632fb9329814610449578063338dbf59146104725780633a62244f146104895780633e262e5a146104a0576102ef565b806301ffc9a7146102f457806306fdde0314610331578063081812fc1461035c578063095ea7b31461039957806323245216146103c257806323b872dd146103eb576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b600480360381019061031691906134ce565b610b5c565b6040516103289190613516565b60405180910390f35b34801561033d57600080fd5b50610346610c3e565b60405161035391906135c1565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190613619565b610cd0565b6040516103909190613687565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb91906136ce565b610d16565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613773565b610e2d565b005b3480156103f757600080fd5b50610412600480360381019061040d91906137c0565b610ed8565b005b61041c61100c565b005b34801561042a57600080fd5b506104336111ec565b6040516104409190613516565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b919061383f565b6111ff565b005b34801561047e57600080fd5b50610487611224565b005b34801561049557600080fd5b5061049e611258565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190613773565b61128c565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190613619565b6112e8565b005b3480156104fe57600080fd5b50610519600480360381019061051491906137c0565b61133e565b005b34801561052757600080fd5b50610542600480360381019061053d91906136ce565b61135e565b60405161054f9190613516565b60405180910390f35b34801561056457600080fd5b5061056d611462565b005b34801561057b57600080fd5b5061059660048036038101906105919190613619565b6114b3565b6040516105a39190613687565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce919061386c565b611564565b005b3480156105e157600080fd5b506105ea611743565b6040516105f79190613516565b60405180910390f35b34801561060c57600080fd5b506106276004803603810190610622919061386c565b611756565b60405161063491906138a8565b60405180910390f35b34801561064957600080fd5b5061065261180d565b005b61066e60048036038101906106699190613619565b611821565b005b34801561067c57600080fd5b50610685611a33565b60405161069291906138a8565b60405180910390f35b3480156106a757600080fd5b506106b0611a44565b6040516106bd9190613516565b60405180910390f35b3480156106d257600080fd5b506106db611a57565b6040516106e891906138a8565b60405180910390f35b3480156106fd57600080fd5b50610706611a5d565b60405161071391906138a8565b60405180910390f35b610724611a63565b005b34801561073257600080fd5b5061074d6004803603810190610748919061386c565b611d27565b60405161075a9190613516565b60405180910390f35b34801561076f57600080fd5b50610778611d7d565b6040516107859190613687565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613919565b611da7565b005b3480156107c357600080fd5b506107cc611dc5565b6040516107d991906135c1565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190613966565b611e57565b005b34801561081757600080fd5b50610820611e6d565b005b34801561082e57600080fd5b5061084960048036038101906108449190613ad6565b611ea1565b005b34801561085757600080fd5b50610872600480360381019061086d9190613619565b611fd7565b005b34801561088057600080fd5b5061089b60048036038101906108969190613619565b612052565b005b3480156108a957600080fd5b506108c460048036038101906108bf9190613619565b6120a8565b6040516108d191906138a8565b60405180910390f35b3480156108e657600080fd5b506108ef6120c0565b6040516108fc9190613516565b60405180910390f35b34801561091157600080fd5b5061091a6120d3565b6040516109279190613516565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190613619565b6120e6565b60405161096491906135c1565b60405180910390f35b34801561097957600080fd5b50610994600480360381019061098f9190613619565b612162565b6040516109a19190613516565b60405180910390f35b3480156109b657600080fd5b506109bf612265565b6040516109cc91906138a8565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190613baf565b61226b565b005b348015610a0a57600080fd5b50610a256004803603810190610a209190613919565b61231b565b005b348015610a3357600080fd5b50610a4e6004803603810190610a49919061383f565b612339565b005b348015610a5c57600080fd5b50610a6561235e565b604051610a7291906135c1565b60405180910390f35b348015610a8757600080fd5b50610aa26004803603810190610a9d9190613bfc565b6123f0565b604051610aaf9190613516565b60405180910390f35b348015610ac457600080fd5b50610adf6004803603810190610ada9190613773565b612484565b005b348015610aed57600080fd5b50610b086004803603810190610b039190613619565b61252f565b005b348015610b1657600080fd5b50610b316004803603810190610b2c919061386c565b612553565b005b348015610b3f57600080fd5b50610b5a6004803603810190610b559190613619565b6125d6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c2757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c375750610c36826126ef565b5b9050919050565b606060008054610c4d90613c6b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7990613c6b565b8015610cc65780601f10610c9b57610100808354040283529160200191610cc6565b820191906000526020600020905b815481529060010190602001808311610ca957829003601f168201915b5050505050905090565b6000610cdb82612759565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d21826114b3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890613d0e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db06127a4565b73ffffffffffffffffffffffffffffffffffffffff161480610ddf5750610dde81610dd96127a4565b6123f0565b5b610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1590613da0565b60405180910390fd5b610e2883836127ac565b505050565b610e35612865565b600082829050905060005b81811015610ed2576000600e6000868685818110610e6157610e60613dc0565b5b9050602002016020810190610e76919061386c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050610e40565b50505050565b600d60029054906101000a900460ff16610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90613e3b565b60405180910390fd5b610f38610f326127a4565b826128e3565b610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90613ecd565b60405180910390fd5b42600f6000838152602001908152602001600020541180610fa55750600d60039054906101000a900460ff16155b80610fbd5750600d60049054906101000a900460ff16155b610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390613f39565b60405180910390fd5b611007838383612978565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190613fa5565b60405180910390fd5b600060016110886007612bde565b6110929190613ff4565b9050600d60019054906101000a900460ff166110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90614074565b60405180910390fd5b600b5434101561111f576040517f21e191e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548110611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90614106565b60405180910390fd5b61116d6007612bec565b6111773382612c02565b62278d00426111869190613ff4565b600f6000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479281600f6000848152602001908152602001600020546040516111e1929190614126565b60405180910390a150565b600d60009054906101000a900460ff1681565b611207612865565b80600d60036101000a81548160ff02191690831515021790555050565b61122c612865565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b611260612865565b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b611294612865565b600082829050905060005b818110156112e2576112d78484838181106112bd576112bc613dc0565b5b90506020020160208101906112d2919061386c565b611564565b80600101905061129f565b50505050565b6112f0612865565b80600b5403611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b9061419b565b60405180910390fd5b80600b8190555050565b61135983838360405180602001604052806000815250611ea1565b505050565b600061136982612c20565b6113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90614207565b60405180910390fd5b42600f60008481526020019081526020016000205411806113d65750600d60039054906101000a900460ff16155b611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90614299565b60405180910390fd5b61141e826114b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461145757600061145a565b60015b905092915050565b61146a612865565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156114b0573d6000803e3d6000fd5b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614305565b60405180910390fd5b80915050919050565b61156c612865565b6000600161157a6007612bde565b6115849190613ff4565b9050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90614371565b60405180910390fd5b600a5481111561163a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163190614106565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116b957600061167883611756565b146116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af906143dd565b60405180910390fd5b5b6116c36007612bec565b6116cd8282612c02565b62278d00426116dc9190613ff4565b600f6000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479281600f600084815260200190815260200160002054604051611737929190614126565b60405180910390a15050565b600d60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd9061446f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611815612865565b61181f6000612c8c565b565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613fa5565b60405180910390fd5b600c5434146118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca906144db565b60405180910390fd5b6118dc81612c20565b61191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290614207565b60405180910390fd5b600d60039054906101000a900460ff1661196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190614547565b60405180910390fd5b6000600f6000838152602001908152602001600020549050804211156119b55762278d00426119999190613ff4565b600f6000848152602001908152602001600020819055506119e3565b62278d00600f600084815260200190815260200160002060008282546119db9190613ff4565b925050819055505b7fc5b22e9a67a130743449e00b09e4a00a944ca980e143df60ab742426c534c4f982600f600085815260200190815260200160002054604051611a27929190614126565b60405180910390a15050565b6000611a3f6007612bde565b905090565b600d60039054906101000a900460ff1681565b600c5481565b600b5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890613fa5565b60405180910390fd5b60006001611adf6007612bde565b611ae99190613ff4565b9050600d60009054906101000a900460ff16611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b31906145d9565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd90614645565b60405180910390fd5b600b54341015611c02576040517f21e191e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548110611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d90614106565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611ca86007612bec565b611cb23382612c02565b62278d0042611cc19190613ff4565b600f6000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479281600f600084815260200190815260200160002054604051611d1c929190614126565b60405180910390a150565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611daf612865565b818160099182611dc092919061481c565b505050565b606060018054611dd490613c6b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0090613c6b565b8015611e4d5780601f10611e2257610100808354040283529160200191611e4d565b820191906000526020600020905b815481529060010190602001808311611e3057829003601f168201915b5050505050905090565b611e69611e626127a4565b8383612d52565b5050565b611e75612865565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600d60029054906101000a900460ff16611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790613e3b565b60405180910390fd5b611f01611efb6127a4565b836128e3565b611f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3790613ecd565b60405180910390fd5b42600f6000848152602001908152602001600020541180611f6e5750600d60039054906101000a900460ff16155b80611f865750600d60049054906101000a900460ff16155b611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90613f39565b60405180910390fd5b611fd184848484612ebe565b50505050565b611fdf612865565b611fe7611a33565b81600a54611ff591906148ec565b1015612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90614992565b60405180910390fd5b80600a600082825461204891906148ec565b9250508190555050565b61205a612865565b80600c540361209e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120959061419b565b60405180910390fd5b80600c8190555050565b600f6020528060005260406000206000915090505481565b600d60029054906101000a900460ff1681565b600d60049054906101000a900460ff1681565b60606120f182612c20565b612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790614207565b60405180910390fd5b600861213b83612f1a565b60405160200161214c929190614a71565b6040516020818303038152906040529050919050565b600061216d82612c20565b6121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a390614207565b60405180910390fd5b42600f60008481526020019081526020016000205411806121da5750600d60039054906101000a900460ff16155b612219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221090614299565b60405180910390fd5b612222826114b3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461225b57600061225e565b60015b9050919050565b600a5481565b612273612865565b600082829050905060005b81811015612315573073ffffffffffffffffffffffffffffffffffffffff1663faab3def8585848181106122b5576122b4613dc0565b5b905060200201356040518263ffffffff1660e01b81526004016122d891906138a8565b600060405180830381600087803b1580156122f257600080fd5b505af1158015612306573d6000803e3d6000fd5b5050505080600101905061227e565b50505050565b612323612865565b81816008918261233492919061481c565b505050565b612341612865565b80600d60046101000a81548160ff02191690831515021790555050565b60606009805461236d90613c6b565b80601f016020809104026020016040519081016040528092919081815260200182805461239990613c6b565b80156123e65780601f106123bb576101008083540402835291602001916123e6565b820191906000526020600020905b8154815290600101906020018083116123c957829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61248c612865565b600082829050905060005b81811015612529576001600e60008686858181106124b8576124b7613dc0565b5b90506020020160208101906124cd919061386c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050612497565b50505050565b612537612865565b80600a60008282546125499190613ff4565b9250508190555050565b61255b612865565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c190614b07565b60405180910390fd5b6125d381612c8c565b50565b6125de612865565b6125e781612c20565b612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d90614207565b60405180910390fd5b6000600f6000838152602001908152602001600020549050804211156126715762278d00426126559190613ff4565b600f60008481526020019081526020016000208190555061269f565b62278d00600f600084815260200190815260200160002060008282546126979190613ff4565b925050819055505b7fc5b22e9a67a130743449e00b09e4a00a944ca980e143df60ab742426c534c4f982600f6000858152602001908152602001600020546040516126e3929190614126565b60405180910390a15050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61276281612c20565b6127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279890614305565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661281f836114b3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61286d6127a4565b73ffffffffffffffffffffffffffffffffffffffff1661288b611d7d565b73ffffffffffffffffffffffffffffffffffffffff16146128e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d890614b73565b60405180910390fd5b565b6000806128ef836114b3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612931575061293081856123f0565b5b8061296f57508373ffffffffffffffffffffffffffffffffffffffff1661295784610cd0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612998826114b3565b73ffffffffffffffffffffffffffffffffffffffff16146129ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e590614c05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5490614c97565b60405180910390fd5b612a6883838361307a565b612a736000826127ac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac391906148ec565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b1a9190613ff4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bd983838361307f565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612c1c828260405180602001604052806000815250613084565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db790614d03565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612eb19190613516565b60405180910390a3505050565b612ec9848484612978565b612ed5848484846130df565b612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b90614d95565b60405180910390fd5b50505050565b606060008203612f61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613075565b600082905060005b60008214612f93578080612f7c90614db5565b915050600a82612f8c9190614e2c565b9150612f69565b60008167ffffffffffffffff811115612faf57612fae6139ab565b5b6040519080825280601f01601f191660200182016040528015612fe15781602001600182028036833780820191505090505b5090505b6000851461306e57600182612ffa91906148ec565b9150600a856130099190614e5d565b60306130159190613ff4565b60f81b81838151811061302b5761302a613dc0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130679190614e2c565b9450612fe5565b8093505050505b919050565b505050565b505050565b61308e8383613266565b61309b60008484846130df565b6130da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d190614d95565b60405180910390fd5b505050565b60006131008473ffffffffffffffffffffffffffffffffffffffff1661343f565b15613259578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131296127a4565b8786866040518563ffffffff1660e01b815260040161314b9493929190614ee3565b6020604051808303816000875af192505050801561318757506040513d601f19601f820116820180604052508101906131849190614f44565b60015b613209573d80600081146131b7576040519150601f19603f3d011682016040523d82523d6000602084013e6131bc565b606091505b506000815103613201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f890614d95565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061325e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cc90614fbd565b60405180910390fd5b6132de81612c20565b1561331e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331590615029565b60405180910390fd5b61332a6000838361307a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461337a9190613ff4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461343b6000838361307f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134ab81613476565b81146134b657600080fd5b50565b6000813590506134c8816134a2565b92915050565b6000602082840312156134e4576134e361346c565b5b60006134f2848285016134b9565b91505092915050565b60008115159050919050565b613510816134fb565b82525050565b600060208201905061352b6000830184613507565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561356b578082015181840152602081019050613550565b60008484015250505050565b6000601f19601f8301169050919050565b600061359382613531565b61359d818561353c565b93506135ad81856020860161354d565b6135b681613577565b840191505092915050565b600060208201905081810360008301526135db8184613588565b905092915050565b6000819050919050565b6135f6816135e3565b811461360157600080fd5b50565b600081359050613613816135ed565b92915050565b60006020828403121561362f5761362e61346c565b5b600061363d84828501613604565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061367182613646565b9050919050565b61368181613666565b82525050565b600060208201905061369c6000830184613678565b92915050565b6136ab81613666565b81146136b657600080fd5b50565b6000813590506136c8816136a2565b92915050565b600080604083850312156136e5576136e461346c565b5b60006136f3858286016136b9565b925050602061370485828601613604565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126137335761373261370e565b5b8235905067ffffffffffffffff8111156137505761374f613713565b5b60208301915083602082028301111561376c5761376b613718565b5b9250929050565b6000806020838503121561378a5761378961346c565b5b600083013567ffffffffffffffff8111156137a8576137a7613471565b5b6137b48582860161371d565b92509250509250929050565b6000806000606084860312156137d9576137d861346c565b5b60006137e7868287016136b9565b93505060206137f8868287016136b9565b925050604061380986828701613604565b9150509250925092565b61381c816134fb565b811461382757600080fd5b50565b60008135905061383981613813565b92915050565b6000602082840312156138555761385461346c565b5b60006138638482850161382a565b91505092915050565b6000602082840312156138825761388161346c565b5b6000613890848285016136b9565b91505092915050565b6138a2816135e3565b82525050565b60006020820190506138bd6000830184613899565b92915050565b60008083601f8401126138d9576138d861370e565b5b8235905067ffffffffffffffff8111156138f6576138f5613713565b5b60208301915083600182028301111561391257613911613718565b5b9250929050565b600080602083850312156139305761392f61346c565b5b600083013567ffffffffffffffff81111561394e5761394d613471565b5b61395a858286016138c3565b92509250509250929050565b6000806040838503121561397d5761397c61346c565b5b600061398b858286016136b9565b925050602061399c8582860161382a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139e382613577565b810181811067ffffffffffffffff82111715613a0257613a016139ab565b5b80604052505050565b6000613a15613462565b9050613a2182826139da565b919050565b600067ffffffffffffffff821115613a4157613a406139ab565b5b613a4a82613577565b9050602081019050919050565b82818337600083830152505050565b6000613a79613a7484613a26565b613a0b565b905082815260208101848484011115613a9557613a946139a6565b5b613aa0848285613a57565b509392505050565b600082601f830112613abd57613abc61370e565b5b8135613acd848260208601613a66565b91505092915050565b60008060008060808587031215613af057613aef61346c565b5b6000613afe878288016136b9565b9450506020613b0f878288016136b9565b9350506040613b2087828801613604565b925050606085013567ffffffffffffffff811115613b4157613b40613471565b5b613b4d87828801613aa8565b91505092959194509250565b60008083601f840112613b6f57613b6e61370e565b5b8235905067ffffffffffffffff811115613b8c57613b8b613713565b5b602083019150836020820283011115613ba857613ba7613718565b5b9250929050565b60008060208385031215613bc657613bc561346c565b5b600083013567ffffffffffffffff811115613be457613be3613471565b5b613bf085828601613b59565b92509250509250929050565b60008060408385031215613c1357613c1261346c565b5b6000613c21858286016136b9565b9250506020613c32858286016136b9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c8357607f821691505b602082108103613c9657613c95613c3c565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cf860218361353c565b9150613d0382613c9c565b604082019050919050565b60006020820190508181036000830152613d2781613ceb565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613d8a603e8361353c565b9150613d9582613d2e565b604082019050919050565b60006020820190508181036000830152613db981613d7d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5472616e7366657273206172652064697361626c656400000000000000000000600082015250565b6000613e2560168361353c565b9150613e3082613def565b602082019050919050565b60006020820190508181036000830152613e5481613e18565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613eb760318361353c565b9150613ec282613e5b565b604082019050919050565b60006020820190508181036000830152613ee681613eaa565b9050919050565b7f546f6b656e20697320657870697265642e000000000000000000000000000000600082015250565b6000613f2360118361353c565b9150613f2e82613eed565b602082019050919050565b60006020820190508181036000830152613f5281613f16565b9050919050565b7f486178786f722061636365737320626c6f636b65640000000000000000000000600082015250565b6000613f8f60158361353c565b9150613f9a82613f59565b602082019050919050565b60006020820190508181036000830152613fbe81613f82565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fff826135e3565b915061400a836135e3565b925082820190508082111561402257614021613fc5565b5b92915050565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b600061405e60138361353c565b915061406982614028565b602082019050919050565b6000602082019050818103600083015261408d81614051565b9050919050565b7f4d696e74696e67207468697320746f6b656e20776f756c64206578636565642060008201527f746f74616c20737570706c792e00000000000000000000000000000000000000602082015250565b60006140f0602d8361353c565b91506140fb82614094565b604082019050919050565b6000602082019050818103600083015261411f816140e3565b9050919050565b600060408201905061413b6000830185613899565b6141486020830184613899565b9392505050565b7f507269636520646964206e6f74206368616e67652e0000000000000000000000600082015250565b600061418560158361353c565b91506141908261414f565b602082019050919050565b600060208201905081810360008301526141b481614178565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006141f160158361353c565b91506141fc826141bb565b602082019050919050565b60006020820190508181036000830152614220816141e4565b9050919050565b7f546f6b656e2068617320657870697265642e20506c656173652072656e65772060008201527f796f757220746f6b656e21000000000000000000000000000000000000000000602082015250565b6000614283602b8361353c565b915061428e82614227565b604082019050919050565b600060208201905081810360008301526142b281614276565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006142ef60188361353c565b91506142fa826142b9565b602082019050919050565b6000602082019050818103600083015261431e816142e2565b9050919050565b7f52656365697665722063616e6e6f74206265207a65726f20616464726573732e600082015250565b600061435b60208361353c565b915061436682614325565b602082019050919050565b6000602082019050818103600083015261438a8161434e565b9050919050565b7f496e646976696475616c20616c7265616479206f776e73206120746f6b656e2e600082015250565b60006143c760208361353c565b91506143d282614391565b602082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061445960298361353c565b9150614464826143fd565b604082019050919050565b600060208201905081810360008301526144888161444c565b9050919050565b7f496e636f727265637420616d6f756e74206f662065746865722073656e742e00600082015250565b60006144c5601f8361353c565b91506144d08261448f565b602082019050919050565b600060208201905081810360008301526144f4816144b8565b9050919050565b7f52656e6577616c73206172652063757272656e746c792064697361626c656400600082015250565b6000614531601f8361353c565b915061453c826144fb565b602082019050919050565b6000602082019050818103600083015261456081614524565b9050919050565b7f507269766174652073616c652069732063757272656e746c79206e6f7420616360008201527f746976652e000000000000000000000000000000000000000000000000000000602082015250565b60006145c360258361353c565b91506145ce82614567565b604082019050919050565b600060208201905081810360008301526145f2816145b6565b9050919050565b7f57616c6c6574206973206e6f742077686974656c69737465642e000000000000600082015250565b600061462f601a8361353c565b915061463a826145f9565b602082019050919050565b6000602082019050818103600083015261465e81614622565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026146d27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614695565b6146dc8683614695565b95508019841693508086168417925050509392505050565b6000819050919050565b600061471961471461470f846135e3565b6146f4565b6135e3565b9050919050565b6000819050919050565b614733836146fe565b61474761473f82614720565b8484546146a2565b825550505050565b600090565b61475c61474f565b61476781848461472a565b505050565b5b8181101561478b57614780600082614754565b60018101905061476d565b5050565b601f8211156147d0576147a181614670565b6147aa84614685565b810160208510156147b9578190505b6147cd6147c585614685565b83018261476c565b50505b505050565b600082821c905092915050565b60006147f3600019846008026147d5565b1980831691505092915050565b600061480c83836147e2565b9150826002028217905092915050565b6148268383614665565b67ffffffffffffffff81111561483f5761483e6139ab565b5b6148498254613c6b565b61485482828561478f565b6000601f8311600181146148835760008415614871578287013590505b61487b8582614800565b8655506148e3565b601f19841661489186614670565b60005b828110156148b957848901358255600182019150602085019450602081019050614894565b868310156148d657848901356148d2601f8916826147e2565b8355505b6001600288020188555050505b50505050505050565b60006148f7826135e3565b9150614902836135e3565b925082820390508181111561491a57614919613fc5565b5b92915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b600061497c60278361353c565b915061498782614920565b604082019050919050565b600060208201905081810360008301526149ab8161496f565b9050919050565b600081905092915050565b600081546149ca81613c6b565b6149d481866149b2565b945060018216600081146149ef5760018114614a0457614a37565b60ff1983168652811515820286019350614a37565b614a0d85614670565b60005b83811015614a2f57815481890152600182019150602081019050614a10565b838801955050505b50505092915050565b6000614a4b82613531565b614a5581856149b2565b9350614a6581856020860161354d565b80840191505092915050565b6000614a7d82856149bd565b9150614a898284614a40565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614af160268361353c565b9150614afc82614a95565b604082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b5d60208361353c565b9150614b6882614b27565b602082019050919050565b60006020820190508181036000830152614b8c81614b50565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614bef60258361353c565b9150614bfa82614b93565b604082019050919050565b60006020820190508181036000830152614c1e81614be2565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c8160248361353c565b9150614c8c82614c25565b604082019050919050565b60006020820190508181036000830152614cb081614c74565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614ced60198361353c565b9150614cf882614cb7565b602082019050919050565b60006020820190508181036000830152614d1c81614ce0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614d7f60328361353c565b9150614d8a82614d23565b604082019050919050565b60006020820190508181036000830152614dae81614d72565b9050919050565b6000614dc0826135e3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614df257614df1613fc5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e37826135e3565b9150614e42836135e3565b925082614e5257614e51614dfd565b5b828204905092915050565b6000614e68826135e3565b9150614e73836135e3565b925082614e8357614e82614dfd565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614eb582614e8e565b614ebf8185614e99565b9350614ecf81856020860161354d565b614ed881613577565b840191505092915050565b6000608082019050614ef86000830187613678565b614f056020830186613678565b614f126040830185613899565b8181036060830152614f248184614eaa565b905095945050505050565b600081519050614f3e816134a2565b92915050565b600060208284031215614f5a57614f5961346c565b5b6000614f6884828501614f2f565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614fa760208361353c565b9150614fb282614f71565b602082019050919050565b60006020820190508181036000830152614fd681614f9a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615013601c8361353c565b915061501e82614fdd565b602082019050919050565b6000602082019050818103600083015261504281615006565b905091905056fea2646970667358221220c3ad100b7e010b8c09678dadd15cd2e238ba50c3ec82fd1c5bee59757a27894164736f6c63430008100033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenURI_ (string):
Arg [1] : contractURI_ (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


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.