ETH Price: $3,186.34 (+2.65%)

Contract

0xa662BFFd9Ba13557B6D1bD7672b914216024503D
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...156764422022-10-04 18:05:11773 days ago1664906711IN
0xa662BFFd...16024503D
0 ETH0.0007056515.14713991
Safe Transfer Fr...156738232022-10-04 9:16:47774 days ago1664875007IN
0xa662BFFd...16024503D
0 ETH0.000687526.79729529
Transfer From154610382022-09-02 19:37:43805 days ago1662147463IN
0xa662BFFd...16024503D
0 ETH0.0012664814.90810306
Transfer From154390012022-08-30 7:10:04809 days ago1661843404IN
0xa662BFFd...16024503D
0 ETH0.000671327.90228063
Transfer From154389902022-08-30 7:08:16809 days ago1661843296IN
0xa662BFFd...16024503D
0 ETH0.0003098310.03474521
Transfer From154389902022-08-30 7:08:16809 days ago1661843296IN
0xa662BFFd...16024503D
0 ETH0.0007291710.03474521
Transfer From154389892022-08-30 7:07:44809 days ago1661843264IN
0xa662BFFd...16024503D
0 ETH0.000892549.08718513
Mint148707462022-05-30 5:15:55901 days ago1653887755IN
0xa662BFFd...16024503D
0 ETH0.0116339815.73962326
Mint148707212022-05-30 5:10:35901 days ago1653887435IN
0xa662BFFd...16024503D
0 ETH0.0244555415.78390048
Mint148344022022-05-24 7:09:36907 days ago1653376176IN
0xa662BFFd...16024503D
0 ETH0.017069410.89542401
Mint148031192022-05-19 5:10:41912 days ago1652937041IN
0xa662BFFd...16024503D
0 ETH0.0108713614.6546943
Set Approval For...147614052022-05-12 13:43:10918 days ago1652362990IN
0xa662BFFd...16024503D
0 ETH0.01103663236.4773793
Mint Upgraded St...147503242022-05-10 19:14:55920 days ago1652210095IN
0xa662BFFd...16024503D
0 ETH0.0065096234.31680948
Mint Upgraded St...147501842022-05-10 18:45:46920 days ago1652208346IN
0xa662BFFd...16024503D
0 ETH0.0096601650.92552124
Mint Upgraded St...147501792022-05-10 18:44:07920 days ago1652208247IN
0xa662BFFd...16024503D
0 ETH0.0147808941.17424182
Mint Upgraded St...147501762022-05-10 18:43:07920 days ago1652208187IN
0xa662BFFd...16024503D
0 ETH0.0133756937.05906383
Mint Upgraded St...147501722022-05-10 18:42:18920 days ago1652208138IN
0xa662BFFd...16024503D
0 ETH0.0130522536.45116872
Mint Upgraded St...147501662022-05-10 18:40:56920 days ago1652208056IN
0xa662BFFd...16024503D
0 ETH0.0131959737.14863588
Mint Upgraded St...147501632022-05-10 18:40:27920 days ago1652208027IN
0xa662BFFd...16024503D
0 ETH0.0119498533.91310542
Mint Upgraded St...147501532022-05-10 18:39:16920 days ago1652207956IN
0xa662BFFd...16024503D
0 ETH0.0146058741.78934626
Mint Upgraded St...147501502022-05-10 18:38:40920 days ago1652207920IN
0xa662BFFd...16024503D
0 ETH0.0132550538.23669813
Mint Upgraded St...147501422022-05-10 18:37:20920 days ago1652207840IN
0xa662BFFd...16024503D
0 ETH0.0163774147.6359118
Mint Upgraded St...147501362022-05-10 18:35:38920 days ago1652207738IN
0xa662BFFd...16024503D
0 ETH0.0137522840.33518259
Mint Upgraded St...147501282022-05-10 18:34:21920 days ago1652207661IN
0xa662BFFd...16024503D
0 ETH0.0145009842.89027327
Set Approval For...147501232022-05-10 18:33:30920 days ago1652207610IN
0xa662BFFd...16024503D
0 ETH0.0023219549.75159131
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LemonApeStandNFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : LemonApeStandNFT.sol
pragma solidity ^0.8.13;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
//SPDX-License-Identifier: MIT

/// @notice Thrown when completing the transaction results in overallocation of LemonApe Stands.
error MintedOut();
/// @notice Thrown when a user is trying to upgrade a stand, but does not have the previous stand in the upgrade flow.
error MissingPerviousStand();
/// @notice Thrown when the dutch auction phase has not yet started, or has already ended.
error MintNotStarted();
/// @notice Thrown when the upgrade phase has not yet started
error UpgradeNotStarted();
/// @notice Thrown when the user has already minted two LemonApe Stands in the dutch auction.
error MintingTooMany();
/// @notice Thrown when the value of the transaction is not enough for the current dutch auction or mintlist price.
error ValueTooLow();
/// @notice Thrown when a user is trying to upgrade past the highest stand level.
error MissingPreviousNFT();
/// @notice Thrown when a user doesn't have the previous stand level.
error UnknownUpgrade();

interface IERC20 {
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function transferFrom( address from, address to, uint256 amount) external returns (bool);
}

/// @title Generation 0 and 1 LemonApeStand NFTs
// contract LemonApeStandNFT is ERC721, Ownable {
contract LemonApeStandNFT is ERC721Enumerable, Ownable {
    using Strings for uint256;

    /*///////////////////////////////////////////////////////////////
                               CONSTANTS
    //////////////////////////////////////////////////////////////*/

    /// @dev Determines the order of the species for each tokenId, mechanism for choosing starting index explained post mint, explanation hash: acb427e920bde46de95103f14b8e57798a603abcf87ff9d4163e5f61c6a56881.
    uint constant public provenanceHash = 0x9912e067bd3802c3b007ce40b6c125160d2ccb5352d199e20c092fdc17af8057;

    /// @dev Sole receiver of collected contract $LAS - dev wallet until staking contract live. Dev wallet will move tokens to staking
    address public stakingContract = 0x73199233184A4F01CCcbB30f31989f8e6e9cf34E;

    /// @dev Address of $LAS to mint Lemon Stands
    address public lasToken = 0x84c071CbFa571Af3c6c966f80530867D0d407F6E;

    /// @dev Address of $POTION to mint higher tier stands
    address public potionToken = 0x980693AbB2D6A92Bc67e95C9c646d24275D8236d;

    /// @dev 435 total nfts can ever be made
    uint constant lemonStandTotalSupply = 300;
    uint constant grapeStandTotalSupply = 100;
    uint constant dragonStandTotalSupply = 25;
    uint constant fourTwentyStandTotalSupply = 10;
    uint constant mintSupply = lemonStandTotalSupply + grapeStandTotalSupply + dragonStandTotalSupply + fourTwentyStandTotalSupply;
    uint256 public currentLemonStandPrice = 1000 * 10**18;

    /// @dev The offsets are the tokenIds that the corresponding evolution stage will begin minting at.

    uint constant grapeStandOffset = lemonStandTotalSupply;
    uint constant dragonStandOffset = grapeStandOffset + grapeStandTotalSupply;
    uint constant fourTwentyStandOffset = dragonStandOffset + dragonStandTotalSupply;

    /*///////////////////////////////////////////////////////////////
                        UPGRADE STORAGE
    //////////////////////////////////////////////////////////////*/

    /// @dev The next tokenID to be minted for each of the stand stages
    uint lemonStandSupply; //300
    uint grapeStandSupply; //100
    uint dragonStandSupply; //25
    uint fourTwentyStandSupply; //10

    /*///////////////////////////////////////////////////////////////
                            MINT STORAGE
    //////////////////////////////////////////////////////////////*/
    /// @notice The timestamp the minting for Lemon Stands started
    bool public canStartMint;
    bool public canUpgradeStand;

    /// @notice The timestamp of the last time a Lemon Stand was minted
    uint256 public lastTimeMinted;
    uint256 public reductionTime = 1 hours;

    /// @notice Starting price of the Lemon Stand in $LAS (1,000 $LAS)
    uint256 constant public startPrice = 1000 * 10**18;

    uint256 public mintLimit = 3;

    /*///////////////////////////////////////////////////////////////
                            METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    string public baseURI;

    /*///////////////////////////////////////////////////////////////
                            CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    /// @notice Deploys the contract, airdropping to presalers.
    constructor(string memory _baseURI, address[] memory dropLemonStands) ERC721("LEMONAPESTAND NFT", "LASNFT") {
        baseURI = _baseURI;
        unchecked {
            for (uint256 i = 0; i < dropLemonStands.length; i++) {
                uint256 mintIndex = totalSupply();
                _mint(dropLemonStands[i], mintIndex);
                lemonStandSupply++;
                emit Transfer(address(0), dropLemonStands[i], i);
            }
        }
    }

    function setMintLimit(uint256 _mintLimit) public onlyOwner {
        mintLimit = _mintLimit;
    }

    function enableMint() public onlyOwner {
        canStartMint = true;
        lastTimeMinted = block.timestamp;
    }

    function enableUpgrade() public onlyOwner {
        canUpgradeStand = true;
    }

    function updateStakingContract(address _stakingContract) public onlyOwner {
        stakingContract = _stakingContract;
    }

    /*///////////////////////////////////////////////////////////////
                            METADATA LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @notice Allows the contract deployer to set the metadata URI.
    /// @param _baseURI The new metadata URI.
    function setBaseURI(string memory _baseURI) public onlyOwner {
        baseURI = _baseURI;
    }

    function tokenURI(uint256 id) public view override returns (string memory) {
        return string(abi.encodePacked(baseURI, id.toString()));
    }

    /*///////////////////////////////////////////////////////////////
                        REVERSE-DUTCH AUCTION LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @notice Calculates the mint price with the accumulated rate deduction since the mint's started. Every hour there is no mint the price goes down 100 tokens. After every mint the price goes up 100 tokens.
    /// @return The mint price at the current time, or 0 if the deductions are greater than the mint's start price.
    function getCurrentTokenPrice() public view returns (uint) {
        uint priceReduction = ((block.timestamp - lastTimeMinted) / reductionTime) * 25 * 10**18;
        return currentLemonStandPrice >= priceReduction ? (currentLemonStandPrice - priceReduction) :  25 * 10**18;
    }

    /// @notice Purchases a LemonApeStand NFT in the reverse-dutch auction
    /// @param amountToMint the amount of NFTs to mint in one transcation.
    function mint(uint256 amountToMint) public {
        if(!canStartMint) revert MintNotStarted();
        uint price = getCurrentTokenPrice();
        if(IERC20(lasToken).balanceOf(msg.sender) < price * amountToMint) revert ValueTooLow();
        if(amountToMint > mintLimit) revert MintingTooMany();
        if(totalSupply() + amountToMint > lemonStandTotalSupply) revert MintedOut();
        //to save gas we calcualte the amount of $LAS token needed to mint the amount of NFTs a user has selected
        IERC20(lasToken).transferFrom(msg.sender, stakingContract, price * amountToMint);
        for (uint256 i = 0; i < amountToMint; i++) {
            uint256 mintIndex = totalSupply();
            _mint(msg.sender, mintIndex);
            unchecked {
                lemonStandSupply++;
            }
        }
        //to save gas we calcualte the currentLemonStandPrice after the minting loop
        lastTimeMinted = block.timestamp;
        currentLemonStandPrice += amountToMint * 25 * 10**18;
    }

    /*///////////////////////////////////////////////////////////////
                        UPGRADE LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @notice Mints an upgraded LemonApe Stand
    /// @param receiver Receiver of the upgraded LemonApe Stand
    /// @param standIdToUpgrade The upgrade (2-4) that the LemonApeStand NFT is undergoing
    function mintUpgradedStand(address receiver, uint standIdToUpgrade) public {
        if(!canUpgradeStand) revert UpgradeNotStarted();
        uint upgradeToStand;
        if(standIdToUpgrade <= lemonStandTotalSupply - 1){
            upgradeToStand = 2;
        } else if(standIdToUpgrade <= lemonStandTotalSupply + grapeStandTotalSupply - 1){
            upgradeToStand = 3;
        } else if(standIdToUpgrade <= lemonStandTotalSupply + grapeStandTotalSupply + dragonStandTotalSupply - 1){
            upgradeToStand = 4;
        } else {
            revert UnknownUpgrade();
        }

        if (upgradeToStand == 2) {
            if(grapeStandSupply >= grapeStandTotalSupply) revert MintedOut();
            if(IERC20(potionToken).balanceOf(msg.sender) < 1 * 10**18) revert ValueTooLow();
            if(!isExistVersionOfNFT(receiver, 1)) revert MissingPreviousNFT();
            IERC20(potionToken).transferFrom(msg.sender, stakingContract, 1 * 10**18);
            _mint(receiver, grapeStandOffset + grapeStandSupply);
            unchecked {
                grapeStandSupply++;
            }
        } else if (upgradeToStand == 3) {
            if(dragonStandSupply >= dragonStandTotalSupply) revert MintedOut();
            if(IERC20(potionToken).balanceOf(msg.sender) < 2 * 10**18) revert ValueTooLow();
            if(!isExistVersionOfNFT(receiver, 2)) revert MissingPreviousNFT();
            IERC20(potionToken).transferFrom(msg.sender, stakingContract, 2 * 10**18);
            _mint(receiver, dragonStandOffset + dragonStandSupply);
            unchecked {
                dragonStandSupply++;
            }
        } else if (upgradeToStand == 4) {
            if(fourTwentyStandSupply >= fourTwentyStandTotalSupply) revert MintedOut();
            if(IERC20(potionToken).balanceOf(msg.sender) < 3 * 10**18) revert ValueTooLow();
            if(!isExistVersionOfNFT(receiver, 3)) revert MissingPreviousNFT();
            IERC20(potionToken).transferFrom(msg.sender, stakingContract, 3 * 10**18);
            _mint(receiver, fourTwentyStandOffset + fourTwentyStandSupply);
            unchecked {
                fourTwentyStandSupply++;
            }
        } else  {
            revert UnknownUpgrade();
        }
    }
    /*///////////////////////////////////////////////////////////////
        This is a function to check what version NFT 
    //////////////////////////////////////////////////////////////*/

    /// @notice Mints an upgraded LemonApe Stand
    /// @param id Id of the NFT
    /// @return version of the NFT

    function getVersionFromNFTId(uint id) public pure returns (uint version) 
    {

        if(id<=lemonStandTotalSupply - 1){
            return 1;
        }
        else if(id<=lemonStandTotalSupply + grapeStandTotalSupply - 1){
            return 2;
        }
        else if(id<=lemonStandTotalSupply + grapeStandTotalSupply + dragonStandTotalSupply - 1)
        {
            return 3;
        }
        else if(id<=lemonStandTotalSupply + grapeStandTotalSupply + dragonStandTotalSupply + fourTwentyStandTotalSupply - 1){
            return 4;
        }
        else{
            return 0;
        }
    }
    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
    /// Check if the user has version of the NFT
    /// @param _owner Address of the selected user
    /// @param version Version Number of the NFT to check if user has
    /// @return isExist true if it's exist
    function isExistVersionOfNFT(address _owner, uint version) public view returns (bool isExist) {
        uint256[] memory tokensId;
        tokensId = walletOfOwner(_owner);
        for (uint256 i = 0; i < tokensId.length; i++) {
            if (getVersionFromNFTId(tokensId[i])==version) return true;
        }
        return false;
    }

}

File 2 of 13 : 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 3 of 13 : 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;
    }
}

File 4 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 13 : 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 6 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 7 of 13 : 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 8 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 9 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 10 of 13 : 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 11 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

    /**
     * @dev 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 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @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 13 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address[]","name":"dropLemonStands","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MintNotStarted","type":"error"},{"inputs":[],"name":"MintedOut","type":"error"},{"inputs":[],"name":"MintingTooMany","type":"error"},{"inputs":[],"name":"MissingPreviousNFT","type":"error"},{"inputs":[],"name":"UnknownUpgrade","type":"error"},{"inputs":[],"name":"UpgradeNotStarted","type":"error"},{"inputs":[],"name":"ValueTooLow","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"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canStartMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canUpgradeStand","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentLemonStandPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableUpgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getVersionFromNFTId","outputs":[{"internalType":"uint256","name":"version","type":"uint256"}],"stateMutability":"pure","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":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"version","type":"uint256"}],"name":"isExistVersionOfNFT","outputs":[{"internalType":"bool","name":"isExist","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lasToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTimeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"standIdToUpgrade","type":"uint256"}],"name":"mintUpgradedStand","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"potionToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reductionTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingContract","type":"address"}],"name":"updateStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

60806040527373199233184a4f01cccbb30f31989f8e6e9cf34e600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507384c071cbfa571af3c6c966f80530867d0d407f6e600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073980693abb2d6a92bc67e95c9c646d24275d8236d600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550683635c9adc5dea00000600e55610e1060155560036016553480156200012857600080fd5b5060405162005f9538038062005f9583398181016040528101906200014e919062000f1e565b6040518060400160405280601181526020017f4c454d4f4e4150455354414e44204e46540000000000000000000000000000008152506040518060400160405280600681526020017f4c41534e465400000000000000000000000000000000000000000000000000008152508160009080519060200190620001d292919062000b91565b508060019080519060200190620001eb92919062000b91565b5050506200020e620002026200031a60201b60201c565b6200032260201b60201c565b81601790805190602001906200022692919062000b91565b5060005b81518110156200031157600062000246620003e860201b60201c565b90506200027783838151811062000262576200026162000fa3565b5b602002602001015182620003f560201b60201c565b600f6000815480929190600101919050555081838381518110620002a0576200029f62000fa3565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45080806001019150506200022a565b505050620012c3565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600880549050905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000467576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045e9062001033565b60405180910390fd5b6200047881620005ee60201b60201c565b15620004bb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b290620010a5565b60405180910390fd5b620004cf600083836200065a60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000521919062001100565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005ea600083836200079f60201b60201c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000672838383620007a460201b620023561760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620006be57620006b881620007a960201b60201c565b62000706565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200070557620007048382620007f260201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000752576200074c816200096f60201b60201c565b6200079a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620007995762000798828262000a4b60201b60201c565b5b5b505050565b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016200080c8462000ad760201b62001a1c1760201c565b6200081891906200115d565b9050600060076000848152602001908152602001600020549050818114620008fe576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506200098591906200115d565b9050600060096000848152602001908152602001600020549050600060088381548110620009b857620009b762000fa3565b5b906000526020600020015490508060088381548110620009dd57620009dc62000fa3565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000a2f5762000a2e62001198565b5b6001900381819060005260206000200160009055905550505050565b600062000a638362000ad760201b62001a1c1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b41906200123d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000b9f906200128e565b90600052602060002090601f01602090048101928262000bc3576000855562000c0f565b82601f1062000bde57805160ff191683800117855562000c0f565b8280016001018555821562000c0f579182015b8281111562000c0e57825182559160200191906001019062000bf1565b5b50905062000c1e919062000c22565b5090565b5b8082111562000c3d57600081600090555060010162000c23565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000caa8262000c5f565b810181811067ffffffffffffffff8211171562000ccc5762000ccb62000c70565b5b80604052505050565b600062000ce162000c41565b905062000cef828262000c9f565b919050565b600067ffffffffffffffff82111562000d125762000d1162000c70565b5b62000d1d8262000c5f565b9050602081019050919050565b60005b8381101562000d4a57808201518184015260208101905062000d2d565b8381111562000d5a576000848401525b50505050565b600062000d7762000d718462000cf4565b62000cd5565b90508281526020810184848401111562000d965762000d9562000c5a565b5b62000da384828562000d2a565b509392505050565b600082601f83011262000dc35762000dc262000c55565b5b815162000dd584826020860162000d60565b91505092915050565b600067ffffffffffffffff82111562000dfc5762000dfb62000c70565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e3f8262000e12565b9050919050565b62000e518162000e32565b811462000e5d57600080fd5b50565b60008151905062000e718162000e46565b92915050565b600062000e8e62000e888462000dde565b62000cd5565b9050808382526020820190506020840283018581111562000eb45762000eb362000e0d565b5b835b8181101562000ee1578062000ecc888262000e60565b84526020840193505060208101905062000eb6565b5050509392505050565b600082601f83011262000f035762000f0262000c55565b5b815162000f1584826020860162000e77565b91505092915050565b6000806040838503121562000f385762000f3762000c4b565b5b600083015167ffffffffffffffff81111562000f595762000f5862000c50565b5b62000f678582860162000dab565b925050602083015167ffffffffffffffff81111562000f8b5762000f8a62000c50565b5b62000f998582860162000eeb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082825260208201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006200101b60208362000fd2565b9150620010288262000fe3565b602082019050919050565b600060208201905081810360008301526200104e816200100c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006200108d601c8362000fd2565b91506200109a8262001055565b602082019050919050565b60006020820190508181036000830152620010c0816200107e565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200110d82620010c7565b91506200111a83620010c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011525762001151620010d1565b5b828201905092915050565b60006200116a82620010c7565b91506200117783620010c7565b9250828210156200118d576200118c620010d1565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600062001225602a8362000fd2565b91506200123282620011c7565b604082019050919050565b60006020820190508181036000830152620012588162001216565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620012a757607f821691505b602082108103620012bd57620012bc6200125f565b5b50919050565b614cc280620012d36000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c806370a0823111610146578063a22cb465116100c3578063e1e5886211610087578063e1e58862146106ff578063e985e9c51461071d578063ee99205c1461074d578063f1a9af891461076b578063f2fde38b14610789578063f751758b146107a55761025e565b8063a22cb4651461065b578063b0b4e80b14610677578063b88d4fde14610695578063c6ab67a3146106b1578063c87b56dd146106cf5761025e565b8063911198331161010a57806391119833146105c957806395d89b41146105e7578063996517cf146106055780639e6a1d7d14610623578063a0712d681461063f5761025e565b806370a0823114610523578063715018a6146105535780638d77ed1f1461055d5780638da5cb5b1461058d5780639000c538146105ab5761025e565b806330ab9c52116101df57806344b28d59116101a357806344b28d59146104635780634f6ccce71461046d57806355f804b31461049d5780635909af0d146104b95780636352211e146104d55780636c0360eb146105055761025e565b806330ab9c52146103bf57806331dbe6aa146103dd5780633347e4d6146103fb57806342842e0e14610417578063438b6300146104335761025e565b806318160ddd1161022657806318160ddd1461032d57806323b872dd1461034b57806328016f9a1461036757806329922980146103715780632f745c591461038f5761025e565b806301ffc9a714610263578063068a96e21461029357806306fdde03146102c3578063081812fc146102e1578063095ea7b314610311575b600080fd5b61027d600480360381019061027891906135b5565b6107c3565b60405161028a91906135fd565b60405180910390f35b6102ad60048036038101906102a8919061364e565b61083d565b6040516102ba919061368a565b60405180910390f35b6102cb610909565b6040516102d8919061373e565b60405180910390f35b6102fb60048036038101906102f6919061364e565b61099b565b60405161030891906137a1565b60405180910390f35b61032b600480360381019061032691906137e8565b610a20565b005b610335610b37565b604051610342919061368a565b60405180910390f35b61036560048036038101906103609190613828565b610b44565b005b61036f610ba4565b005b610379610c3d565b60405161038691906137a1565b60405180910390f35b6103a960048036038101906103a491906137e8565b610c63565b6040516103b6919061368a565b60405180910390f35b6103c7610d08565b6040516103d4919061368a565b60405180910390f35b6103e5610d0e565b6040516103f291906137a1565b60405180910390f35b6104156004803603810190610410919061387b565b610d34565b005b610431600480360381019061042c9190613828565b610df4565b005b61044d6004803603810190610448919061387b565b610e14565b60405161045a9190613966565b60405180910390f35b61046b610ec2565b005b6104876004803603810190610482919061364e565b610f62565b604051610494919061368a565b60405180910390f35b6104b760048036038101906104b29190613abd565b610fd3565b005b6104d360048036038101906104ce91906137e8565b611069565b005b6104ef60048036038101906104ea919061364e565b6118dd565b6040516104fc91906137a1565b60405180910390f35b61050d61198e565b60405161051a919061373e565b60405180910390f35b61053d6004803603810190610538919061387b565b611a1c565b60405161054a919061368a565b60405180910390f35b61055b611ad3565b005b610577600480360381019061057291906137e8565b611b5b565b60405161058491906135fd565b60405180910390f35b610595611bca565b6040516105a291906137a1565b60405180910390f35b6105b3611bf4565b6040516105c091906135fd565b60405180910390f35b6105d1611c07565b6040516105de91906135fd565b60405180910390f35b6105ef611c1a565b6040516105fc919061373e565b60405180910390f35b61060d611cac565b60405161061a919061368a565b60405180910390f35b61063d6004803603810190610638919061364e565b611cb2565b005b6106596004803603810190610654919061364e565b611d38565b005b61067560048036038101906106709190613b32565b61204f565b005b61067f612065565b60405161068c919061368a565b60405180910390f35b6106af60048036038101906106aa9190613c13565b61206b565b005b6106b96120cd565b6040516106c6919061368a565b60405180910390f35b6106e960048036038101906106e4919061364e565b6120f1565b6040516106f6919061373e565b60405180910390f35b610707612125565b604051610714919061368a565b60405180910390f35b61073760048036038101906107329190613c96565b61212b565b60405161074491906135fd565b60405180910390f35b6107556121bf565b60405161076291906137a1565b60405180910390f35b6107736121e5565b604051610780919061368a565b60405180910390f35b6107a3600480360381019061079e919061387b565b6121f2565b005b6107ad6122e9565b6040516107ba919061368a565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083657506108358261235b565b5b9050919050565b6000600161012c61084e9190613d05565b821161085d5760019050610904565b6001606461012c61086e9190613d39565b6108789190613d05565b82116108875760029050610904565b60016019606461012c61089a9190613d39565b6108a49190613d39565b6108ae9190613d05565b82116108bd5760039050610904565b6001600a6019606461012c6108d29190613d39565b6108dc9190613d39565b6108e69190613d39565b6108f09190613d05565b82116108ff5760049050610904565b600090505b919050565b60606000805461091890613dbe565b80601f016020809104026020016040519081016040528092919081815260200182805461094490613dbe565b80156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b5050505050905090565b60006109a68261243d565b6109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90613e61565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2b826118dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290613ef3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aba6124a9565b73ffffffffffffffffffffffffffffffffffffffff161480610ae95750610ae881610ae36124a9565b61212b565b5b610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90613f85565b60405180910390fd5b610b3283836124b1565b505050565b6000600880549050905090565b610b55610b4f6124a9565b8261256a565b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90614017565b60405180910390fd5b610b9f838383612648565b505050565b610bac6124a9565b73ffffffffffffffffffffffffffffffffffffffff16610bca611bca565b73ffffffffffffffffffffffffffffffffffffffff1614610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790614083565b60405180910390fd5b6001601360016101000a81548160ff021916908315150217905550565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c6e83611a1c565b8210610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690614115565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e5481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d3c6124a9565b73ffffffffffffffffffffffffffffffffffffffff16610d5a611bca565b73ffffffffffffffffffffffffffffffffffffffff1614610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790614083565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e0f8383836040518060200160405280600081525061206b565b505050565b60606000610e2183611a1c565b905060008167ffffffffffffffff811115610e3f57610e3e613992565b5b604051908082528060200260200182016040528015610e6d5781602001602082028036833780820191505090505b50905060005b82811015610eb757610e858582610c63565b828281518110610e9857610e97614135565b5b6020026020010181815250508080610eaf90614164565b915050610e73565b508092505050919050565b610eca6124a9565b73ffffffffffffffffffffffffffffffffffffffff16610ee8611bca565b73ffffffffffffffffffffffffffffffffffffffff1614610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590614083565b60405180910390fd5b6001601360006101000a81548160ff02191690831515021790555042601481905550565b6000610f6c610b37565b8210610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa49061421e565b60405180910390fd5b60088281548110610fc157610fc0614135565b5b90600052602060002001549050919050565b610fdb6124a9565b73ffffffffffffffffffffffffffffffffffffffff16610ff9611bca565b73ffffffffffffffffffffffffffffffffffffffff161461104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690614083565b60405180910390fd5b80601790805190602001906110659291906134a6565b5050565b601360019054906101000a900460ff166110af576040517f3b7e326c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600161012c6110c09190613d05565b82116110cf5760029050611163565b6001606461012c6110e09190613d39565b6110ea9190613d05565b82116110f95760039050611162565b60016019606461012c61110c9190613d39565b6111169190613d39565b6111209190613d05565b821161112f5760049050611161565b6040517f3a7e392300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b600281036113c2576064601054106111a7576040517f846fb9e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b670de0b6b3a7640000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161120b91906137a1565b602060405180830381865afa158015611228573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124c9190614253565b1015611284576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61128f836001611b5b565b6112c5576040517fad09b9e300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a76400006040518463ffffffff1660e01b815260040161134e939291906142c5565b6020604051808303816000875af115801561136d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113919190614311565b506113ab8360105461012c6113a69190613d39565b6128ae565b6010600081548092919060010191905055506118d8565b6003810361162d57601960115410611406576040517f846fb9e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b671bc16d674ec80000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161146a91906137a1565b602060405180830381865afa158015611487573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ab9190614253565b10156114e3576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ee836002611b5b565b611524576040517fad09b9e300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16671bc16d674ec800006040518463ffffffff1660e01b81526004016115ad93929190614379565b6020604051808303816000875af11580156115cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f09190614311565b5061161683601154606461012c6116079190613d39565b6116119190613d39565b6128ae565b6011600081548092919060010191905055506118d7565b600481036118a457600a60125410611671576040517f846fb9e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6729a2241af62c0000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016116d591906137a1565b602060405180830381865afa1580156116f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117169190614253565b101561174e576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611759836003611b5b565b61178f576040517fad09b9e300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166729a2241af62c00006040518463ffffffff1660e01b8152600401611818939291906143eb565b6020604051808303816000875af1158015611837573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185b9190614311565b5061188d836012546019606461012c6118749190613d39565b61187e9190613d39565b6118889190613d39565b6128ae565b6012600081548092919060010191905055506118d6565b6040517f3a7e392300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90614494565b60405180910390fd5b80915050919050565b6017805461199b90613dbe565b80601f01602080910402602001604051908101604052809291908181526020018280546119c790613dbe565b8015611a145780601f106119e957610100808354040283529160200191611a14565b820191906000526020600020905b8154815290600101906020018083116119f757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390614526565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611adb6124a9565b73ffffffffffffffffffffffffffffffffffffffff16611af9611bca565b73ffffffffffffffffffffffffffffffffffffffff1614611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4690614083565b60405180910390fd5b611b596000612a87565b565b60006060611b6884610e14565b905060005b8151811015611bbd5783611b9a838381518110611b8d57611b8c614135565b5b602002602001015161083d565b03611baa57600192505050611bc4565b8080611bb590614164565b915050611b6d565b5060009150505b92915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601360019054906101000a900460ff1681565b601360009054906101000a900460ff1681565b606060018054611c2990613dbe565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5590613dbe565b8015611ca25780601f10611c7757610100808354040283529160200191611ca2565b820191906000526020600020905b815481529060010190602001808311611c8557829003601f168201915b5050505050905090565b60165481565b611cba6124a9565b73ffffffffffffffffffffffffffffffffffffffff16611cd8611bca565b73ffffffffffffffffffffffffffffffffffffffff1614611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590614083565b60405180910390fd5b8060168190555050565b601360009054906101000a900460ff16611d7e576040517f06290e4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d886122e9565b90508181611d969190614546565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611df191906137a1565b602060405180830381865afa158015611e0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e329190614253565b1015611e6a576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601654821115611ea6576040517f7c5369f600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61012c82611eb2610b37565b611ebc9190613d39565b1115611ef4576040517f846fb9e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168585611f629190614546565b6040518463ffffffff1660e01b8152600401611f80939291906145a0565b6020604051808303816000875af1158015611f9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fc39190614311565b5060005b8281101561200b576000611fd9610b37565b9050611fe533826128ae565b600f6000815480929190600101919050555050808061200390614164565b915050611fc7565b5042601481905550670de0b6b3a76400006019836120299190614546565b6120339190614546565b600e60008282546120449190613d39565b925050819055505050565b61206161205a6124a9565b8383612b4d565b5050565b60145481565b61207c6120766124a9565b8361256a565b6120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b290614017565b60405180910390fd5b6120c784848484612cb9565b50505050565b7f9912e067bd3802c3b007ce40b6c125160d2ccb5352d199e20c092fdc17af805781565b606060176120fe83612d15565b60405160200161210f9291906146a7565b6040516020818303038152906040529050919050565b60155481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b683635c9adc5dea0000081565b6121fa6124a9565b73ffffffffffffffffffffffffffffffffffffffff16612218611bca565b73ffffffffffffffffffffffffffffffffffffffff161461226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226590614083565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d49061473d565b60405180910390fd5b6122e681612a87565b50565b600080670de0b6b3a76400006019601554601454426123089190613d05565b612312919061478c565b61231c9190614546565b6123269190614546565b905080600e5410156123415768015af1d78b58c40000612350565b80600e5461234f9190613d05565b5b91505090565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061242657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612436575061243582612e75565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612524836118dd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125758261243d565b6125b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ab9061482f565b60405180910390fd5b60006125bf836118dd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126015750612600818561212b565b5b8061263f57508373ffffffffffffffffffffffffffffffffffffffff166126278461099b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612668826118dd565b73ffffffffffffffffffffffffffffffffffffffff16146126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b5906148c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490614953565b60405180910390fd5b612738838383612edf565b6127436000826124b1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127939190613d05565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127ea9190613d39565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128a9838383612ff1565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361291d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612914906149bf565b60405180910390fd5b6129268161243d565b15612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d90614a2b565b60405180910390fd5b61297260008383612edf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129c29190613d39565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a8360008383612ff1565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb290614a97565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612cac91906135fd565b60405180910390a3505050565b612cc4848484612648565b612cd084848484612ff6565b612d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0690614b29565b60405180910390fd5b50505050565b606060008203612d5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e70565b600082905060005b60008214612d8e578080612d7790614164565b915050600a82612d87919061478c565b9150612d64565b60008167ffffffffffffffff811115612daa57612da9613992565b5b6040519080825280601f01601f191660200182016040528015612ddc5781602001600182028036833780820191505090505b5090505b60008514612e6957600182612df59190613d05565b9150600a85612e049190614b49565b6030612e109190613d39565b60f81b818381518110612e2657612e25614135565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e62919061478c565b9450612de0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612eea838383612356565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f2c57612f278161317d565b612f6b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f6a57612f6983826131c6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fad57612fa881613333565b612fec565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612feb57612fea8282613404565b5b5b505050565b505050565b60006130178473ffffffffffffffffffffffffffffffffffffffff16613483565b15613170578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130406124a9565b8786866040518563ffffffff1660e01b81526004016130629493929190614bcf565b6020604051808303816000875af192505050801561309e57506040513d601f19601f8201168201806040525081019061309b9190614c30565b60015b613120573d80600081146130ce576040519150601f19603f3d011682016040523d82523d6000602084013e6130d3565b606091505b506000815103613118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310f90614b29565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613175565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131d384611a1c565b6131dd9190613d05565b90506000600760008481526020019081526020016000205490508181146132c2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133479190613d05565b905060006009600084815260200190815260200160002054905060006008838154811061337757613376614135565b5b90600052602060002001549050806008838154811061339957613398614135565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133e8576133e7614c5d565b5b6001900381819060005260206000200160009055905550505050565b600061340f83611a1c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546134b290613dbe565b90600052602060002090601f0160209004810192826134d4576000855561351b565b82601f106134ed57805160ff191683800117855561351b565b8280016001018555821561351b579182015b8281111561351a5782518255916020019190600101906134ff565b5b509050613528919061352c565b5090565b5b8082111561354557600081600090555060010161352d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135928161355d565b811461359d57600080fd5b50565b6000813590506135af81613589565b92915050565b6000602082840312156135cb576135ca613553565b5b60006135d9848285016135a0565b91505092915050565b60008115159050919050565b6135f7816135e2565b82525050565b600060208201905061361260008301846135ee565b92915050565b6000819050919050565b61362b81613618565b811461363657600080fd5b50565b60008135905061364881613622565b92915050565b60006020828403121561366457613663613553565b5b600061367284828501613639565b91505092915050565b61368481613618565b82525050565b600060208201905061369f600083018461367b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136df5780820151818401526020810190506136c4565b838111156136ee576000848401525b50505050565b6000601f19601f8301169050919050565b6000613710826136a5565b61371a81856136b0565b935061372a8185602086016136c1565b613733816136f4565b840191505092915050565b600060208201905081810360008301526137588184613705565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061378b82613760565b9050919050565b61379b81613780565b82525050565b60006020820190506137b66000830184613792565b92915050565b6137c581613780565b81146137d057600080fd5b50565b6000813590506137e2816137bc565b92915050565b600080604083850312156137ff576137fe613553565b5b600061380d858286016137d3565b925050602061381e85828601613639565b9150509250929050565b60008060006060848603121561384157613840613553565b5b600061384f868287016137d3565b9350506020613860868287016137d3565b925050604061387186828701613639565b9150509250925092565b60006020828403121561389157613890613553565b5b600061389f848285016137d3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138dd81613618565b82525050565b60006138ef83836138d4565b60208301905092915050565b6000602082019050919050565b6000613913826138a8565b61391d81856138b3565b9350613928836138c4565b8060005b8381101561395957815161394088826138e3565b975061394b836138fb565b92505060018101905061392c565b5085935050505092915050565b600060208201905081810360008301526139808184613908565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139ca826136f4565b810181811067ffffffffffffffff821117156139e9576139e8613992565b5b80604052505050565b60006139fc613549565b9050613a0882826139c1565b919050565b600067ffffffffffffffff821115613a2857613a27613992565b5b613a31826136f4565b9050602081019050919050565b82818337600083830152505050565b6000613a60613a5b84613a0d565b6139f2565b905082815260208101848484011115613a7c57613a7b61398d565b5b613a87848285613a3e565b509392505050565b600082601f830112613aa457613aa3613988565b5b8135613ab4848260208601613a4d565b91505092915050565b600060208284031215613ad357613ad2613553565b5b600082013567ffffffffffffffff811115613af157613af0613558565b5b613afd84828501613a8f565b91505092915050565b613b0f816135e2565b8114613b1a57600080fd5b50565b600081359050613b2c81613b06565b92915050565b60008060408385031215613b4957613b48613553565b5b6000613b57858286016137d3565b9250506020613b6885828601613b1d565b9150509250929050565b600067ffffffffffffffff821115613b8d57613b8c613992565b5b613b96826136f4565b9050602081019050919050565b6000613bb6613bb184613b72565b6139f2565b905082815260208101848484011115613bd257613bd161398d565b5b613bdd848285613a3e565b509392505050565b600082601f830112613bfa57613bf9613988565b5b8135613c0a848260208601613ba3565b91505092915050565b60008060008060808587031215613c2d57613c2c613553565b5b6000613c3b878288016137d3565b9450506020613c4c878288016137d3565b9350506040613c5d87828801613639565b925050606085013567ffffffffffffffff811115613c7e57613c7d613558565b5b613c8a87828801613be5565b91505092959194509250565b60008060408385031215613cad57613cac613553565b5b6000613cbb858286016137d3565b9250506020613ccc858286016137d3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d1082613618565b9150613d1b83613618565b925082821015613d2e57613d2d613cd6565b5b828203905092915050565b6000613d4482613618565b9150613d4f83613618565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8457613d83613cd6565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613dd657607f821691505b602082108103613de957613de8613d8f565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e4b602c836136b0565b9150613e5682613def565b604082019050919050565b60006020820190508181036000830152613e7a81613e3e565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613edd6021836136b0565b9150613ee882613e81565b604082019050919050565b60006020820190508181036000830152613f0c81613ed0565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613f6f6038836136b0565b9150613f7a82613f13565b604082019050919050565b60006020820190508181036000830152613f9e81613f62565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006140016031836136b0565b915061400c82613fa5565b604082019050919050565b6000602082019050818103600083015261403081613ff4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061406d6020836136b0565b915061407882614037565b602082019050919050565b6000602082019050818103600083015261409c81614060565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006140ff602b836136b0565b915061410a826140a3565b604082019050919050565b6000602082019050818103600083015261412e816140f2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061416f82613618565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141a1576141a0613cd6565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614208602c836136b0565b9150614213826141ac565b604082019050919050565b60006020820190508181036000830152614237816141fb565b9050919050565b60008151905061424d81613622565b92915050565b60006020828403121561426957614268613553565b5b60006142778482850161423e565b91505092915050565b6000819050919050565b6000819050919050565b60006142af6142aa6142a584614280565b61428a565b613618565b9050919050565b6142bf81614294565b82525050565b60006060820190506142da6000830186613792565b6142e76020830185613792565b6142f460408301846142b6565b949350505050565b60008151905061430b81613b06565b92915050565b60006020828403121561432757614326613553565b5b6000614335848285016142fc565b91505092915050565b6000819050919050565b600061436361435e6143598461433e565b61428a565b613618565b9050919050565b61437381614348565b82525050565b600060608201905061438e6000830186613792565b61439b6020830185613792565b6143a8604083018461436a565b949350505050565b6000819050919050565b60006143d56143d06143cb846143b0565b61428a565b613618565b9050919050565b6143e5816143ba565b82525050565b60006060820190506144006000830186613792565b61440d6020830185613792565b61441a60408301846143dc565b949350505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061447e6029836136b0565b915061448982614422565b604082019050919050565b600060208201905081810360008301526144ad81614471565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614510602a836136b0565b915061451b826144b4565b604082019050919050565b6000602082019050818103600083015261453f81614503565b9050919050565b600061455182613618565b915061455c83613618565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561459557614594613cd6565b5b828202905092915050565b60006060820190506145b56000830186613792565b6145c26020830185613792565b6145cf604083018461367b565b949350505050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461460481613dbe565b61460e81866145d7565b94506001821660008114614629576001811461463a5761466d565b60ff1983168652818601935061466d565b614643856145e2565b60005b8381101561466557815481890152600182019150602081019050614646565b838801955050505b50505092915050565b6000614681826136a5565b61468b81856145d7565b935061469b8185602086016136c1565b80840191505092915050565b60006146b382856145f7565b91506146bf8284614676565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147276026836136b0565b9150614732826146cb565b604082019050919050565b600060208201905081810360008301526147568161471a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061479782613618565b91506147a283613618565b9250826147b2576147b161475d565b5b828204905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614819602c836136b0565b9150614824826147bd565b604082019050919050565b600060208201905081810360008301526148488161480c565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006148ab6025836136b0565b91506148b68261484f565b604082019050919050565b600060208201905081810360008301526148da8161489e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061493d6024836136b0565b9150614948826148e1565b604082019050919050565b6000602082019050818103600083015261496c81614930565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006149a96020836136b0565b91506149b482614973565b602082019050919050565b600060208201905081810360008301526149d88161499c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614a15601c836136b0565b9150614a20826149df565b602082019050919050565b60006020820190508181036000830152614a4481614a08565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614a816019836136b0565b9150614a8c82614a4b565b602082019050919050565b60006020820190508181036000830152614ab081614a74565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614b136032836136b0565b9150614b1e82614ab7565b604082019050919050565b60006020820190508181036000830152614b4281614b06565b9050919050565b6000614b5482613618565b9150614b5f83613618565b925082614b6f57614b6e61475d565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614ba182614b7a565b614bab8185614b85565b9350614bbb8185602086016136c1565b614bc4816136f4565b840191505092915050565b6000608082019050614be46000830187613792565b614bf16020830186613792565b614bfe604083018561367b565b8181036060830152614c108184614b96565b905095945050505050565b600081519050614c2a81613589565b92915050565b600060208284031215614c4657614c45613553565b5b6000614c5484828501614c1b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220ef38840be4710e2df3eee3e1488f6c2c1d398cf444ada67de9ac5f66a440503664736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5871536e387a79663965654636713667703667576b76555648687765723373784c5462546b786e65467237472f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000ea44bc914bed9f63ee90203126cf5b5677e7600f000000000000000000000000a053dbafba05e307a7bddede09c7feb235dc34b1000000000000000000000000a62f3fcd3a40bff115029252e0a9b1b9d391fbd800000000000000000000000005b41dc849615bb44161bdb8121478b5c85e1f390000000000000000000000005c3a272bdfab9a7fabe6bf12a11a59597a59a2080000000000000000000000007d3ff148a617b66b3f5141199db39f08fdcd355600000000000000000000000052a3f6293c9846f6a3b03be62929e16f2f856f3d0000000000000000000000009b7c2e90c37b99a2ac200b3884972bcf8f8fce85000000000000000000000000fb8578ba5ba33c0aadafe1b0454fab15417ee74a000000000000000000000000dec08cb92a506b88411da9ba290f3694be223c260000000000000000000000009bda3a3b397eccd43cdc5598ed771006551d706600000000000000000000000083aca1a0a3ca63ab19e4a146aa2ed2f120911b150000000000000000000000007d00856f70b6743cdd427bca6b5162822b07f162000000000000000000000000de9e78b8d74488c58b7553c4edcfe583ddd4a8dd000000000000000000000000c2fe0d5f88cda8cb2c91459269b2a91915d95cf800000000000000000000000050d34c90866cc4113964bf80db991a34d7746044000000000000000000000000d1eace521e79ecfc08f0e85cccfa206dda8084f200000000000000000000000039e60458426d26c27d8a6a767697abf2796d228a000000000000000000000000b35cc9d60a0e7cea677234d1ae1564f6ae71b6a40000000000000000000000009221f32ddd2105299bfd95fb7e12441b3be6cb430000000000000000000000007cba48ad447fa115d1c0662da389d91ea3e4c135000000000000000000000000a3eb090ab0f71829432d39695adc60c423cc0e9c000000000000000000000000b30d955afc668eab195f271d746484928a52cd49000000000000000000000000557bc1207a7b0dc5f88ebc72cd1d8502c372c04a000000000000000000000000653325afdb00dd741fee25a694467eba17e8e93d000000000000000000000000ee469320317ec1e3c23582a64fa3be655edf26d5000000000000000000000000925e26da09dc91c27ca4f7dcc6b91549ac19672c000000000000000000000000c4ba11bdd9884ea6c107fba66ab71d3cf3829b0f00000000000000000000000028b6d2ece66c20b682d5e461ffcb2cd0011f3416000000000000000000000000a5fa1a4faf0914cac20ae80e7700ac220cb139eb000000000000000000000000cfdcd073df77fb89884193bb25c8fa167aa565710000000000000000000000000ddec074e0e0ae21be8f9244c4ca92a48f4e6ed60000000000000000000000006f61534a43e73858dab092bff66b814ab2fbec6b000000000000000000000000668e343a48b679100be85924cfbaf5ecf243a25400000000000000000000000008bae65e21b408ba4a1b6317b758df41e0150bb4000000000000000000000000d9c183ccc168c4a702d2bea931d6e89cd6a0d7580000000000000000000000005bae2fe8d641f2bdf88994937e5dba87eb29afc100000000000000000000000055643fd1c1417c06690b298611408c9e5405aa81

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061025e5760003560e01c806370a0823111610146578063a22cb465116100c3578063e1e5886211610087578063e1e58862146106ff578063e985e9c51461071d578063ee99205c1461074d578063f1a9af891461076b578063f2fde38b14610789578063f751758b146107a55761025e565b8063a22cb4651461065b578063b0b4e80b14610677578063b88d4fde14610695578063c6ab67a3146106b1578063c87b56dd146106cf5761025e565b8063911198331161010a57806391119833146105c957806395d89b41146105e7578063996517cf146106055780639e6a1d7d14610623578063a0712d681461063f5761025e565b806370a0823114610523578063715018a6146105535780638d77ed1f1461055d5780638da5cb5b1461058d5780639000c538146105ab5761025e565b806330ab9c52116101df57806344b28d59116101a357806344b28d59146104635780634f6ccce71461046d57806355f804b31461049d5780635909af0d146104b95780636352211e146104d55780636c0360eb146105055761025e565b806330ab9c52146103bf57806331dbe6aa146103dd5780633347e4d6146103fb57806342842e0e14610417578063438b6300146104335761025e565b806318160ddd1161022657806318160ddd1461032d57806323b872dd1461034b57806328016f9a1461036757806329922980146103715780632f745c591461038f5761025e565b806301ffc9a714610263578063068a96e21461029357806306fdde03146102c3578063081812fc146102e1578063095ea7b314610311575b600080fd5b61027d600480360381019061027891906135b5565b6107c3565b60405161028a91906135fd565b60405180910390f35b6102ad60048036038101906102a8919061364e565b61083d565b6040516102ba919061368a565b60405180910390f35b6102cb610909565b6040516102d8919061373e565b60405180910390f35b6102fb60048036038101906102f6919061364e565b61099b565b60405161030891906137a1565b60405180910390f35b61032b600480360381019061032691906137e8565b610a20565b005b610335610b37565b604051610342919061368a565b60405180910390f35b61036560048036038101906103609190613828565b610b44565b005b61036f610ba4565b005b610379610c3d565b60405161038691906137a1565b60405180910390f35b6103a960048036038101906103a491906137e8565b610c63565b6040516103b6919061368a565b60405180910390f35b6103c7610d08565b6040516103d4919061368a565b60405180910390f35b6103e5610d0e565b6040516103f291906137a1565b60405180910390f35b6104156004803603810190610410919061387b565b610d34565b005b610431600480360381019061042c9190613828565b610df4565b005b61044d6004803603810190610448919061387b565b610e14565b60405161045a9190613966565b60405180910390f35b61046b610ec2565b005b6104876004803603810190610482919061364e565b610f62565b604051610494919061368a565b60405180910390f35b6104b760048036038101906104b29190613abd565b610fd3565b005b6104d360048036038101906104ce91906137e8565b611069565b005b6104ef60048036038101906104ea919061364e565b6118dd565b6040516104fc91906137a1565b60405180910390f35b61050d61198e565b60405161051a919061373e565b60405180910390f35b61053d6004803603810190610538919061387b565b611a1c565b60405161054a919061368a565b60405180910390f35b61055b611ad3565b005b610577600480360381019061057291906137e8565b611b5b565b60405161058491906135fd565b60405180910390f35b610595611bca565b6040516105a291906137a1565b60405180910390f35b6105b3611bf4565b6040516105c091906135fd565b60405180910390f35b6105d1611c07565b6040516105de91906135fd565b60405180910390f35b6105ef611c1a565b6040516105fc919061373e565b60405180910390f35b61060d611cac565b60405161061a919061368a565b60405180910390f35b61063d6004803603810190610638919061364e565b611cb2565b005b6106596004803603810190610654919061364e565b611d38565b005b61067560048036038101906106709190613b32565b61204f565b005b61067f612065565b60405161068c919061368a565b60405180910390f35b6106af60048036038101906106aa9190613c13565b61206b565b005b6106b96120cd565b6040516106c6919061368a565b60405180910390f35b6106e960048036038101906106e4919061364e565b6120f1565b6040516106f6919061373e565b60405180910390f35b610707612125565b604051610714919061368a565b60405180910390f35b61073760048036038101906107329190613c96565b61212b565b60405161074491906135fd565b60405180910390f35b6107556121bf565b60405161076291906137a1565b60405180910390f35b6107736121e5565b604051610780919061368a565b60405180910390f35b6107a3600480360381019061079e919061387b565b6121f2565b005b6107ad6122e9565b6040516107ba919061368a565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083657506108358261235b565b5b9050919050565b6000600161012c61084e9190613d05565b821161085d5760019050610904565b6001606461012c61086e9190613d39565b6108789190613d05565b82116108875760029050610904565b60016019606461012c61089a9190613d39565b6108a49190613d39565b6108ae9190613d05565b82116108bd5760039050610904565b6001600a6019606461012c6108d29190613d39565b6108dc9190613d39565b6108e69190613d39565b6108f09190613d05565b82116108ff5760049050610904565b600090505b919050565b60606000805461091890613dbe565b80601f016020809104026020016040519081016040528092919081815260200182805461094490613dbe565b80156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b5050505050905090565b60006109a68261243d565b6109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90613e61565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2b826118dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290613ef3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aba6124a9565b73ffffffffffffffffffffffffffffffffffffffff161480610ae95750610ae881610ae36124a9565b61212b565b5b610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90613f85565b60405180910390fd5b610b3283836124b1565b505050565b6000600880549050905090565b610b55610b4f6124a9565b8261256a565b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90614017565b60405180910390fd5b610b9f838383612648565b505050565b610bac6124a9565b73ffffffffffffffffffffffffffffffffffffffff16610bca611bca565b73ffffffffffffffffffffffffffffffffffffffff1614610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790614083565b60405180910390fd5b6001601360016101000a81548160ff021916908315150217905550565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c6e83611a1c565b8210610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690614115565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e5481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d3c6124a9565b73ffffffffffffffffffffffffffffffffffffffff16610d5a611bca565b73ffffffffffffffffffffffffffffffffffffffff1614610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790614083565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e0f8383836040518060200160405280600081525061206b565b505050565b60606000610e2183611a1c565b905060008167ffffffffffffffff811115610e3f57610e3e613992565b5b604051908082528060200260200182016040528015610e6d5781602001602082028036833780820191505090505b50905060005b82811015610eb757610e858582610c63565b828281518110610e9857610e97614135565b5b6020026020010181815250508080610eaf90614164565b915050610e73565b508092505050919050565b610eca6124a9565b73ffffffffffffffffffffffffffffffffffffffff16610ee8611bca565b73ffffffffffffffffffffffffffffffffffffffff1614610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590614083565b60405180910390fd5b6001601360006101000a81548160ff02191690831515021790555042601481905550565b6000610f6c610b37565b8210610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa49061421e565b60405180910390fd5b60088281548110610fc157610fc0614135565b5b90600052602060002001549050919050565b610fdb6124a9565b73ffffffffffffffffffffffffffffffffffffffff16610ff9611bca565b73ffffffffffffffffffffffffffffffffffffffff161461104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690614083565b60405180910390fd5b80601790805190602001906110659291906134a6565b5050565b601360019054906101000a900460ff166110af576040517f3b7e326c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600161012c6110c09190613d05565b82116110cf5760029050611163565b6001606461012c6110e09190613d39565b6110ea9190613d05565b82116110f95760039050611162565b60016019606461012c61110c9190613d39565b6111169190613d39565b6111209190613d05565b821161112f5760049050611161565b6040517f3a7e392300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b600281036113c2576064601054106111a7576040517f846fb9e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b670de0b6b3a7640000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161120b91906137a1565b602060405180830381865afa158015611228573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124c9190614253565b1015611284576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61128f836001611b5b565b6112c5576040517fad09b9e300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a76400006040518463ffffffff1660e01b815260040161134e939291906142c5565b6020604051808303816000875af115801561136d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113919190614311565b506113ab8360105461012c6113a69190613d39565b6128ae565b6010600081548092919060010191905055506118d8565b6003810361162d57601960115410611406576040517f846fb9e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b671bc16d674ec80000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161146a91906137a1565b602060405180830381865afa158015611487573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ab9190614253565b10156114e3576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ee836002611b5b565b611524576040517fad09b9e300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16671bc16d674ec800006040518463ffffffff1660e01b81526004016115ad93929190614379565b6020604051808303816000875af11580156115cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f09190614311565b5061161683601154606461012c6116079190613d39565b6116119190613d39565b6128ae565b6011600081548092919060010191905055506118d7565b600481036118a457600a60125410611671576040517f846fb9e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6729a2241af62c0000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016116d591906137a1565b602060405180830381865afa1580156116f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117169190614253565b101561174e576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611759836003611b5b565b61178f576040517fad09b9e300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166729a2241af62c00006040518463ffffffff1660e01b8152600401611818939291906143eb565b6020604051808303816000875af1158015611837573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185b9190614311565b5061188d836012546019606461012c6118749190613d39565b61187e9190613d39565b6118889190613d39565b6128ae565b6012600081548092919060010191905055506118d6565b6040517f3a7e392300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90614494565b60405180910390fd5b80915050919050565b6017805461199b90613dbe565b80601f01602080910402602001604051908101604052809291908181526020018280546119c790613dbe565b8015611a145780601f106119e957610100808354040283529160200191611a14565b820191906000526020600020905b8154815290600101906020018083116119f757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390614526565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611adb6124a9565b73ffffffffffffffffffffffffffffffffffffffff16611af9611bca565b73ffffffffffffffffffffffffffffffffffffffff1614611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4690614083565b60405180910390fd5b611b596000612a87565b565b60006060611b6884610e14565b905060005b8151811015611bbd5783611b9a838381518110611b8d57611b8c614135565b5b602002602001015161083d565b03611baa57600192505050611bc4565b8080611bb590614164565b915050611b6d565b5060009150505b92915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601360019054906101000a900460ff1681565b601360009054906101000a900460ff1681565b606060018054611c2990613dbe565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5590613dbe565b8015611ca25780601f10611c7757610100808354040283529160200191611ca2565b820191906000526020600020905b815481529060010190602001808311611c8557829003601f168201915b5050505050905090565b60165481565b611cba6124a9565b73ffffffffffffffffffffffffffffffffffffffff16611cd8611bca565b73ffffffffffffffffffffffffffffffffffffffff1614611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590614083565b60405180910390fd5b8060168190555050565b601360009054906101000a900460ff16611d7e576040517f06290e4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d886122e9565b90508181611d969190614546565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611df191906137a1565b602060405180830381865afa158015611e0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e329190614253565b1015611e6a576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601654821115611ea6576040517f7c5369f600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61012c82611eb2610b37565b611ebc9190613d39565b1115611ef4576040517f846fb9e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168585611f629190614546565b6040518463ffffffff1660e01b8152600401611f80939291906145a0565b6020604051808303816000875af1158015611f9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fc39190614311565b5060005b8281101561200b576000611fd9610b37565b9050611fe533826128ae565b600f6000815480929190600101919050555050808061200390614164565b915050611fc7565b5042601481905550670de0b6b3a76400006019836120299190614546565b6120339190614546565b600e60008282546120449190613d39565b925050819055505050565b61206161205a6124a9565b8383612b4d565b5050565b60145481565b61207c6120766124a9565b8361256a565b6120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b290614017565b60405180910390fd5b6120c784848484612cb9565b50505050565b7f9912e067bd3802c3b007ce40b6c125160d2ccb5352d199e20c092fdc17af805781565b606060176120fe83612d15565b60405160200161210f9291906146a7565b6040516020818303038152906040529050919050565b60155481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b683635c9adc5dea0000081565b6121fa6124a9565b73ffffffffffffffffffffffffffffffffffffffff16612218611bca565b73ffffffffffffffffffffffffffffffffffffffff161461226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226590614083565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d49061473d565b60405180910390fd5b6122e681612a87565b50565b600080670de0b6b3a76400006019601554601454426123089190613d05565b612312919061478c565b61231c9190614546565b6123269190614546565b905080600e5410156123415768015af1d78b58c40000612350565b80600e5461234f9190613d05565b5b91505090565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061242657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612436575061243582612e75565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612524836118dd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125758261243d565b6125b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ab9061482f565b60405180910390fd5b60006125bf836118dd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126015750612600818561212b565b5b8061263f57508373ffffffffffffffffffffffffffffffffffffffff166126278461099b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612668826118dd565b73ffffffffffffffffffffffffffffffffffffffff16146126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b5906148c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490614953565b60405180910390fd5b612738838383612edf565b6127436000826124b1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127939190613d05565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127ea9190613d39565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128a9838383612ff1565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361291d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612914906149bf565b60405180910390fd5b6129268161243d565b15612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d90614a2b565b60405180910390fd5b61297260008383612edf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129c29190613d39565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a8360008383612ff1565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb290614a97565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612cac91906135fd565b60405180910390a3505050565b612cc4848484612648565b612cd084848484612ff6565b612d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0690614b29565b60405180910390fd5b50505050565b606060008203612d5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e70565b600082905060005b60008214612d8e578080612d7790614164565b915050600a82612d87919061478c565b9150612d64565b60008167ffffffffffffffff811115612daa57612da9613992565b5b6040519080825280601f01601f191660200182016040528015612ddc5781602001600182028036833780820191505090505b5090505b60008514612e6957600182612df59190613d05565b9150600a85612e049190614b49565b6030612e109190613d39565b60f81b818381518110612e2657612e25614135565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e62919061478c565b9450612de0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612eea838383612356565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f2c57612f278161317d565b612f6b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f6a57612f6983826131c6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fad57612fa881613333565b612fec565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612feb57612fea8282613404565b5b5b505050565b505050565b60006130178473ffffffffffffffffffffffffffffffffffffffff16613483565b15613170578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130406124a9565b8786866040518563ffffffff1660e01b81526004016130629493929190614bcf565b6020604051808303816000875af192505050801561309e57506040513d601f19601f8201168201806040525081019061309b9190614c30565b60015b613120573d80600081146130ce576040519150601f19603f3d011682016040523d82523d6000602084013e6130d3565b606091505b506000815103613118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310f90614b29565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613175565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131d384611a1c565b6131dd9190613d05565b90506000600760008481526020019081526020016000205490508181146132c2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133479190613d05565b905060006009600084815260200190815260200160002054905060006008838154811061337757613376614135565b5b90600052602060002001549050806008838154811061339957613398614135565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133e8576133e7614c5d565b5b6001900381819060005260206000200160009055905550505050565b600061340f83611a1c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546134b290613dbe565b90600052602060002090601f0160209004810192826134d4576000855561351b565b82601f106134ed57805160ff191683800117855561351b565b8280016001018555821561351b579182015b8281111561351a5782518255916020019190600101906134ff565b5b509050613528919061352c565b5090565b5b8082111561354557600081600090555060010161352d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135928161355d565b811461359d57600080fd5b50565b6000813590506135af81613589565b92915050565b6000602082840312156135cb576135ca613553565b5b60006135d9848285016135a0565b91505092915050565b60008115159050919050565b6135f7816135e2565b82525050565b600060208201905061361260008301846135ee565b92915050565b6000819050919050565b61362b81613618565b811461363657600080fd5b50565b60008135905061364881613622565b92915050565b60006020828403121561366457613663613553565b5b600061367284828501613639565b91505092915050565b61368481613618565b82525050565b600060208201905061369f600083018461367b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136df5780820151818401526020810190506136c4565b838111156136ee576000848401525b50505050565b6000601f19601f8301169050919050565b6000613710826136a5565b61371a81856136b0565b935061372a8185602086016136c1565b613733816136f4565b840191505092915050565b600060208201905081810360008301526137588184613705565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061378b82613760565b9050919050565b61379b81613780565b82525050565b60006020820190506137b66000830184613792565b92915050565b6137c581613780565b81146137d057600080fd5b50565b6000813590506137e2816137bc565b92915050565b600080604083850312156137ff576137fe613553565b5b600061380d858286016137d3565b925050602061381e85828601613639565b9150509250929050565b60008060006060848603121561384157613840613553565b5b600061384f868287016137d3565b9350506020613860868287016137d3565b925050604061387186828701613639565b9150509250925092565b60006020828403121561389157613890613553565b5b600061389f848285016137d3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138dd81613618565b82525050565b60006138ef83836138d4565b60208301905092915050565b6000602082019050919050565b6000613913826138a8565b61391d81856138b3565b9350613928836138c4565b8060005b8381101561395957815161394088826138e3565b975061394b836138fb565b92505060018101905061392c565b5085935050505092915050565b600060208201905081810360008301526139808184613908565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139ca826136f4565b810181811067ffffffffffffffff821117156139e9576139e8613992565b5b80604052505050565b60006139fc613549565b9050613a0882826139c1565b919050565b600067ffffffffffffffff821115613a2857613a27613992565b5b613a31826136f4565b9050602081019050919050565b82818337600083830152505050565b6000613a60613a5b84613a0d565b6139f2565b905082815260208101848484011115613a7c57613a7b61398d565b5b613a87848285613a3e565b509392505050565b600082601f830112613aa457613aa3613988565b5b8135613ab4848260208601613a4d565b91505092915050565b600060208284031215613ad357613ad2613553565b5b600082013567ffffffffffffffff811115613af157613af0613558565b5b613afd84828501613a8f565b91505092915050565b613b0f816135e2565b8114613b1a57600080fd5b50565b600081359050613b2c81613b06565b92915050565b60008060408385031215613b4957613b48613553565b5b6000613b57858286016137d3565b9250506020613b6885828601613b1d565b9150509250929050565b600067ffffffffffffffff821115613b8d57613b8c613992565b5b613b96826136f4565b9050602081019050919050565b6000613bb6613bb184613b72565b6139f2565b905082815260208101848484011115613bd257613bd161398d565b5b613bdd848285613a3e565b509392505050565b600082601f830112613bfa57613bf9613988565b5b8135613c0a848260208601613ba3565b91505092915050565b60008060008060808587031215613c2d57613c2c613553565b5b6000613c3b878288016137d3565b9450506020613c4c878288016137d3565b9350506040613c5d87828801613639565b925050606085013567ffffffffffffffff811115613c7e57613c7d613558565b5b613c8a87828801613be5565b91505092959194509250565b60008060408385031215613cad57613cac613553565b5b6000613cbb858286016137d3565b9250506020613ccc858286016137d3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d1082613618565b9150613d1b83613618565b925082821015613d2e57613d2d613cd6565b5b828203905092915050565b6000613d4482613618565b9150613d4f83613618565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8457613d83613cd6565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613dd657607f821691505b602082108103613de957613de8613d8f565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e4b602c836136b0565b9150613e5682613def565b604082019050919050565b60006020820190508181036000830152613e7a81613e3e565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613edd6021836136b0565b9150613ee882613e81565b604082019050919050565b60006020820190508181036000830152613f0c81613ed0565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613f6f6038836136b0565b9150613f7a82613f13565b604082019050919050565b60006020820190508181036000830152613f9e81613f62565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006140016031836136b0565b915061400c82613fa5565b604082019050919050565b6000602082019050818103600083015261403081613ff4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061406d6020836136b0565b915061407882614037565b602082019050919050565b6000602082019050818103600083015261409c81614060565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006140ff602b836136b0565b915061410a826140a3565b604082019050919050565b6000602082019050818103600083015261412e816140f2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061416f82613618565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141a1576141a0613cd6565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614208602c836136b0565b9150614213826141ac565b604082019050919050565b60006020820190508181036000830152614237816141fb565b9050919050565b60008151905061424d81613622565b92915050565b60006020828403121561426957614268613553565b5b60006142778482850161423e565b91505092915050565b6000819050919050565b6000819050919050565b60006142af6142aa6142a584614280565b61428a565b613618565b9050919050565b6142bf81614294565b82525050565b60006060820190506142da6000830186613792565b6142e76020830185613792565b6142f460408301846142b6565b949350505050565b60008151905061430b81613b06565b92915050565b60006020828403121561432757614326613553565b5b6000614335848285016142fc565b91505092915050565b6000819050919050565b600061436361435e6143598461433e565b61428a565b613618565b9050919050565b61437381614348565b82525050565b600060608201905061438e6000830186613792565b61439b6020830185613792565b6143a8604083018461436a565b949350505050565b6000819050919050565b60006143d56143d06143cb846143b0565b61428a565b613618565b9050919050565b6143e5816143ba565b82525050565b60006060820190506144006000830186613792565b61440d6020830185613792565b61441a60408301846143dc565b949350505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061447e6029836136b0565b915061448982614422565b604082019050919050565b600060208201905081810360008301526144ad81614471565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614510602a836136b0565b915061451b826144b4565b604082019050919050565b6000602082019050818103600083015261453f81614503565b9050919050565b600061455182613618565b915061455c83613618565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561459557614594613cd6565b5b828202905092915050565b60006060820190506145b56000830186613792565b6145c26020830185613792565b6145cf604083018461367b565b949350505050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461460481613dbe565b61460e81866145d7565b94506001821660008114614629576001811461463a5761466d565b60ff1983168652818601935061466d565b614643856145e2565b60005b8381101561466557815481890152600182019150602081019050614646565b838801955050505b50505092915050565b6000614681826136a5565b61468b81856145d7565b935061469b8185602086016136c1565b80840191505092915050565b60006146b382856145f7565b91506146bf8284614676565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147276026836136b0565b9150614732826146cb565b604082019050919050565b600060208201905081810360008301526147568161471a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061479782613618565b91506147a283613618565b9250826147b2576147b161475d565b5b828204905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614819602c836136b0565b9150614824826147bd565b604082019050919050565b600060208201905081810360008301526148488161480c565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006148ab6025836136b0565b91506148b68261484f565b604082019050919050565b600060208201905081810360008301526148da8161489e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061493d6024836136b0565b9150614948826148e1565b604082019050919050565b6000602082019050818103600083015261496c81614930565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006149a96020836136b0565b91506149b482614973565b602082019050919050565b600060208201905081810360008301526149d88161499c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614a15601c836136b0565b9150614a20826149df565b602082019050919050565b60006020820190508181036000830152614a4481614a08565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614a816019836136b0565b9150614a8c82614a4b565b602082019050919050565b60006020820190508181036000830152614ab081614a74565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614b136032836136b0565b9150614b1e82614ab7565b604082019050919050565b60006020820190508181036000830152614b4281614b06565b9050919050565b6000614b5482613618565b9150614b5f83613618565b925082614b6f57614b6e61475d565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614ba182614b7a565b614bab8185614b85565b9350614bbb8185602086016136c1565b614bc4816136f4565b840191505092915050565b6000608082019050614be46000830187613792565b614bf16020830186613792565b614bfe604083018561367b565b8181036060830152614c108184614b96565b905095945050505050565b600081519050614c2a81613589565b92915050565b600060208284031215614c4657614c45613553565b5b6000614c5484828501614c1b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220ef38840be4710e2df3eee3e1488f6c2c1d398cf444ada67de9ac5f66a440503664736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5871536e387a79663965654636713667703667576b76555648687765723373784c5462546b786e65467237472f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000ea44bc914bed9f63ee90203126cf5b5677e7600f000000000000000000000000a053dbafba05e307a7bddede09c7feb235dc34b1000000000000000000000000a62f3fcd3a40bff115029252e0a9b1b9d391fbd800000000000000000000000005b41dc849615bb44161bdb8121478b5c85e1f390000000000000000000000005c3a272bdfab9a7fabe6bf12a11a59597a59a2080000000000000000000000007d3ff148a617b66b3f5141199db39f08fdcd355600000000000000000000000052a3f6293c9846f6a3b03be62929e16f2f856f3d0000000000000000000000009b7c2e90c37b99a2ac200b3884972bcf8f8fce85000000000000000000000000fb8578ba5ba33c0aadafe1b0454fab15417ee74a000000000000000000000000dec08cb92a506b88411da9ba290f3694be223c260000000000000000000000009bda3a3b397eccd43cdc5598ed771006551d706600000000000000000000000083aca1a0a3ca63ab19e4a146aa2ed2f120911b150000000000000000000000007d00856f70b6743cdd427bca6b5162822b07f162000000000000000000000000de9e78b8d74488c58b7553c4edcfe583ddd4a8dd000000000000000000000000c2fe0d5f88cda8cb2c91459269b2a91915d95cf800000000000000000000000050d34c90866cc4113964bf80db991a34d7746044000000000000000000000000d1eace521e79ecfc08f0e85cccfa206dda8084f200000000000000000000000039e60458426d26c27d8a6a767697abf2796d228a000000000000000000000000b35cc9d60a0e7cea677234d1ae1564f6ae71b6a40000000000000000000000009221f32ddd2105299bfd95fb7e12441b3be6cb430000000000000000000000007cba48ad447fa115d1c0662da389d91ea3e4c135000000000000000000000000a3eb090ab0f71829432d39695adc60c423cc0e9c000000000000000000000000b30d955afc668eab195f271d746484928a52cd49000000000000000000000000557bc1207a7b0dc5f88ebc72cd1d8502c372c04a000000000000000000000000653325afdb00dd741fee25a694467eba17e8e93d000000000000000000000000ee469320317ec1e3c23582a64fa3be655edf26d5000000000000000000000000925e26da09dc91c27ca4f7dcc6b91549ac19672c000000000000000000000000c4ba11bdd9884ea6c107fba66ab71d3cf3829b0f00000000000000000000000028b6d2ece66c20b682d5e461ffcb2cd0011f3416000000000000000000000000a5fa1a4faf0914cac20ae80e7700ac220cb139eb000000000000000000000000cfdcd073df77fb89884193bb25c8fa167aa565710000000000000000000000000ddec074e0e0ae21be8f9244c4ca92a48f4e6ed60000000000000000000000006f61534a43e73858dab092bff66b814ab2fbec6b000000000000000000000000668e343a48b679100be85924cfbaf5ecf243a25400000000000000000000000008bae65e21b408ba4a1b6317b758df41e0150bb4000000000000000000000000d9c183ccc168c4a702d2bea931d6e89cd6a0d7580000000000000000000000005bae2fe8d641f2bdf88994937e5dba87eb29afc100000000000000000000000055643fd1c1417c06690b298611408c9e5405aa81

-----Decoded View---------------
Arg [0] : _baseURI (string): https://ipfs.io/ipfs/QmXqSn8zyf9eeF6q6gp6gWkvUVHhwer3sxLTbTkxneFr7G/
Arg [1] : dropLemonStands (address[]): 0xEA44bc914bED9F63Ee90203126cf5b5677E7600F,0xA053DbaFbA05E307a7BdDedE09C7FEB235dC34b1,0xA62f3FcD3A40bfF115029252e0a9b1b9D391fbD8,0x05b41dc849615bB44161bdB8121478b5c85e1f39,0x5c3A272BDFaB9A7fAbe6bF12a11A59597a59A208,0x7d3FF148A617b66b3f5141199db39f08FDCD3556,0x52A3F6293c9846f6A3B03Be62929E16f2F856f3D,0x9B7c2E90C37b99a2AC200B3884972BCF8F8FcE85,0xFb8578ba5ba33C0aadaFe1b0454FAb15417eE74a,0xdec08cb92a506B88411da9Ba290f3694BE223c26,0x9bDA3a3B397eCcD43cdc5598ed771006551D7066,0x83ACa1a0A3Ca63aB19e4A146Aa2ED2f120911b15,0x7D00856F70b6743CDD427BCA6B5162822B07F162,0xDE9E78b8d74488c58b7553C4eDcFE583ddD4a8DD,0xC2Fe0D5F88CDa8cb2C91459269B2a91915d95Cf8,0x50d34c90866cc4113964bF80db991A34D7746044,0xD1EAce521e79ECFC08f0E85cccfA206DDA8084F2,0x39E60458426d26C27d8A6A767697Abf2796D228A,0xb35CC9d60a0E7Cea677234d1Ae1564F6ae71B6A4,0x9221F32dDD2105299bfD95FB7E12441b3bE6CB43,0x7Cba48ad447fA115d1C0662DA389d91Ea3E4C135,0xA3eb090Ab0F71829432D39695ADc60C423cc0E9c,0xb30D955Afc668EaB195f271D746484928A52cd49,0x557Bc1207A7B0dC5f88EBC72Cd1d8502C372c04a,0x653325aFDb00DD741Fee25a694467eBA17E8e93D,0xEe469320317eC1E3C23582a64FA3be655edF26d5,0x925E26dA09dC91C27ca4F7dcc6b91549aC19672c,0xC4ba11BDD9884EA6c107FBA66AB71D3cF3829b0F,0x28b6d2ece66c20B682d5E461FfCb2cd0011F3416,0xA5fa1a4Faf0914cAC20ae80e7700aC220cb139eb,0xCFdCD073df77FB89884193Bb25C8Fa167Aa56571,0x0dDec074e0E0AE21bE8F9244C4CA92a48f4e6Ed6,0x6f61534a43e73858Dab092bFf66B814AB2fbec6b,0x668e343a48b679100be85924cFBaF5Ecf243A254,0x08bAE65e21B408Ba4A1B6317B758DF41E0150bB4,0xD9C183cCc168c4a702d2beA931D6E89cd6a0d758,0x5bAE2fE8d641F2BdF88994937E5DBa87Eb29AfC1,0x55643fD1c1417C06690b298611408C9E5405AA81

-----Encoded View---------------
45 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d5871536e387a796639
Arg [4] : 65654636713667703667576b76555648687765723373784c5462546b786e6546
Arg [5] : 7237472f00000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [7] : 000000000000000000000000ea44bc914bed9f63ee90203126cf5b5677e7600f
Arg [8] : 000000000000000000000000a053dbafba05e307a7bddede09c7feb235dc34b1
Arg [9] : 000000000000000000000000a62f3fcd3a40bff115029252e0a9b1b9d391fbd8
Arg [10] : 00000000000000000000000005b41dc849615bb44161bdb8121478b5c85e1f39
Arg [11] : 0000000000000000000000005c3a272bdfab9a7fabe6bf12a11a59597a59a208
Arg [12] : 0000000000000000000000007d3ff148a617b66b3f5141199db39f08fdcd3556
Arg [13] : 00000000000000000000000052a3f6293c9846f6a3b03be62929e16f2f856f3d
Arg [14] : 0000000000000000000000009b7c2e90c37b99a2ac200b3884972bcf8f8fce85
Arg [15] : 000000000000000000000000fb8578ba5ba33c0aadafe1b0454fab15417ee74a
Arg [16] : 000000000000000000000000dec08cb92a506b88411da9ba290f3694be223c26
Arg [17] : 0000000000000000000000009bda3a3b397eccd43cdc5598ed771006551d7066
Arg [18] : 00000000000000000000000083aca1a0a3ca63ab19e4a146aa2ed2f120911b15
Arg [19] : 0000000000000000000000007d00856f70b6743cdd427bca6b5162822b07f162
Arg [20] : 000000000000000000000000de9e78b8d74488c58b7553c4edcfe583ddd4a8dd
Arg [21] : 000000000000000000000000c2fe0d5f88cda8cb2c91459269b2a91915d95cf8
Arg [22] : 00000000000000000000000050d34c90866cc4113964bf80db991a34d7746044
Arg [23] : 000000000000000000000000d1eace521e79ecfc08f0e85cccfa206dda8084f2
Arg [24] : 00000000000000000000000039e60458426d26c27d8a6a767697abf2796d228a
Arg [25] : 000000000000000000000000b35cc9d60a0e7cea677234d1ae1564f6ae71b6a4
Arg [26] : 0000000000000000000000009221f32ddd2105299bfd95fb7e12441b3be6cb43
Arg [27] : 0000000000000000000000007cba48ad447fa115d1c0662da389d91ea3e4c135
Arg [28] : 000000000000000000000000a3eb090ab0f71829432d39695adc60c423cc0e9c
Arg [29] : 000000000000000000000000b30d955afc668eab195f271d746484928a52cd49
Arg [30] : 000000000000000000000000557bc1207a7b0dc5f88ebc72cd1d8502c372c04a
Arg [31] : 000000000000000000000000653325afdb00dd741fee25a694467eba17e8e93d
Arg [32] : 000000000000000000000000ee469320317ec1e3c23582a64fa3be655edf26d5
Arg [33] : 000000000000000000000000925e26da09dc91c27ca4f7dcc6b91549ac19672c
Arg [34] : 000000000000000000000000c4ba11bdd9884ea6c107fba66ab71d3cf3829b0f
Arg [35] : 00000000000000000000000028b6d2ece66c20b682d5e461ffcb2cd0011f3416
Arg [36] : 000000000000000000000000a5fa1a4faf0914cac20ae80e7700ac220cb139eb
Arg [37] : 000000000000000000000000cfdcd073df77fb89884193bb25c8fa167aa56571
Arg [38] : 0000000000000000000000000ddec074e0e0ae21be8f9244c4ca92a48f4e6ed6
Arg [39] : 0000000000000000000000006f61534a43e73858dab092bff66b814ab2fbec6b
Arg [40] : 000000000000000000000000668e343a48b679100be85924cfbaf5ecf243a254
Arg [41] : 00000000000000000000000008bae65e21b408ba4a1b6317b758df41e0150bb4
Arg [42] : 000000000000000000000000d9c183ccc168c4a702d2bea931d6e89cd6a0d758
Arg [43] : 0000000000000000000000005bae2fe8d641f2bdf88994937e5dba87eb29afc1
Arg [44] : 00000000000000000000000055643fd1c1417c06690b298611408c9e5405aa81


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.