ETH Price: $3,827.99 (+4.92%)

Contract

0xA7Ea65D03c2A44D5dF54A9E7BbF3B02c9b5db723
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Age:1H
Amount:Between 1-100
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

Update your filters to view other transactions

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Tan

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion
File 1 of 21 : Tan.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.11;




///  _           _   _         _    _                                         _     
/// | |_ ___ ___| |_|_|___ ___| |  | |_ ___ ___ ___ ___ ___ _____ ___        |_|___ 
/// |  _| .'|  _|  _| |  _| .'| |  |  _| .'|   | . |  _| .'|     |_ -|   _   | | . |
/// |_| |__,|___|_| |_|___|__,|_|  |_| |__,|_|_|_  |_| |__,|_|_|_|___|  |_|  |_|___|
///                                            |___|                                
///
///                                                              tacticaltangrams.io




///  _                   _       
/// |_|_____ ___ ___ ___| |_ ___ 
/// | |     | . | . |  _|  _|_ -|
/// |_|_|_|_|  _|___|_| |_| |___|
///         |_|                  

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

import "./State.sol";
import "./Team.sol";
import "./VRFD20.sol";




///  _     _           ___                 
/// |_|___| |_ ___ ___|  _|___ ___ ___ ___ 
/// | |   |  _| -_|  _|  _| .'|  _| -_|_ -|
/// |_|_|_|_| |___|_| |_| |__,|___|___|___|

interface TangramContract {
    function getGeneration(uint tokenId) external pure returns (uint);
    function getTanMetadata(uint tokenId, uint generation, uint generationSeed) external pure returns (string memory);
}




///              _               _      _____         
///  ___ ___ ___| |_ ___ ___ ___| |_   |_   _|___ ___ 
/// |  _| . |   |  _|  _| .'|  _|  _|    | | | .'|   |
/// |___|___|_|_|_| |_| |__,|___|_|      |_| |__,|_|_|                                                  

/// @title Tactical Tangrams main Tan contract
/// @author tacticaltangrams.io
/// @notice Tracks all Tan operations for tacticaltangrams.io. This makes this contract the OpenSea Tan collection
contract Tan is
    ERC721Enumerable,
    Ownable,
    Pausable,
    State,
    Team,
    VRFD20 {




    /// @notice Emit Generation closing event; triggered by swapping 80+ Tans for the current generation
    /// @param generation Generation that is closing
    event GenerationClosing(uint generation);

    /// @notice Emit Generation closed event
    /// @param generation Generation that is closed
    event GenerationClosed(uint generation);




    ///                  _               _           
    ///  ___ ___ ___ ___| |_ ___ _ _ ___| |_ ___ ___ 
    /// |  _| . |   |_ -|  _|  _| | |  _|  _| . |  _|
    /// |___|___|_|_|___|_| |_| |___|___|_| |___|_|  

    /// @notice Deployment constructor
    /// @param _name                    ERC721 name of token
    /// @param _symbol                  ERC721 symbol of token
    /// @param _openPremintAtDeployment Opens premint directly at contract deployment
    /// @param _vrfCoordinator          Chainlink VRF Coordinator address
    /// @param _link                    LINK token address
    /// @param _keyHash                 Public key against which randomness is created
    /// @param _fee                     VRF Chainlink fee in LINK
    /// @param _teamAddresses           List of team member's addresses; first address is emergency address
    /// @param _tangramContract         Address for Tangram contract
    constructor(
            address payable[TEAM_SIZE] memory _teamAddresses,
            string memory                     _name,
            string memory                     _symbol,
            bool                              _openPremintAtDeployment,
            address                           _vrfCoordinator,
            address                           _link,
            bytes32                           _keyHash,
            uint                              _fee,
            address                           _tangramContract
        )

        ERC721(
            _name,
            _symbol
        )

        Team(
            _teamAddresses
        )

        VRFD20(
            _vrfCoordinator,
            _link,
            _keyHash,
            _fee
        )
    {
        vrfCoordinator = _vrfCoordinator;
        setTangramContract(_tangramContract);

        if (_openPremintAtDeployment)
        {
            changeState(
                StateType.DEPLOYED,
                StateType.PREMINT);
        }
    }




    ///        _     _   
    ///  _____|_|___| |_ 
    /// |     | |   |  _|
    /// |_|_|_|_|_|_|_|  

    uint constant public MAX_MINT         = 15554;
    uint constant public MAX_TANS_OG      = 7;
    uint constant public MAX_TANS_WL      = 7;
    uint constant public MAX_TANS_PUBLIC  = 14;

    uint constant public PRICE_WL         = 2 * 1e16;
    uint constant public PRICE_PUBLIC     = 3 * 1e16;

    bytes32 private merkleRootOG = 0x67a345396a56431c46add239308b6fcfbab7dbf09287447d3f5f2458c0cccdc5;
    bytes32 private merkleRootWL = 0xf6c54efaf65ac33f79611e973313be91913aaf019de02d6d3ae1e6566f75929a;

    mapping (address => bool) private addressPreminted;
    mapping (uint    => uint) public mintCounter;

    string private constant INVALID_NUMBER_OF_TANS = "Invalid number of tans or no more tans left";

    /// @notice Get maximum number of mints for the given generation
    /// @param generation Generation to get max mints for
    /// @return Maximum number of mints for generation
    function maxMintForGeneration(uint generation) public pure
        generationBetween(generation, 1, 7)
        returns (uint)
    {
        if (generation == 7) {
            return 55;
        }
        if (generation == 6) {
            return 385;
        }
        if (generation == 5) {
            return 980;
        }
        if (generation == 4) {
            return 2310;
        }
        if (generation == 3) {
            return 5005;
        }
        if (generation == 2) {
            return 9156;
        }

        return MAX_MINT;
    }


    /// @notice Get number of mints for the given generation for closing announcement
    /// @param generation Generation to get max mints for
    /// @return Maximum number of mints for generation
    function maxMintForGenerationBeforeClosing(uint generation) public pure
        generationBetween(generation, 2, 6)
        returns (uint)
    {
        if (generation == 6) {
            return 308;
        }
        if (generation == 5) {
            return 784;
        }
        if (generation == 4) {
            return 1848;
        }
        if (generation == 3) {
            return 4004;
        }

        return 7325;
    }


    /// @notice Get the lowest Tan ID for a given generation
    /// @param generation Generation to get lowest ID for
    /// @return Lowest Tan ID for generation
    function mintStartNumberForGeneration(uint generation) public pure
        generationBetween(generation, 1, 7)
        returns (uint)
    {
        uint tmp = 1;
        for (uint gen = 1; gen <= 7; gen++) {
            if (generation == gen) {
                return tmp;
            }
            tmp += maxMintForGeneration(gen);
        }

        return 0;
    }


    /// @notice Public mint method. Checks whether the paid price is correct and max. 14 Tans are minted per tx
    /// @param numTans number of Tans to mint
    function mint(uint numTans) external payable
        forPrice(numTans, PRICE_PUBLIC, msg.value)
        inState(StateType.MINT)
        limitTans(numTans, MAX_TANS_PUBLIC)
    {
        mintLocal(numTans);
    }


    /// @notice Mint helper method
    /// @dev All checks need to be performed before calling this method
    /// @param numTans number of Tans to mint
    function mintLocal(uint numTans) private
        inEitherState(StateType.PREMINT, StateType.MINT)
        whenNotPaused()
    {
        for (uint mintedTan = 0; mintedTan < numTans; mintedTan++) {
            _mint(_msgSender(), totalSupply() + 1);
        }        
    }


    /// @notice Mint next-gen Tans at Tangram swap
    /// @param numTans number of Tans to mint
    /// @param _for Address to mint Tans for
    function mintForNextGeneration(uint numTans, address _for) external
        generationBetween(currentGeneration, 1, 6)
        inStateOrAbove(StateType.GENERATIONSTARTED)
        onlyTangramContract()
        whenNotPaused()
    {
        uint nextGeneration = currentGeneration + 1;

        uint maxMintForNextGeneration = maxMintForGeneration(nextGeneration);

        require(
            mintCounter[nextGeneration] + numTans <= maxMintForNextGeneration,
            INVALID_NUMBER_OF_TANS
        );

        for (uint mintedTan = 0; mintedTan < numTans; mintedTan++) {
            _mint(
                _for,
                mintStartNumberForGeneration(nextGeneration) + mintCounter[nextGeneration]++
            );
        }
    }


    /// @notice OG mint method. Allowed once per OG minter, OG proof is by merkle proof. Max 7 Tans allowed
    /// @dev Method is not payable since OG mint for free
    /// @param merkleProof Merkle proof of minter address for OG tree
    /// @param numTans     Number of Tans to mint
    function mintOG(bytes32[] calldata merkleProof, uint numTans) external
        inEitherState(StateType.PREMINT, StateType.MINT)
        isValidMerkleProof(merkleRootOG, merkleProof)
        limitTans(numTans, MAX_TANS_OG)
        oneMint()
    {
        addressPreminted[_msgSender()] = true;
        mintLocal(numTans);
    }


    /// @notice WL mint method. Allowed once per WL minter, WL proof is by merkle proof. Max 7 Tans allowed
    /// @param merkleProof Merkle proof of minter address for WL tree
    /// @param numTans     Number of Tans to mint
    function mintWL(bytes32[] calldata merkleProof, uint numTans) external payable
        forPrice(numTans, PRICE_WL, msg.value)
        inEitherState(StateType.PREMINT, StateType.MINT)
        isValidMerkleProof(merkleRootWL, merkleProof)
        limitTans(numTans, MAX_TANS_WL)
        oneMint()
    {
        addressPreminted[_msgSender()] = true;
        mintLocal(numTans);
    }


    /// @notice Update merkle roots for OG/WL minters
    /// @param og OG merkle root
    /// @param wl WL merkle root
    function setMerkleRoot(bytes32 og, bytes32 wl) external
        onlyOwner()
    {
        merkleRootOG = og;
        merkleRootWL = wl;
    }


    /// @notice Require correct paid price
    /// @dev WL and public mint pay a fixed price per Tan
    /// @param numTans   Number of Tans to mint
    /// @param unitPrice Fixed price per Tan
    /// @param ethSent   Value of ETH sent in this transaction
    modifier forPrice(uint numTans, uint unitPrice, uint ethSent) {
        require(
            numTans * unitPrice == ethSent,
            "Wrong value sent"
        );
        _;
    }


    /// @notice Verify provided merkle proof to given root
    /// @dev Root is manually generated before contract deployment. Proof is automatically provided by minting site based on connected wallet address.
    /// @param root  Merkle root to verify against
    /// @param proof Merkle proof to verify
    modifier isValidMerkleProof(bytes32 root, bytes32[] calldata proof) {
        require(
            MerkleProof.verify(proof, root, keccak256(abi.encodePacked(_msgSender()))),
            "Invalid proof"
        );
        _;
    }


    /// @notice Require a valid number of Tans
    /// @param numTans Number of Tans to mint
    /// @param maxTans Maximum number of Tans to allow
    modifier limitTans(uint numTans, uint maxTans) {
        require(
            numTans >= 1 &&
            numTans <= maxTans &&
            totalSupply() + numTans <= MAX_MINT,
            INVALID_NUMBER_OF_TANS
        );
        _;
    }


    /// @notice Require maximum one mint per address
    /// @dev OG and WL minters have this restriction
    modifier oneMint() {
        require(
            addressPreminted[_msgSender()] == false,
            "Only one premint allowed"
        );
        _;
    }




    ///      _       _       
    ///  ___| |_ ___| |_ ___ 
    /// |_ -|  _| .'|  _| -_|
    /// |___|_| |__,|_| |___|                     

    /// @notice Change to mint stage; this is an implicit action when "mint" is called when shouldPublicMintBeOpen == true
    /// @dev Can only be called over Chainlink VRF random response
    function changeStateGenerationClosed() internal virtual override
        generationBetween(currentGeneration, 1, 7)
        inEitherState(StateType.GENERATIONSTARTED, StateType.GENERATIONCLOSING)
        onlyTeamMemberOrOwner()
    {
        if (currentGeneration < 7) {
            lastGenerationSeedRequestTimestamp = 0;
            requestGenerationSeed(currentGeneration + 1);
        }

        emit GenerationClosed(currentGeneration);
    }


    /// @notice Change to mint stage; this is an implicit action when "mint" is called when shouldPublicMintBeOpen == true
    /// @dev Can only be called over Chainlink VRF random response
    function changeStateGenerationClosing() internal virtual override
        inState(StateType.GENERATIONSTARTED)
        onlyTangramContract()
    {
        emit GenerationClosing(currentGeneration);
    }


    /// @notice Change to mint stage; this is an implicit action when "mint" is called when shouldPublicMintBeOpen == true
    /// @dev Can only be called over Chainlink VRF random response
    function changeStateGenerationStarted() internal virtual override
        inEitherState(StateType.MINTCLOSED, StateType.GENERATIONCLOSED)
        onlyVRFCoordinator()
    {
    }


    /// @notice Change to mint stage; this is an implicit action when "mint" is called when shouldPublicMintBeOpen == true
    /// @dev Can also be called over setState method
    function changeStateMint() internal virtual override
        inState(StateType.PREMINT)
        onlyTeamMemberOrOwner()
    {
    }


    /// @notice Request Gen-1 seed, payout caller's funds
    /// @dev Caller's funds are only paid when this method was invoked from a team member's address; not the owner's address
    function changeStateMintClosed() internal virtual override
        inState(StateType.MINT)
        onlyTeamMemberOrOwner()
    {
        requestGenerationSeed(1);
    }


    /// @notice Request Gen-1 seed, payout caller's funds
    /// @dev Caller's funds are only paid when this method was invoked from a team member's address; not the owner's address
    function changeStateMintClosedAfter() internal virtual override
        inState(StateType.MINTCLOSED)
        onlyTeamMemberOrOwner()
    {
        mintCounter[1] = totalSupply();
        mintBalanceTotal = address(this).balance - secondaryBalanceTotal;
        if (!emergencyCalled && isTeamMember(_msgSender()) && address(this).balance > 0)
        {
            payout();
        }
    }


    /// @notice Change to premint stage
    /// @dev This is only allowed by the contract owner, either by means of deployment or later execution of setState
    function changeStatePremint() internal virtual override
        inState(StateType.DEPLOYED)
        onlyTeamMemberOrOwner()
    {
    }


    /// @notice Set new state
    /// @dev Use this for non-automatic state changes (e.g. open premint, close generation)
    /// @param _to New state to change to
    function setState(StateType _to) external
        onlyTeamMemberOrOwner()
    {
        changeState(state, _to);
    }


    /// @notice Announce generation close
    function setStateGenerationClosing() external
        onlyTangramContract()
    {
        changeState(state, StateType.GENERATIONCLOSING);
    }




    ///                _                           
    ///  ___ ___ ___ _| |___ _____ ___ ___ ___ ___ 
    /// |  _| .'|   | . | . |     |   | -_|_ -|_ -|
    /// |_| |__,|_|_|___|___|_|_|_|_|_|___|___|___|

    address private immutable vrfCoordinator;

    /// @notice Generation seed received, open generation
    /// @dev Only possibly when mint is closed or previous generation has been closed. Seed is in VRFD20.generationSeed[generation]. Event is NOT emitted from contract address.
    /// @param generation Generation for which seed has been received
    function processGenerationSeedReceived(uint generation) internal virtual override
        inEitherState(StateType.MINTCLOSED, StateType.GENERATIONCLOSED)
        onlyVRFCoordinator()
    {
        require(
            generation == currentGeneration + 1,
            "Invalid seed generation"
        );

        currentGeneration = generation;

        state = StateType.GENERATIONSTARTED;

        // Emitting stateChanged event is useless, as this is in the VRF Coordinator's tx context
    }


    /// @notice Re-request generation seed
    /// @dev Only possible before starting new generation. Requests seed for the next generation. Important checks performed by internal method.
    function reRequestGenerationSeed() external
        inEitherState(StateType.MINT, StateType.GENERATIONCLOSED)
        onlyTeamMemberOrOwner()
    {
        requestGenerationSeed(currentGeneration + 1);
    }


    /// @notice Require that the sender is Chainlink's VRF Coordinator
    modifier onlyVRFCoordinator() {
        require(
            _msgSender() == vrfCoordinator,
            "Only VRF Coordinator"
        );
        _;
    }




    ///                      _   
    ///  ___ ___ _ _ ___ _ _| |_ 
    /// | . | .'| | | . | | |  _|
    /// |  _|__,|_  |___|___|_|  
    /// |_|     |___|            

    string private constant TX_FAILED = "TX failed";

    /// @notice Pay out all funds directly to the emergency wallet
    /// @dev Only emergency payouts can be used; personal payouts are locked
    function emergencyPayout() external
        onlyTeamMemberOrOwner()
    {
        emergencyCalled = true;
        (bool sent,) = teamAddresses[0].call{value: address(this).balance}("");
        require(
            sent,
            TX_FAILED
        );
    }


    /// @notice Pay the yet unpaid funds to the caller, when it is a team member
    /// @dev Does not work after emergency payout was used. Implement secondary share payouts
    function payout() public
        emergencyNotCalled()
        inStateOrAbove(StateType.MINTCLOSED)
    {
        (bool isTeamMember, uint teamIndex) = getTeamIndex(_msgSender());
        require(
            isTeamMember,
            "Invalid address"
        );

        uint shareIndex = teamIndex * TEAM_SHARE_RECORD_SIZE;

        uint mintShare = 0;
        if (mintSharePaid[teamIndex] == false) {
            mintSharePaid[teamIndex] = true;
            mintShare = (mintBalanceTotal * teamShare[shareIndex + TEAM_SHARE_MINT_OFFSET]) / 1000;
        }
        
        uint secondaryShare = 0;
        if (secondaryBalanceTotal > teamShare[shareIndex + TEAM_SHARE_SECONDARY_PAID_OFFSET]) {
            uint secondaryShareToPay = secondaryBalanceTotal - teamShare[shareIndex + TEAM_SHARE_SECONDARY_PAID_OFFSET];
            teamShare[shareIndex + TEAM_SHARE_SECONDARY_PAID_OFFSET] = secondaryBalanceTotal;
            secondaryShare = (secondaryShareToPay * teamShare[shareIndex + TEAM_SHARE_SECONDARY_OFFSET]) / 1000;
        }

        uint total = mintShare + secondaryShare;
        require(
            total > 0,
            "Nothing to pay"
        );

        (bool sent,) = payable(_msgSender()).call{value: total}("");
        require(
            sent,
            TX_FAILED
        );
    }


    /// @notice Keep track of total secondary sales earnings
    receive() external payable
    {
        secondaryBalanceTotal += msg.value;
    }


    /// @notice Require emergency payout to not have been called
    modifier emergencyNotCalled() {
        require(
            false == emergencyCalled,
            "Emergency called"
        );
        _;
    }



    ///              ___ ___ ___   
    ///  ___ ___ ___|_  |_  |_  |  
    /// | -_|  _|  _| | |  _|_| |_ 
    /// |___|_| |___| |_|___|_____|


    /// @notice Burn token on behalf of Tangram contract
    /// @dev Caller needs to verify token ownership
    /// @param tokenId Token ID to burn
    function burn(uint256 tokenId) external 
        onlyTangramContract()
        whenNotPaused()
    {
        _burn(tokenId);
    }


    /// @notice Return metadata url (placeholder) or base64-encoded metadata when gen-1 has started
    /// @dev Overridden from OpenZeppelin's implementation to skip the unused baseURI check
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(
            _exists(tokenId),
            "Nonexistent token"
        );
        
        if (state <= StateType.MINTCLOSED)
        {
            return string(abi.encodePacked(
                METADATA_BASE_URI,
                "placeholder",
                JSON_EXT
            ));
        }

        uint generation = tangramContract.getGeneration(tokenId);
        require(
            generation <= currentGeneration,
            INVALID_GENERATION
        );

        return tangramContract.getTanMetadata(tokenId, generation, generationSeed[generation]);
    }




    ///            _         _     _       
    ///  _____ ___| |_ ___ _| |___| |_ ___ 
    /// |     | -_|  _| .'| . | .'|  _| .'|
    /// |_|_|_|___|_| |__,|___|__,|_| |__,|

    function contractURI() public pure returns (string memory) {
        return string(abi.encodePacked(
            METADATA_BASE_URI,
            METADATA_CONTRACT,
            JSON_EXT
        ));
    }




    ///                          _ 
    ///  ___ ___ ___ ___ ___ ___| |
    /// | . | -_|   | -_|  _| .'| |
    /// |_  |___|_|_|___|_| |__,|_|
    /// |___|                      

    uint private mintBalanceTotal      = 0;
    uint private secondaryBalanceTotal = 0;
    uint public  currentGeneration     = 0;

    string private constant METADATA_BASE_URI = 'https://tacticaltangrams.io/metadata/';
    string private constant METADATA_CONTRACT = 'contract_tan';
    string private constant JSON_EXT          = '.json';

    string private constant INVALID_GENERATION = "Invalid generation";
    string private constant ONLY_TEAM_MEMBER   = "Only team member";

    modifier generationBetween(uint generation, uint from, uint to) {
        require(
            generation >= from && generation <= to,
            INVALID_GENERATION
        );
        _;
    }

    /// @notice Require that the sender is a team member
    modifier onlyTeamMember() {
        require(
            isTeamMember(_msgSender()),
            ONLY_TEAM_MEMBER
        );
        _;
    }


    /// @notice Require that the sender is a team member or the contract owner
    modifier onlyTeamMemberOrOwner() {
        require(
            _msgSender() == owner() || isTeamMember(_msgSender()),
            string(abi.encodePacked(ONLY_TEAM_MEMBER, " or owner"))
        );
        _;
    }




    ///              _               _      _____                           
    ///  ___ ___ ___| |_ ___ ___ ___| |_   |_   _|___ ___ ___ ___ ___ _____ 
    /// |  _| . |   |  _|  _| .'|  _|  _|    | | | .'|   | . |  _| .'|     |
    /// |___|___|_|_|_| |_| |__,|___|_|      |_| |__,|_|_|_  |_| |__,|_|_|_|
    ///                                                  |___|                      

    TangramContract tangramContract;
    address tangramContractAddress;

    /// @notice Set Tangram contract address
    /// @param _tangramContract Address for Tangram contract
    function setTangramContract(address _tangramContract) public
        onlyOwner()
    {
        tangramContractAddress = _tangramContract;
        tangramContract = TangramContract(_tangramContract);
    }


    /// @notice Require that the sender is the Tangram contract
    modifier onlyTangramContract() {
        require(
            _msgSender() == tangramContractAddress,
            "Only Tangram contract"
        );
        _;
    }
}

File 2 of 21 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 21 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 21 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 5 of 21 : Strings.sol
// SPDX-License-Identifier: MIT

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 6 of 21 : MerkleProof.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

File 7 of 21 : State.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.11;




///  _           _   _         _    _                                         _     
/// | |_ ___ ___| |_|_|___ ___| |  | |_ ___ ___ ___ ___ ___ _____ ___        |_|___ 
/// |  _| .'|  _|  _| |  _| .'| |  |  _| .'|   | . |  _| .'|     |_ -|   _   | | . |
/// |_| |__,|___|_| |_|___|__,|_|  |_| |__,|_|_|_  |_| |__,|_|_|_|___|  |_|  |_|___|
///                                            |___|                                
///
///                                                              tacticaltangrams.io




///              _               _      _____ _       _       
///  ___ ___ ___| |_ ___ ___ ___| |_   |   __| |_ ___| |_ ___ 
/// |  _| . |   |  _|  _| .'|  _|  _|  |__   |  _| .'|  _| -_|
/// |___|___|_|_|_| |_| |__,|___|_|    |_____|_| |__,|_| |___|

/// @title Tactical Tangrams State contract
/// @author tacticaltangrams.io
/// @notice Implements the basis for Tactical Tangram's state machine
abstract contract State {


    /// @notice Emit state changes
    /// @param oldState Previous state
    /// @param newState Current state
    event StateChanged(StateType oldState, StateType newState);


    /// @notice Change to new state when state change is allowed
    /// @dev Virtual methods changeState* have to be implemented. Invalid state changes have to be reverted in each changeState* method
    /// @param _from State to change from
    /// @param _to   State to change to
    function changeState(StateType _from, StateType _to) internal
    {
        require(
            (_from != _to) &&
            (StateType.ALL == _from || state == _from),
            INVALID_STATE_CHANGE
        );

        bool stateChangeHandled = false;

        if (StateType.PREMINT == _to)
        {
            stateChangeHandled = true;
            changeStatePremint();
        }
        else if (StateType.MINT == _to)
        {
            stateChangeHandled = true;
            changeStateMint();
        }
        else if (StateType.MINTCLOSED == _to)
        {
            stateChangeHandled = true;
            changeStateMintClosed();
        }

        // StateType.GENERATIONSTARTED cannot be set over setState, this is done implicitly by processGenerationSeedReceived

        else if (StateType.GENERATIONCLOSING == _to)
        {
            stateChangeHandled = true;
            changeStateGenerationClosing();
        }
        else if (StateType.GENERATIONCLOSED == _to)
        {
            stateChangeHandled = true;
            changeStateGenerationClosed();
        }

        require(
            stateChangeHandled,
            INVALID_STATE_CHANGE
        );

        state = _to;

        emit StateChanged(_from, _to);

        if (StateType.MINTCLOSED == _to) {
            changeStateMintClosedAfter();
        }
    }


    function changeStatePremint()           internal virtual;
    function changeStateMint()              internal virtual;
    function changeStateMintClosed()        internal virtual;
    function changeStateMintClosedAfter()   internal virtual;
    function changeStateGenerationStarted() internal virtual;
    function changeStateGenerationClosing() internal virtual;
    function changeStateGenerationClosed()  internal virtual;


    /// @notice Verify allowed states
    /// @param _either Allowed state
    /// @param _or     Allowed state
    modifier inEitherState(StateType _either, StateType _or) {
        require(
            (state == _either) || (state == _or),
            INVALID_STATE
        );
        _;
    }


    /// @notice Verify allowed state
    /// @param _state Allowed state
    modifier inState(StateType _state) {
        require(
            state == _state,
            INVALID_STATE
        );
        _;
    }



    /// @notice Verify allowed minimum state
    /// @param _state Minimum allowed state
    modifier inStateOrAbove(StateType _state) {
        require(
            state >= _state,
            INVALID_STATE
        );
        _;
    }


    /// @notice List of states for Tactical Tangrams
    /// @dev When in states GENERATIONSTARTED, GENERATIONCLOSING or GENERATIONCLOSED, Tan.currentGeneration indicates the current state
    enum StateType
    {
        ALL               ,
        DEPLOYED          , // contract has been deployed
        PREMINT           , // only OG and WL minting allowed
        MINT              , // only public minting allowed
        MINTCLOSED        , // no more minting allowed; total mint income stored, random seed for gen 1 requested
        GENERATIONSTARTED , // random seed available, Tans revealed
        GENERATIONCLOSING , // 80-100% Tans swapped
        GENERATIONCLOSED    // 100% Tans swapped, random  seed for next generation requested for gen < 7
    }


    StateType public state = StateType.DEPLOYED;


    string private constant INVALID_STATE        = "Invalid state";
    string private constant INVALID_STATE_CHANGE = "Invalid state change";
}

File 8 of 21 : Team.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.11;




///  _           _   _         _    _                                         _     
/// | |_ ___ ___| |_|_|___ ___| |  | |_ ___ ___ ___ ___ ___ _____ ___        |_|___ 
/// |  _| .'|  _|  _| |  _| .'| |  |  _| .'|   | . |  _| .'|     |_ -|   _   | | . |
/// |_| |__,|___|_| |_|___|__,|_|  |_| |__,|_|_|_  |_| |__,|_|_|_|___|  |_|  |_|___|
///                                            |___|                                
///
///                                                              tacticaltangrams.io




///  _                   _       
/// |_|_____ ___ ___ ___| |_ ___ 
/// | |     | . | . |  _|  _|_ -|
/// |_|_|_|_|  _|___|_| |_| |___|
///         |_|                  

import "@openzeppelin/contracts/utils/Context.sol";




///              _               _      _____               
///  ___ ___ ___| |_ ___ ___ ___| |_   |_   _|___ ___ _____ 
/// |  _| . |   |  _|  _| .'|  _|  _|    | | | -_| .'|     |
/// |___|___|_|_|_| |_| |__,|___|_|      |_| |___|__,|_|_|_|
                                                        
/// @title Tactical Tangrams Team contract
/// @author tacticaltangrams.io
/// @notice Contains wallet and share details for personal payouts
contract Team is Context {

    uint internal constant TEAM_SIZE = 4;
    uint internal constant TEAM_SHARE_RECORD_SIZE = 3;
    uint internal constant TEAM_SHARE_MINT_OFFSET = 0;
    uint internal constant TEAM_SHARE_SECONDARY_OFFSET = 1;
    uint internal constant TEAM_SHARE_SECONDARY_PAID_OFFSET = 2;




    ///                  _               _           
    ///  ___ ___ ___ ___| |_ ___ _ _ ___| |_ ___ ___ 
    /// |  _| . |   |_ -|  _|  _| | |  _|  _| . |  _|
    /// |___|___|_|_|___|_| |_| |___|___|_| |___|_|  

    /// @notice Deployment constructor
    /// @dev Initializes team addresses. Note that this is only meant for deployment flexibility; the team size and rewards are fixed in the contract
    /// @param _teamAddresses    List of team member's addresses; first address is emergency address
    constructor(address payable[TEAM_SIZE] memory _teamAddresses)
    {
        for (uint teamIndex = 0; teamIndex < teamAddresses.length; teamIndex++)
        {
            teamAddresses[teamIndex] = _teamAddresses[teamIndex];
        }

    }


    /// @notice Returns the team member's index based on wallet address
    /// @param _address Wallet address of team member
    /// @return (bool, index) where bool indicates whether the given address is a team member
    function getTeamIndex(address _address) internal view returns (bool, uint) {
        for (uint index = 0; index < TEAM_SIZE; index++) {
            if (_address == teamAddresses[index]) {
                return (true, index);
            }
        }

        return (false, 0);
    }


    /// @notice Checks whether given address is a team member
    /// @param _address Address to check team membership for
    /// @return True when _address is a team member, False otherwise
    function isTeamMember(address _address) internal view returns (bool) {
        (bool _isTeamMember,) = getTeamIndex(_address);
        return _isTeamMember;
    }


    /// @notice Team member's addresses
    /// @dev Team member information in other arrays can be found at the corresponding index.
    address payable[TEAM_SIZE] internal teamAddresses;

    /// @notice The emergency address is used when things go wrong; no personal payout is possible anymore after emergency payout
    bool internal emergencyCalled = false;

    /// @notice Mint shares are paid out only once per address, after public minting has closed
    bool[TEAM_SIZE] internal mintSharePaid = [ false, false, false, false ];

    /// @notice Mint and secondary sales details per team member
    /// @dev Flattened array: [[<mint promille>, <secondary sales promille>, <secondary sales shares paid>], ..]
    uint[TEAM_SIZE * TEAM_SHARE_RECORD_SIZE] internal teamShare = [
        450, 287, 0,
        300, 287, 0,
        215, 286, 0,
         35, 140, 0
    ];
}

File 9 of 21 : VRFD20.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.11;




///  _           _   _         _    _                                         _     
/// | |_ ___ ___| |_|_|___ ___| |  | |_ ___ ___ ___ ___ ___ _____ ___        |_|___ 
/// |  _| .'|  _|  _| |  _| .'| |  |  _| .'|   | . |  _| .'|     |_ -|   _   | | . |
/// |_| |__,|___|_| |_|___|__,|_|  |_| |__,|_|_|_  |_| |__,|_|_|_|___|  |_|  |_|___|
///                                            |___|                                
///
///                                                              tacticaltangrams.io




///  _                   _       
/// |_|_____ ___ ___ ___| |_ ___ 
/// | |     | . | . |  _|  _|_ -|
/// |_|_|_|_|  _|___|_| |_| |___|
///         |_|                  

import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol";



///              _               _      _____ _____ _____ ___ ___ 
///  ___ ___ ___| |_ ___ ___ ___| |_   |  |  | __  |   __|_  |   |
/// |  _| . |   |  _|  _| .'|  _|  _|  |  |  |    -|   __|  _| | |
/// |___|___|_|_|_| |_| |__,|___|_|     \___/|__|__|__|  |___|___|
                                                              
/// @title Tactical Tangrams VRP20 randomness contract
/// @author tacticaltangrams.io, based on a sample taken from https://docs.chain.link/docs/chainlink-vrf/
/// @notice Requests random seed for each generation
abstract contract VRFD20 is VRFConsumerBase {




    ///                  _               _           
    ///  ___ ___ ___ ___| |_ ___ _ _ ___| |_ ___ ___ 
    /// |  _| . |   |_ -|  _|  _| | |  _|  _| . |  _|
    /// |___|___|_|_|___|_| |_| |___|___|_| |___|_|  

    /// @notice Deployment constructor
    /// @dev Note that these parameter values differ per network, see https://docs.chain.link/docs/vrf-contracts/
    /// @param _vrfCoordinator Chainlink VRF Coordinator address
    /// @param _link           LINK token address
    /// @param _keyHash        Public key against which randomness is created
    /// @param _fee            VRF Chainlink fee in LINK
    constructor(address _vrfCoordinator, address _link, bytes32 _keyHash, uint _fee)
        VRFConsumerBase(_vrfCoordinator, _link)
    {
        keyHash = _keyHash;
        fee = _fee;
    }


    /// @notice Request generation seed
    /// @dev Only request when last request is: older than 30 minutes and (seed has not been requested or received) and (previous generation seed has been received)
    /// @param requestForGeneration Generation for which to request seed
    function requestGenerationSeed(uint requestForGeneration) internal
        lastGenerationSeedRequestTimedOut()
    {
        require(
            LINK.balanceOf(address(this)) >= fee,
            "Not enough LINK"
        );

        // Do not check whether seed has already been requested; requests can theoretically timeout
        require(
            (generationSeed[requestForGeneration] == 0) ||            // not requested
            (generationSeed[requestForGeneration] == type(uint).max), // not received
            "Seed already requested or received"
        );

        // Verify that previous generation seed has been received, when applicable
        if (requestForGeneration > 1)
        {
            require(
                generationSeed[requestForGeneration-1] != type(uint).max,
                "Previous generation seed not received"
            );
        }

        lastGenerationSeedRequestTimestamp = block.timestamp;

        bytes32 requestId = requestRandomness(keyHash, fee);
        generationSeedRequest[requestId] = requestForGeneration;
        generationSeed[requestForGeneration] = type(uint).max;
    }


    /// @notice Cast uint256 to bytes
    /// @param x Value to cast from
    /// @return b Bytes representation of x
    function toBytes(uint256 x) private pure returns (bytes memory b) {
        b = new bytes(32);
        assembly { mstore(add(b, 32), x) }
    }


    /// @notice Receive generation seed
    /// @dev Only possible when generation seed has not been received yet
    function fulfillRandomness(bytes32 requestId, uint256 randomness) internal override {
        uint generation = generationSeedRequest[requestId];

        require(
            (generation >= 1) && (generation <= 7),
            "Invalid generation"
        );

        if (generation > 1)
        {
            require(
                generationSeed[generation-1] != type(uint).max,
                "Previous generation seed not received"
            );
        }

        require(
            generationSeed[generation] == type(uint).max,
            "Random number not requested or already received"
        );

        generationSeed[generation] = randomness;
        generationHash[generation] = keccak256(toBytes(randomness));

        processGenerationSeedReceived(generation);
    }




    /// @notice Method invoked when randomness for a valid request has been received
    /// @dev Implement this method in inheriting contract. Random number is stored in generationSeed[generation]
    /// @param generation Generation number for which random number has been received
    function processGenerationSeedReceived(uint generation) virtual internal;


    /// @notice Allow re-requesting of generation seeds after GENERATION_SEED_REQUEST_TIMEOUT (30 minutes)
    /// @dev In the very unlikely event that a request is never answered, re-requesting should be allowed
    modifier lastGenerationSeedRequestTimedOut()
    {
        require(
            (lastGenerationSeedRequestTimestamp + GENERATION_SEED_REQUEST_TIMEOUT) < block.timestamp,
            "Not timed out"
        );
        _;
    }


    /// @notice Chainlink fee in LINK for VRF
    /// @dev Set this to 0.1 LINK for Rinkeby, 2 LINK for mainnet
    uint private immutable fee;

    bytes32 private immutable keyHash;

    uint lastGenerationSeedRequestTimestamp = 0;
    uint GENERATION_SEED_REQUEST_TIMEOUT    = 1800; // 30 minutes request timeout

    mapping(bytes32 => uint) public generationSeedRequest;
    mapping(uint    => uint) public generationSeed;
    mapping(uint    => bytes32) public generationHash;
}

File 10 of 21 : Context.sol
// SPDX-License-Identifier: MIT

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 11 of 21 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev 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 {}
}

File 12 of 21 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 tokenId);

    /**
     * @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 13 of 21 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 21 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 15 of 21 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 16 of 21 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 17 of 21 : ERC165.sol
// SPDX-License-Identifier: MIT

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 18 of 21 : IERC165.sol
// SPDX-License-Identifier: MIT

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 19 of 21 : VRFConsumerBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./interfaces/LinkTokenInterface.sol";

import "./VRFRequestIDBase.sol";

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constuctor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.)
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request.
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {

  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBase expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
  function fulfillRandomness(
    bytes32 requestId,
    uint256 randomness
  )
    internal
    virtual;

  /**
   * @dev In order to keep backwards compatibility we have kept the user
   * seed field around. We remove the use of it because given that the blockhash
   * enters later, it overrides whatever randomness the used seed provides.
   * Given that it adds no security, and can easily lead to misunderstandings,
   * we have removed it from usage and can now provide a simpler API.
   */
  uint256 constant private USER_SEED_PLACEHOLDER = 0;

  /**
   * @notice requestRandomness initiates a request for VRF output given _seed
   *
   * @dev The fulfillRandomness method receives the output, once it's provided
   * @dev by the Oracle, and verified by the vrfCoordinator.
   *
   * @dev The _keyHash must already be registered with the VRFCoordinator, and
   * @dev the _fee must exceed the fee specified during registration of the
   * @dev _keyHash.
   *
   * @dev The _seed parameter is vestigial, and is kept only for API
   * @dev compatibility with older versions. It can't *hurt* to mix in some of
   * @dev your own randomness, here, but it's not necessary because the VRF
   * @dev oracle will mix the hash of the block containing your request into the
   * @dev VRF seed it ultimately uses.
   *
   * @param _keyHash ID of public key against which randomness is generated
   * @param _fee The amount of LINK to send with the request
   *
   * @return requestId unique ID for this request
   *
   * @dev The returned requestId can be used to distinguish responses to
   * @dev concurrent requests. It is passed as the first argument to
   * @dev fulfillRandomness.
   */
  function requestRandomness(
    bytes32 _keyHash,
    uint256 _fee
  )
    internal
    returns (
      bytes32 requestId
    )
  {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
    // This is the seed passed to VRFCoordinator. The oracle will mix this with
    // the hash of the block containing this request to obtain the seed/input
    // which is finally passed to the VRF cryptographic machinery.
    uint256 vRFSeed  = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
    // nonces[_keyHash] must stay in sync with
    // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
    // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
    // This provides protection against the user repeating their input seed,
    // which would result in a predictable/duplicate output, if multiple such
    // requests appeared in the same block.
    nonces[_keyHash] = nonces[_keyHash] + 1;
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface immutable internal LINK;
  address immutable private vrfCoordinator;

  // Nonces for each VRF key from which randomness has been requested.
  //
  // Must stay in sync with VRFCoordinator[_keyHash][this]
  mapping(bytes32 /* keyHash */ => uint256 /* nonce */) private nonces;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   * @param _link address of LINK token contract
   *
   * @dev https://docs.chain.link/docs/link-token-contracts
   */
  constructor(
    address _vrfCoordinator,
    address _link
  ) {
    vrfCoordinator = _vrfCoordinator;
    LINK = LinkTokenInterface(_link);
  }

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomness(
    bytes32 requestId,
    uint256 randomness
  )
    external
  {
    require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
    fulfillRandomness(requestId, randomness);
  }
}

File 20 of 21 : LinkTokenInterface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface LinkTokenInterface {

  function allowance(
    address owner,
    address spender
  )
    external
    view
    returns (
      uint256 remaining
    );

  function approve(
    address spender,
    uint256 value
  )
    external
    returns (
      bool success
    );

  function balanceOf(
    address owner
  )
    external
    view
    returns (
      uint256 balance
    );

  function decimals()
    external
    view
    returns (
      uint8 decimalPlaces
    );

  function decreaseApproval(
    address spender,
    uint256 addedValue
  )
    external
    returns (
      bool success
    );

  function increaseApproval(
    address spender,
    uint256 subtractedValue
  ) external;

  function name()
    external
    view
    returns (
      string memory tokenName
    );

  function symbol()
    external
    view
    returns (
      string memory tokenSymbol
    );

  function totalSupply()
    external
    view
    returns (
      uint256 totalTokensIssued
    );

  function transfer(
    address to,
    uint256 value
  )
    external
    returns (
      bool success
    );

  function transferAndCall(
    address to,
    uint256 value,
    bytes calldata data
  )
    external
    returns (
      bool success
    );

  function transferFrom(
    address from,
    address to,
    uint256 value
  )
    external
    returns (
      bool success
    );

}

File 21 of 21 : VRFRequestIDBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract VRFRequestIDBase {

  /**
   * @notice returns the seed which is actually input to the VRF coordinator
   *
   * @dev To prevent repetition of VRF output due to repetition of the
   * @dev user-supplied seed, that seed is combined in a hash with the
   * @dev user-specific nonce, and the address of the consuming contract. The
   * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
   * @dev the final seed, but the nonce does protect against repetition in
   * @dev requests which are included in a single block.
   *
   * @param _userSeed VRF seed input provided by user
   * @param _requester Address of the requesting contract
   * @param _nonce User-specific nonce at the time of the request
   */
  function makeVRFInputSeed(
    bytes32 _keyHash,
    uint256 _userSeed,
    address _requester,
    uint256 _nonce
  )
    internal
    pure
    returns (
      uint256
    )
  {
    return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
  }

  /**
   * @notice Returns the id for this request
   * @param _keyHash The serviceAgreement ID to be used for this request
   * @param _vRFInputSeed The seed to be passed directly to the VRF
   * @return The id for this request
   *
   * @dev Note that _vRFInputSeed is not the seed passed by the consuming
   * @dev contract, but the one generated by makeVRFInputSeed
   */
  function makeRequestId(
    bytes32 _keyHash,
    uint256 _vRFInputSeed
  )
    internal
    pure
    returns (
      bytes32
    )
  {
    return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
  }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 10000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable[4]","name":"_teamAddresses","type":"address[4]"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"bool","name":"_openPremintAtDeployment","type":"bool"},{"internalType":"address","name":"_vrfCoordinator","type":"address"},{"internalType":"address","name":"_link","type":"address"},{"internalType":"bytes32","name":"_keyHash","type":"bytes32"},{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"address","name":"_tangramContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"generation","type":"uint256"}],"name":"GenerationClosed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"generation","type":"uint256"}],"name":"GenerationClosing","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum State.StateType","name":"oldState","type":"uint8"},{"indexed":false,"internalType":"enum State.StateType","name":"newState","type":"uint8"}],"name":"StateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TANS_OG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TANS_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TANS_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"currentGeneration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyPayout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"generationHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"generationSeed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"generationSeedRequest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"generation","type":"uint256"}],"name":"maxMintForGeneration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"generation","type":"uint256"}],"name":"maxMintForGenerationBeforeClosing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTans","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTans","type":"uint256"},{"internalType":"address","name":"_for","type":"address"}],"name":"mintForNextGeneration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"numTans","type":"uint256"}],"name":"mintOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"generation","type":"uint256"}],"name":"mintStartNumberForGeneration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"numTans","type":"uint256"}],"name":"mintWL","outputs":[],"stateMutability":"payable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reRequestGenerationSeed","outputs":[],"stateMutability":"nonpayable","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":"bytes32","name":"og","type":"bytes32"},{"internalType":"bytes32","name":"wl","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum State.StateType","name":"_to","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStateGenerationClosing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tangramContract","type":"address"}],"name":"setTangramContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"enum State.StateType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600a805460ff60a81b1916600160a81b179055600f805460ff191690556101a06040526000610120818152610140829052610160829052610180919091526200004d90601090600462001457565b5060408051610180810182526101c2815261011f60208201819052600092820183905261012c6060830152608082015260a0810182905260d760c082015261011e60e082015261010081018290526023610120820152608c610140820152610160810191909152620000c490601190600c620014f0565b506000601e819055610708601f557f67a345396a56431c46add239308b6fcfbab7dbf09287447d3f5f2458c0cccdc56023557ff6c54efaf65ac33f79611e973313be91913aaf019de02d6d3ae1e6566f75929a602455602781905560288190556029553480156200013457600080fd5b5060405162006e2738038062006e2783398101604081905262000157916200170f565b8484848483838e8e8e81600090805190602001906200017892919062001527565b5080516200018e90600190602084019062001527565b505050620001ab620001a56200027f60201b60201c565b62000283565b600a805460ff60a01b1916905560005b60048110156200022957818160048110620001da57620001da62001836565b6020020151600b8260048110620001f557620001f562001836565b0180546001600160a01b0319166001600160a01b039290921691909117905580620002208162001862565b915050620001bb565b50506001600160a01b0391821660a052811660805260e09290925260c052871661010052506200025b905081620002d5565b85156200027057620002706001600262000361565b50505050505050505062001a5c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620003355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b602b80546001600160a01b039092166001600160a01b03199283168117909155602a8054909216179055565b806007811115620003765762000376620015bb565b8260078111156200038b576200038b620015bb565b14158015620003ea5750816007811115620003aa57620003aa620015bb565b1580620003ea5750816007811115620003c757620003c7620015bb565b600a54600160a81b900460ff166007811115620003e857620003e8620015bb565b145b6040518060400160405280601481526020017f496e76616c6964207374617465206368616e676500000000000000000000000081525090620004415760405162461bcd60e51b81526004016200032c9190620018ae565b506000816007811115620004595762000459620015bb565b6002141562000475575060016200046f6200060c565b62000521565b8160078111156200048a576200048a620015bb565b60031415620004a0575060016200046f62000709565b816007811115620004b557620004b5620015bb565b60041415620004cb575060016200046f62000712565b816007811115620004e057620004e0620015bb565b60061415620004f6575060016200046f6200081a565b8160078111156200050b576200050b620015bb565b600714156200052157506001620005216200092b565b60408051808201909152601481527f496e76616c6964207374617465206368616e6765000000000000000000000000602082015281620005765760405162461bcd60e51b81526004016200032c9190620018ae565b50600a805483919060ff60a81b1916600160a81b8360078111156200059f576200059f620015bb565b02179055507fe8a97ea87e4388fa22d496b95a8ed5ced6717f49790318de2b928aaf37a021d88383604051620005d7929190620018ed565b60405180910390a1816007811115620005f457620005f4620015bb565b6004141562000607576200060762000b39565b505050565b6001805b600a54600160a81b900460ff166007811115620006315762000631620015bb565b146040518060400160405280600d81526020016c496e76616c696420737461746560981b81525090620006795760405162461bcd60e51b81526004016200032c9190620018ae565b50600a546001600160a01b03163314806200069a57506200069a3362000caa565b6040518060400160405280601081526020016f27b7363c903a32b0b69036b2b6b132b960811b815250604051602001620006d591906200190c565b60405160208183030381529060405290620007055760405162461bcd60e51b81526004016200032c9190620018ae565b5050565b60028062000610565b600380600a54600160a81b900460ff166007811115620007365762000736620015bb565b146040518060400160405280600d81526020016c496e76616c696420737461746560981b815250906200077e5760405162461bcd60e51b81526004016200032c9190620018ae565b50600a546001600160a01b03163314806200079f57506200079f3362000caa565b6040518060400160405280601081526020016f27b7363c903a32b0b69036b2b6b132b960811b815250604051602001620007da91906200190c565b604051602081830303815290604052906200080a5760405162461bcd60e51b81526004016200032c9190620018ae565b5062000817600162000cc0565b50565b600580600a54600160a81b900460ff1660078111156200083e576200083e620015bb565b146040518060400160405280600d81526020016c496e76616c696420737461746560981b81525090620008865760405162461bcd60e51b81526004016200032c9190620018ae565b50602b546001600160a01b0316336001600160a01b031614620008ec5760405162461bcd60e51b815260206004820152601560248201527f4f6e6c792054616e6772616d20636f6e7472616374000000000000000000000060448201526064016200032c565b7fb6ebf2d56add8cbb26c79a87c5e893e4b2436ee6b76d81aec1b6b8c52a04c9196029546040516200092091815260200190565b60405180910390a150565b60295460016007818310158015620009435750808311155b6040518060400160405280601281526020017124b73b30b634b21033b2b732b930ba34b7b760711b815250906200098f5760405162461bcd60e51b81526004016200032c9190620018ae565b506005600681600a54600160a81b900460ff166007811115620009b657620009b6620015bb565b1480620009f65750806007811115620009d357620009d3620015bb565b600a54600160a81b900460ff166007811115620009f457620009f4620015bb565b145b6040518060400160405280600d81526020016c496e76616c696420737461746560981b8152509062000a3d5760405162461bcd60e51b81526004016200032c9190620018ae565b50600a546001600160a01b031633148062000a5e575062000a5e3362000caa565b6040518060400160405280601081526020016f27b7363c903a32b0b69036b2b6b132b960811b81525060405160200162000a9991906200190c565b6040516020818303038152906040529062000ac95760405162461bcd60e51b81526004016200032c9190620018ae565b506007602954101562000af6576000601e5560295462000af69062000af09060016200193b565b62000cc0565b7f111c12d7fd6242821636e78c02b7ca204d0c8322b040e4f65bcaaf39a063a6fd60295460405162000b2a91815260200190565b60405180910390a15050505050565b600480600a54600160a81b900460ff16600781111562000b5d5762000b5d620015bb565b146040518060400160405280600d81526020016c496e76616c696420737461746560981b8152509062000ba55760405162461bcd60e51b81526004016200032c9190620018ae565b50600a546001600160a01b031633148062000bc6575062000bc63362000caa565b6040518060400160405280601081526020016f27b7363c903a32b0b69036b2b6b132b960811b81525060405160200162000c0191906200190c565b6040516020818303038152906040529062000c315760405162461bcd60e51b81526004016200032c9190620018ae565b50600854600160005260266020527f5db1dfd2ced311e642486f0e890a646498a1bdee1ad9403b0a73141af8a4c4115560285462000c70904762001956565b602755600f5460ff1615801562000c8d575062000c8d3362000caa565b801562000c9a5750600047115b1562000817576200081762000f12565b60008062000cb8836200129e565b509392505050565b42601f54601e5462000cd391906200193b565b1062000d125760405162461bcd60e51b815260206004820152600d60248201526c139bdd081d1a5b5959081bdd5d609a1b60448201526064016200032c565b60c0516080516040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa15801562000d5e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d84919062001970565b101562000dc65760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420656e6f756768204c494e4b60881b60448201526064016200032c565b600081815260216020526040902054158062000df15750600081815260216020526040902054600019145b62000e4a5760405162461bcd60e51b815260206004820152602260248201527f5365656420616c726561647920726571756573746564206f7220726563656976604482015261195960f21b60648201526084016200032c565b600181111562000ed5576000196021600062000e6860018562001956565b815260200190815260200160002054141562000ed55760405162461bcd60e51b815260206004820152602560248201527f50726576696f75732067656e65726174696f6e2073656564206e6f7420726563604482015264195a5d995960da1b60648201526084016200032c565b42601e5560e05160c05160009162000eed9162001306565b6000908152602080805260408083208590559382526021905291909120600019905550565b600f5460ff161562000f5a5760405162461bcd60e51b815260206004820152601060248201526f115b595c99d95b98de4818d85b1b195960821b60448201526064016200032c565b600480600a54600160a81b900460ff16600781111562000f7e5762000f7e620015bb565b10156040518060400160405280600d81526020016c496e76616c696420737461746560981b8152509062000fc75760405162461bcd60e51b81526004016200032c9190620018ae565b5060008062000fd6336200129e565b91509150816200101b5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016200032c565b60006200102a6003836200198a565b905060006010836004811062001044576200104462001836565b602081049091015460ff601f9092166101000a900416620010dd5760016010846004811062001077576200107762001836565b602091828204019190066101000a81548160ff0219169083151502179055506103e86011600084620010aa91906200193b565b600c8110620010bd57620010bd62001836565b0154602754620010ce91906200198a565b620010da9190620019ac565b90505b60006011620010ee6002856200193b565b600c811062001101576200110162001836565b01546028541115620011af57600060116200111e6002866200193b565b600c811062001131576200113162001836565b015460285462001142919062001956565b6028549091506011620011576002876200193b565b600c81106200116a576200116a62001836565b01556103e860116200117e6001876200193b565b600c811062001191576200119162001836565b01546200119f90836200198a565b620011ab9190620019ac565b9150505b6000620011bd82846200193b565b905060008111620012025760405162461bcd60e51b815260206004820152600e60248201526d4e6f7468696e6720746f2070617960901b60448201526064016200032c565b604051600090339083908381818185875af1925050503d806000811462001246576040519150601f19603f3d011682016040523d82523d6000602084013e6200124b565b606091505b50509050806040518060400160405280600981526020016815160819985a5b195960ba1b81525090620012935760405162461bcd60e51b81526004016200032c9190620018ae565b505050505050505050565b60008060005b6004811015620012fa57600b8160048110620012c457620012c462001836565b01546001600160a01b0385811691161415620012e557600194909350915050565b80620012f18162001862565b915050620012a4565b50600093849350915050565b60006080516001600160a01b0316634000aea060a051848660006040516020016200133b929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016200136a93929190620019cf565b6020604051808303816000875af11580156200138a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620013b0919062001a01565b506000838152601d6020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a0909101909252815191830191909120938790529190526200140e9060016200193b565b6000858152601d60205260409020556200144f8482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b949350505050565b600183019183908215620014de5791602002820160005b83821115620014ad57835183826101000a81548160ff02191690831515021790555092602001926001016020816000010492830192600103026200146e565b8015620014dc5782816101000a81549060ff0219169055600101602081600001049283019260010302620014ad565b505b50620014ec929150620015a4565b5090565b82600c8101928215620014de579160200282015b82811115620014de578251829061ffff1690559160200191906001019062001504565b828054620015359062001a1f565b90600052602060002090601f016020900481019282620015595760008555620014de565b82601f106200157457805160ff1916838001178555620014de565b82800160010185558215620014de579182015b82811115620014de57825182559160200191906001019062001587565b5b80821115620014ec5760008155600101620015a5565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b604051608081016001600160401b03811182821017156200160c576200160c620015d1565b60405290565b6001600160a01b03811681146200081757600080fd5b60005b83811015620016455781810151838201526020016200162b565b8381111562001655576000848401525b50505050565b600082601f8301126200166d57600080fd5b81516001600160401b03808211156200168a576200168a620015d1565b604051601f8301601f19908116603f01168101908282118183101715620016b557620016b5620015d1565b81604052838152866020858801011115620016cf57600080fd5b620016e284602083016020890162001628565b9695505050505050565b80518015158114620016fd57600080fd5b919050565b8051620016fd8162001612565b60008060008060008060008060006101808a8c0312156200172f57600080fd5b8a601f8b01126200173f57600080fd5b62001749620015e7565b8060808c018d8111156200175c57600080fd5b8c5b8181101562001783578051620017748162001612565b8452602093840193016200175e565b5051909a5090506001600160401b0380821115620017a057600080fd5b620017ae8d838e016200165b565b995060a08c0151915080821115620017c557600080fd5b50620017d48c828d016200165b565b975050620017e560c08b01620016ec565b9550620017f560e08b0162001702565b9450620018066101008b0162001702565b93506101208a015192506101408a01519150620018276101608b0162001702565b90509295985092959850929598565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200187957620018796200184c565b5060010190565b600081518084526200189a81602086016020860162001628565b601f01601f19169290920160200192915050565b602081526000620018c3602083018462001880565b9392505050565b60088110620018e957634e487b7160e01b600052602160045260246000fd5b9052565b60408101620018fd8285620018ca565b620018c36020830184620018ca565b600082516200192081846020870162001628565b681037b91037bbb732b960b91b920191825250600901919050565b600082198211156200195157620019516200184c565b500190565b6000828210156200196b576200196b6200184c565b500390565b6000602082840312156200198357600080fd5b5051919050565b6000816000190483118215151615620019a757620019a76200184c565b500290565b600082620019ca57634e487b7160e01b600052601260045260246000fd5b500490565b60018060a01b0384168152826020820152606060408201526000620019f8606083018462001880565b95945050505050565b60006020828403121562001a1457600080fd5b620018c382620016ec565b600181811c9082168062001a3457607f821691505b6020821081141562001a5657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161537162001ab66000396000614613015260006138b701526000818161368f01526138d8015260008181611ea701526143ec0152600081816136b101526143bd01526153716000f3fe6080604052600436106103225760003560e01c806376f12dbd116101a5578063af433300116100ec578063cae7253611610095578063ede0fe051161006f578063ede0fe05146108c2578063f0292a03146108ef578063f2fde38b14610905578063f7d7e6e01461092557600080fd5b8063cae7253614610844578063e8a3d48514610864578063e985e9c51461087957600080fd5b8063c26b06e9116100c6578063c26b06e9146107d8578063c87b56dd14610804578063c91f5a601461082457600080fd5b8063af4333001461075d578063b88d4fde1461078a578063c19d93fb146107aa57600080fd5b806397db21f51161014e578063a22cb46511610128578063a22cb46514610722578063a2412b8114610535578063a56d77301461074257600080fd5b806397db21f5146106e75780639b3de7f2146106fa578063a0712d681461070f57600080fd5b80638ddb428a1161017f5780638ddb428a1461069c57806394985ddd146106b257806395d89b41146106d257600080fd5b806376f12dbd1461064e57806380161359146106635780638da5cb5b1461067e57600080fd5b806342966c68116102695780635f8fc7d51161021257806370a08231116101ec57806370a08231146105f9578063715018a61461061957806375edcbe01461062e57600080fd5b80635f8fc7d5146105af5780636352211e146105c457806363bd1d4a146105e457600080fd5b80635561713411610243578063556171341461054a57806356de96db1461055f5780635c975abb1461057f57600080fd5b806342966c68146104f55780634f6ccce714610515578063538633231461053557600080fd5b806323b872dd116102cb5780632f745c59116102a55780632f745c591461049557806333534ff1146104b557806342842e0e146104d557600080fd5b806323b872dd14610435578063276df017146104555780632a42f06b1461047557600080fd5b8063081812fc116102fc578063081812fc146103be578063095ea7b3146103f657806318160ddd1461041657600080fd5b806301ffc9a71461034557806305da6b031461037a57806306fdde031461039c57600080fd5b366103405734602860008282546103399190614aa6565b9091555050005b600080fd5b34801561035157600080fd5b50610365610360366004614aec565b610952565b60405190151581526020015b60405180910390f35b34801561038657600080fd5b5061039a610395366004614b09565b6109ae565b005b3480156103a857600080fd5b506103b1610c6b565b6040516103719190614bfa565b3480156103ca57600080fd5b506103de6103d9366004614c0d565b610cfd565b6040516001600160a01b039091168152602001610371565b34801561040257600080fd5b5061039a610411366004614c42565b610da3565b34801561042257600080fd5b506008545b604051908152602001610371565b34801561044157600080fd5b5061039a610450366004614c6c565b610ed5565b34801561046157600080fd5b5061039a610470366004614ca8565b610f5c565b34801561048157600080fd5b5061039a610490366004614cd4565b6111e9565b3480156104a157600080fd5b506104276104b0366004614c42565b611287565b3480156104c157600080fd5b506104276104d0366004614c0d565b61132f565b3480156104e157600080fd5b5061039a6104f0366004614c6c565b61141a565b34801561050157600080fd5b5061039a610510366004614c0d565b611435565b34801561052157600080fd5b50610427610530366004614c0d565b61150f565b34801561054157600080fd5b50610427600781565b34801561055657600080fd5b50610427600e81565b34801561056b57600080fd5b5061039a61057a366004614cef565b6115b3565b34801561058b57600080fd5b50600a5474010000000000000000000000000000000000000000900460ff16610365565b3480156105bb57600080fd5b5061039a61165b565b3480156105d057600080fd5b506103de6105df366004614c0d565b6117b8565b3480156105f057600080fd5b5061039a611843565b34801561060557600080fd5b50610427610614366004614cd4565b611bd0565b34801561062557600080fd5b5061039a611c6a565b34801561063a57600080fd5b5061039a610649366004614d10565b611cd0565b34801561065a57600080fd5b5061039a611d35565b34801561066f57600080fd5b5061042766470de4df82000081565b34801561068a57600080fd5b50600a546001600160a01b03166103de565b3480156106a857600080fd5b5061042760295481565b3480156106be57600080fd5b5061039a6106cd366004614d10565b611e9c565b3480156106de57600080fd5b506103b1611f1e565b61039a6106f5366004614b09565b611f2d565b34801561070657600080fd5b5061039a6121f0565b61039a61071d366004614c0d565b61226b565b34801561072e57600080fd5b5061039a61073d366004614d40565b6123c3565b34801561074e57600080fd5b50610427666a94d74f43000081565b34801561076957600080fd5b50610427610778366004614c0d565b60226020526000908152604090205481565b34801561079657600080fd5b5061039a6107a5366004614e3b565b6124a6565b3480156107b657600080fd5b50600a546107cb90600160a81b900460ff1681565b6040516103719190614f50565b3480156107e457600080fd5b506104276107f3366004614c0d565b602080526000908152604090205481565b34801561081057600080fd5b506103b161081f366004614c0d565b612534565b34801561083057600080fd5b5061042761083f366004614c0d565b6127e8565b34801561085057600080fd5b5061042761085f366004614c0d565b6128ac565b34801561087057600080fd5b506103b1612968565b34801561088557600080fd5b50610365610894366004614f5e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108ce57600080fd5b506104276108dd366004614c0d565b60216020526000908152604090205481565b3480156108fb57600080fd5b50610427613cc281565b34801561091157600080fd5b5061039a610920366004614cd4565b612a0c565b34801561093157600080fd5b50610427610940366004614c0d565b60266020526000908152604090205481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806109a857506109a882612aeb565b92915050565b6002600381600a54600160a81b900460ff1660078111156109d1576109d1614ee6565b1480610a0a57508060078111156109ea576109ea614ee6565b600a54600160a81b900460ff166007811115610a0857610a08614ee6565b145b6040518060400160405280600d81526020017f496e76616c69642073746174650000000000000000000000000000000000000081525090610a675760405162461bcd60e51b8152600401610a5e9190614bfa565b60405180910390fd5b506023548585610b05828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250879250610aaf9150612bce9050565b604051602001610aea919060609190911b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016815260140190565b60405160208183030381529060405280519060200120612bd2565b610b515760405162461bcd60e51b815260206004820152600d60248201527f496e76616c69642070726f6f66000000000000000000000000000000000000006044820152606401610a5e565b85600760018210158015610b655750808211155b8015610b865750613cc282610b7960085490565b610b839190614aa6565b11155b6040518060600160405280602b8152602001615311602b913990610bbd5760405162461bcd60e51b8152600401610a5e9190614bfa565b503360009081526025602052604090205460ff1615610c1e5760405162461bcd60e51b815260206004820152601860248201527f4f6e6c79206f6e65207072656d696e7420616c6c6f77656400000000000000006044820152606401610a5e565b33600090815260256020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055610c5f88612c81565b50505050505050505050565b606060008054610c7a90614f88565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca690614f88565b8015610cf35780601f10610cc857610100808354040283529160200191610cf3565b820191906000526020600020905b815481529060010190602001808311610cd657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a5e565b506000908152600460205260409020546001600160a01b031690565b6000610dae826117b8565b9050806001600160a01b0316836001600160a01b03161415610e385760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a5e565b336001600160a01b0382161480610e545750610e548133610894565b610ec65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a5e565b610ed08383612dcc565b505050565b610edf3382612e52565b610f515760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a5e565b610ed0838383612f5a565b60295460016006818310158015610f735750808311155b6040518060400160405280601281526020017f496e76616c69642067656e65726174696f6e000000000000000000000000000081525090610fc75760405162461bcd60e51b8152600401610a5e9190614bfa565b50600580600a54600160a81b900460ff166007811115610fe957610fe9614ee6565b10156040518060400160405280600d81526020017f496e76616c6964207374617465000000000000000000000000000000000000008152509061103f5760405162461bcd60e51b8152600401610a5e9190614bfa565b50602b546001600160a01b0316336001600160a01b0316146110a35760405162461bcd60e51b815260206004820152601560248201527f4f6e6c792054616e6772616d20636f6e747261637400000000000000000000006044820152606401610a5e565b600a5474010000000000000000000000000000000000000000900460ff161561110e5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610a5e565b6000602954600161111f9190614aa6565b9050600061112c8261132f565b600083815260266020526040902054909150819061114b908a90614aa6565b11156040518060600160405280602b8152602001615311602b9139906111845760405162461bcd60e51b8152600401610a5e9190614bfa565b5060005b888110156111de57600083815260266020526040812080546111cc928b92906111b083614fdc565b919050556111bd866128ac565b6111c79190614aa6565b61314a565b806111d681614fdc565b915050611188565b505050505050505050565b600a546001600160a01b031633146112435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a5e565b602b80546001600160a01b039092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602a8054909216179055565b600061129283611bd0565b82106113065760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a5e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600081600160078183101580156113465750808311155b6040518060400160405280601281526020017f496e76616c69642067656e65726174696f6e00000000000000000000000000008152509061139a5760405162461bcd60e51b8152600401610a5e9190614bfa565b5084600714156113ad5760379350611412565b84600614156113c0576101819350611412565b84600514156113d3576103d49350611412565b84600414156113e6576109069350611412565b84600314156113f95761138d9350611412565b846002141561140c576123c49350611412565b613cc293505b505050919050565b610ed0838383604051806020016040528060008152506124a6565b602b546001600160a01b0316336001600160a01b0316146114985760405162461bcd60e51b815260206004820152601560248201527f4f6e6c792054616e6772616d20636f6e747261637400000000000000000000006044820152606401610a5e565b600a5474010000000000000000000000000000000000000000900460ff16156115035760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610a5e565b61150c816132b0565b50565b600061151a60085490565b821061158e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a5e565b600882815481106115a1576115a1614ff7565b90600052602060002001549050919050565b600a546001600160a01b03163314806115d057506115d03361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d626572000000000000000000000000000000008152506040516020016116169190615026565b604051602081830303815290604052906116435760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a5461150c90600160a81b900460ff1682613383565b6003600781600a54600160a81b900460ff16600781111561167e5761167e614ee6565b14806116b7575080600781111561169757611697614ee6565b600a54600160a81b900460ff1660078111156116b5576116b5614ee6565b145b6040518060400160405280600d81526020017f496e76616c6964207374617465000000000000000000000000000000000000008152509061170b5760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a546001600160a01b031633148061172957506117293361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d6265720000000000000000000000000000000081525060405160200161176f9190615026565b6040516020818303038152906040529061179c5760405162461bcd60e51b8152600401610a5e9190614bfa565b506117b460295460016117af9190614aa6565b613603565b5050565b6000818152600260205260408120546001600160a01b0316806109a85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a5e565b600f5460ff16156118965760405162461bcd60e51b815260206004820152601060248201527f456d657267656e63792063616c6c6564000000000000000000000000000000006044820152606401610a5e565b600480600a54600160a81b900460ff1660078111156118b7576118b7614ee6565b10156040518060400160405280600d81526020017f496e76616c6964207374617465000000000000000000000000000000000000008152509061190d5760405162461bcd60e51b8152600401610a5e9190614bfa565b5060008061191a33613921565b915091508161196b5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964206164647265737300000000000000000000000000000000006044820152606401610a5e565b6000611978600383615067565b905060006010836004811061198f5761198f614ff7565b602081049091015460ff601f9092166101000a900416611a1b576001601084600481106119be576119be614ff7565b602091828204019190066101000a81548160ff0219169083151502179055506103e860116000846119ef9190614aa6565b600c81106119ff576119ff614ff7565b0154602754611a0e9190615067565b611a189190615086565b90505b60006011611a2a600285614aa6565b600c8110611a3a57611a3a614ff7565b01546028541115611ad25760006011611a54600286614aa6565b600c8110611a6457611a64614ff7565b0154602854611a7391906150c1565b6028549091506011611a86600287614aa6565b600c8110611a9657611a96614ff7565b01556103e86011611aa8600187614aa6565b600c8110611ab857611ab8614ff7565b0154611ac49083615067565b611ace9190615086565b9150505b6000611ade8284614aa6565b905060008111611b305760405162461bcd60e51b815260206004820152600e60248201527f4e6f7468696e6720746f207061790000000000000000000000000000000000006044820152606401610a5e565b604051600090339083908381818185875af1925050503d8060008114611b72576040519150601f19603f3d011682016040523d82523d6000602084013e611b77565b606091505b50509050806040518060400160405280600981526020017f5458206661696c65640000000000000000000000000000000000000000000000815250906111de5760405162461bcd60e51b8152600401610a5e9190614bfa565b60006001600160a01b038216611c4e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a5e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611cc45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a5e565b611cce6000613981565b565b600a546001600160a01b03163314611d2a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a5e565b602391909155602455565b600a546001600160a01b0316331480611d525750611d523361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d62657200000000000000000000000000000000815250604051602001611d989190615026565b60405160208183030381529060405290611dc55760405162461bcd60e51b8152600401610a5e9190614bfa565b50600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600b546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611e3e576040519150601f19603f3d011682016040523d82523d6000602084013e611e43565b606091505b50509050806040518060400160405280600981526020017f5458206661696c65640000000000000000000000000000000000000000000000815250906117b45760405162461bcd60e51b8152600401610a5e9190614bfa565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611f145760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610a5e565b6117b482826139eb565b606060018054610c7a90614f88565b8066470de4df8200003480611f428385615067565b14611f8f5760405162461bcd60e51b815260206004820152601060248201527f57726f6e672076616c75652073656e74000000000000000000000000000000006044820152606401610a5e565b6002600381600a54600160a81b900460ff166007811115611fb257611fb2614ee6565b1480611feb5750806007811115611fcb57611fcb614ee6565b600a54600160a81b900460ff166007811115611fe957611fe9614ee6565b145b6040518060400160405280600d81526020017f496e76616c6964207374617465000000000000000000000000000000000000008152509061203f5760405162461bcd60e51b8152600401610a5e9190614bfa565b506024548888612087828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250879250610aaf9150612bce9050565b6120d35760405162461bcd60e51b815260206004820152600d60248201527f496e76616c69642070726f6f66000000000000000000000000000000000000006044820152606401610a5e565b886007600182101580156120e75750808211155b80156121085750613cc2826120fb60085490565b6121059190614aa6565b11155b6040518060600160405280602b8152602001615311602b91399061213f5760405162461bcd60e51b8152600401610a5e9190614bfa565b503360009081526025602052604090205460ff16156121a05760405162461bcd60e51b815260206004820152601860248201527f4f6e6c79206f6e65207072656d696e7420616c6c6f77656400000000000000006044820152606401610a5e565b33600090815260256020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556121e18b612c81565b50505050505050505050505050565b602b546001600160a01b0316336001600160a01b0316146122535760405162461bcd60e51b815260206004820152601560248201527f4f6e6c792054616e6772616d20636f6e747261637400000000000000000000006044820152606401610a5e565b600a54611cce90600160a81b900460ff166006613383565b80666a94d74f43000034806122808385615067565b146122cd5760405162461bcd60e51b815260206004820152601060248201527f57726f6e672076616c75652073656e74000000000000000000000000000000006044820152606401610a5e565b600380600a54600160a81b900460ff1660078111156122ee576122ee614ee6565b146040518060400160405280600d81526020017f496e76616c696420737461746500000000000000000000000000000000000000815250906123435760405162461bcd60e51b8152600401610a5e9190614bfa565b5084600e600182101580156123585750808211155b80156123795750613cc28261236c60085490565b6123769190614aa6565b11155b6040518060600160405280602b8152602001615311602b9139906123b05760405162461bcd60e51b8152600401610a5e9190614bfa565b506123ba87612c81565b50505050505050565b6001600160a01b03821633141561241c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a5e565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6124b03383612e52565b6125225760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a5e565b61252e84848484613bb5565b50505050565b6000818152600260205260409020546060906001600160a01b031661259b5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610a5e565b6004600a54600160a81b900460ff1660078111156125bb576125bb614ee6565b11612636576040518060600160405280602581526020016152ec602591396040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016126209291906150d8565b6040516020818303038152906040529050919050565b602a546040517f56e3df97000000000000000000000000000000000000000000000000000000008152600481018490526000916001600160a01b0316906356e3df9790602401602060405180830381865afa158015612699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126bd9190615130565b90506029548111156040518060400160405280601281526020017f496e76616c69642067656e65726174696f6e0000000000000000000000000000815250906127195760405162461bcd60e51b8152600401610a5e9190614bfa565b50602a54600082815260216020526040908190205490517f26bf8441000000000000000000000000000000000000000000000000000000008152600481018690526024810184905260448101919091526001600160a01b03909116906326bf844190606401600060405180830381865afa15801561279b573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526127e19190810190615149565b9392505050565b600081600260068183101580156127ff5750808311155b6040518060400160405280601281526020017f496e76616c69642067656e65726174696f6e0000000000000000000000000000815250906128535760405162461bcd60e51b8152600401610a5e9190614bfa565b508460061415612867576101349350611412565b846005141561287a576103109350611412565b846004141561288d576107389350611412565b84600314156128a057610fa49350611412565b50611c9d949350505050565b600081600160078183101580156128c35750808311155b6040518060400160405280601281526020017f496e76616c69642067656e65726174696f6e0000000000000000000000000000815250906129175760405162461bcd60e51b8152600401610a5e9190614bfa565b506001805b6007811161295b578087141561293457509350611412565b61293d8161132f565b6129479083614aa6565b91508061295381614fdc565b91505061291c565b5060009695505050505050565b60606040518060600160405280602581526020016152ec60259139604080518082018252600c81527f636f6e74726163745f74616e000000000000000000000000000000000000000060208083019190915282518084018452600581527f2e6a736f6e0000000000000000000000000000000000000000000000000000008183015292516129f8949391016151c0565b604051602081830303815290604052905090565b600a546001600160a01b03163314612a665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a5e565b6001600160a01b038116612ae25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a5e565b61150c81613981565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612b7e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109a857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146109a8565b3390565b600081815b8551811015612c76576000868281518110612bf457612bf4614ff7565b60200260200101519050808311612c36576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612c63565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612c6e81614fdc565b915050612bd7565b509092149392505050565b6002600381600a54600160a81b900460ff166007811115612ca457612ca4614ee6565b1480612cdd5750806007811115612cbd57612cbd614ee6565b600a54600160a81b900460ff166007811115612cdb57612cdb614ee6565b145b6040518060400160405280600d81526020017f496e76616c69642073746174650000000000000000000000000000000000000081525090612d315760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a5474010000000000000000000000000000000000000000900460ff1615612d9d5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610a5e565b60005b8381101561252e57612dba336008546111c7906001614aa6565b80612dc481614fdc565b915050612da0565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190612e19826117b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612edc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a5e565b6000612ee7836117b8565b9050806001600160a01b0316846001600160a01b03161480612f225750836001600160a01b0316612f1784610cfd565b6001600160a01b0316145b80612f5257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612f6d826117b8565b6001600160a01b031614612fe95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a5e565b6001600160a01b0382166130645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a5e565b61306f838383613c3e565b61307a600082612dcc565b6001600160a01b03831660009081526003602052604081208054600192906130a39084906150c1565b90915550506001600160a01b03821660009081526003602052604081208054600192906130d1908490614aa6565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166131a05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a5e565b6000818152600260205260409020546001600160a01b0316156132055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a5e565b61321160008383613c3e565b6001600160a01b038216600090815260036020526040812080546001929061323a908490614aa6565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006132bb826117b8565b90506132c981600084613c3e565b6132d4600083612dcc565b6001600160a01b03811660009081526003602052604081208054600192906132fd9084906150c1565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008061337b83613921565b509392505050565b80600781111561339557613395614ee6565b8260078111156133a7576133a7614ee6565b141580156133fb57508160078111156133c2576133c2614ee6565b15806133fb57508160078111156133db576133db614ee6565b600a54600160a81b900460ff1660078111156133f9576133f9614ee6565b145b6040518060400160405280601481526020017f496e76616c6964207374617465206368616e67650000000000000000000000008152509061344f5760405162461bcd60e51b8152600401610a5e9190614bfa565b50600081600781111561346457613464614ee6565b6002141561347c57506001613477613cf6565b613510565b81600781111561348e5761348e614ee6565b600314156134a157506001613477613dfe565b8160078111156134b3576134b3614ee6565b600414156134c657506001613477613e06565b8160078111156134d8576134d8614ee6565b600614156134eb57506001613477613f18565b8160078111156134fd576134fd614ee6565b6007141561351057506001613510614030565b60408051808201909152601481527f496e76616c6964207374617465206368616e67650000000000000000000000006020820152816135625760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a80548391907fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16600160a81b8360078111156135a3576135a3614ee6565b02179055507fe8a97ea87e4388fa22d496b95a8ed5ced6717f49790318de2b928aaf37a021d883836040516135d9929190615203565b60405180910390a18160078111156135f3576135f3614ee6565b60041415610ed057610ed0614242565b42601f54601e546136149190614aa6565b106136615760405162461bcd60e51b815260206004820152600d60248201527f4e6f742074696d6564206f7574000000000000000000000000000000000000006044820152606401610a5e565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f0000000000000000000000000000000000000000000000000000000000000000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015613700573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137249190615130565b10156137725760405162461bcd60e51b815260206004820152600f60248201527f4e6f7420656e6f756768204c494e4b00000000000000000000000000000000006044820152606401610a5e565b600081815260216020526040902054158061379c5750600081815260216020526040902054600019145b61380e5760405162461bcd60e51b815260206004820152602260248201527f5365656420616c726561647920726571756573746564206f722072656365697660448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610a5e565b60018111156138ac57600019602160006138296001856150c1565b81526020019081526020016000205414156138ac5760405162461bcd60e51b815260206004820152602560248201527f50726576696f75732067656e65726174696f6e2073656564206e6f742072656360448201527f65697665640000000000000000000000000000000000000000000000000000006064820152608401610a5e565b42601e5560006138fc7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006143b9565b6000908152602080805260408083208590559382526021905291909120600019905550565b60008060005b600481101561397557600b816004811061394357613943614ff7565b01546001600160a01b038581169116141561396357600194909350915050565b8061396d81614fdc565b915050613927565b50600093849350915050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082815260208052604090205460018110801590613a0b575060078111155b613a575760405162461bcd60e51b815260206004820152601260248201527f496e76616c69642067656e65726174696f6e00000000000000000000000000006044820152606401610a5e565b6001811115613af55760001960216000613a726001856150c1565b8152602001908152602001600020541415613af55760405162461bcd60e51b815260206004820152602560248201527f50726576696f75732067656e65726174696f6e2073656564206e6f742072656360448201527f65697665640000000000000000000000000000000000000000000000000000006064820152608401610a5e565b60008181526021602052604090205460001914613b7a5760405162461bcd60e51b815260206004820152602f60248201527f52616e646f6d206e756d626572206e6f7420726571756573746564206f72206160448201527f6c726561647920726563656976656400000000000000000000000000000000006064820152608401610a5e565b6000818152602160205260409020829055613b9482614535565b805160209182012060008381526022909252604090912055610ed08161455f565b613bc0848484612f5a565b613bcc8484848461472b565b61252e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a5e565b6001600160a01b038316613c9957613c9481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613cbc565b816001600160a01b0316836001600160a01b031614613cbc57613cbc83826148e7565b6001600160a01b038216613cd357610ed081614984565b826001600160a01b0316826001600160a01b031614610ed057610ed08282614a33565b6001805b600a54600160a81b900460ff166007811115613d1857613d18614ee6565b146040518060400160405280600d81526020017f496e76616c69642073746174650000000000000000000000000000000000000081525090613d6d5760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a546001600160a01b0316331480613d8b5750613d8b3361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d62657200000000000000000000000000000000815250604051602001613dd19190615026565b604051602081830303815290604052906117b45760405162461bcd60e51b8152600401610a5e9190614bfa565b600280613cfa565b600380600a54600160a81b900460ff166007811115613e2757613e27614ee6565b146040518060400160405280600d81526020017f496e76616c69642073746174650000000000000000000000000000000000000081525090613e7c5760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a546001600160a01b0316331480613e9a5750613e9a3361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d62657200000000000000000000000000000000815250604051602001613ee09190615026565b60405160208183030381529060405290613f0d5760405162461bcd60e51b8152600401610a5e9190614bfa565b5061150c6001613603565b600580600a54600160a81b900460ff166007811115613f3957613f39614ee6565b146040518060400160405280600d81526020017f496e76616c69642073746174650000000000000000000000000000000000000081525090613f8e5760405162461bcd60e51b8152600401610a5e9190614bfa565b50602b546001600160a01b0316336001600160a01b031614613ff25760405162461bcd60e51b815260206004820152601560248201527f4f6e6c792054616e6772616d20636f6e747261637400000000000000000000006044820152606401610a5e565b7fb6ebf2d56add8cbb26c79a87c5e893e4b2436ee6b76d81aec1b6b8c52a04c91960295460405161402591815260200190565b60405180910390a150565b602954600160078183101580156140475750808311155b6040518060400160405280601281526020017f496e76616c69642067656e65726174696f6e00000000000000000000000000008152509061409b5760405162461bcd60e51b8152600401610a5e9190614bfa565b506005600681600a54600160a81b900460ff1660078111156140bf576140bf614ee6565b14806140f857508060078111156140d8576140d8614ee6565b600a54600160a81b900460ff1660078111156140f6576140f6614ee6565b145b6040518060400160405280600d81526020017f496e76616c6964207374617465000000000000000000000000000000000000008152509061414c5760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a546001600160a01b031633148061416a575061416a3361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d626572000000000000000000000000000000008152506040516020016141b09190615026565b604051602081830303815290604052906141dd5760405162461bcd60e51b8152600401610a5e9190614bfa565b5060076029541015614200576000601e55602954614200906117af906001614aa6565b7f111c12d7fd6242821636e78c02b7ca204d0c8322b040e4f65bcaaf39a063a6fd60295460405161423391815260200190565b60405180910390a15050505050565b600480600a54600160a81b900460ff16600781111561426357614263614ee6565b146040518060400160405280600d81526020017f496e76616c696420737461746500000000000000000000000000000000000000815250906142b85760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a546001600160a01b03163314806142d657506142d63361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d6265720000000000000000000000000000000081525060405160200161431c9190615026565b604051602081830303815290604052906143495760405162461bcd60e51b8152600401610a5e9190614bfa565b50600854600160005260266020527f5db1dfd2ced311e642486f0e890a646498a1bdee1ad9403b0a73141af8a4c4115560285461438690476150c1565b602755600f5460ff161580156143a057506143a03361336f565b80156143ac5750600047115b1561150c5761150c611843565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f000000000000000000000000000000000000000000000000000000000000000084866000604051602001614429929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016144569392919061521e565b6020604051808303816000875af1158015614475573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144999190615246565b506000838152601d6020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a0909101909252815191830191909120938790529190526144f5906001614aa6565b6000858152601d6020526040902055612f528482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b60408051602080825281830190925260609160208201818036833750505060208101929092525090565b6004600781600a54600160a81b900460ff16600781111561458257614582614ee6565b14806145bb575080600781111561459b5761459b614ee6565b600a54600160a81b900460ff1660078111156145b9576145b9614ee6565b145b6040518060400160405280600d81526020017f496e76616c6964207374617465000000000000000000000000000000000000008152509061460f5760405162461bcd60e51b8152600401610a5e9190614bfa565b50337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146146885760405162461bcd60e51b815260206004820152601460248201527f4f6e6c792056524620436f6f7264696e61746f720000000000000000000000006044820152606401610a5e565b602954614696906001614aa6565b83146146e45760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420736565642067656e65726174696f6e0000000000000000006044820152606401610a5e565b5050602955600a80547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff167505000000000000000000000000000000000000000000179055565b60006001600160a01b0384163b156148dc576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290614788903390899088908890600401615263565b6020604051808303816000875af19250505080156147e1575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526147de9181019061529f565b60015b614891573d80801561480f576040519150601f19603f3d011682016040523d82523d6000602084013e614814565b606091505b5080516148895760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a5e565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612f52565b506001949350505050565b600060016148f484611bd0565b6148fe91906150c1565b600083815260076020526040902054909150808214614951576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090614996906001906150c1565b600083815260096020526040812054600880549394509092849081106149be576149be614ff7565b9060005260206000200154905080600883815481106149df576149df614ff7565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480614a1757614a176152bc565b6001900381819060005260206000200160009055905550505050565b6000614a3e83611bd0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115614ab957614ab9614a77565b500190565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461150c57600080fd5b600060208284031215614afe57600080fd5b81356127e181614abe565b600080600060408486031215614b1e57600080fd5b833567ffffffffffffffff80821115614b3657600080fd5b818601915086601f830112614b4a57600080fd5b813581811115614b5957600080fd5b8760208260051b8501011115614b6e57600080fd5b6020928301989097509590910135949350505050565b60005b83811015614b9f578181015183820152602001614b87565b8381111561252e5750506000910152565b60008151808452614bc8816020860160208601614b84565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006127e16020830184614bb0565b600060208284031215614c1f57600080fd5b5035919050565b80356001600160a01b0381168114614c3d57600080fd5b919050565b60008060408385031215614c5557600080fd5b614c5e83614c26565b946020939093013593505050565b600080600060608486031215614c8157600080fd5b614c8a84614c26565b9250614c9860208501614c26565b9150604084013590509250925092565b60008060408385031215614cbb57600080fd5b82359150614ccb60208401614c26565b90509250929050565b600060208284031215614ce657600080fd5b6127e182614c26565b600060208284031215614d0157600080fd5b8135600881106127e157600080fd5b60008060408385031215614d2357600080fd5b50508035926020909101359150565b801515811461150c57600080fd5b60008060408385031215614d5357600080fd5b614d5c83614c26565b91506020830135614d6c81614d32565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715614ded57614ded614d77565b604052919050565b600067ffffffffffffffff821115614e0f57614e0f614d77565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b60008060008060808587031215614e5157600080fd5b614e5a85614c26565b9350614e6860208601614c26565b925060408501359150606085013567ffffffffffffffff811115614e8b57600080fd5b8501601f81018713614e9c57600080fd5b8035614eaf614eaa82614df5565b614da6565b818152886020838501011115614ec457600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60088110614f4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b9052565b602081016109a88284614f15565b60008060408385031215614f7157600080fd5b614f7a83614c26565b9150614ccb60208401614c26565b600181811c90821680614f9c57607f821691505b60208210811415614fd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000600019821415614ff057614ff0614a77565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008251615038818460208701614b84565b7f206f72206f776e65720000000000000000000000000000000000000000000000920191825250600901919050565b600081600019048311821515161561508157615081614a77565b500290565b6000826150bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000828210156150d3576150d3614a77565b500390565b600083516150ea818460208801614b84565b7f706c616365686f6c646572000000000000000000000000000000000000000000908301908152835161512481600b840160208801614b84565b01600b01949350505050565b60006020828403121561514257600080fd5b5051919050565b60006020828403121561515b57600080fd5b815167ffffffffffffffff81111561517257600080fd5b8201601f8101841361518357600080fd5b8051615191614eaa82614df5565b8181528560208385010111156151a657600080fd5b6151b7826020830160208601614b84565b95945050505050565b600084516151d2818460208901614b84565b8451908301906151e6818360208901614b84565b84519101906151f9818360208801614b84565b0195945050505050565b604081016152118285614f15565b6127e16020830184614f15565b6001600160a01b03841681528260208201526060604082015260006151b76060830184614bb0565b60006020828403121561525857600080fd5b81516127e181614d32565b60006001600160a01b038087168352808616602084015250836040830152608060608301526152956080830184614bb0565b9695505050505050565b6000602082840312156152b157600080fd5b81516127e181614abe565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe68747470733a2f2f746163746963616c74616e6772616d732e696f2f6d657461646174612f496e76616c6964206e756d626572206f662074616e73206f72206e6f206d6f72652074616e73206c656674a2646970667358221220382f58ba04a168adb2c4efd295535f040db06f77d0837f57eb86ad140b1b8b4364736f6c634300080b0033000000000000000000000000e0ba13bc43000d3073b680e65b44b357d2c8cdd7000000000000000000000000ece39a881dfa37b7fbcce8f764981790553ec0f80000000000000000000000009ccd31cae8b047ddefa522c347886d51faccee6900000000000000000000000057e2a4ec7250d768220e8fa1110b210de917d0e9000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000001bc16d674ec800000000000000000000000000006735053c615bde13203d97e9c65b76a0df0f7b660000000000000000000000000000000000000000000000000000000000000018546163746963616c2054616e6772616d73202d2054616e73000000000000000000000000000000000000000000000000000000000000000000000000000000055454414e47000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103225760003560e01c806376f12dbd116101a5578063af433300116100ec578063cae7253611610095578063ede0fe051161006f578063ede0fe05146108c2578063f0292a03146108ef578063f2fde38b14610905578063f7d7e6e01461092557600080fd5b8063cae7253614610844578063e8a3d48514610864578063e985e9c51461087957600080fd5b8063c26b06e9116100c6578063c26b06e9146107d8578063c87b56dd14610804578063c91f5a601461082457600080fd5b8063af4333001461075d578063b88d4fde1461078a578063c19d93fb146107aa57600080fd5b806397db21f51161014e578063a22cb46511610128578063a22cb46514610722578063a2412b8114610535578063a56d77301461074257600080fd5b806397db21f5146106e75780639b3de7f2146106fa578063a0712d681461070f57600080fd5b80638ddb428a1161017f5780638ddb428a1461069c57806394985ddd146106b257806395d89b41146106d257600080fd5b806376f12dbd1461064e57806380161359146106635780638da5cb5b1461067e57600080fd5b806342966c68116102695780635f8fc7d51161021257806370a08231116101ec57806370a08231146105f9578063715018a61461061957806375edcbe01461062e57600080fd5b80635f8fc7d5146105af5780636352211e146105c457806363bd1d4a146105e457600080fd5b80635561713411610243578063556171341461054a57806356de96db1461055f5780635c975abb1461057f57600080fd5b806342966c68146104f55780634f6ccce714610515578063538633231461053557600080fd5b806323b872dd116102cb5780632f745c59116102a55780632f745c591461049557806333534ff1146104b557806342842e0e146104d557600080fd5b806323b872dd14610435578063276df017146104555780632a42f06b1461047557600080fd5b8063081812fc116102fc578063081812fc146103be578063095ea7b3146103f657806318160ddd1461041657600080fd5b806301ffc9a71461034557806305da6b031461037a57806306fdde031461039c57600080fd5b366103405734602860008282546103399190614aa6565b9091555050005b600080fd5b34801561035157600080fd5b50610365610360366004614aec565b610952565b60405190151581526020015b60405180910390f35b34801561038657600080fd5b5061039a610395366004614b09565b6109ae565b005b3480156103a857600080fd5b506103b1610c6b565b6040516103719190614bfa565b3480156103ca57600080fd5b506103de6103d9366004614c0d565b610cfd565b6040516001600160a01b039091168152602001610371565b34801561040257600080fd5b5061039a610411366004614c42565b610da3565b34801561042257600080fd5b506008545b604051908152602001610371565b34801561044157600080fd5b5061039a610450366004614c6c565b610ed5565b34801561046157600080fd5b5061039a610470366004614ca8565b610f5c565b34801561048157600080fd5b5061039a610490366004614cd4565b6111e9565b3480156104a157600080fd5b506104276104b0366004614c42565b611287565b3480156104c157600080fd5b506104276104d0366004614c0d565b61132f565b3480156104e157600080fd5b5061039a6104f0366004614c6c565b61141a565b34801561050157600080fd5b5061039a610510366004614c0d565b611435565b34801561052157600080fd5b50610427610530366004614c0d565b61150f565b34801561054157600080fd5b50610427600781565b34801561055657600080fd5b50610427600e81565b34801561056b57600080fd5b5061039a61057a366004614cef565b6115b3565b34801561058b57600080fd5b50600a5474010000000000000000000000000000000000000000900460ff16610365565b3480156105bb57600080fd5b5061039a61165b565b3480156105d057600080fd5b506103de6105df366004614c0d565b6117b8565b3480156105f057600080fd5b5061039a611843565b34801561060557600080fd5b50610427610614366004614cd4565b611bd0565b34801561062557600080fd5b5061039a611c6a565b34801561063a57600080fd5b5061039a610649366004614d10565b611cd0565b34801561065a57600080fd5b5061039a611d35565b34801561066f57600080fd5b5061042766470de4df82000081565b34801561068a57600080fd5b50600a546001600160a01b03166103de565b3480156106a857600080fd5b5061042760295481565b3480156106be57600080fd5b5061039a6106cd366004614d10565b611e9c565b3480156106de57600080fd5b506103b1611f1e565b61039a6106f5366004614b09565b611f2d565b34801561070657600080fd5b5061039a6121f0565b61039a61071d366004614c0d565b61226b565b34801561072e57600080fd5b5061039a61073d366004614d40565b6123c3565b34801561074e57600080fd5b50610427666a94d74f43000081565b34801561076957600080fd5b50610427610778366004614c0d565b60226020526000908152604090205481565b34801561079657600080fd5b5061039a6107a5366004614e3b565b6124a6565b3480156107b657600080fd5b50600a546107cb90600160a81b900460ff1681565b6040516103719190614f50565b3480156107e457600080fd5b506104276107f3366004614c0d565b602080526000908152604090205481565b34801561081057600080fd5b506103b161081f366004614c0d565b612534565b34801561083057600080fd5b5061042761083f366004614c0d565b6127e8565b34801561085057600080fd5b5061042761085f366004614c0d565b6128ac565b34801561087057600080fd5b506103b1612968565b34801561088557600080fd5b50610365610894366004614f5e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108ce57600080fd5b506104276108dd366004614c0d565b60216020526000908152604090205481565b3480156108fb57600080fd5b50610427613cc281565b34801561091157600080fd5b5061039a610920366004614cd4565b612a0c565b34801561093157600080fd5b50610427610940366004614c0d565b60266020526000908152604090205481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806109a857506109a882612aeb565b92915050565b6002600381600a54600160a81b900460ff1660078111156109d1576109d1614ee6565b1480610a0a57508060078111156109ea576109ea614ee6565b600a54600160a81b900460ff166007811115610a0857610a08614ee6565b145b6040518060400160405280600d81526020017f496e76616c69642073746174650000000000000000000000000000000000000081525090610a675760405162461bcd60e51b8152600401610a5e9190614bfa565b60405180910390fd5b506023548585610b05828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250879250610aaf9150612bce9050565b604051602001610aea919060609190911b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016815260140190565b60405160208183030381529060405280519060200120612bd2565b610b515760405162461bcd60e51b815260206004820152600d60248201527f496e76616c69642070726f6f66000000000000000000000000000000000000006044820152606401610a5e565b85600760018210158015610b655750808211155b8015610b865750613cc282610b7960085490565b610b839190614aa6565b11155b6040518060600160405280602b8152602001615311602b913990610bbd5760405162461bcd60e51b8152600401610a5e9190614bfa565b503360009081526025602052604090205460ff1615610c1e5760405162461bcd60e51b815260206004820152601860248201527f4f6e6c79206f6e65207072656d696e7420616c6c6f77656400000000000000006044820152606401610a5e565b33600090815260256020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055610c5f88612c81565b50505050505050505050565b606060008054610c7a90614f88565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca690614f88565b8015610cf35780601f10610cc857610100808354040283529160200191610cf3565b820191906000526020600020905b815481529060010190602001808311610cd657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a5e565b506000908152600460205260409020546001600160a01b031690565b6000610dae826117b8565b9050806001600160a01b0316836001600160a01b03161415610e385760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a5e565b336001600160a01b0382161480610e545750610e548133610894565b610ec65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a5e565b610ed08383612dcc565b505050565b610edf3382612e52565b610f515760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a5e565b610ed0838383612f5a565b60295460016006818310158015610f735750808311155b6040518060400160405280601281526020017f496e76616c69642067656e65726174696f6e000000000000000000000000000081525090610fc75760405162461bcd60e51b8152600401610a5e9190614bfa565b50600580600a54600160a81b900460ff166007811115610fe957610fe9614ee6565b10156040518060400160405280600d81526020017f496e76616c6964207374617465000000000000000000000000000000000000008152509061103f5760405162461bcd60e51b8152600401610a5e9190614bfa565b50602b546001600160a01b0316336001600160a01b0316146110a35760405162461bcd60e51b815260206004820152601560248201527f4f6e6c792054616e6772616d20636f6e747261637400000000000000000000006044820152606401610a5e565b600a5474010000000000000000000000000000000000000000900460ff161561110e5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610a5e565b6000602954600161111f9190614aa6565b9050600061112c8261132f565b600083815260266020526040902054909150819061114b908a90614aa6565b11156040518060600160405280602b8152602001615311602b9139906111845760405162461bcd60e51b8152600401610a5e9190614bfa565b5060005b888110156111de57600083815260266020526040812080546111cc928b92906111b083614fdc565b919050556111bd866128ac565b6111c79190614aa6565b61314a565b806111d681614fdc565b915050611188565b505050505050505050565b600a546001600160a01b031633146112435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a5e565b602b80546001600160a01b039092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602a8054909216179055565b600061129283611bd0565b82106113065760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a5e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600081600160078183101580156113465750808311155b6040518060400160405280601281526020017f496e76616c69642067656e65726174696f6e00000000000000000000000000008152509061139a5760405162461bcd60e51b8152600401610a5e9190614bfa565b5084600714156113ad5760379350611412565b84600614156113c0576101819350611412565b84600514156113d3576103d49350611412565b84600414156113e6576109069350611412565b84600314156113f95761138d9350611412565b846002141561140c576123c49350611412565b613cc293505b505050919050565b610ed0838383604051806020016040528060008152506124a6565b602b546001600160a01b0316336001600160a01b0316146114985760405162461bcd60e51b815260206004820152601560248201527f4f6e6c792054616e6772616d20636f6e747261637400000000000000000000006044820152606401610a5e565b600a5474010000000000000000000000000000000000000000900460ff16156115035760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610a5e565b61150c816132b0565b50565b600061151a60085490565b821061158e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a5e565b600882815481106115a1576115a1614ff7565b90600052602060002001549050919050565b600a546001600160a01b03163314806115d057506115d03361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d626572000000000000000000000000000000008152506040516020016116169190615026565b604051602081830303815290604052906116435760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a5461150c90600160a81b900460ff1682613383565b6003600781600a54600160a81b900460ff16600781111561167e5761167e614ee6565b14806116b7575080600781111561169757611697614ee6565b600a54600160a81b900460ff1660078111156116b5576116b5614ee6565b145b6040518060400160405280600d81526020017f496e76616c6964207374617465000000000000000000000000000000000000008152509061170b5760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a546001600160a01b031633148061172957506117293361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d6265720000000000000000000000000000000081525060405160200161176f9190615026565b6040516020818303038152906040529061179c5760405162461bcd60e51b8152600401610a5e9190614bfa565b506117b460295460016117af9190614aa6565b613603565b5050565b6000818152600260205260408120546001600160a01b0316806109a85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a5e565b600f5460ff16156118965760405162461bcd60e51b815260206004820152601060248201527f456d657267656e63792063616c6c6564000000000000000000000000000000006044820152606401610a5e565b600480600a54600160a81b900460ff1660078111156118b7576118b7614ee6565b10156040518060400160405280600d81526020017f496e76616c6964207374617465000000000000000000000000000000000000008152509061190d5760405162461bcd60e51b8152600401610a5e9190614bfa565b5060008061191a33613921565b915091508161196b5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964206164647265737300000000000000000000000000000000006044820152606401610a5e565b6000611978600383615067565b905060006010836004811061198f5761198f614ff7565b602081049091015460ff601f9092166101000a900416611a1b576001601084600481106119be576119be614ff7565b602091828204019190066101000a81548160ff0219169083151502179055506103e860116000846119ef9190614aa6565b600c81106119ff576119ff614ff7565b0154602754611a0e9190615067565b611a189190615086565b90505b60006011611a2a600285614aa6565b600c8110611a3a57611a3a614ff7565b01546028541115611ad25760006011611a54600286614aa6565b600c8110611a6457611a64614ff7565b0154602854611a7391906150c1565b6028549091506011611a86600287614aa6565b600c8110611a9657611a96614ff7565b01556103e86011611aa8600187614aa6565b600c8110611ab857611ab8614ff7565b0154611ac49083615067565b611ace9190615086565b9150505b6000611ade8284614aa6565b905060008111611b305760405162461bcd60e51b815260206004820152600e60248201527f4e6f7468696e6720746f207061790000000000000000000000000000000000006044820152606401610a5e565b604051600090339083908381818185875af1925050503d8060008114611b72576040519150601f19603f3d011682016040523d82523d6000602084013e611b77565b606091505b50509050806040518060400160405280600981526020017f5458206661696c65640000000000000000000000000000000000000000000000815250906111de5760405162461bcd60e51b8152600401610a5e9190614bfa565b60006001600160a01b038216611c4e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a5e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611cc45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a5e565b611cce6000613981565b565b600a546001600160a01b03163314611d2a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a5e565b602391909155602455565b600a546001600160a01b0316331480611d525750611d523361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d62657200000000000000000000000000000000815250604051602001611d989190615026565b60405160208183030381529060405290611dc55760405162461bcd60e51b8152600401610a5e9190614bfa565b50600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600b546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611e3e576040519150601f19603f3d011682016040523d82523d6000602084013e611e43565b606091505b50509050806040518060400160405280600981526020017f5458206661696c65640000000000000000000000000000000000000000000000815250906117b45760405162461bcd60e51b8152600401610a5e9190614bfa565b336001600160a01b037f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79521614611f145760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610a5e565b6117b482826139eb565b606060018054610c7a90614f88565b8066470de4df8200003480611f428385615067565b14611f8f5760405162461bcd60e51b815260206004820152601060248201527f57726f6e672076616c75652073656e74000000000000000000000000000000006044820152606401610a5e565b6002600381600a54600160a81b900460ff166007811115611fb257611fb2614ee6565b1480611feb5750806007811115611fcb57611fcb614ee6565b600a54600160a81b900460ff166007811115611fe957611fe9614ee6565b145b6040518060400160405280600d81526020017f496e76616c6964207374617465000000000000000000000000000000000000008152509061203f5760405162461bcd60e51b8152600401610a5e9190614bfa565b506024548888612087828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250879250610aaf9150612bce9050565b6120d35760405162461bcd60e51b815260206004820152600d60248201527f496e76616c69642070726f6f66000000000000000000000000000000000000006044820152606401610a5e565b886007600182101580156120e75750808211155b80156121085750613cc2826120fb60085490565b6121059190614aa6565b11155b6040518060600160405280602b8152602001615311602b91399061213f5760405162461bcd60e51b8152600401610a5e9190614bfa565b503360009081526025602052604090205460ff16156121a05760405162461bcd60e51b815260206004820152601860248201527f4f6e6c79206f6e65207072656d696e7420616c6c6f77656400000000000000006044820152606401610a5e565b33600090815260256020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556121e18b612c81565b50505050505050505050505050565b602b546001600160a01b0316336001600160a01b0316146122535760405162461bcd60e51b815260206004820152601560248201527f4f6e6c792054616e6772616d20636f6e747261637400000000000000000000006044820152606401610a5e565b600a54611cce90600160a81b900460ff166006613383565b80666a94d74f43000034806122808385615067565b146122cd5760405162461bcd60e51b815260206004820152601060248201527f57726f6e672076616c75652073656e74000000000000000000000000000000006044820152606401610a5e565b600380600a54600160a81b900460ff1660078111156122ee576122ee614ee6565b146040518060400160405280600d81526020017f496e76616c696420737461746500000000000000000000000000000000000000815250906123435760405162461bcd60e51b8152600401610a5e9190614bfa565b5084600e600182101580156123585750808211155b80156123795750613cc28261236c60085490565b6123769190614aa6565b11155b6040518060600160405280602b8152602001615311602b9139906123b05760405162461bcd60e51b8152600401610a5e9190614bfa565b506123ba87612c81565b50505050505050565b6001600160a01b03821633141561241c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a5e565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6124b03383612e52565b6125225760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a5e565b61252e84848484613bb5565b50505050565b6000818152600260205260409020546060906001600160a01b031661259b5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610a5e565b6004600a54600160a81b900460ff1660078111156125bb576125bb614ee6565b11612636576040518060600160405280602581526020016152ec602591396040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016126209291906150d8565b6040516020818303038152906040529050919050565b602a546040517f56e3df97000000000000000000000000000000000000000000000000000000008152600481018490526000916001600160a01b0316906356e3df9790602401602060405180830381865afa158015612699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126bd9190615130565b90506029548111156040518060400160405280601281526020017f496e76616c69642067656e65726174696f6e0000000000000000000000000000815250906127195760405162461bcd60e51b8152600401610a5e9190614bfa565b50602a54600082815260216020526040908190205490517f26bf8441000000000000000000000000000000000000000000000000000000008152600481018690526024810184905260448101919091526001600160a01b03909116906326bf844190606401600060405180830381865afa15801561279b573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526127e19190810190615149565b9392505050565b600081600260068183101580156127ff5750808311155b6040518060400160405280601281526020017f496e76616c69642067656e65726174696f6e0000000000000000000000000000815250906128535760405162461bcd60e51b8152600401610a5e9190614bfa565b508460061415612867576101349350611412565b846005141561287a576103109350611412565b846004141561288d576107389350611412565b84600314156128a057610fa49350611412565b50611c9d949350505050565b600081600160078183101580156128c35750808311155b6040518060400160405280601281526020017f496e76616c69642067656e65726174696f6e0000000000000000000000000000815250906129175760405162461bcd60e51b8152600401610a5e9190614bfa565b506001805b6007811161295b578087141561293457509350611412565b61293d8161132f565b6129479083614aa6565b91508061295381614fdc565b91505061291c565b5060009695505050505050565b60606040518060600160405280602581526020016152ec60259139604080518082018252600c81527f636f6e74726163745f74616e000000000000000000000000000000000000000060208083019190915282518084018452600581527f2e6a736f6e0000000000000000000000000000000000000000000000000000008183015292516129f8949391016151c0565b604051602081830303815290604052905090565b600a546001600160a01b03163314612a665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a5e565b6001600160a01b038116612ae25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a5e565b61150c81613981565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612b7e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109a857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146109a8565b3390565b600081815b8551811015612c76576000868281518110612bf457612bf4614ff7565b60200260200101519050808311612c36576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612c63565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612c6e81614fdc565b915050612bd7565b509092149392505050565b6002600381600a54600160a81b900460ff166007811115612ca457612ca4614ee6565b1480612cdd5750806007811115612cbd57612cbd614ee6565b600a54600160a81b900460ff166007811115612cdb57612cdb614ee6565b145b6040518060400160405280600d81526020017f496e76616c69642073746174650000000000000000000000000000000000000081525090612d315760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a5474010000000000000000000000000000000000000000900460ff1615612d9d5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610a5e565b60005b8381101561252e57612dba336008546111c7906001614aa6565b80612dc481614fdc565b915050612da0565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190612e19826117b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612edc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a5e565b6000612ee7836117b8565b9050806001600160a01b0316846001600160a01b03161480612f225750836001600160a01b0316612f1784610cfd565b6001600160a01b0316145b80612f5257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612f6d826117b8565b6001600160a01b031614612fe95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a5e565b6001600160a01b0382166130645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a5e565b61306f838383613c3e565b61307a600082612dcc565b6001600160a01b03831660009081526003602052604081208054600192906130a39084906150c1565b90915550506001600160a01b03821660009081526003602052604081208054600192906130d1908490614aa6565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166131a05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a5e565b6000818152600260205260409020546001600160a01b0316156132055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a5e565b61321160008383613c3e565b6001600160a01b038216600090815260036020526040812080546001929061323a908490614aa6565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006132bb826117b8565b90506132c981600084613c3e565b6132d4600083612dcc565b6001600160a01b03811660009081526003602052604081208054600192906132fd9084906150c1565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008061337b83613921565b509392505050565b80600781111561339557613395614ee6565b8260078111156133a7576133a7614ee6565b141580156133fb57508160078111156133c2576133c2614ee6565b15806133fb57508160078111156133db576133db614ee6565b600a54600160a81b900460ff1660078111156133f9576133f9614ee6565b145b6040518060400160405280601481526020017f496e76616c6964207374617465206368616e67650000000000000000000000008152509061344f5760405162461bcd60e51b8152600401610a5e9190614bfa565b50600081600781111561346457613464614ee6565b6002141561347c57506001613477613cf6565b613510565b81600781111561348e5761348e614ee6565b600314156134a157506001613477613dfe565b8160078111156134b3576134b3614ee6565b600414156134c657506001613477613e06565b8160078111156134d8576134d8614ee6565b600614156134eb57506001613477613f18565b8160078111156134fd576134fd614ee6565b6007141561351057506001613510614030565b60408051808201909152601481527f496e76616c6964207374617465206368616e67650000000000000000000000006020820152816135625760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a80548391907fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16600160a81b8360078111156135a3576135a3614ee6565b02179055507fe8a97ea87e4388fa22d496b95a8ed5ced6717f49790318de2b928aaf37a021d883836040516135d9929190615203565b60405180910390a18160078111156135f3576135f3614ee6565b60041415610ed057610ed0614242565b42601f54601e546136149190614aa6565b106136615760405162461bcd60e51b815260206004820152600d60248201527f4e6f742074696d6564206f7574000000000000000000000000000000000000006044820152606401610a5e565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f0000000000000000000000000000000000000000000000001bc16d674ec80000907f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a0823190602401602060405180830381865afa158015613700573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137249190615130565b10156137725760405162461bcd60e51b815260206004820152600f60248201527f4e6f7420656e6f756768204c494e4b00000000000000000000000000000000006044820152606401610a5e565b600081815260216020526040902054158061379c5750600081815260216020526040902054600019145b61380e5760405162461bcd60e51b815260206004820152602260248201527f5365656420616c726561647920726571756573746564206f722072656365697660448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610a5e565b60018111156138ac57600019602160006138296001856150c1565b81526020019081526020016000205414156138ac5760405162461bcd60e51b815260206004820152602560248201527f50726576696f75732067656e65726174696f6e2073656564206e6f742072656360448201527f65697665640000000000000000000000000000000000000000000000000000006064820152608401610a5e565b42601e5560006138fc7faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4457f0000000000000000000000000000000000000000000000001bc16d674ec800006143b9565b6000908152602080805260408083208590559382526021905291909120600019905550565b60008060005b600481101561397557600b816004811061394357613943614ff7565b01546001600160a01b038581169116141561396357600194909350915050565b8061396d81614fdc565b915050613927565b50600093849350915050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082815260208052604090205460018110801590613a0b575060078111155b613a575760405162461bcd60e51b815260206004820152601260248201527f496e76616c69642067656e65726174696f6e00000000000000000000000000006044820152606401610a5e565b6001811115613af55760001960216000613a726001856150c1565b8152602001908152602001600020541415613af55760405162461bcd60e51b815260206004820152602560248201527f50726576696f75732067656e65726174696f6e2073656564206e6f742072656360448201527f65697665640000000000000000000000000000000000000000000000000000006064820152608401610a5e565b60008181526021602052604090205460001914613b7a5760405162461bcd60e51b815260206004820152602f60248201527f52616e646f6d206e756d626572206e6f7420726571756573746564206f72206160448201527f6c726561647920726563656976656400000000000000000000000000000000006064820152608401610a5e565b6000818152602160205260409020829055613b9482614535565b805160209182012060008381526022909252604090912055610ed08161455f565b613bc0848484612f5a565b613bcc8484848461472b565b61252e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a5e565b6001600160a01b038316613c9957613c9481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613cbc565b816001600160a01b0316836001600160a01b031614613cbc57613cbc83826148e7565b6001600160a01b038216613cd357610ed081614984565b826001600160a01b0316826001600160a01b031614610ed057610ed08282614a33565b6001805b600a54600160a81b900460ff166007811115613d1857613d18614ee6565b146040518060400160405280600d81526020017f496e76616c69642073746174650000000000000000000000000000000000000081525090613d6d5760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a546001600160a01b0316331480613d8b5750613d8b3361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d62657200000000000000000000000000000000815250604051602001613dd19190615026565b604051602081830303815290604052906117b45760405162461bcd60e51b8152600401610a5e9190614bfa565b600280613cfa565b600380600a54600160a81b900460ff166007811115613e2757613e27614ee6565b146040518060400160405280600d81526020017f496e76616c69642073746174650000000000000000000000000000000000000081525090613e7c5760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a546001600160a01b0316331480613e9a5750613e9a3361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d62657200000000000000000000000000000000815250604051602001613ee09190615026565b60405160208183030381529060405290613f0d5760405162461bcd60e51b8152600401610a5e9190614bfa565b5061150c6001613603565b600580600a54600160a81b900460ff166007811115613f3957613f39614ee6565b146040518060400160405280600d81526020017f496e76616c69642073746174650000000000000000000000000000000000000081525090613f8e5760405162461bcd60e51b8152600401610a5e9190614bfa565b50602b546001600160a01b0316336001600160a01b031614613ff25760405162461bcd60e51b815260206004820152601560248201527f4f6e6c792054616e6772616d20636f6e747261637400000000000000000000006044820152606401610a5e565b7fb6ebf2d56add8cbb26c79a87c5e893e4b2436ee6b76d81aec1b6b8c52a04c91960295460405161402591815260200190565b60405180910390a150565b602954600160078183101580156140475750808311155b6040518060400160405280601281526020017f496e76616c69642067656e65726174696f6e00000000000000000000000000008152509061409b5760405162461bcd60e51b8152600401610a5e9190614bfa565b506005600681600a54600160a81b900460ff1660078111156140bf576140bf614ee6565b14806140f857508060078111156140d8576140d8614ee6565b600a54600160a81b900460ff1660078111156140f6576140f6614ee6565b145b6040518060400160405280600d81526020017f496e76616c6964207374617465000000000000000000000000000000000000008152509061414c5760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a546001600160a01b031633148061416a575061416a3361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d626572000000000000000000000000000000008152506040516020016141b09190615026565b604051602081830303815290604052906141dd5760405162461bcd60e51b8152600401610a5e9190614bfa565b5060076029541015614200576000601e55602954614200906117af906001614aa6565b7f111c12d7fd6242821636e78c02b7ca204d0c8322b040e4f65bcaaf39a063a6fd60295460405161423391815260200190565b60405180910390a15050505050565b600480600a54600160a81b900460ff16600781111561426357614263614ee6565b146040518060400160405280600d81526020017f496e76616c696420737461746500000000000000000000000000000000000000815250906142b85760405162461bcd60e51b8152600401610a5e9190614bfa565b50600a546001600160a01b03163314806142d657506142d63361336f565b6040518060400160405280601081526020017f4f6e6c79207465616d206d656d6265720000000000000000000000000000000081525060405160200161431c9190615026565b604051602081830303815290604052906143495760405162461bcd60e51b8152600401610a5e9190614bfa565b50600854600160005260266020527f5db1dfd2ced311e642486f0e890a646498a1bdee1ad9403b0a73141af8a4c4115560285461438690476150c1565b602755600f5460ff161580156143a057506143a03361336f565b80156143ac5750600047115b1561150c5761150c611843565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795284866000604051602001614429929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016144569392919061521e565b6020604051808303816000875af1158015614475573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144999190615246565b506000838152601d6020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a0909101909252815191830191909120938790529190526144f5906001614aa6565b6000858152601d6020526040902055612f528482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b60408051602080825281830190925260609160208201818036833750505060208101929092525090565b6004600781600a54600160a81b900460ff16600781111561458257614582614ee6565b14806145bb575080600781111561459b5761459b614ee6565b600a54600160a81b900460ff1660078111156145b9576145b9614ee6565b145b6040518060400160405280600d81526020017f496e76616c6964207374617465000000000000000000000000000000000000008152509061460f5760405162461bcd60e51b8152600401610a5e9190614bfa565b50337f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79526001600160a01b0316146146885760405162461bcd60e51b815260206004820152601460248201527f4f6e6c792056524620436f6f7264696e61746f720000000000000000000000006044820152606401610a5e565b602954614696906001614aa6565b83146146e45760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420736565642067656e65726174696f6e0000000000000000006044820152606401610a5e565b5050602955600a80547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff167505000000000000000000000000000000000000000000179055565b60006001600160a01b0384163b156148dc576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290614788903390899088908890600401615263565b6020604051808303816000875af19250505080156147e1575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526147de9181019061529f565b60015b614891573d80801561480f576040519150601f19603f3d011682016040523d82523d6000602084013e614814565b606091505b5080516148895760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a5e565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612f52565b506001949350505050565b600060016148f484611bd0565b6148fe91906150c1565b600083815260076020526040902054909150808214614951576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090614996906001906150c1565b600083815260096020526040812054600880549394509092849081106149be576149be614ff7565b9060005260206000200154905080600883815481106149df576149df614ff7565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480614a1757614a176152bc565b6001900381819060005260206000200160009055905550505050565b6000614a3e83611bd0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115614ab957614ab9614a77565b500190565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461150c57600080fd5b600060208284031215614afe57600080fd5b81356127e181614abe565b600080600060408486031215614b1e57600080fd5b833567ffffffffffffffff80821115614b3657600080fd5b818601915086601f830112614b4a57600080fd5b813581811115614b5957600080fd5b8760208260051b8501011115614b6e57600080fd5b6020928301989097509590910135949350505050565b60005b83811015614b9f578181015183820152602001614b87565b8381111561252e5750506000910152565b60008151808452614bc8816020860160208601614b84565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006127e16020830184614bb0565b600060208284031215614c1f57600080fd5b5035919050565b80356001600160a01b0381168114614c3d57600080fd5b919050565b60008060408385031215614c5557600080fd5b614c5e83614c26565b946020939093013593505050565b600080600060608486031215614c8157600080fd5b614c8a84614c26565b9250614c9860208501614c26565b9150604084013590509250925092565b60008060408385031215614cbb57600080fd5b82359150614ccb60208401614c26565b90509250929050565b600060208284031215614ce657600080fd5b6127e182614c26565b600060208284031215614d0157600080fd5b8135600881106127e157600080fd5b60008060408385031215614d2357600080fd5b50508035926020909101359150565b801515811461150c57600080fd5b60008060408385031215614d5357600080fd5b614d5c83614c26565b91506020830135614d6c81614d32565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715614ded57614ded614d77565b604052919050565b600067ffffffffffffffff821115614e0f57614e0f614d77565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b60008060008060808587031215614e5157600080fd5b614e5a85614c26565b9350614e6860208601614c26565b925060408501359150606085013567ffffffffffffffff811115614e8b57600080fd5b8501601f81018713614e9c57600080fd5b8035614eaf614eaa82614df5565b614da6565b818152886020838501011115614ec457600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60088110614f4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b9052565b602081016109a88284614f15565b60008060408385031215614f7157600080fd5b614f7a83614c26565b9150614ccb60208401614c26565b600181811c90821680614f9c57607f821691505b60208210811415614fd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000600019821415614ff057614ff0614a77565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008251615038818460208701614b84565b7f206f72206f776e65720000000000000000000000000000000000000000000000920191825250600901919050565b600081600019048311821515161561508157615081614a77565b500290565b6000826150bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000828210156150d3576150d3614a77565b500390565b600083516150ea818460208801614b84565b7f706c616365686f6c646572000000000000000000000000000000000000000000908301908152835161512481600b840160208801614b84565b01600b01949350505050565b60006020828403121561514257600080fd5b5051919050565b60006020828403121561515b57600080fd5b815167ffffffffffffffff81111561517257600080fd5b8201601f8101841361518357600080fd5b8051615191614eaa82614df5565b8181528560208385010111156151a657600080fd5b6151b7826020830160208601614b84565b95945050505050565b600084516151d2818460208901614b84565b8451908301906151e6818360208901614b84565b84519101906151f9818360208801614b84565b0195945050505050565b604081016152118285614f15565b6127e16020830184614f15565b6001600160a01b03841681528260208201526060604082015260006151b76060830184614bb0565b60006020828403121561525857600080fd5b81516127e181614d32565b60006001600160a01b038087168352808616602084015250836040830152608060608301526152956080830184614bb0565b9695505050505050565b6000602082840312156152b157600080fd5b81516127e181614abe565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe68747470733a2f2f746163746963616c74616e6772616d732e696f2f6d657461646174612f496e76616c6964206e756d626572206f662074616e73206f72206e6f206d6f72652074616e73206c656674a2646970667358221220382f58ba04a168adb2c4efd295535f040db06f77d0837f57eb86ad140b1b8b4364736f6c634300080b0033

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

000000000000000000000000e0ba13bc43000d3073b680e65b44b357d2c8cdd7000000000000000000000000ece39a881dfa37b7fbcce8f764981790553ec0f80000000000000000000000009ccd31cae8b047ddefa522c347886d51faccee6900000000000000000000000057e2a4ec7250d768220e8fa1110b210de917d0e9000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000001bc16d674ec800000000000000000000000000006735053c615bde13203d97e9c65b76a0df0f7b660000000000000000000000000000000000000000000000000000000000000018546163746963616c2054616e6772616d73202d2054616e73000000000000000000000000000000000000000000000000000000000000000000000000000000055454414e47000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _teamAddresses (address[4]): 0xE0bA13BC43000d3073B680E65b44b357d2c8cdD7,0xecE39A881dfA37b7FBCce8F764981790553EC0F8,0x9ccd31CAE8B047DdEfA522C347886d51fACCEE69,0x57E2a4Ec7250d768220e8FA1110B210DE917d0e9
Arg [1] : _name (string): Tactical Tangrams - Tans
Arg [2] : _symbol (string): TTANG
Arg [3] : _openPremintAtDeployment (bool): True
Arg [4] : _vrfCoordinator (address): 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952
Arg [5] : _link (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA
Arg [6] : _keyHash (bytes32): 0xaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [7] : _fee (uint256): 2000000000000000000
Arg [8] : _tangramContract (address): 0x6735053C615bDE13203D97E9C65b76a0Df0f7b66

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 000000000000000000000000e0ba13bc43000d3073b680e65b44b357d2c8cdd7
Arg [1] : 000000000000000000000000ece39a881dfa37b7fbcce8f764981790553ec0f8
Arg [2] : 0000000000000000000000009ccd31cae8b047ddefa522c347886d51faccee69
Arg [3] : 00000000000000000000000057e2a4ec7250d768220e8fa1110b210de917d0e9
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952
Arg [8] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [9] : aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [10] : 0000000000000000000000000000000000000000000000001bc16d674ec80000
Arg [11] : 0000000000000000000000006735053c615bde13203d97e9c65b76a0df0f7b66
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [13] : 546163746963616c2054616e6772616d73202d2054616e730000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [15] : 5454414e47000000000000000000000000000000000000000000000000000000


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

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.