ETH Price: $2,962.15 (-1.93%)
Gas: 2 Gwei

Token

Maximals (MAXIM)
 

Overview

Max Total Supply

10,000 MAXIM

Holders

2,522

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MAXIM
0xaf03c452b823559da43416a7a04b9721e3126832
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Maximals is a PFP collection of Pixel Art Apes. The collection consists of 10,000 unique Maximals, each crafted to capture the essence of these magnificent creatures.

# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Maximals

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : TheMaximals.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol"; 
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

/**
*    Max Supply - 10000
*    Stage 1 - WL and Public for 2 hours (manually controlled)
*    
*    Whitelist
*    Supply: 6500
*    1 free then paid 0.0069, max 3 per transaction/wallet, 
*
*    Public: 3500
*    Paid at 0.0075, max 4 per transaction/wallet
*
*    Stage 2 - Open Stage
*    Public - All remaining supply
*    Paid at 0.0075, max 4 per transaction/wallet
*/

contract Maximals is ERC721A, Ownable, Pausable, ReentrancyGuard {

    uint256 public maxSupply = 10000;

    //minter roles configuration
    struct MintersInfo {
        uint8 maxMintPerTransaction; //max mint per wallet and per transaction
        uint8 numberOfFreemint;
        uint256 supply; //max allocated supply per minter role
        uint256 mintCost;
        bytes32 root; //Merkle root
    }

    mapping(string => MintersInfo) minters; //map of minter types
    mapping(string => uint256) public mintedCount; //map of total mints per type


    enum Phases { N, Phase1, Public } //mint phases, N = mint not live

    Phases public currentPhase;

    mapping(address => uint256) minted; //map of addresses that minted
    mapping(string => mapping(address => uint8)) public mintedPerRole;  //map of addresses that minted per phase and their mint counts
    mapping(address => uint8) public mintedFree; //map of addresses that minted free and their mint counts

    address[] public mintersAddresses; //addresses of minters    
    
    string private baseURI;
    string[] private prerevealedArtworks;
    bool isRevealed;

    //events
    event Minted(address indexed to, uint8 numberOfTokens, uint256 amount);
    event SoldOut();
   
    event PhaseChanged(address indexed to, uint256 indexed eventId, uint8 indexed phaseId);
    event WithdrawalSuccessful(address indexed to, uint256 amount);
    event CollectionRevealed(address indexed to);
    

    //errors
    error WithdrawalFailed();

    constructor() ERC721A("Maximals", "MAXIM") {
        _pause();
        currentPhase = Phases.N;

        //added an invalid root here to avoid zero comparison later
        addMintersInfo(
            "WL", //minter role name
            3, //max per wallet/per transaction
            1, //number of free mint
            6500, //allocated supply
            0.0069 ether, //mint cost
            0x8ac3d4f184349fb28ebb642349f97130ce71b7bc967acb07c881b5ec27ad725c //root dummy
        );

        addMintersInfo(
            "PUBLIC", //minter role name
            4, //max per wallet/per transaction
            0, //number of free mint
            3500, //allocated supply
            0.0075 ether, //mint cost
            0x8ac3d4f184349fb28ebb642349f97130ce71b7bc967acb07c881b5ec27ad725c //root dummy
        );

    }

    /*
    * ******** ******** ******** ******** ******** ******** ********
    * Public Mint functions
    * ******** ******** ******** ******** ******** ******** ********
    */
    
    function whitelistMint(uint8 numberOfTokens, bytes32[] calldata proof) external payable nonReentrant whenNotPaused {

        require(currentPhase == Phases.Phase1, "ERROR: Mint is not active.");
        string memory _minterRole = "WL"; //set minter role
       
        uint256 _totalCost;

        //verify whitelist
        require(_isWhitelisted(msg.sender, proof, minters[_minterRole].root), "ERROR: You are not allowed to mint on this phase.");

        require(mintedCount[_minterRole] + numberOfTokens <= minters[_minterRole].supply, "ERROR: Maximum number of mints on this phase has been reached");
        require(numberOfTokens <= minters[_minterRole].maxMintPerTransaction, "ERROR: Maximum number of mints per transaction exceeded");
        require((mintedPerRole[_minterRole][msg.sender] + numberOfTokens) <= minters[_minterRole].maxMintPerTransaction, "ERROR: Your maximum NFT mint per wallet on this phase has been reached.");

        //Free mint check
        if ((mintedFree[msg.sender] > 0)) {

            _totalCost = minters[_minterRole].mintCost * numberOfTokens;
            require(msg.value >= _totalCost, "ERROR: You do not have enough funds to mint.");

        } else {

            //Block for free mint
            if (numberOfTokens == 1) {
                
                require(mintedFree[msg.sender] == 0, "ERROR: You do not have enough funds to mint.");

            } else if (numberOfTokens > 1) {

                _totalCost = minters[_minterRole].mintCost * (numberOfTokens - minters[_minterRole].numberOfFreemint);
                require(msg.value >= _totalCost, "ERROR: You do not have enough funds to mint.");
            
            }
            
            mintedFree[msg.sender] = 1; // Register free mint
        }
        
        _phaseMint(_minterRole, numberOfTokens, _totalCost);
    }

    function publicMint(uint8 numberOfTokens) external payable nonReentrant whenNotPaused {
        
        require(currentPhase != Phases.N, "ERROR: Mint is not active.");
        string memory _minterRole = "PUBLIC";

        require(numberOfTokens <= minters[_minterRole].maxMintPerTransaction, "ERROR: Maximum number of mints per transaction exceeded");
        require((mintedPerRole[_minterRole][msg.sender] + numberOfTokens) <= minters[_minterRole].maxMintPerTransaction, "ERROR: Your maximum NFT mint per wallet on this phase has been reached.");

        if (currentPhase == Phases.Phase1) {
            //on this phase make sure that the allocated supply count per minter role will not be exceeded
            require(mintedCount[_minterRole] + numberOfTokens <= minters[_minterRole].supply, "ERROR: Maximum number of mints on this phase has been reached");
        }

        uint256 _totalCost;
        _totalCost = minters[_minterRole].mintCost * numberOfTokens;
        require(msg.value >= _totalCost, "ERROR: You do not have enough funds to mint.");
        
        _phaseMint(_minterRole, numberOfTokens, _totalCost);          
    }

    function verifyWhitelist(string memory _minterType, address _address, bytes32[] calldata _merkleProof) public view returns (bool) {
        require(minters[_minterType].root != bytes32(0), "ERROR: Minter Type not found.");
        if (_isWhitelisted(_address, _merkleProof, minters[_minterType].root))
            return true;
        return false;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (isRevealed) {
            _tokenId += 1;
            return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
        }

        uint _ipfsIndex = _tokenId % prerevealedArtworks.length; //distribute pre-reveal images, alternating

        return prerevealedArtworks[_ipfsIndex];
    }

     /*
    * ******** ******** ******** ******** ******** ******** ********
    * Public - onlyOwner functions
    * ******** ******** ******** ******** ******** ******** ********
    */

    function setMintPhase(uint8 _phase) public onlyOwner {
        currentPhase = Phases(_phase);
        emit PhaseChanged(msg.sender, block.timestamp, uint8(currentPhase));
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    //Function to add MintersInfo to minters
    function addMintersInfo(
        string memory _minterName,
        uint8 _maxMintPerTransaction,
        uint8 _numberOfFreeMint,
        uint256 _supply,
        uint256 _mintCost,
        bytes32 _root
    ) public onlyOwner {
        MintersInfo memory newMintersInfo = MintersInfo(
            _maxMintPerTransaction,
            _numberOfFreeMint,
            _supply,
            _mintCost,
            _root
        );
        minters[_minterName] = newMintersInfo;
    }

    //Function to modify MintersInfo of a minterRole
    function modifyMintersInfo(
        string memory _minterName,
        uint8 _newMaxMintPerTransaction,
        uint8 _newNumberOfFreeMint,
        uint256 _newSupply,
        uint256 _newMintCost,
        bytes32 _newRoot
    ) public onlyOwner {
        require(minters[_minterName].root != bytes32(0), "MintersInfo not found.");
        MintersInfo memory updatedMintersInfo = MintersInfo(
            _newMaxMintPerTransaction,
            _newNumberOfFreeMint,
            _newSupply,
            _newMintCost,
            _newRoot
        );

        minters[_minterName] = updatedMintersInfo;
    }

    function modifyMintersMintCost(
        string memory _minterName,
        uint256 _newMintCost
    ) public onlyOwner {
        require(minters[_minterName].root != bytes32(0), "MintersInfo not found.");
        minters[_minterName].mintCost = _newMintCost;
    }

    function modifyMintersSupply(
        string memory _minterName,
        uint256 _newSupplyCount
    ) public onlyOwner {
        require(minters[_minterName].root != bytes32(0), "MintersInfo not found.");
        minters[_minterName].supply = _newSupplyCount;
    }

    function modifyFreeMintCount(
        string memory _minterName,
        uint8 _newFreeMintCount
    ) public onlyOwner {
        require(minters[_minterName].root != bytes32(0), "MintersInfo not found.");
        minters[_minterName].numberOfFreemint = _newFreeMintCount;
    }

    function modifyMintersMaxMintPerTransaction(
        string memory _minterName,
        uint8 _newMaxMintPerTransaction
    ) public onlyOwner {
        require(minters[_minterName].root != bytes32(0), "MintersInfo not found.");
        minters[_minterName].maxMintPerTransaction = _newMaxMintPerTransaction;
    }

    //Function to get the MintersInfo for a specific minter
    function getMintInfo(string memory _minterName, address _userAddress) public view returns (uint8, uint8, uint256, uint256, uint256, uint8) {

        uint8 _mintedPerRole = mintedPerRole[_minterName][_userAddress];
        return (
           
            uint8(currentPhase),
            minters[_minterName].maxMintPerTransaction,
            minters[_minterName].mintCost, 
            minters[_minterName].supply, 
            mintedCount[_minterName],
            _mintedPerRole
        );
    }

    function getSupplyInfo() public view returns (uint256, uint256, uint8) {
        return (maxSupply, totalSupply(), uint8(currentPhase));
    }

    //Function to modify the root of an existing MintersInfo
    function modifyMintersRoot(string memory _minterName, bytes32 _newRoot) public onlyOwner {
        require(minters[_minterName].root != bytes32(0), "ERROR: MintersInfo not found."); //change
        minters[_minterName].root = _newRoot;
    }

    function modifyPrerevealImages(string[] memory _urlArray) public onlyOwner {
        prerevealedArtworks = _urlArray;
    }

    function revealCollection (string memory _baseURI, bool _isRevealed) public onlyOwner {
        isRevealed = _isRevealed;
        baseURI = _baseURI;

        if (isRevealed)
            emit CollectionRevealed(msg.sender);
    }

    function unPause() public onlyOwner {
        _unpause();
    }

    function pause() public onlyOwner whenNotPaused {
        _pause();
    }

    function internalMint(uint8 numberOfTokens) public onlyOwner {
        require((_totalMinted() + numberOfTokens) <= maxSupply, "ERROR: Not enough tokens");
        _safeMint(msg.sender, numberOfTokens);
        emit Minted(msg.sender, numberOfTokens, 0);
    }

    function airdrop(uint8 numberOfTokens, address recipient) public onlyOwner whenNotPaused {
        require((_totalMinted() + numberOfTokens) <= maxSupply, "ERROR: Not enough tokens left");
        _safeMint(recipient, numberOfTokens);
    }

    function withdraw() public onlyOwner {

        require(address(this).balance > 0, "ERROR: No balance to withdraw.");
        uint256 amount = address(this).balance;
        //sends fund to team wallet
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");

        if (!success) {
            revert WithdrawalFailed();
        } 

        emit WithdrawalSuccessful(msg.sender, amount);
    }

    /*
    * ******** ******** ******** ******** ******** ******** ********
    * Internal - functions
    * ******** ******** ******** ******** ******** ******** ********
    */  

    function _phaseMint(string memory _minterRole, uint8 _numberOfTokens, uint256 _totalCost) internal {
        
        require((_totalMinted() + _numberOfTokens) <= maxSupply, "ERROR: No tokens left to mint");
        require(_numberOfTokens > 0, "ERROR: Number of tokens should be greater than zero");

        _safeMint(msg.sender, _numberOfTokens);

        //after mint registry
        mintedCount[_minterRole] += _numberOfTokens; //adds the newly minted token count per minter Role
        //mintedPerPhase[uint8(currentPhase)][msg.sender] += _numberOfTokens; //registers the address and the number of tokens of the minter
        mintedPerRole[_minterRole][msg.sender] += _numberOfTokens; //registers the address and the number of tokens of the minter per role
        mintersAddresses.push(msg.sender); //registers minters address, for future purposes

        emit Minted(msg.sender, _numberOfTokens, _totalCost);
        
        //if total minted reach or exceeds max supply - pause contract
        if (_totalMinted() >= maxSupply) {
            emit SoldOut();
           // _pause();
        }    
    } 

    //for whitelist check
    function _isWhitelisted  (
        address _minterLeaf,
        bytes32[] calldata _merkleProof, 
        bytes32 _minterRoot
    ) public pure returns (bool) {
        bytes32 _leaf = keccak256(abi.encodePacked(_minterLeaf));
        return MerkleProof.verify(_merkleProof, _minterRoot, _leaf);
    }

    
}


/*
* ***** ***** ***** ***** 
*/

File 2 of 11 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 3 of 11 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 4 of 11 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

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 Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        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 5 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 6 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 7 of 11 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 8 of 11 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

    /**
     * @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 payable;

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @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);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 9 of 11 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 10 of 11 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WithdrawalFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"CollectionRevealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint8","name":"numberOfTokens","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"eventId","type":"uint256"},{"indexed":true,"internalType":"uint8","name":"phaseId","type":"uint8"}],"name":"PhaseChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"SoldOut","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawalSuccessful","type":"event"},{"inputs":[{"internalType":"address","name":"_minterLeaf","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"bytes32","name":"_minterRoot","type":"bytes32"}],"name":"_isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"uint8","name":"_maxMintPerTransaction","type":"uint8"},{"internalType":"uint8","name":"_numberOfFreeMint","type":"uint8"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"_mintCost","type":"uint256"},{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"addMintersInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"},{"internalType":"address","name":"recipient","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"enum Maximals.Phases","name":"","type":"uint8"}],"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":"string","name":"_minterName","type":"string"},{"internalType":"address","name":"_userAddress","type":"address"}],"name":"getMintInfo","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupplyInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedFree","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"address","name":"","type":"address"}],"name":"mintedPerRole","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintersAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"uint8","name":"_newFreeMintCount","type":"uint8"}],"name":"modifyFreeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"uint8","name":"_newMaxMintPerTransaction","type":"uint8"},{"internalType":"uint8","name":"_newNumberOfFreeMint","type":"uint8"},{"internalType":"uint256","name":"_newSupply","type":"uint256"},{"internalType":"uint256","name":"_newMintCost","type":"uint256"},{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"modifyMintersInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"uint8","name":"_newMaxMintPerTransaction","type":"uint8"}],"name":"modifyMintersMaxMintPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"uint256","name":"_newMintCost","type":"uint256"}],"name":"modifyMintersMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"modifyMintersRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"uint256","name":"_newSupplyCount","type":"uint256"}],"name":"modifyMintersSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"_urlArray","type":"string[]"}],"name":"modifyPrerevealImages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bool","name":"_isRevealed","type":"bool"}],"name":"revealCollection","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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"setMintPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_minterType","type":"string"},{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"verifyWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600a553480156200001757600080fd5b506040518060400160405280600881526020017f4d6178696d616c730000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4158494d0000000000000000000000000000000000000000000000000000008152508160029081620000959190620007f0565b508060039081620000a79190620007f0565b50620000b86200023960201b60201c565b6000819055505050620000e0620000d46200023e60201b60201c565b6200024660201b60201c565b6000600860146101000a81548160ff0219169083151502179055506001600981905550620001136200030c60201b60201c565b6000600d60006101000a81548160ff021916908360028111156200013c576200013b620008d7565b5b0217905550620001ba6040518060400160405280600281526020017f574c000000000000000000000000000000000000000000000000000000000000815250600360016119646618838370f340007f8ac3d4f184349fb28ebb642349f97130ce71b7bc967acb07c881b5ec27ad725c60001b6200038160201b60201c565b620002336040518060400160405280600681526020017f5055424c4943000000000000000000000000000000000000000000000000000081525060046000610dac661aa535d3d0c0007f8ac3d4f184349fb28ebb642349f97130ce71b7bc967acb07c881b5ec27ad725c60001b6200038160201b60201c565b62000ae4565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200031c6200044f60201b60201c565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620003686200023e60201b60201c565b6040516200037791906200094b565b60405180910390a1565b62000391620004a460201b60201c565b60006040518060a001604052808760ff1681526020018660ff16815260200185815260200184815260200183815250905080600b88604051620003d59190620009d6565b908152602001604051809103902060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015590505050505050505050565b6200045f6200053560201b60201c565b15620004a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004999062000a50565b60405180910390fd5b565b620004b46200023e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004da6200054c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000533576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200052a9062000ac2565b60405180910390fd5b565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005f857607f821691505b6020821081036200060e576200060d620005b0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000639565b62000684868362000639565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006d1620006cb620006c5846200069c565b620006a6565b6200069c565b9050919050565b6000819050919050565b620006ed83620006b0565b62000705620006fc82620006d8565b84845462000646565b825550505050565b600090565b6200071c6200070d565b62000729818484620006e2565b505050565b5b8181101562000751576200074560008262000712565b6001810190506200072f565b5050565b601f821115620007a0576200076a8162000614565b620007758462000629565b8101602085101562000785578190505b6200079d620007948562000629565b8301826200072e565b50505b505050565b600082821c905092915050565b6000620007c560001984600802620007a5565b1980831691505092915050565b6000620007e08383620007b2565b9150826002028217905092915050565b620007fb8262000576565b67ffffffffffffffff81111562000817576200081662000581565b5b620008238254620005df565b6200083082828562000755565b600060209050601f83116001811462000868576000841562000853578287015190505b6200085f8582620007d2565b865550620008cf565b601f198416620008788662000614565b60005b82811015620008a2578489015182556001820191506020850194506020810190506200087b565b86831015620008c25784890151620008be601f891682620007b2565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009338262000906565b9050919050565b620009458162000926565b82525050565b60006020820190506200096260008301846200093a565b92915050565b600081905092915050565b60005b838110156200099357808201518184015260208101905062000976565b60008484015250505050565b6000620009ac8262000576565b620009b8818562000968565b9350620009ca81856020860162000973565b80840191505092915050565b6000620009e482846200099f565b915081905092915050565b600082825260208201905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000a38601083620009ef565b915062000a458262000a00565b602082019050919050565b6000602082019050818103600083015262000a6b8162000a29565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000aaa602083620009ef565b915062000ab78262000a72565b602082019050919050565b6000602082019050818103600083015262000add8162000a9b565b9050919050565b615b6d8062000af46000396000f3fe60806040526004361061027c5760003560e01c80636107896e1161014f578063a22cb465116100c1578063d89a75741161007a578063d89a75741461096c578063e1c6780514610995578063e7d97937146109be578063e985e9c5146109e7578063f2fde38b14610a24578063f7b188a514610a4d5761027c565b8063a22cb4651461086d578063b3d6c53c14610896578063b88d4fde146108bf578063c87b56dd146108db578063cf7c0b4914610918578063d5abeb01146109415761027c565b8063792a873e11610113578063792a873e146107925780637e454447146107bb5780638456cb59146107e4578063858e83b5146107fb5780638da5cb5b1461081757806395d89b41146108425761027c565b80636107896e1461069b5780636352211e146106d85780636f8b44b01461071557806370a082311461073e578063715018a61461077b5761027c565b806320984801116101f35780633ccfd60b116101ac5780633ccfd60b146105cf578063411d1be5146105e657806342842e0e1461060f57806347d4f5781461062b57806358381669146106545780635c975abb146106705761027c565b806320984801146104b557806320edeaf3146104f257806323b872dd1461051f578063293227ab1461053b5780632b5619a41461056457806331c07bbf146105a65761027c565b8063095ea7b311610245578063095ea7b31461038e57806309945734146103aa5780630e6f5272146103e757806315587fc31461042457806318160ddd14610461578063189b83bd1461048c5761027c565b80623775801461028157806301ffc9a7146102be578063055ad42e146102fb57806306fdde0314610326578063081812fc14610351575b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a39190613d7b565b610a64565b6040516102b59190613e26565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613e99565b610b14565b6040516102f29190613e26565b60405180910390f35b34801561030757600080fd5b50610310610ba6565b60405161031d9190613f3d565b60405180910390f35b34801561033257600080fd5b5061033b610bb9565b6040516103489190613fd7565b60405180910390f35b34801561035d57600080fd5b506103786004803603810190610373919061402f565b610c4b565b604051610385919061406b565b60405180910390f35b6103a860048036038101906103a39190614086565b610cca565b005b3480156103b657600080fd5b506103d160048036038101906103cc91906140c6565b610e0e565b6040516103de919061411e565b60405180910390f35b3480156103f357600080fd5b5061040e6004803603810190610409919061416f565b610e3c565b60405161041b9190613e26565b60405180910390f35b34801561043057600080fd5b5061044b600480360381019061044691906141e3565b610ebf565b604051610458919061425b565b60405180910390f35b34801561046d57600080fd5b50610476610f04565b604051610483919061411e565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190614276565b610f1b565b005b3480156104c157600080fd5b506104dc60048036038101906104d791906142d2565b610fb3565b6040516104e9919061425b565b60405180910390f35b3480156104fe57600080fd5b50610507610fd3565b604051610516939291906142ff565b60405180910390f35b61053960048036038101906105349190614336565b611010565b005b34801561054757600080fd5b50610562600480360381019061055d9190614389565b611332565b005b34801561057057600080fd5b5061058b600480360381019061058691906141e3565b6113ca565b60405161059d969594939291906143e5565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190614472565b61150c565b005b3480156105db57600080fd5b506105e46115bf565b005b3480156105f257600080fd5b5061060d6004803603810190610608919061449f565b611704565b005b61062960048036038101906106249190614336565b6117b0565b005b34801561063757600080fd5b50610652600480360381019061064d91906144fb565b6117d0565b005b61066e600480360381019061066991906145a4565b611894565b005b34801561067c57600080fd5b50610685611e57565b6040516106929190613e26565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd919061402f565b611e6e565b6040516106cf919061406b565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061402f565b611ead565b60405161070c919061406b565b60405180910390f35b34801561072157600080fd5b5061073c6004803603810190610737919061402f565b611ebf565b005b34801561074a57600080fd5b50610765600480360381019061076091906142d2565b611ed1565b604051610772919061411e565b60405180910390f35b34801561078757600080fd5b50610790611f89565b005b34801561079e57600080fd5b506107b960048036038101906107b491906146e5565b611f9d565b005b3480156107c757600080fd5b506107e260048036038101906107dd919061449f565b611fbf565b005b3480156107f057600080fd5b506107f961206b565b005b61081560048036038101906108109190614472565b612085565b005b34801561082357600080fd5b5061082c612401565b604051610839919061406b565b60405180910390f35b34801561084e57600080fd5b5061085761242b565b6040516108649190613fd7565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f919061475a565b6124bd565b005b3480156108a257600080fd5b506108bd60048036038101906108b8919061479a565b6125c8565b005b6108d960048036038101906108d4919061487b565b612643565b005b3480156108e757600080fd5b5061090260048036038101906108fd919061402f565b6126b6565b60405161090f9190613fd7565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190614389565b61281b565b005b34801561094d57600080fd5b506109566128b3565b604051610963919061411e565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e91906144fb565b6128b9565b005b3480156109a157600080fd5b506109bc60048036038101906109b791906148fe565b6129e3565b005b3480156109ca57600080fd5b506109e560048036038101906109e09190614472565b612a72565b005b3480156109f357600080fd5b50610a0e6004803603810190610a09919061495a565b612b35565b604051610a1b9190613e26565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a4691906142d2565b612bc9565b005b348015610a5957600080fd5b50610a62612c4c565b005b60008060001b600b86604051610a7a91906149d6565b90815260200160405180910390206003015403610acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac390614a39565b60405180910390fd5b610af9848484600b89604051610ae291906149d6565b908152602001604051809103902060030154610e3c565b15610b075760019050610b0c565b600090505b949350505050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b6f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600d60009054906101000a900460ff1681565b606060028054610bc890614a88565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf490614a88565b8015610c415780601f10610c1657610100808354040283529160200191610c41565b820191906000526020600020905b815481529060010190602001808311610c2457829003601f168201915b5050505050905090565b6000610c5682612c5e565b610c8c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd582611ead565b90508073ffffffffffffffffffffffffffffffffffffffff16610cf6612cbd565b73ffffffffffffffffffffffffffffffffffffffff1614610d5957610d2281610d1d612cbd565b612b35565b610d58576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b60008085604051602001610e509190614b01565b604051602081830303815290604052805190602001209050610eb4858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508483612cc5565b915050949350505050565b600f828051602081018201805184825260208301602085012081835280955050505050506020528060005260406000206000915091509054906101000a900460ff1681565b6000610f0e612cdc565b6001546000540303905090565b610f23612ce1565b6000801b600b83604051610f3791906149d6565b90815260200160405180910390206003015403610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090614b68565b60405180910390fd5b80600b83604051610f9a91906149d6565b9081526020016040518091039020600301819055505050565b60106020528060005260406000206000915054906101000a900460ff1681565b6000806000600a54610fe3610f04565b600d60009054906101000a900460ff16600281111561100557611004613ec6565b5b925092509250909192565b600061101b82612d5f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611082576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061108e84612e2b565b915091506110a4818761109f612cbd565b612e52565b6110f0576110b9866110b4612cbd565b612b35565b6110ef576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611156576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111638686866001612e96565b801561116e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061123c85611218888887612e9c565b7c020000000000000000000000000000000000000000000000000000000017612ec4565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036112c257600060018501905060006004600083815260200190815260200160002054036112c05760005481146112bf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461132a8686866001612eef565b505050505050565b61133a612ce1565b6000801b600b8360405161134e91906149d6565b908152602001604051809103902060030154036113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790614bd4565b60405180910390fd5b80600b836040516113b191906149d6565b9081526020016040518091039020600201819055505050565b6000806000806000806000600f896040516113e591906149d6565b908152602001604051809103902060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600d60009054906101000a900460ff16600281111561146257611461613ec6565b5b600b8a60405161147291906149d6565b908152602001604051809103902060000160009054906101000a900460ff16600b8b6040516114a191906149d6565b908152602001604051809103902060020154600b8c6040516114c391906149d6565b908152602001604051809103902060010154600c8d6040516114e591906149d6565b90815260200160405180910390205485965096509650965096509650509295509295509295565b611514612ce1565b8060ff16600281111561152a57611529613ec6565b5b600d60006101000a81548160ff0219169083600281111561154e5761154d613ec6565b5b0217905550600d60009054906101000a900460ff16600281111561157557611574613ec6565b5b60ff16423373ffffffffffffffffffffffffffffffffffffffff167f7d7f6ed6d84cc6a4531c22effb48bb76d643459a9d3398dab7ddb04f6fb01ebc60405160405180910390a450565b6115c7612ce1565b6000471161160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614c40565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff164760405161163590614c91565b60006040518083038185875af1925050503d8060008114611672576040519150601f19603f3d011682016040523d82523d6000602084013e611677565b606091505b50509050806116b2576040517f27fcd9d100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167ff4f855c53853d0277a9ff688aadbfe4cb795ca1d5af41704b62cb539f89939ec836040516116f8919061411e565b60405180910390a25050565b61170c612ce1565b6000801b600b8360405161172091906149d6565b90815260200160405180910390206003015403611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990614bd4565b60405180910390fd5b80600b8360405161178391906149d6565b908152602001604051809103902060000160006101000a81548160ff021916908360ff1602179055505050565b6117cb83838360405180602001604052806000815250612643565b505050565b6117d8612ce1565b60006040518060a001604052808760ff1681526020018660ff16815260200185815260200184815260200183815250905080600b8860405161181a91906149d6565b908152602001604051809103902060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015590505050505050505050565b61189c612ef5565b6118a4612f44565b600160028111156118b8576118b7613ec6565b5b600d60009054906101000a900460ff1660028111156118da576118d9613ec6565b5b1461191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190614cf2565b60405180910390fd5b60006040518060400160405280600281526020017f574c00000000000000000000000000000000000000000000000000000000000081525090506000611983338585600b8660405161196c91906149d6565b908152602001604051809103902060030154610e3c565b6119c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b990614d84565b60405180910390fd5b600b826040516119d291906149d6565b9081526020016040518091039020600101548560ff16600c846040516119f891906149d6565b908152602001604051809103902054611a119190614dd3565b1115611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990614e79565b60405180910390fd5b600b82604051611a6291906149d6565b908152602001604051809103902060000160009054906101000a900460ff1660ff168560ff161115611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac090614f0b565b60405180910390fd5b600b82604051611ad991906149d6565b908152602001604051809103902060000160009054906101000a900460ff1660ff1685600f84604051611b0c91906149d6565b908152602001604051809103902060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b6f9190614f2b565b60ff161115611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614ff8565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115611c85578460ff16600b83604051611c1f91906149d6565b908152602001604051809103902060020154611c3b9190615018565b905080341015611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c77906150cc565b60405180910390fd5b611e3d565b60018560ff1603611d27576000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d19906150cc565b60405180910390fd5b611de3565b60018560ff161115611de257600b82604051611d4391906149d6565b908152602001604051809103902060000160019054906101000a900460ff1685611d6d91906150ec565b60ff16600b83604051611d8091906149d6565b908152602001604051809103902060020154611d9c9190615018565b905080341015611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd8906150cc565b60405180910390fd5b5b5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505b611e48828683612f8e565b5050611e526131f7565b505050565b6000600860149054906101000a900460ff16905090565b60118181548110611e7e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611eb882612d5f565b9050919050565b611ec7612ce1565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f38576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611f91612ce1565b611f9b6000613201565b565b611fa5612ce1565b8060139080519060200190611fbb929190613a89565b5050565b611fc7612ce1565b6000801b600b83604051611fdb91906149d6565b9081526020016040518091039020600301540361202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490614bd4565b60405180910390fd5b80600b8360405161203e91906149d6565b908152602001604051809103902060000160016101000a81548160ff021916908360ff1602179055505050565b612073612ce1565b61207b612f44565b6120836132c7565b565b61208d612ef5565b612095612f44565b600060028111156120a9576120a8613ec6565b5b600d60009054906101000a900460ff1660028111156120cb576120ca613ec6565b5b0361210b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210290614cf2565b60405180910390fd5b60006040518060400160405280600681526020017f5055424c494300000000000000000000000000000000000000000000000000008152509050600b8160405161215591906149d6565b908152602001604051809103902060000160009054906101000a900460ff1660ff168260ff1611156121bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b390614f0b565b60405180910390fd5b600b816040516121cc91906149d6565b908152602001604051809103902060000160009054906101000a900460ff1660ff1682600f836040516121ff91906149d6565b908152602001604051809103902060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122629190614f2b565b60ff1611156122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d90614ff8565b60405180910390fd5b600160028111156122ba576122b9613ec6565b5b600d60009054906101000a900460ff1660028111156122dc576122db613ec6565b5b0361237257600b816040516122f191906149d6565b9081526020016040518091039020600101548260ff16600c8360405161231791906149d6565b9081526020016040518091039020546123309190614dd3565b1115612371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236890614e79565b60405180910390fd5b5b60008260ff16600b8360405161238891906149d6565b9081526020016040518091039020600201546123a49190615018565b9050803410156123e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e0906150cc565b60405180910390fd5b6123f4828483612f8e565b50506123fe6131f7565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461243a90614a88565b80601f016020809104026020016040519081016040528092919081815260200182805461246690614a88565b80156124b35780601f10612488576101008083540402835291602001916124b3565b820191906000526020600020905b81548152906001019060200180831161249657829003601f168201915b5050505050905090565b80600760006124ca612cbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612577612cbd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125bc9190613e26565b60405180910390a35050565b6125d0612ce1565b6125d8612f44565b600a548260ff166125e761332a565b6125f19190614dd3565b1115612632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126299061516d565b60405180910390fd5b61263f818360ff1661333d565b5050565b61264e848484611010565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126b0576126798484848461335b565b6126af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606126c182612c5e565b612700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f7906151ff565b60405180910390fd5b601460009054906101000a900460ff1615612756576001826127229190614dd3565b9150601261272f836134ab565b6040516020016127409291906152b7565b6040516020818303038152906040529050612816565b600060138054905083612769919061530a565b90506013818154811061277f5761277e61533b565b5b90600052602060002001805461279490614a88565b80601f01602080910402602001604051908101604052809291908181526020018280546127c090614a88565b801561280d5780601f106127e25761010080835404028352916020019161280d565b820191906000526020600020905b8154815290600101906020018083116127f057829003601f168201915b50505050509150505b919050565b612823612ce1565b6000801b600b8360405161283791906149d6565b90815260200160405180910390206003015403612889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288090614bd4565b60405180910390fd5b80600b8360405161289a91906149d6565b9081526020016040518091039020600101819055505050565b600a5481565b6128c1612ce1565b6000801b600b876040516128d591906149d6565b90815260200160405180910390206003015403612927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291e90614bd4565b60405180910390fd5b60006040518060a001604052808760ff1681526020018660ff16815260200185815260200184815260200183815250905080600b8860405161296991906149d6565b908152602001604051809103902060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015590505050505050505050565b6129eb612ce1565b80601460006101000a81548160ff0219169083151502179055508160129081612a149190615501565b50601460009054906101000a900460ff1615612a6e573373ffffffffffffffffffffffffffffffffffffffff167f2a10c355cd3f8130b128e45782d3e92e6c0b4ba2e844d06f49a48ee23f1f21f760405160405180910390a25b5050565b612a7a612ce1565b600a548160ff16612a8961332a565b612a939190614dd3565b1115612ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acb9061561f565b60405180910390fd5b612ae1338260ff1661333d565b3373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d077740826000604051612b2a92919061567a565b60405180910390a250565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612bd1612ce1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3790615715565b60405180910390fd5b612c4981613201565b50565b612c54612ce1565b612c5c613579565b565b600081612c69612cdc565b11158015612c78575060005482105b8015612cb6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600082612cd285846135dc565b1490509392505050565b600090565b612ce9613632565b73ffffffffffffffffffffffffffffffffffffffff16612d07612401565b73ffffffffffffffffffffffffffffffffffffffff1614612d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5490615781565b60405180910390fd5b565b60008082905080612d6e612cdc565b11612df457600054811015612df35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612df1575b60008103612de7576004600083600190039350838152602001908152602001600020549050612dbd565b8092505050612e26565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612eb386868461363a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095403612f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f31906157ed565b60405180910390fd5b6002600981905550565b612f4c611e57565b15612f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8390615859565b60405180910390fd5b565b600a548260ff16612f9d61332a565b612fa79190614dd3565b1115612fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdf906158c5565b60405180910390fd5b60008260ff161161302e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302590615957565b60405180910390fd5b61303b338360ff1661333d565b8160ff16600c8460405161304f91906149d6565b9081526020016040518091039020600082825461306c9190614dd3565b9250508190555081600f8460405161308491906149d6565b908152602001604051809103902060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166130ea9190614f2b565b92506101000a81548160ff021916908360ff1602179055506011339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d07774083836040516131ad929190615977565b60405180910390a2600a546131c061332a565b106131f2577f52df9fe5b9c9a7b0b4fdc2c9f89387959e35e4209c2a8d133a2b8165edad2a0460405160405180910390a15b505050565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132cf612f44565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613313613632565b604051613320919061406b565b60405180910390a1565b6000613334612cdc565b60005403905090565b613357828260405180602001604052806000815250613643565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613381612cbd565b8786866040518563ffffffff1660e01b81526004016133a394939291906159f5565b6020604051808303816000875af19250505080156133df57506040513d601f19601f820116820180604052508101906133dc9190615a56565b60015b613458573d806000811461340f576040519150601f19603f3d011682016040523d82523d6000602084013e613414565b606091505b506000815103613450576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600060016134ba846136e0565b01905060008167ffffffffffffffff8111156134d9576134d8613b92565b5b6040519080825280601f01601f19166020018201604052801561350b5781602001600182028036833780820191505090505b509050600082602001820190505b60011561356e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581613562576135616152db565b5b04945060008503613519575b819350505050919050565b613581613833565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6135c5613632565b6040516135d2919061406b565b60405180910390a1565b60008082905060005b845181101561362757613612828683815181106136055761360461533b565b5b602002602001015161387c565b9150808061361f90615a83565b9150506135e5565b508091505092915050565b600033905090565b60009392505050565b61364d83836138a7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146136db57600080549050600083820390505b61368d600086838060010194508661335b565b6136c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061367a5781600054146136d857600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061373e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381613734576137336152db565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061377b576d04ee2d6d415b85acef81000000008381613771576137706152db565b5b0492506020810190505b662386f26fc1000083106137aa57662386f26fc1000083816137a05761379f6152db565b5b0492506010810190505b6305f5e10083106137d3576305f5e10083816137c9576137c86152db565b5b0492506008810190505b61271083106137f85761271083816137ee576137ed6152db565b5b0492506004810190505b6064831061381b5760648381613811576138106152db565b5b0492506002810190505b600a831061382a576001810190505b80915050919050565b61383b611e57565b61387a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387190615b17565b60405180910390fd5b565b60008183106138945761388f8284613a62565b61389f565b61389e8383613a62565b5b905092915050565b600080549050600082036138e7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138f46000848385612e96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061396b8361395c6000866000612e9c565b61396585613a79565b17612ec4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613a0c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506139d1565b5060008203613a47576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613a5d6000848385612eef565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054828255906000526020600020908101928215613ad1579160200282015b82811115613ad0578251829081613ac09190615501565b5091602001919060010190613aa9565b5b509050613ade9190613ae2565b5090565b5b80821115613b025760008181613af99190613b06565b50600101613ae3565b5090565b508054613b1290614a88565b6000825580601f10613b245750613b43565b601f016020900490600052602060002090810190613b429190613b46565b5b50565b5b80821115613b5f576000816000905550600101613b47565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bca82613b81565b810181811067ffffffffffffffff82111715613be957613be8613b92565b5b80604052505050565b6000613bfc613b63565b9050613c088282613bc1565b919050565b600067ffffffffffffffff821115613c2857613c27613b92565b5b613c3182613b81565b9050602081019050919050565b82818337600083830152505050565b6000613c60613c5b84613c0d565b613bf2565b905082815260208101848484011115613c7c57613c7b613b7c565b5b613c87848285613c3e565b509392505050565b600082601f830112613ca457613ca3613b77565b5b8135613cb4848260208601613c4d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ce882613cbd565b9050919050565b613cf881613cdd565b8114613d0357600080fd5b50565b600081359050613d1581613cef565b92915050565b600080fd5b600080fd5b60008083601f840112613d3b57613d3a613b77565b5b8235905067ffffffffffffffff811115613d5857613d57613d1b565b5b602083019150836020820283011115613d7457613d73613d20565b5b9250929050565b60008060008060608587031215613d9557613d94613b6d565b5b600085013567ffffffffffffffff811115613db357613db2613b72565b5b613dbf87828801613c8f565b9450506020613dd087828801613d06565b935050604085013567ffffffffffffffff811115613df157613df0613b72565b5b613dfd87828801613d25565b925092505092959194509250565b60008115159050919050565b613e2081613e0b565b82525050565b6000602082019050613e3b6000830184613e17565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e7681613e41565b8114613e8157600080fd5b50565b600081359050613e9381613e6d565b92915050565b600060208284031215613eaf57613eae613b6d565b5b6000613ebd84828501613e84565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613f0657613f05613ec6565b5b50565b6000819050613f1782613ef5565b919050565b6000613f2782613f09565b9050919050565b613f3781613f1c565b82525050565b6000602082019050613f526000830184613f2e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f92578082015181840152602081019050613f77565b60008484015250505050565b6000613fa982613f58565b613fb38185613f63565b9350613fc3818560208601613f74565b613fcc81613b81565b840191505092915050565b60006020820190508181036000830152613ff18184613f9e565b905092915050565b6000819050919050565b61400c81613ff9565b811461401757600080fd5b50565b60008135905061402981614003565b92915050565b60006020828403121561404557614044613b6d565b5b60006140538482850161401a565b91505092915050565b61406581613cdd565b82525050565b6000602082019050614080600083018461405c565b92915050565b6000806040838503121561409d5761409c613b6d565b5b60006140ab85828601613d06565b92505060206140bc8582860161401a565b9150509250929050565b6000602082840312156140dc576140db613b6d565b5b600082013567ffffffffffffffff8111156140fa576140f9613b72565b5b61410684828501613c8f565b91505092915050565b61411881613ff9565b82525050565b6000602082019050614133600083018461410f565b92915050565b6000819050919050565b61414c81614139565b811461415757600080fd5b50565b60008135905061416981614143565b92915050565b6000806000806060858703121561418957614188613b6d565b5b600061419787828801613d06565b945050602085013567ffffffffffffffff8111156141b8576141b7613b72565b5b6141c487828801613d25565b935093505060406141d78782880161415a565b91505092959194509250565b600080604083850312156141fa576141f9613b6d565b5b600083013567ffffffffffffffff81111561421857614217613b72565b5b61422485828601613c8f565b925050602061423585828601613d06565b9150509250929050565b600060ff82169050919050565b6142558161423f565b82525050565b6000602082019050614270600083018461424c565b92915050565b6000806040838503121561428d5761428c613b6d565b5b600083013567ffffffffffffffff8111156142ab576142aa613b72565b5b6142b785828601613c8f565b92505060206142c88582860161415a565b9150509250929050565b6000602082840312156142e8576142e7613b6d565b5b60006142f684828501613d06565b91505092915050565b6000606082019050614314600083018661410f565b614321602083018561410f565b61432e604083018461424c565b949350505050565b60008060006060848603121561434f5761434e613b6d565b5b600061435d86828701613d06565b935050602061436e86828701613d06565b925050604061437f8682870161401a565b9150509250925092565b600080604083850312156143a05761439f613b6d565b5b600083013567ffffffffffffffff8111156143be576143bd613b72565b5b6143ca85828601613c8f565b92505060206143db8582860161401a565b9150509250929050565b600060c0820190506143fa600083018961424c565b614407602083018861424c565b614414604083018761410f565b614421606083018661410f565b61442e608083018561410f565b61443b60a083018461424c565b979650505050505050565b61444f8161423f565b811461445a57600080fd5b50565b60008135905061446c81614446565b92915050565b60006020828403121561448857614487613b6d565b5b60006144968482850161445d565b91505092915050565b600080604083850312156144b6576144b5613b6d565b5b600083013567ffffffffffffffff8111156144d4576144d3613b72565b5b6144e085828601613c8f565b92505060206144f18582860161445d565b9150509250929050565b60008060008060008060c0878903121561451857614517613b6d565b5b600087013567ffffffffffffffff81111561453657614535613b72565b5b61454289828a01613c8f565b965050602061455389828a0161445d565b955050604061456489828a0161445d565b945050606061457589828a0161401a565b935050608061458689828a0161401a565b92505060a061459789828a0161415a565b9150509295509295509295565b6000806000604084860312156145bd576145bc613b6d565b5b60006145cb8682870161445d565b935050602084013567ffffffffffffffff8111156145ec576145eb613b72565b5b6145f886828701613d25565b92509250509250925092565b600067ffffffffffffffff82111561461f5761461e613b92565b5b602082029050602081019050919050565b600061464361463e84614604565b613bf2565b9050808382526020820190506020840283018581111561466657614665613d20565b5b835b818110156146ad57803567ffffffffffffffff81111561468b5761468a613b77565b5b8086016146988982613c8f565b85526020850194505050602081019050614668565b5050509392505050565b600082601f8301126146cc576146cb613b77565b5b81356146dc848260208601614630565b91505092915050565b6000602082840312156146fb576146fa613b6d565b5b600082013567ffffffffffffffff81111561471957614718613b72565b5b614725848285016146b7565b91505092915050565b61473781613e0b565b811461474257600080fd5b50565b6000813590506147548161472e565b92915050565b6000806040838503121561477157614770613b6d565b5b600061477f85828601613d06565b925050602061479085828601614745565b9150509250929050565b600080604083850312156147b1576147b0613b6d565b5b60006147bf8582860161445d565b92505060206147d085828601613d06565b9150509250929050565b600067ffffffffffffffff8211156147f5576147f4613b92565b5b6147fe82613b81565b9050602081019050919050565b600061481e614819846147da565b613bf2565b90508281526020810184848401111561483a57614839613b7c565b5b614845848285613c3e565b509392505050565b600082601f83011261486257614861613b77565b5b813561487284826020860161480b565b91505092915050565b6000806000806080858703121561489557614894613b6d565b5b60006148a387828801613d06565b94505060206148b487828801613d06565b93505060406148c58782880161401a565b925050606085013567ffffffffffffffff8111156148e6576148e5613b72565b5b6148f28782880161484d565b91505092959194509250565b6000806040838503121561491557614914613b6d565b5b600083013567ffffffffffffffff81111561493357614932613b72565b5b61493f85828601613c8f565b925050602061495085828601614745565b9150509250929050565b6000806040838503121561497157614970613b6d565b5b600061497f85828601613d06565b925050602061499085828601613d06565b9150509250929050565b600081905092915050565b60006149b082613f58565b6149ba818561499a565b93506149ca818560208601613f74565b80840191505092915050565b60006149e282846149a5565b915081905092915050565b7f4552524f523a204d696e7465722054797065206e6f7420666f756e642e000000600082015250565b6000614a23601d83613f63565b9150614a2e826149ed565b602082019050919050565b60006020820190508181036000830152614a5281614a16565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614aa057607f821691505b602082108103614ab357614ab2614a59565b5b50919050565b60008160601b9050919050565b6000614ad182614ab9565b9050919050565b6000614ae382614ac6565b9050919050565b614afb614af682613cdd565b614ad8565b82525050565b6000614b0d8284614aea565b60148201915081905092915050565b7f4552524f523a204d696e74657273496e666f206e6f7420666f756e642e000000600082015250565b6000614b52601d83613f63565b9150614b5d82614b1c565b602082019050919050565b60006020820190508181036000830152614b8181614b45565b9050919050565b7f4d696e74657273496e666f206e6f7420666f756e642e00000000000000000000600082015250565b6000614bbe601683613f63565b9150614bc982614b88565b602082019050919050565b60006020820190508181036000830152614bed81614bb1565b9050919050565b7f4552524f523a204e6f2062616c616e636520746f2077697468647261772e0000600082015250565b6000614c2a601e83613f63565b9150614c3582614bf4565b602082019050919050565b60006020820190508181036000830152614c5981614c1d565b9050919050565b600081905092915050565b50565b6000614c7b600083614c60565b9150614c8682614c6b565b600082019050919050565b6000614c9c82614c6e565b9150819050919050565b7f4552524f523a204d696e74206973206e6f74206163746976652e000000000000600082015250565b6000614cdc601a83613f63565b9150614ce782614ca6565b602082019050919050565b60006020820190508181036000830152614d0b81614ccf565b9050919050565b7f4552524f523a20596f7520617265206e6f7420616c6c6f77656420746f206d6960008201527f6e74206f6e20746869732070686173652e000000000000000000000000000000602082015250565b6000614d6e603183613f63565b9150614d7982614d12565b604082019050919050565b60006020820190508181036000830152614d9d81614d61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614dde82613ff9565b9150614de983613ff9565b9250828201905080821115614e0157614e00614da4565b5b92915050565b7f4552524f523a204d6178696d756d206e756d626572206f66206d696e7473206f60008201527f6e207468697320706861736520686173206265656e2072656163686564000000602082015250565b6000614e63603d83613f63565b9150614e6e82614e07565b604082019050919050565b60006020820190508181036000830152614e9281614e56565b9050919050565b7f4552524f523a204d6178696d756d206e756d626572206f66206d696e7473207060008201527f6572207472616e73616374696f6e206578636565646564000000000000000000602082015250565b6000614ef5603783613f63565b9150614f0082614e99565b604082019050919050565b60006020820190508181036000830152614f2481614ee8565b9050919050565b6000614f368261423f565b9150614f418361423f565b9250828201905060ff811115614f5a57614f59614da4565b5b92915050565b7f4552524f523a20596f7572206d6178696d756d204e4654206d696e742070657260008201527f2077616c6c6574206f6e207468697320706861736520686173206265656e207260208201527f6561636865642e00000000000000000000000000000000000000000000000000604082015250565b6000614fe2604783613f63565b9150614fed82614f60565b606082019050919050565b6000602082019050818103600083015261501181614fd5565b9050919050565b600061502382613ff9565b915061502e83613ff9565b925082820261503c81613ff9565b9150828204841483151761505357615052614da4565b5b5092915050565b7f4552524f523a20596f7520646f206e6f74206861766520656e6f75676820667560008201527f6e647320746f206d696e742e0000000000000000000000000000000000000000602082015250565b60006150b6602c83613f63565b91506150c18261505a565b604082019050919050565b600060208201905081810360008301526150e5816150a9565b9050919050565b60006150f78261423f565b91506151028361423f565b9250828203905060ff81111561511b5761511a614da4565b5b92915050565b7f4552524f523a204e6f7420656e6f75676820746f6b656e73206c656674000000600082015250565b6000615157601d83613f63565b915061516282615121565b602082019050919050565b600060208201905081810360008301526151868161514a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006151e9602f83613f63565b91506151f48261518d565b604082019050919050565b60006020820190508181036000830152615218816151dc565b9050919050565b60008190508160005260206000209050919050565b6000815461524181614a88565b61524b818661499a565b94506001821660008114615266576001811461527b576152ae565b60ff19831686528115158202860193506152ae565b6152848561521f565b60005b838110156152a657815481890152600182019150602081019050615287565b838801955050505b50505092915050565b60006152c38285615234565b91506152cf82846149a5565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061531582613ff9565b915061532083613ff9565b9250826153305761532f6152db565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020601f8301049050919050565b600082821b905092915050565b6000600883026153b77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261537a565b6153c1868361537a565b95508019841693508086168417925050509392505050565b6000819050919050565b60006153fe6153f96153f484613ff9565b6153d9565b613ff9565b9050919050565b6000819050919050565b615418836153e3565b61542c61542482615405565b848454615387565b825550505050565b600090565b615441615434565b61544c81848461540f565b505050565b5b8181101561547057615465600082615439565b600181019050615452565b5050565b601f8211156154b5576154868161521f565b61548f8461536a565b8101602085101561549e578190505b6154b26154aa8561536a565b830182615451565b50505b505050565b600082821c905092915050565b60006154d8600019846008026154ba565b1980831691505092915050565b60006154f183836154c7565b9150826002028217905092915050565b61550a82613f58565b67ffffffffffffffff81111561552357615522613b92565b5b61552d8254614a88565b615538828285615474565b600060209050601f83116001811461556b5760008415615559578287015190505b61556385826154e5565b8655506155cb565b601f1984166155798661521f565b60005b828110156155a15784890151825560018201915060208501945060208101905061557c565b868310156155be57848901516155ba601f8916826154c7565b8355505b6001600288020188555050505b505050505050565b7f4552524f523a204e6f7420656e6f75676820746f6b656e730000000000000000600082015250565b6000615609601883613f63565b9150615614826155d3565b602082019050919050565b60006020820190508181036000830152615638816155fc565b9050919050565b6000819050919050565b600061566461565f61565a8461563f565b6153d9565b613ff9565b9050919050565b61567481615649565b82525050565b600060408201905061568f600083018561424c565b61569c602083018461566b565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006156ff602683613f63565b915061570a826156a3565b604082019050919050565b6000602082019050818103600083015261572e816156f2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061576b602083613f63565b915061577682615735565b602082019050919050565b6000602082019050818103600083015261579a8161575e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006157d7601f83613f63565b91506157e2826157a1565b602082019050919050565b60006020820190508181036000830152615806816157ca565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000615843601083613f63565b915061584e8261580d565b602082019050919050565b6000602082019050818103600083015261587281615836565b9050919050565b7f4552524f523a204e6f20746f6b656e73206c65667420746f206d696e74000000600082015250565b60006158af601d83613f63565b91506158ba82615879565b602082019050919050565b600060208201905081810360008301526158de816158a2565b9050919050565b7f4552524f523a204e756d626572206f6620746f6b656e732073686f756c64206260008201527f652067726561746572207468616e207a65726f00000000000000000000000000602082015250565b6000615941603383613f63565b915061594c826158e5565b604082019050919050565b6000602082019050818103600083015261597081615934565b9050919050565b600060408201905061598c600083018561424c565b615999602083018461410f565b9392505050565b600081519050919050565b600082825260208201905092915050565b60006159c7826159a0565b6159d181856159ab565b93506159e1818560208601613f74565b6159ea81613b81565b840191505092915050565b6000608082019050615a0a600083018761405c565b615a17602083018661405c565b615a24604083018561410f565b8181036060830152615a3681846159bc565b905095945050505050565b600081519050615a5081613e6d565b92915050565b600060208284031215615a6c57615a6b613b6d565b5b6000615a7a84828501615a41565b91505092915050565b6000615a8e82613ff9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615ac057615abf614da4565b5b600182019050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000615b01601483613f63565b9150615b0c82615acb565b602082019050919050565b60006020820190508181036000830152615b3081615af4565b905091905056fea2646970667358221220480508f5296696688848f5ba445aca3ff5a72a49908baa5247e47693e4e554a264736f6c63430008120033

Deployed Bytecode

0x60806040526004361061027c5760003560e01c80636107896e1161014f578063a22cb465116100c1578063d89a75741161007a578063d89a75741461096c578063e1c6780514610995578063e7d97937146109be578063e985e9c5146109e7578063f2fde38b14610a24578063f7b188a514610a4d5761027c565b8063a22cb4651461086d578063b3d6c53c14610896578063b88d4fde146108bf578063c87b56dd146108db578063cf7c0b4914610918578063d5abeb01146109415761027c565b8063792a873e11610113578063792a873e146107925780637e454447146107bb5780638456cb59146107e4578063858e83b5146107fb5780638da5cb5b1461081757806395d89b41146108425761027c565b80636107896e1461069b5780636352211e146106d85780636f8b44b01461071557806370a082311461073e578063715018a61461077b5761027c565b806320984801116101f35780633ccfd60b116101ac5780633ccfd60b146105cf578063411d1be5146105e657806342842e0e1461060f57806347d4f5781461062b57806358381669146106545780635c975abb146106705761027c565b806320984801146104b557806320edeaf3146104f257806323b872dd1461051f578063293227ab1461053b5780632b5619a41461056457806331c07bbf146105a65761027c565b8063095ea7b311610245578063095ea7b31461038e57806309945734146103aa5780630e6f5272146103e757806315587fc31461042457806318160ddd14610461578063189b83bd1461048c5761027c565b80623775801461028157806301ffc9a7146102be578063055ad42e146102fb57806306fdde0314610326578063081812fc14610351575b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a39190613d7b565b610a64565b6040516102b59190613e26565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613e99565b610b14565b6040516102f29190613e26565b60405180910390f35b34801561030757600080fd5b50610310610ba6565b60405161031d9190613f3d565b60405180910390f35b34801561033257600080fd5b5061033b610bb9565b6040516103489190613fd7565b60405180910390f35b34801561035d57600080fd5b506103786004803603810190610373919061402f565b610c4b565b604051610385919061406b565b60405180910390f35b6103a860048036038101906103a39190614086565b610cca565b005b3480156103b657600080fd5b506103d160048036038101906103cc91906140c6565b610e0e565b6040516103de919061411e565b60405180910390f35b3480156103f357600080fd5b5061040e6004803603810190610409919061416f565b610e3c565b60405161041b9190613e26565b60405180910390f35b34801561043057600080fd5b5061044b600480360381019061044691906141e3565b610ebf565b604051610458919061425b565b60405180910390f35b34801561046d57600080fd5b50610476610f04565b604051610483919061411e565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190614276565b610f1b565b005b3480156104c157600080fd5b506104dc60048036038101906104d791906142d2565b610fb3565b6040516104e9919061425b565b60405180910390f35b3480156104fe57600080fd5b50610507610fd3565b604051610516939291906142ff565b60405180910390f35b61053960048036038101906105349190614336565b611010565b005b34801561054757600080fd5b50610562600480360381019061055d9190614389565b611332565b005b34801561057057600080fd5b5061058b600480360381019061058691906141e3565b6113ca565b60405161059d969594939291906143e5565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190614472565b61150c565b005b3480156105db57600080fd5b506105e46115bf565b005b3480156105f257600080fd5b5061060d6004803603810190610608919061449f565b611704565b005b61062960048036038101906106249190614336565b6117b0565b005b34801561063757600080fd5b50610652600480360381019061064d91906144fb565b6117d0565b005b61066e600480360381019061066991906145a4565b611894565b005b34801561067c57600080fd5b50610685611e57565b6040516106929190613e26565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd919061402f565b611e6e565b6040516106cf919061406b565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061402f565b611ead565b60405161070c919061406b565b60405180910390f35b34801561072157600080fd5b5061073c6004803603810190610737919061402f565b611ebf565b005b34801561074a57600080fd5b50610765600480360381019061076091906142d2565b611ed1565b604051610772919061411e565b60405180910390f35b34801561078757600080fd5b50610790611f89565b005b34801561079e57600080fd5b506107b960048036038101906107b491906146e5565b611f9d565b005b3480156107c757600080fd5b506107e260048036038101906107dd919061449f565b611fbf565b005b3480156107f057600080fd5b506107f961206b565b005b61081560048036038101906108109190614472565b612085565b005b34801561082357600080fd5b5061082c612401565b604051610839919061406b565b60405180910390f35b34801561084e57600080fd5b5061085761242b565b6040516108649190613fd7565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f919061475a565b6124bd565b005b3480156108a257600080fd5b506108bd60048036038101906108b8919061479a565b6125c8565b005b6108d960048036038101906108d4919061487b565b612643565b005b3480156108e757600080fd5b5061090260048036038101906108fd919061402f565b6126b6565b60405161090f9190613fd7565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190614389565b61281b565b005b34801561094d57600080fd5b506109566128b3565b604051610963919061411e565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e91906144fb565b6128b9565b005b3480156109a157600080fd5b506109bc60048036038101906109b791906148fe565b6129e3565b005b3480156109ca57600080fd5b506109e560048036038101906109e09190614472565b612a72565b005b3480156109f357600080fd5b50610a0e6004803603810190610a09919061495a565b612b35565b604051610a1b9190613e26565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a4691906142d2565b612bc9565b005b348015610a5957600080fd5b50610a62612c4c565b005b60008060001b600b86604051610a7a91906149d6565b90815260200160405180910390206003015403610acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac390614a39565b60405180910390fd5b610af9848484600b89604051610ae291906149d6565b908152602001604051809103902060030154610e3c565b15610b075760019050610b0c565b600090505b949350505050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b6f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600d60009054906101000a900460ff1681565b606060028054610bc890614a88565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf490614a88565b8015610c415780601f10610c1657610100808354040283529160200191610c41565b820191906000526020600020905b815481529060010190602001808311610c2457829003601f168201915b5050505050905090565b6000610c5682612c5e565b610c8c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd582611ead565b90508073ffffffffffffffffffffffffffffffffffffffff16610cf6612cbd565b73ffffffffffffffffffffffffffffffffffffffff1614610d5957610d2281610d1d612cbd565b612b35565b610d58576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b60008085604051602001610e509190614b01565b604051602081830303815290604052805190602001209050610eb4858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508483612cc5565b915050949350505050565b600f828051602081018201805184825260208301602085012081835280955050505050506020528060005260406000206000915091509054906101000a900460ff1681565b6000610f0e612cdc565b6001546000540303905090565b610f23612ce1565b6000801b600b83604051610f3791906149d6565b90815260200160405180910390206003015403610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090614b68565b60405180910390fd5b80600b83604051610f9a91906149d6565b9081526020016040518091039020600301819055505050565b60106020528060005260406000206000915054906101000a900460ff1681565b6000806000600a54610fe3610f04565b600d60009054906101000a900460ff16600281111561100557611004613ec6565b5b925092509250909192565b600061101b82612d5f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611082576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061108e84612e2b565b915091506110a4818761109f612cbd565b612e52565b6110f0576110b9866110b4612cbd565b612b35565b6110ef576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611156576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111638686866001612e96565b801561116e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061123c85611218888887612e9c565b7c020000000000000000000000000000000000000000000000000000000017612ec4565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036112c257600060018501905060006004600083815260200190815260200160002054036112c05760005481146112bf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461132a8686866001612eef565b505050505050565b61133a612ce1565b6000801b600b8360405161134e91906149d6565b908152602001604051809103902060030154036113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790614bd4565b60405180910390fd5b80600b836040516113b191906149d6565b9081526020016040518091039020600201819055505050565b6000806000806000806000600f896040516113e591906149d6565b908152602001604051809103902060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600d60009054906101000a900460ff16600281111561146257611461613ec6565b5b600b8a60405161147291906149d6565b908152602001604051809103902060000160009054906101000a900460ff16600b8b6040516114a191906149d6565b908152602001604051809103902060020154600b8c6040516114c391906149d6565b908152602001604051809103902060010154600c8d6040516114e591906149d6565b90815260200160405180910390205485965096509650965096509650509295509295509295565b611514612ce1565b8060ff16600281111561152a57611529613ec6565b5b600d60006101000a81548160ff0219169083600281111561154e5761154d613ec6565b5b0217905550600d60009054906101000a900460ff16600281111561157557611574613ec6565b5b60ff16423373ffffffffffffffffffffffffffffffffffffffff167f7d7f6ed6d84cc6a4531c22effb48bb76d643459a9d3398dab7ddb04f6fb01ebc60405160405180910390a450565b6115c7612ce1565b6000471161160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614c40565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff164760405161163590614c91565b60006040518083038185875af1925050503d8060008114611672576040519150601f19603f3d011682016040523d82523d6000602084013e611677565b606091505b50509050806116b2576040517f27fcd9d100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167ff4f855c53853d0277a9ff688aadbfe4cb795ca1d5af41704b62cb539f89939ec836040516116f8919061411e565b60405180910390a25050565b61170c612ce1565b6000801b600b8360405161172091906149d6565b90815260200160405180910390206003015403611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990614bd4565b60405180910390fd5b80600b8360405161178391906149d6565b908152602001604051809103902060000160006101000a81548160ff021916908360ff1602179055505050565b6117cb83838360405180602001604052806000815250612643565b505050565b6117d8612ce1565b60006040518060a001604052808760ff1681526020018660ff16815260200185815260200184815260200183815250905080600b8860405161181a91906149d6565b908152602001604051809103902060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015590505050505050505050565b61189c612ef5565b6118a4612f44565b600160028111156118b8576118b7613ec6565b5b600d60009054906101000a900460ff1660028111156118da576118d9613ec6565b5b1461191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190614cf2565b60405180910390fd5b60006040518060400160405280600281526020017f574c00000000000000000000000000000000000000000000000000000000000081525090506000611983338585600b8660405161196c91906149d6565b908152602001604051809103902060030154610e3c565b6119c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b990614d84565b60405180910390fd5b600b826040516119d291906149d6565b9081526020016040518091039020600101548560ff16600c846040516119f891906149d6565b908152602001604051809103902054611a119190614dd3565b1115611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990614e79565b60405180910390fd5b600b82604051611a6291906149d6565b908152602001604051809103902060000160009054906101000a900460ff1660ff168560ff161115611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac090614f0b565b60405180910390fd5b600b82604051611ad991906149d6565b908152602001604051809103902060000160009054906101000a900460ff1660ff1685600f84604051611b0c91906149d6565b908152602001604051809103902060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b6f9190614f2b565b60ff161115611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614ff8565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115611c85578460ff16600b83604051611c1f91906149d6565b908152602001604051809103902060020154611c3b9190615018565b905080341015611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c77906150cc565b60405180910390fd5b611e3d565b60018560ff1603611d27576000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d19906150cc565b60405180910390fd5b611de3565b60018560ff161115611de257600b82604051611d4391906149d6565b908152602001604051809103902060000160019054906101000a900460ff1685611d6d91906150ec565b60ff16600b83604051611d8091906149d6565b908152602001604051809103902060020154611d9c9190615018565b905080341015611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd8906150cc565b60405180910390fd5b5b5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505b611e48828683612f8e565b5050611e526131f7565b505050565b6000600860149054906101000a900460ff16905090565b60118181548110611e7e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611eb882612d5f565b9050919050565b611ec7612ce1565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f38576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611f91612ce1565b611f9b6000613201565b565b611fa5612ce1565b8060139080519060200190611fbb929190613a89565b5050565b611fc7612ce1565b6000801b600b83604051611fdb91906149d6565b9081526020016040518091039020600301540361202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490614bd4565b60405180910390fd5b80600b8360405161203e91906149d6565b908152602001604051809103902060000160016101000a81548160ff021916908360ff1602179055505050565b612073612ce1565b61207b612f44565b6120836132c7565b565b61208d612ef5565b612095612f44565b600060028111156120a9576120a8613ec6565b5b600d60009054906101000a900460ff1660028111156120cb576120ca613ec6565b5b0361210b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210290614cf2565b60405180910390fd5b60006040518060400160405280600681526020017f5055424c494300000000000000000000000000000000000000000000000000008152509050600b8160405161215591906149d6565b908152602001604051809103902060000160009054906101000a900460ff1660ff168260ff1611156121bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b390614f0b565b60405180910390fd5b600b816040516121cc91906149d6565b908152602001604051809103902060000160009054906101000a900460ff1660ff1682600f836040516121ff91906149d6565b908152602001604051809103902060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122629190614f2b565b60ff1611156122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d90614ff8565b60405180910390fd5b600160028111156122ba576122b9613ec6565b5b600d60009054906101000a900460ff1660028111156122dc576122db613ec6565b5b0361237257600b816040516122f191906149d6565b9081526020016040518091039020600101548260ff16600c8360405161231791906149d6565b9081526020016040518091039020546123309190614dd3565b1115612371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236890614e79565b60405180910390fd5b5b60008260ff16600b8360405161238891906149d6565b9081526020016040518091039020600201546123a49190615018565b9050803410156123e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e0906150cc565b60405180910390fd5b6123f4828483612f8e565b50506123fe6131f7565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461243a90614a88565b80601f016020809104026020016040519081016040528092919081815260200182805461246690614a88565b80156124b35780601f10612488576101008083540402835291602001916124b3565b820191906000526020600020905b81548152906001019060200180831161249657829003601f168201915b5050505050905090565b80600760006124ca612cbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612577612cbd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125bc9190613e26565b60405180910390a35050565b6125d0612ce1565b6125d8612f44565b600a548260ff166125e761332a565b6125f19190614dd3565b1115612632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126299061516d565b60405180910390fd5b61263f818360ff1661333d565b5050565b61264e848484611010565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126b0576126798484848461335b565b6126af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606126c182612c5e565b612700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f7906151ff565b60405180910390fd5b601460009054906101000a900460ff1615612756576001826127229190614dd3565b9150601261272f836134ab565b6040516020016127409291906152b7565b6040516020818303038152906040529050612816565b600060138054905083612769919061530a565b90506013818154811061277f5761277e61533b565b5b90600052602060002001805461279490614a88565b80601f01602080910402602001604051908101604052809291908181526020018280546127c090614a88565b801561280d5780601f106127e25761010080835404028352916020019161280d565b820191906000526020600020905b8154815290600101906020018083116127f057829003601f168201915b50505050509150505b919050565b612823612ce1565b6000801b600b8360405161283791906149d6565b90815260200160405180910390206003015403612889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288090614bd4565b60405180910390fd5b80600b8360405161289a91906149d6565b9081526020016040518091039020600101819055505050565b600a5481565b6128c1612ce1565b6000801b600b876040516128d591906149d6565b90815260200160405180910390206003015403612927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291e90614bd4565b60405180910390fd5b60006040518060a001604052808760ff1681526020018660ff16815260200185815260200184815260200183815250905080600b8860405161296991906149d6565b908152602001604051809103902060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015590505050505050505050565b6129eb612ce1565b80601460006101000a81548160ff0219169083151502179055508160129081612a149190615501565b50601460009054906101000a900460ff1615612a6e573373ffffffffffffffffffffffffffffffffffffffff167f2a10c355cd3f8130b128e45782d3e92e6c0b4ba2e844d06f49a48ee23f1f21f760405160405180910390a25b5050565b612a7a612ce1565b600a548160ff16612a8961332a565b612a939190614dd3565b1115612ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acb9061561f565b60405180910390fd5b612ae1338260ff1661333d565b3373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d077740826000604051612b2a92919061567a565b60405180910390a250565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612bd1612ce1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3790615715565b60405180910390fd5b612c4981613201565b50565b612c54612ce1565b612c5c613579565b565b600081612c69612cdc565b11158015612c78575060005482105b8015612cb6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600082612cd285846135dc565b1490509392505050565b600090565b612ce9613632565b73ffffffffffffffffffffffffffffffffffffffff16612d07612401565b73ffffffffffffffffffffffffffffffffffffffff1614612d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5490615781565b60405180910390fd5b565b60008082905080612d6e612cdc565b11612df457600054811015612df35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612df1575b60008103612de7576004600083600190039350838152602001908152602001600020549050612dbd565b8092505050612e26565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612eb386868461363a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095403612f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f31906157ed565b60405180910390fd5b6002600981905550565b612f4c611e57565b15612f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8390615859565b60405180910390fd5b565b600a548260ff16612f9d61332a565b612fa79190614dd3565b1115612fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdf906158c5565b60405180910390fd5b60008260ff161161302e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302590615957565b60405180910390fd5b61303b338360ff1661333d565b8160ff16600c8460405161304f91906149d6565b9081526020016040518091039020600082825461306c9190614dd3565b9250508190555081600f8460405161308491906149d6565b908152602001604051809103902060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166130ea9190614f2b565b92506101000a81548160ff021916908360ff1602179055506011339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d07774083836040516131ad929190615977565b60405180910390a2600a546131c061332a565b106131f2577f52df9fe5b9c9a7b0b4fdc2c9f89387959e35e4209c2a8d133a2b8165edad2a0460405160405180910390a15b505050565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132cf612f44565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613313613632565b604051613320919061406b565b60405180910390a1565b6000613334612cdc565b60005403905090565b613357828260405180602001604052806000815250613643565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613381612cbd565b8786866040518563ffffffff1660e01b81526004016133a394939291906159f5565b6020604051808303816000875af19250505080156133df57506040513d601f19601f820116820180604052508101906133dc9190615a56565b60015b613458573d806000811461340f576040519150601f19603f3d011682016040523d82523d6000602084013e613414565b606091505b506000815103613450576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600060016134ba846136e0565b01905060008167ffffffffffffffff8111156134d9576134d8613b92565b5b6040519080825280601f01601f19166020018201604052801561350b5781602001600182028036833780820191505090505b509050600082602001820190505b60011561356e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581613562576135616152db565b5b04945060008503613519575b819350505050919050565b613581613833565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6135c5613632565b6040516135d2919061406b565b60405180910390a1565b60008082905060005b845181101561362757613612828683815181106136055761360461533b565b5b602002602001015161387c565b9150808061361f90615a83565b9150506135e5565b508091505092915050565b600033905090565b60009392505050565b61364d83836138a7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146136db57600080549050600083820390505b61368d600086838060010194508661335b565b6136c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061367a5781600054146136d857600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061373e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381613734576137336152db565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061377b576d04ee2d6d415b85acef81000000008381613771576137706152db565b5b0492506020810190505b662386f26fc1000083106137aa57662386f26fc1000083816137a05761379f6152db565b5b0492506010810190505b6305f5e10083106137d3576305f5e10083816137c9576137c86152db565b5b0492506008810190505b61271083106137f85761271083816137ee576137ed6152db565b5b0492506004810190505b6064831061381b5760648381613811576138106152db565b5b0492506002810190505b600a831061382a576001810190505b80915050919050565b61383b611e57565b61387a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387190615b17565b60405180910390fd5b565b60008183106138945761388f8284613a62565b61389f565b61389e8383613a62565b5b905092915050565b600080549050600082036138e7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138f46000848385612e96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061396b8361395c6000866000612e9c565b61396585613a79565b17612ec4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613a0c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506139d1565b5060008203613a47576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613a5d6000848385612eef565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054828255906000526020600020908101928215613ad1579160200282015b82811115613ad0578251829081613ac09190615501565b5091602001919060010190613aa9565b5b509050613ade9190613ae2565b5090565b5b80821115613b025760008181613af99190613b06565b50600101613ae3565b5090565b508054613b1290614a88565b6000825580601f10613b245750613b43565b601f016020900490600052602060002090810190613b429190613b46565b5b50565b5b80821115613b5f576000816000905550600101613b47565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bca82613b81565b810181811067ffffffffffffffff82111715613be957613be8613b92565b5b80604052505050565b6000613bfc613b63565b9050613c088282613bc1565b919050565b600067ffffffffffffffff821115613c2857613c27613b92565b5b613c3182613b81565b9050602081019050919050565b82818337600083830152505050565b6000613c60613c5b84613c0d565b613bf2565b905082815260208101848484011115613c7c57613c7b613b7c565b5b613c87848285613c3e565b509392505050565b600082601f830112613ca457613ca3613b77565b5b8135613cb4848260208601613c4d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ce882613cbd565b9050919050565b613cf881613cdd565b8114613d0357600080fd5b50565b600081359050613d1581613cef565b92915050565b600080fd5b600080fd5b60008083601f840112613d3b57613d3a613b77565b5b8235905067ffffffffffffffff811115613d5857613d57613d1b565b5b602083019150836020820283011115613d7457613d73613d20565b5b9250929050565b60008060008060608587031215613d9557613d94613b6d565b5b600085013567ffffffffffffffff811115613db357613db2613b72565b5b613dbf87828801613c8f565b9450506020613dd087828801613d06565b935050604085013567ffffffffffffffff811115613df157613df0613b72565b5b613dfd87828801613d25565b925092505092959194509250565b60008115159050919050565b613e2081613e0b565b82525050565b6000602082019050613e3b6000830184613e17565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e7681613e41565b8114613e8157600080fd5b50565b600081359050613e9381613e6d565b92915050565b600060208284031215613eaf57613eae613b6d565b5b6000613ebd84828501613e84565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613f0657613f05613ec6565b5b50565b6000819050613f1782613ef5565b919050565b6000613f2782613f09565b9050919050565b613f3781613f1c565b82525050565b6000602082019050613f526000830184613f2e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f92578082015181840152602081019050613f77565b60008484015250505050565b6000613fa982613f58565b613fb38185613f63565b9350613fc3818560208601613f74565b613fcc81613b81565b840191505092915050565b60006020820190508181036000830152613ff18184613f9e565b905092915050565b6000819050919050565b61400c81613ff9565b811461401757600080fd5b50565b60008135905061402981614003565b92915050565b60006020828403121561404557614044613b6d565b5b60006140538482850161401a565b91505092915050565b61406581613cdd565b82525050565b6000602082019050614080600083018461405c565b92915050565b6000806040838503121561409d5761409c613b6d565b5b60006140ab85828601613d06565b92505060206140bc8582860161401a565b9150509250929050565b6000602082840312156140dc576140db613b6d565b5b600082013567ffffffffffffffff8111156140fa576140f9613b72565b5b61410684828501613c8f565b91505092915050565b61411881613ff9565b82525050565b6000602082019050614133600083018461410f565b92915050565b6000819050919050565b61414c81614139565b811461415757600080fd5b50565b60008135905061416981614143565b92915050565b6000806000806060858703121561418957614188613b6d565b5b600061419787828801613d06565b945050602085013567ffffffffffffffff8111156141b8576141b7613b72565b5b6141c487828801613d25565b935093505060406141d78782880161415a565b91505092959194509250565b600080604083850312156141fa576141f9613b6d565b5b600083013567ffffffffffffffff81111561421857614217613b72565b5b61422485828601613c8f565b925050602061423585828601613d06565b9150509250929050565b600060ff82169050919050565b6142558161423f565b82525050565b6000602082019050614270600083018461424c565b92915050565b6000806040838503121561428d5761428c613b6d565b5b600083013567ffffffffffffffff8111156142ab576142aa613b72565b5b6142b785828601613c8f565b92505060206142c88582860161415a565b9150509250929050565b6000602082840312156142e8576142e7613b6d565b5b60006142f684828501613d06565b91505092915050565b6000606082019050614314600083018661410f565b614321602083018561410f565b61432e604083018461424c565b949350505050565b60008060006060848603121561434f5761434e613b6d565b5b600061435d86828701613d06565b935050602061436e86828701613d06565b925050604061437f8682870161401a565b9150509250925092565b600080604083850312156143a05761439f613b6d565b5b600083013567ffffffffffffffff8111156143be576143bd613b72565b5b6143ca85828601613c8f565b92505060206143db8582860161401a565b9150509250929050565b600060c0820190506143fa600083018961424c565b614407602083018861424c565b614414604083018761410f565b614421606083018661410f565b61442e608083018561410f565b61443b60a083018461424c565b979650505050505050565b61444f8161423f565b811461445a57600080fd5b50565b60008135905061446c81614446565b92915050565b60006020828403121561448857614487613b6d565b5b60006144968482850161445d565b91505092915050565b600080604083850312156144b6576144b5613b6d565b5b600083013567ffffffffffffffff8111156144d4576144d3613b72565b5b6144e085828601613c8f565b92505060206144f18582860161445d565b9150509250929050565b60008060008060008060c0878903121561451857614517613b6d565b5b600087013567ffffffffffffffff81111561453657614535613b72565b5b61454289828a01613c8f565b965050602061455389828a0161445d565b955050604061456489828a0161445d565b945050606061457589828a0161401a565b935050608061458689828a0161401a565b92505060a061459789828a0161415a565b9150509295509295509295565b6000806000604084860312156145bd576145bc613b6d565b5b60006145cb8682870161445d565b935050602084013567ffffffffffffffff8111156145ec576145eb613b72565b5b6145f886828701613d25565b92509250509250925092565b600067ffffffffffffffff82111561461f5761461e613b92565b5b602082029050602081019050919050565b600061464361463e84614604565b613bf2565b9050808382526020820190506020840283018581111561466657614665613d20565b5b835b818110156146ad57803567ffffffffffffffff81111561468b5761468a613b77565b5b8086016146988982613c8f565b85526020850194505050602081019050614668565b5050509392505050565b600082601f8301126146cc576146cb613b77565b5b81356146dc848260208601614630565b91505092915050565b6000602082840312156146fb576146fa613b6d565b5b600082013567ffffffffffffffff81111561471957614718613b72565b5b614725848285016146b7565b91505092915050565b61473781613e0b565b811461474257600080fd5b50565b6000813590506147548161472e565b92915050565b6000806040838503121561477157614770613b6d565b5b600061477f85828601613d06565b925050602061479085828601614745565b9150509250929050565b600080604083850312156147b1576147b0613b6d565b5b60006147bf8582860161445d565b92505060206147d085828601613d06565b9150509250929050565b600067ffffffffffffffff8211156147f5576147f4613b92565b5b6147fe82613b81565b9050602081019050919050565b600061481e614819846147da565b613bf2565b90508281526020810184848401111561483a57614839613b7c565b5b614845848285613c3e565b509392505050565b600082601f83011261486257614861613b77565b5b813561487284826020860161480b565b91505092915050565b6000806000806080858703121561489557614894613b6d565b5b60006148a387828801613d06565b94505060206148b487828801613d06565b93505060406148c58782880161401a565b925050606085013567ffffffffffffffff8111156148e6576148e5613b72565b5b6148f28782880161484d565b91505092959194509250565b6000806040838503121561491557614914613b6d565b5b600083013567ffffffffffffffff81111561493357614932613b72565b5b61493f85828601613c8f565b925050602061495085828601614745565b9150509250929050565b6000806040838503121561497157614970613b6d565b5b600061497f85828601613d06565b925050602061499085828601613d06565b9150509250929050565b600081905092915050565b60006149b082613f58565b6149ba818561499a565b93506149ca818560208601613f74565b80840191505092915050565b60006149e282846149a5565b915081905092915050565b7f4552524f523a204d696e7465722054797065206e6f7420666f756e642e000000600082015250565b6000614a23601d83613f63565b9150614a2e826149ed565b602082019050919050565b60006020820190508181036000830152614a5281614a16565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614aa057607f821691505b602082108103614ab357614ab2614a59565b5b50919050565b60008160601b9050919050565b6000614ad182614ab9565b9050919050565b6000614ae382614ac6565b9050919050565b614afb614af682613cdd565b614ad8565b82525050565b6000614b0d8284614aea565b60148201915081905092915050565b7f4552524f523a204d696e74657273496e666f206e6f7420666f756e642e000000600082015250565b6000614b52601d83613f63565b9150614b5d82614b1c565b602082019050919050565b60006020820190508181036000830152614b8181614b45565b9050919050565b7f4d696e74657273496e666f206e6f7420666f756e642e00000000000000000000600082015250565b6000614bbe601683613f63565b9150614bc982614b88565b602082019050919050565b60006020820190508181036000830152614bed81614bb1565b9050919050565b7f4552524f523a204e6f2062616c616e636520746f2077697468647261772e0000600082015250565b6000614c2a601e83613f63565b9150614c3582614bf4565b602082019050919050565b60006020820190508181036000830152614c5981614c1d565b9050919050565b600081905092915050565b50565b6000614c7b600083614c60565b9150614c8682614c6b565b600082019050919050565b6000614c9c82614c6e565b9150819050919050565b7f4552524f523a204d696e74206973206e6f74206163746976652e000000000000600082015250565b6000614cdc601a83613f63565b9150614ce782614ca6565b602082019050919050565b60006020820190508181036000830152614d0b81614ccf565b9050919050565b7f4552524f523a20596f7520617265206e6f7420616c6c6f77656420746f206d6960008201527f6e74206f6e20746869732070686173652e000000000000000000000000000000602082015250565b6000614d6e603183613f63565b9150614d7982614d12565b604082019050919050565b60006020820190508181036000830152614d9d81614d61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614dde82613ff9565b9150614de983613ff9565b9250828201905080821115614e0157614e00614da4565b5b92915050565b7f4552524f523a204d6178696d756d206e756d626572206f66206d696e7473206f60008201527f6e207468697320706861736520686173206265656e2072656163686564000000602082015250565b6000614e63603d83613f63565b9150614e6e82614e07565b604082019050919050565b60006020820190508181036000830152614e9281614e56565b9050919050565b7f4552524f523a204d6178696d756d206e756d626572206f66206d696e7473207060008201527f6572207472616e73616374696f6e206578636565646564000000000000000000602082015250565b6000614ef5603783613f63565b9150614f0082614e99565b604082019050919050565b60006020820190508181036000830152614f2481614ee8565b9050919050565b6000614f368261423f565b9150614f418361423f565b9250828201905060ff811115614f5a57614f59614da4565b5b92915050565b7f4552524f523a20596f7572206d6178696d756d204e4654206d696e742070657260008201527f2077616c6c6574206f6e207468697320706861736520686173206265656e207260208201527f6561636865642e00000000000000000000000000000000000000000000000000604082015250565b6000614fe2604783613f63565b9150614fed82614f60565b606082019050919050565b6000602082019050818103600083015261501181614fd5565b9050919050565b600061502382613ff9565b915061502e83613ff9565b925082820261503c81613ff9565b9150828204841483151761505357615052614da4565b5b5092915050565b7f4552524f523a20596f7520646f206e6f74206861766520656e6f75676820667560008201527f6e647320746f206d696e742e0000000000000000000000000000000000000000602082015250565b60006150b6602c83613f63565b91506150c18261505a565b604082019050919050565b600060208201905081810360008301526150e5816150a9565b9050919050565b60006150f78261423f565b91506151028361423f565b9250828203905060ff81111561511b5761511a614da4565b5b92915050565b7f4552524f523a204e6f7420656e6f75676820746f6b656e73206c656674000000600082015250565b6000615157601d83613f63565b915061516282615121565b602082019050919050565b600060208201905081810360008301526151868161514a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006151e9602f83613f63565b91506151f48261518d565b604082019050919050565b60006020820190508181036000830152615218816151dc565b9050919050565b60008190508160005260206000209050919050565b6000815461524181614a88565b61524b818661499a565b94506001821660008114615266576001811461527b576152ae565b60ff19831686528115158202860193506152ae565b6152848561521f565b60005b838110156152a657815481890152600182019150602081019050615287565b838801955050505b50505092915050565b60006152c38285615234565b91506152cf82846149a5565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061531582613ff9565b915061532083613ff9565b9250826153305761532f6152db565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020601f8301049050919050565b600082821b905092915050565b6000600883026153b77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261537a565b6153c1868361537a565b95508019841693508086168417925050509392505050565b6000819050919050565b60006153fe6153f96153f484613ff9565b6153d9565b613ff9565b9050919050565b6000819050919050565b615418836153e3565b61542c61542482615405565b848454615387565b825550505050565b600090565b615441615434565b61544c81848461540f565b505050565b5b8181101561547057615465600082615439565b600181019050615452565b5050565b601f8211156154b5576154868161521f565b61548f8461536a565b8101602085101561549e578190505b6154b26154aa8561536a565b830182615451565b50505b505050565b600082821c905092915050565b60006154d8600019846008026154ba565b1980831691505092915050565b60006154f183836154c7565b9150826002028217905092915050565b61550a82613f58565b67ffffffffffffffff81111561552357615522613b92565b5b61552d8254614a88565b615538828285615474565b600060209050601f83116001811461556b5760008415615559578287015190505b61556385826154e5565b8655506155cb565b601f1984166155798661521f565b60005b828110156155a15784890151825560018201915060208501945060208101905061557c565b868310156155be57848901516155ba601f8916826154c7565b8355505b6001600288020188555050505b505050505050565b7f4552524f523a204e6f7420656e6f75676820746f6b656e730000000000000000600082015250565b6000615609601883613f63565b9150615614826155d3565b602082019050919050565b60006020820190508181036000830152615638816155fc565b9050919050565b6000819050919050565b600061566461565f61565a8461563f565b6153d9565b613ff9565b9050919050565b61567481615649565b82525050565b600060408201905061568f600083018561424c565b61569c602083018461566b565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006156ff602683613f63565b915061570a826156a3565b604082019050919050565b6000602082019050818103600083015261572e816156f2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061576b602083613f63565b915061577682615735565b602082019050919050565b6000602082019050818103600083015261579a8161575e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006157d7601f83613f63565b91506157e2826157a1565b602082019050919050565b60006020820190508181036000830152615806816157ca565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000615843601083613f63565b915061584e8261580d565b602082019050919050565b6000602082019050818103600083015261587281615836565b9050919050565b7f4552524f523a204e6f20746f6b656e73206c65667420746f206d696e74000000600082015250565b60006158af601d83613f63565b91506158ba82615879565b602082019050919050565b600060208201905081810360008301526158de816158a2565b9050919050565b7f4552524f523a204e756d626572206f6620746f6b656e732073686f756c64206260008201527f652067726561746572207468616e207a65726f00000000000000000000000000602082015250565b6000615941603383613f63565b915061594c826158e5565b604082019050919050565b6000602082019050818103600083015261597081615934565b9050919050565b600060408201905061598c600083018561424c565b615999602083018461410f565b9392505050565b600081519050919050565b600082825260208201905092915050565b60006159c7826159a0565b6159d181856159ab565b93506159e1818560208601613f74565b6159ea81613b81565b840191505092915050565b6000608082019050615a0a600083018761405c565b615a17602083018661405c565b615a24604083018561410f565b8181036060830152615a3681846159bc565b905095945050505050565b600081519050615a5081613e6d565b92915050565b600060208284031215615a6c57615a6b613b6d565b5b6000615a7a84828501615a41565b91505092915050565b6000615a8e82613ff9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615ac057615abf614da4565b5b600182019050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000615b01601483613f63565b9150615b0c82615acb565b602082019050919050565b60006020820190508181036000830152615b3081615af4565b905091905056fea2646970667358221220480508f5296696688848f5ba445aca3ff5a72a49908baa5247e47693e4e554a264736f6c63430008120033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.