ETH Price: $2,982.53 (+2.19%)
Gas: 11 Gwei

Token

DEGEN FOREST (DEGENAPE)
 

Overview

Max Total Supply

450 DEGENAPE

Holders

164

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Fake_Phishing180613
Balance
6 DEGENAPE
0xe42e42eb06266d2fab1b8e539792efe26a4c3c2d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Here at Degen Forest see NFTs as more than just kick-ass art. DEGEN FOREST mission is to bring cutting-edge technology to the masses, creating a world where everyone can thrive in a safe and secure digital environment.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DEGEN

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

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

//██████╗ ███████╗ ██████╗ ███████╗███╗   ██╗
//██╔══██╗██╔════╝██╔════╝ ██╔════╝████╗  ██║
//██║  ██║█████╗  ██║  ███╗█████╗  ██╔██╗ ██║
//██║  ██║██╔══╝  ██║   ██║██╔══╝  ██║╚██╗██║
//██████╔╝███████╗╚██████╔╝███████╗██║ ╚████║
//╚═════╝ ╚══════╝ ╚═════╝ ╚══════╝╚═╝  ╚═══╝
//███████╗ ██████╗ ██████╗ ███████╗███████╗████████╗
//██╔════╝██╔═══██╗██╔══██╗██╔════╝██╔════╝╚══██╔══╝
//█████╗  ██║   ██║██████╔╝█████╗  ███████╗   ██║
//██╔══╝  ██║   ██║██╔══██╗██╔══╝  ╚════██║   ██║
//██║     ╚██████╔╝██║  ██║███████╗███████║   ██║
//╚═╝      ╚═════╝ ╚═╝  ╚═╝╚══════╝╚══════╝   ╚═╝

// ERC721A Smart Contract & Web3 Technology

pragma solidity ^0.8.4;
pragma abicoder v2;

import "./ERC721A.sol"; //
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import {DefaultOperatorFilterer} from "./DefaultOperatorFilterer.sol";

contract DEGEN is ERC721A, Ownable, DefaultOperatorFilterer  {
  using SafeMath for uint256;
	using Strings for uint256;
    bytes32 public merkleRoot;
    bytes32 public vipMerkleRoot;
    uint256 public MAX_SUPPLY= 10000; //
	  uint256 public MAX_WL_SUPPLY = 8000; //
    uint256 public MAX_VIPWL_SUPPLY = 2000; //
    uint256 public WL_PRICE = 0.045 ether;
    uint256 public VIPWL_PRICE = 0.04 ether;
    uint256 public PRICE = 0.045 ether;
    uint256 public giveawayLimit = 500;
    string public baseTokenURI;
    bool public whitelistSaleIsActive;
    bool public saleIsActive;
    address private wallet1 = 0x8f62c10037329B576AEF1a0C6072FA5357731f26; // DFDAO 50%
    address private wallet2 = 0x1540d7B801fdBBC3aEE892A151ba860Ea859d5D1; // P2PCASH DAO 50%
    address public Authorized = 0x7a29d9a21A45E269F1bFFFa15a84c16BA0050E27; // Dev Wallet for Testing (no percentage)

    uint256 public maxPurchase = 3;
    uint256 public maxWLPurchase = 1;
    uint256 public maxVIPPurchase = 1;
	  uint256 public maxTxWL = 1;
	  uint256 public maxTxVIP = 1;
    uint256 public maxTx = 3;

    constructor() ERC721A("DEGEN FOREST", "DEGENAPE") {}

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    modifier onlyAuthorized {
        require(msg.sender == owner() || msg.sender == Authorized , "Not authorized");
        _;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function flipSaleState() external onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipWhitelistSaleState() external onlyOwner {
        whitelistSaleIsActive = !whitelistSaleIsActive;
    }

    function updateMerkleRoot(bytes32 newMerkleRoot) external onlyOwner {
        merkleRoot = newMerkleRoot;
    }

    function updateVIPMerkleRoot(bytes32 newMerkleRoot) external onlyOwner {
        vipMerkleRoot = newMerkleRoot;
    }

	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, tokenId.toString(),".json")) : "";
    }

	function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function whitelistMint(uint256 numberOfTokens, bytes32[] calldata merkleProof ) payable external callerIsUser {
        require(whitelistSaleIsActive, "Whitelist Sale must be active to mint");
        require(totalSupply().add(numberOfTokens) <= MAX_WL_SUPPLY, "Total WL Supply has been minted");
        require(numberOfTokens > 0 && numberOfTokens <= maxTxWL, "Can only mint upto 1 NFTs in a transaction");
        require(msg.value == WL_PRICE.mul(numberOfTokens), "Ether value sent is not correct");
        require(numberMinted(msg.sender).add(numberOfTokens) <= maxWLPurchase,"Exceeds Max mints allowed per whitelisted wallet");

        // Verify the merkle proof
        require(MerkleProof.verify(merkleProof, merkleRoot,  keccak256(abi.encodePacked(msg.sender))  ), "Invalid proof");

		_safeMint(msg.sender, numberOfTokens);
    }

    function vipMint(uint256 numberOfTokens, bytes32[] calldata merkleProof ) payable external callerIsUser {
        require(whitelistSaleIsActive, "Whitelist Sale must be active to mint");
        require(totalSupply().add(numberOfTokens) <= MAX_VIPWL_SUPPLY, "Total VIPWL Supply has been minted");
        require(numberOfTokens > 0 && numberOfTokens <= maxTxVIP, "Can only mint max NFTs in a transaction");
        require(msg.value == VIPWL_PRICE.mul(numberOfTokens), "Ether value sent is not correct");
        require(numberMinted(msg.sender).add(numberOfTokens) <= maxVIPPurchase,"Exceeds Max mints allowed per whitelisted wallet");

        // Verify the merkle proof
        require(MerkleProof.verify(merkleProof, vipMerkleRoot,  keccak256(abi.encodePacked(msg.sender))  ), "Invalid proof");

		_safeMint(msg.sender, numberOfTokens);
    }

    function mint(uint256 numberOfTokens) external payable callerIsUser {
        require(saleIsActive, "Sale must be active to mint");
        require(totalSupply().add(numberOfTokens) <= MAX_SUPPLY, "Total Supply has been minted");
        require(msg.value == PRICE.mul(numberOfTokens), "Ether value sent is not correct");
		require(numberOfTokens > 0 && numberOfTokens <= maxTx, "1 pTX allowed");
        require(numberMinted(msg.sender).add(numberOfTokens) <= maxPurchase,"Exceeds Max mints allowed per wallet");

        _safeMint(msg.sender, numberOfTokens);
    }

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

	    function withdrawAll() external onlyOwner {
        require(address(this).balance > 0, "No balance");
        uint256 _amount = address(this).balance;
        (bool wallet1Success, ) = wallet1.call{value: _amount.mul(50).div(100)}("");
        (bool wallet2Success, ) = wallet2.call{value: _amount.mul(50).div(100)}("");
        require(wallet1Success && wallet2Success, "Withdrawal failed.");
    }

    function giveAway(uint256 numberOfTokens, address to) external onlyOwner {
        require(giveawayLimit.sub(numberOfTokens) >= 0,"Giveaways exhausted");
        _safeMint(to, numberOfTokens);
        giveawayLimit = giveawayLimit.sub(numberOfTokens);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function setMaxSupply(uint256 _mxSupply) public onlyAuthorized {
        MAX_SUPPLY = _mxSupply;
    }

    function setWLMaxSupply(uint256 _mxWLSupply) public onlyAuthorized {
        MAX_WL_SUPPLY = _mxWLSupply;
    }

    function setVIPMaxSupply(uint256 _mxVIPSupply) public onlyAuthorized {
        MAX_VIPWL_SUPPLY = _mxVIPSupply;
    }

    function setPriceWL(uint256 _wlPrice) public onlyAuthorized {
        WL_PRICE = _wlPrice;
    }

    function setPriceVIPWL(uint256 _vipwlPrice) public onlyAuthorized {
        VIPWL_PRICE = _vipwlPrice;
    }

    function setPrice(uint256 _price) public onlyAuthorized {
        PRICE = _price;
    }

    function setMaxTxLimit(uint256 _txLimit) public onlyAuthorized {
        maxTx = _txLimit;
    }

	function setMaxTxWL(uint256 _txLimit) public onlyAuthorized {
        maxTxWL = _txLimit;
    }

	function setMaxTxVIP(uint256 _txLimit) public onlyAuthorized {
        maxTxVIP = _txLimit;
    }

    function setMaxPurchaseLimit(uint256 _limit) public onlyAuthorized {
        maxPurchase = _limit;
    }

    function setMaxWLPurchaseLimit(uint256 _limit) public onlyAuthorized {
        maxWLPurchase = _limit;
    }

    function setMaxVIPPurchaseLimit(uint256 _limit) public onlyAuthorized {
        maxVIPPurchase = _limit;
    }

    /*
  --Opensea Filterer--
  */

        function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
            super.transferFrom(from, to, tokenId);
        }

        function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
            super.safeTransferFrom(from, to, tokenId);
        }

        function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
            public
            override
            onlyAllowedOperator(from)
        {
            super.safeTransferFrom(from, to, tokenId, data);
        }

}

File 2 of 17 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 3 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.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 `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);
    }
}

File 4 of 17 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (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 rebuild 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 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 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 for 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) {
            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 rebuild 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 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 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 for 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) {
            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 5 of 17 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 7 of 17 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary 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 {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

File 10 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 13 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

File 14 of 17 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

File 15 of 17 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 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 10, 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 * 8) < value ? 1 : 0);
        }
    }
}

File 16 of 17 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

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

pragma solidity ^0.8.0;

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

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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Authorized","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_VIPWL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VIPWL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giveawayLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxVIP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxVIPPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_txLimit","type":"uint256"}],"name":"setMaxTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_txLimit","type":"uint256"}],"name":"setMaxTxVIP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_txLimit","type":"uint256"}],"name":"setMaxTxWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxVIPPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxWLPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_vipwlPrice","type":"uint256"}],"name":"setPriceVIPWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlPrice","type":"uint256"}],"name":"setPriceWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mxVIPSupply","type":"uint256"}],"name":"setVIPMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mxWLSupply","type":"uint256"}],"name":"setWLMaxSupply","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"updateVIPMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vipMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"vipMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600b55611f40600c556107d0600d55669fdf42f6e48000600e55668e1bc9bf040000600f55669fdf42f6e480006010556101f4601155738f62c10037329b576aef1a0c6072fa5357731f26601360026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731540d7b801fdbbc3aee892a151ba860ea859d5d1601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a29d9a21a45e269f1bfffa15a84c16ba0050e27601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060036016556001601755600160185560016019556001601a556003601b553480156200016757600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600c81526020017f444547454e20464f5245535400000000000000000000000000000000000000008152506040518060400160405280600881526020017f444547454e4150450000000000000000000000000000000000000000000000008152508160029081620001fc919062000795565b5080600390816200020e919062000795565b506200021f6200044460201b60201c565b6000819055505050620002476200023b6200044d60201b60201c565b6200045560201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200043c57801562000302576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002c8929190620008c1565b600060405180830381600087803b158015620002e357600080fd5b505af1158015620002f8573d6000803e3d6000fd5b505050506200043b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620003bc576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000382929190620008c1565b600060405180830381600087803b1580156200039d57600080fd5b505af1158015620003b2573d6000803e3d6000fd5b505050506200043a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620004059190620008ee565b600060405180830381600087803b1580156200042057600080fd5b505af115801562000435573d6000803e3d6000fd5b505050505b5b5b50506200090b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200059d57607f821691505b602082108103620005b357620005b262000555565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200061d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005de565b620006298683620005de565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000676620006706200066a8462000641565b6200064b565b62000641565b9050919050565b6000819050919050565b620006928362000655565b620006aa620006a1826200067d565b848454620005eb565b825550505050565b600090565b620006c1620006b2565b620006ce81848462000687565b505050565b5b81811015620006f657620006ea600082620006b7565b600181019050620006d4565b5050565b601f82111562000745576200070f81620005b9565b6200071a84620005ce565b810160208510156200072a578190505b620007426200073985620005ce565b830182620006d3565b50505b505050565b600082821c905092915050565b60006200076a600019846008026200074a565b1980831691505092915050565b600062000785838362000757565b9150826002028217905092915050565b620007a0826200051b565b67ffffffffffffffff811115620007bc57620007bb62000526565b5b620007c8825462000584565b620007d5828285620006fa565b600060209050601f8311600181146200080d5760008415620007f8578287015190505b62000804858262000777565b86555062000874565b601f1984166200081d86620005b9565b60005b82811015620008475784890151825560018201915060208501945060208101905062000820565b8683101562000867578489015162000863601f89168262000757565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008a9826200087c565b9050919050565b620008bb816200089c565b82525050565b6000604082019050620008d86000830185620008b0565b620008e76020830184620008b0565b9392505050565b6000602082019050620009056000830184620008b0565b92915050565b615f26806200091b6000396000f3fe6080604052600436106103975760003560e01c8063853828b6116101dc578063b53cff0f11610102578063d547cfb7116100a0578063ea64f7dd1161006f578063ea64f7dd14610cc9578063eacfc0ae14610cf2578063eb8d244414610d1d578063f2fde38b14610d4857610397565b8063d547cfb714610bf9578063db37faaf14610c24578063dc33e68114610c4f578063e985e9c514610c8c57610397565b8063c87b56dd116100dc578063c87b56dd14610b60578063c9d9b9f514610b9d578063d1beca6414610bc6578063d2cab05614610bdd57610397565b8063b53cff0f14610ae3578063b88d4fde14610b0c578063c56acc8f14610b3557610397565b806395d89b411161017a578063a22cb46511610149578063a22cb46514610a3d578063a29f1f6414610a66578063a64a281a14610a91578063adc5636f14610aba57610397565b806395d89b41146109a0578063977b055b146109cb5780639db7863f146109f6578063a0712d6814610a2157610397565b80638d859f3e116101b65780638d859f3e146108f85780638da5cb5b146109235780638f3a89cf1461094e57806391b7f5ed1461097757610397565b8063853828b61461089c57806387ea9f21146108b357806388ef0018146108dc57610397565b806345e313aa116102c15780636895f1ca1161025f578063715018a61161022e578063715018a61461080657806372a1056c1461081d5780637437681e1461084857806381d8488f1461087357610397565b80636895f1ca1461074c5780636d181fe6146107755780636f8b44b0146107a057806370a08231146107c957610397565b806355f804b31161029b57806355f804b31461069257806358ae3c54146106bb5780636352211e146106e657806364f5a5bb1461072357610397565b806345e313aa146106155780634783f0ef1461063e5780634f8f591b1461066757610397565b8063261d3b211161033957806334918dfd1161030857806334918dfd146105935780633ccfd60b146105aa5780633f676c50146105c157806342842e0e146105ec57610397565b8063261d3b21146104e95780632eb4a7ab1461051257806331c3c7a01461053d57806332cb6b0c1461056857610397565b8063095ea7b311610375578063095ea7b31461044157806310b5454d1461046a57806318160ddd1461049557806323b872dd146104c057610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be91906146e1565b610d71565b6040516103d09190614729565b60405180910390f35b3480156103e557600080fd5b506103ee610e53565b6040516103fb91906147d4565b60405180910390f35b34801561041057600080fd5b5061042b6004803603810190610426919061482c565b610ee5565b604051610438919061489a565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906148e1565b610f61565b005b34801561047657600080fd5b5061047f61106b565b60405161048c9190614729565b60405180910390f35b3480156104a157600080fd5b506104aa61107e565b6040516104b79190614930565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e2919061494b565b611095565b005b3480156104f557600080fd5b50610510600480360381019061050b919061499e565b611277565b005b34801561051e57600080fd5b50610527611300565b60405161053491906149f7565b60405180910390f35b34801561054957600080fd5b50610552611306565b60405161055f9190614930565b60405180910390f35b34801561057457600080fd5b5061057d61130c565b60405161058a9190614930565b60405180910390f35b34801561059f57600080fd5b506105a8611312565b005b3480156105b657600080fd5b506105bf611346565b005b3480156105cd57600080fd5b506105d661139d565b6040516105e39190614930565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e919061494b565b6113a3565b005b34801561062157600080fd5b5061063c6004803603810190610637919061482c565b611585565b005b34801561064a57600080fd5b5061066560048036038101906106609190614a3e565b61165c565b005b34801561067357600080fd5b5061067c61166e565b6040516106899190614930565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190614ba0565b611674565b005b3480156106c757600080fd5b506106d061168f565b6040516106dd9190614930565b60405180910390f35b3480156106f257600080fd5b5061070d6004803603810190610708919061482c565b611695565b60405161071a919061489a565b60405180910390f35b34801561072f57600080fd5b5061074a6004803603810190610745919061482c565b6116ab565b005b34801561075857600080fd5b50610773600480360381019061076e919061482c565b611782565b005b34801561078157600080fd5b5061078a611859565b6040516107979190614930565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c2919061482c565b61185f565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190614be9565b611936565b6040516107fd9190614930565b60405180910390f35b34801561081257600080fd5b5061081b611a05565b005b34801561082957600080fd5b50610832611a19565b60405161083f91906149f7565b60405180910390f35b34801561085457600080fd5b5061085d611a1f565b60405161086a9190614930565b60405180910390f35b34801561087f57600080fd5b5061089a6004803603810190610895919061482c565b611a25565b005b3480156108a857600080fd5b506108b1611afc565b005b3480156108bf57600080fd5b506108da60048036038101906108d5919061482c565b611d02565b005b6108f660048036038101906108f19190614c76565b611dd9565b005b34801561090457600080fd5b5061090d6120bc565b60405161091a9190614930565b60405180910390f35b34801561092f57600080fd5b506109386120c2565b604051610945919061489a565b60405180910390f35b34801561095a57600080fd5b506109756004803603810190610970919061482c565b6120ec565b005b34801561098357600080fd5b5061099e6004803603810190610999919061482c565b6121c3565b005b3480156109ac57600080fd5b506109b561229a565b6040516109c291906147d4565b60405180910390f35b3480156109d757600080fd5b506109e061232c565b6040516109ed9190614930565b60405180910390f35b348015610a0257600080fd5b50610a0b612332565b604051610a189190614930565b60405180910390f35b610a3b6004803603810190610a36919061482c565b612338565b005b348015610a4957600080fd5b50610a646004803603810190610a5f9190614d02565b612566565b005b348015610a7257600080fd5b50610a7b6126dd565b604051610a889190614930565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab3919061482c565b6126e3565b005b348015610ac657600080fd5b50610ae16004803603810190610adc919061482c565b6127ba565b005b348015610aef57600080fd5b50610b0a6004803603810190610b05919061482c565b612891565b005b348015610b1857600080fd5b50610b336004803603810190610b2e9190614de3565b612968565b005b348015610b4157600080fd5b50610b4a612b4d565b604051610b579190614930565b60405180910390f35b348015610b6c57600080fd5b50610b876004803603810190610b82919061482c565b612b53565b604051610b9491906147d4565b60405180910390f35b348015610ba957600080fd5b50610bc46004803603810190610bbf9190614a3e565b612bf1565b005b348015610bd257600080fd5b50610bdb612c03565b005b610bf76004803603810190610bf29190614c76565b612c37565b005b348015610c0557600080fd5b50610c0e612f1a565b604051610c1b91906147d4565b60405180910390f35b348015610c3057600080fd5b50610c39612fa8565b604051610c469190614930565b60405180910390f35b348015610c5b57600080fd5b50610c766004803603810190610c719190614be9565b612fae565b604051610c839190614930565b60405180910390f35b348015610c9857600080fd5b50610cb36004803603810190610cae9190614e66565b612fc0565b604051610cc09190614729565b60405180910390f35b348015610cd557600080fd5b50610cf06004803603810190610ceb919061482c565b613054565b005b348015610cfe57600080fd5b50610d0761312b565b604051610d14919061489a565b60405180910390f35b348015610d2957600080fd5b50610d32613151565b604051610d3f9190614729565b60405180910390f35b348015610d5457600080fd5b50610d6f6004803603810190610d6a9190614be9565b613164565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e3c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e4c5750610e4b826131e7565b5b9050919050565b606060028054610e6290614ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e90614ed5565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b5050505050905090565b6000610ef082613251565b610f26576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f6c82611695565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ff261329f565b73ffffffffffffffffffffffffffffffffffffffff161415801561102457506110228161101d61329f565b612fc0565b155b1561105b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110668383836132a7565b505050565b601360009054906101000a900460ff1681565b6000611088613359565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611265573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361110757611102848484613362565b611271565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611150929190614f06565b602060405180830381865afa15801561116d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111919190614f44565b801561122357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111e1929190614f06565b602060405180830381865afa1580156111fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112229190614f44565b5b61126457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161125b919061489a565b60405180910390fd5b5b611270848484613362565b5b50505050565b61127f613372565b6000611296836011546133f090919063ffffffff16565b10156112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90614fbd565b60405180910390fd5b6112e18183613406565b6112f6826011546133f090919063ffffffff16565b6011819055505050565b60095481565b600e5481565b600b5481565b61131a613372565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b61134e613372565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611399573d6000803e3d6000fd5b5050565b600d5481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611573573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361141557611410848484613424565b61157f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161145e929190614f06565b602060405180830381865afa15801561147b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149f9190614f44565b801561153157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016114ef929190614f06565b602060405180830381865afa15801561150c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115309190614f44565b5b61157257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611569919061489a565b60405180910390fd5b5b61157e848484613424565b5b50505050565b61158d6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116135750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990615029565b60405180910390fd5b8060168190555050565b611664613372565b8060098190555050565b601a5481565b61167c613372565b806012908161168b91906151f5565b5050565b60115481565b60006116a082613444565b600001519050919050565b6116b36120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117395750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90615029565b60405180910390fd5b80601b8190555050565b61178a6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806118105750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690615029565b60405180910390fd5b8060188190555050565b60185481565b6118676120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806118ed5750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390615029565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361199d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611a0d613372565b611a1760006136d3565b565b600a5481565b601b5481565b611a2d6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611ab35750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990615029565b60405180910390fd5b80600e8190555050565b611b04613372565b60004711611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90615313565b60405180910390fd5b60004790506000601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611bae6064611ba060328661379990919063ffffffff16565b6137af90919063ffffffff16565b604051611bba90615364565b60006040518083038185875af1925050503d8060008114611bf7576040519150601f19603f3d011682016040523d82523d6000602084013e611bfc565b606091505b505090506000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c626064611c5460328761379990919063ffffffff16565b6137af90919063ffffffff16565b604051611c6e90615364565b60006040518083038185875af1925050503d8060008114611cab576040519150601f19603f3d011682016040523d82523d6000602084013e611cb0565b606091505b50509050818015611cbe5750805b611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf4906153c5565b60405180910390fd5b505050565b611d0a6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611d905750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690615029565b60405180910390fd5b8060198190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90615431565b60405180910390fd5b601360009054906101000a900460ff16611e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8d906154c3565b60405180910390fd5b600d54611eb384611ea561107e565b6137c590919063ffffffff16565b1115611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90615555565b60405180910390fd5b600083118015611f065750601a548311155b611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c906155e7565b60405180910390fd5b611f5a83600f5461379990919063ffffffff16565b3414611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290615653565b60405180910390fd5b601854611fb984611fab33612fae565b6137c590919063ffffffff16565b1115611ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff1906156e5565b60405180910390fd5b61206e828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5433604051602001612053919061574d565b604051602081830303815290604052805190602001206137db565b6120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a4906157b4565b60405180910390fd5b6120b73384613406565b505050565b60105481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120f46120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061217a5750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b090615029565b60405180910390fd5b8060178190555050565b6121cb6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806122515750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790615029565b60405180910390fd5b8060108190555050565b6060600380546122a990614ed5565b80601f01602080910402602001604051908101604052809291908181526020018280546122d590614ed5565b80156123225780601f106122f757610100808354040283529160200191612322565b820191906000526020600020905b81548152906001019060200180831161230557829003601f168201915b5050505050905090565b60165481565b60195481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d90615431565b60405180910390fd5b601360019054906101000a900460ff166123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec90615820565b60405180910390fd5b600b546124128261240461107e565b6137c590919063ffffffff16565b1115612453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244a9061588c565b60405180910390fd5b6124688160105461379990919063ffffffff16565b34146124a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a090615653565b60405180910390fd5b6000811180156124bb5750601b548111155b6124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f1906158f8565b60405180910390fd5b6016546125188261250a33612fae565b6137c590919063ffffffff16565b1115612559576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125509061598a565b60405180910390fd5b6125633382613406565b50565b61256e61329f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125d2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006125df61329f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661268c61329f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126d19190614729565b60405180910390a35050565b600f5481565b6126eb6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806127715750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a790615029565b60405180910390fd5b80601a8190555050565b6127c26120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806128485750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287e90615029565b60405180910390fd5b80600d8190555050565b6128996120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061291f5750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61295e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295590615029565b60405180910390fd5b80600c8190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612b39573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036129db576129d6858585856137f2565b612b46565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401612a24929190614f06565b602060405180830381865afa158015612a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a659190614f44565b8015612af757506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401612ab5929190614f06565b602060405180830381865afa158015612ad2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af69190614f44565b5b612b3857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401612b2f919061489a565b60405180910390fd5b5b612b45858585856137f2565b5b5050505050565b600c5481565b6060612b5e82613251565b612b94576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612b9e61386e565b90506000815111612bbe5760405180602001604052806000815250612be9565b80612bc884613900565b604051602001612bd9929190615a32565b6040516020818303038152906040525b915050919050565b612bf9613372565b80600a8190555050565b612c0b613372565b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9c90615431565b60405180910390fd5b601360009054906101000a900460ff16612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb906154c3565b60405180910390fd5b600c54612d1184612d0361107e565b6137c590919063ffffffff16565b1115612d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4990615aad565b60405180910390fd5b600083118015612d6457506019548311155b612da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9a90615b3f565b60405180910390fd5b612db883600e5461379990919063ffffffff16565b3414612df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df090615653565b60405180910390fd5b601754612e1784612e0933612fae565b6137c590919063ffffffff16565b1115612e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4f906156e5565b60405180910390fd5b612ecc828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060095433604051602001612eb1919061574d565b604051602081830303815290604052805190602001206137db565b612f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f02906157b4565b60405180910390fd5b612f153384613406565b505050565b60128054612f2790614ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054612f5390614ed5565b8015612fa05780601f10612f7557610100808354040283529160200191612fa0565b820191906000526020600020905b815481529060010190602001808311612f8357829003601f168201915b505050505081565b60175481565b6000612fb9826139ce565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61305c6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806130e25750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b613121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311890615029565b60405180910390fd5b80600f8190555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360019054906101000a900460ff1681565b61316c613372565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036131db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d290615bd1565b60405180910390fd5b6131e4816136d3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161325c613359565b1115801561326b575060005482105b8015613298575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b61336d838383613a38565b505050565b61337a61329f565b73ffffffffffffffffffffffffffffffffffffffff166133986120c2565b73ffffffffffffffffffffffffffffffffffffffff16146133ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e590615c3d565b60405180910390fd5b565b600081836133fe9190615c8c565b905092915050565b613420828260405180602001604052806000815250613eec565b5050565b61343f83838360405180602001604052806000815250612968565b505050565b61344c614632565b60008290508061345a613359565b11158015613469575060005481105b1561369c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161369a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461357e5780925050506136ce565b5b60011561369957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146136945780925050506136ce565b61357f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836137a79190615cc0565b905092915050565b600081836137bd9190615d31565b905092915050565b600081836137d39190615d62565b905092915050565b6000826137e88584613efe565b1490509392505050565b6137fd848484613a38565b61381c8373ffffffffffffffffffffffffffffffffffffffff16613f54565b8015613831575061382f84848484613f77565b155b15613868576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606012805461387d90614ed5565b80601f01602080910402602001604051908101604052809291908181526020018280546138a990614ed5565b80156138f65780601f106138cb576101008083540402835291602001916138f6565b820191906000526020600020905b8154815290600101906020018083116138d957829003601f168201915b5050505050905090565b60606000600161390f846140c7565b01905060008167ffffffffffffffff81111561392e5761392d614a75565b5b6040519080825280601f01601f1916602001820160405280156139605781602001600182028036833780820191505090505b509050600082602001820190505b6001156139c3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816139b7576139b6615d02565b5b0494506000850361396e575b819350505050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000613a4382613444565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613aae576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16613acf61329f565b73ffffffffffffffffffffffffffffffffffffffff161480613afe5750613afd85613af861329f565b612fc0565b5b80613b435750613b0c61329f565b73ffffffffffffffffffffffffffffffffffffffff16613b2b84610ee5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613b7c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613be2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613bef858585600161421a565b613bfb600084876132a7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613e7a576000548214613e7957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ee58585856001614220565b5050505050565b613ef98383836001614226565b505050565b60008082905060005b8451811015613f4957613f3482868381518110613f2757613f26615d96565b5b60200260200101516145f0565b91508080613f4190615dc5565b915050613f07565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613f9d61329f565b8786866040518563ffffffff1660e01b8152600401613fbf9493929190615e62565b6020604051808303816000875af1925050508015613ffb57506040513d601f19601f82011682018060405250810190613ff89190615ec3565b60015b614074573d806000811461402b576040519150601f19603f3d011682016040523d82523d6000602084013e614030565b606091505b50600081510361406c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310614125577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161411b5761411a615d02565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310614162576d04ee2d6d415b85acef8100000000838161415857614157615d02565b5b0492506020810190505b662386f26fc10000831061419157662386f26fc10000838161418757614186615d02565b5b0492506010810190505b6305f5e10083106141ba576305f5e10083816141b0576141af615d02565b5b0492506008810190505b61271083106141df5761271083816141d5576141d4615d02565b5b0492506004810190505b6064831061420257606483816141f8576141f7615d02565b5b0492506002810190505b600a8310614211576001810190505b80915050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603614292576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036142cc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6142d9600086838761421a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156144a357506144a28773ffffffffffffffffffffffffffffffffffffffff16613f54565b5b15614568575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46145186000888480600101955088613f77565b61454e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036144a957826000541461456357600080fd5b6145d3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203614569575b8160008190555050506145e96000868387614220565b5050505050565b600081831061460857614603828461461b565b614613565b614612838361461b565b5b905092915050565b600082600052816020526040600020905092915050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6146be81614689565b81146146c957600080fd5b50565b6000813590506146db816146b5565b92915050565b6000602082840312156146f7576146f661467f565b5b6000614705848285016146cc565b91505092915050565b60008115159050919050565b6147238161470e565b82525050565b600060208201905061473e600083018461471a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561477e578082015181840152602081019050614763565b60008484015250505050565b6000601f19601f8301169050919050565b60006147a682614744565b6147b0818561474f565b93506147c0818560208601614760565b6147c98161478a565b840191505092915050565b600060208201905081810360008301526147ee818461479b565b905092915050565b6000819050919050565b614809816147f6565b811461481457600080fd5b50565b60008135905061482681614800565b92915050565b6000602082840312156148425761484161467f565b5b600061485084828501614817565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061488482614859565b9050919050565b61489481614879565b82525050565b60006020820190506148af600083018461488b565b92915050565b6148be81614879565b81146148c957600080fd5b50565b6000813590506148db816148b5565b92915050565b600080604083850312156148f8576148f761467f565b5b6000614906858286016148cc565b925050602061491785828601614817565b9150509250929050565b61492a816147f6565b82525050565b60006020820190506149456000830184614921565b92915050565b6000806000606084860312156149645761496361467f565b5b6000614972868287016148cc565b9350506020614983868287016148cc565b925050604061499486828701614817565b9150509250925092565b600080604083850312156149b5576149b461467f565b5b60006149c385828601614817565b92505060206149d4858286016148cc565b9150509250929050565b6000819050919050565b6149f1816149de565b82525050565b6000602082019050614a0c60008301846149e8565b92915050565b614a1b816149de565b8114614a2657600080fd5b50565b600081359050614a3881614a12565b92915050565b600060208284031215614a5457614a5361467f565b5b6000614a6284828501614a29565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614aad8261478a565b810181811067ffffffffffffffff82111715614acc57614acb614a75565b5b80604052505050565b6000614adf614675565b9050614aeb8282614aa4565b919050565b600067ffffffffffffffff821115614b0b57614b0a614a75565b5b614b148261478a565b9050602081019050919050565b82818337600083830152505050565b6000614b43614b3e84614af0565b614ad5565b905082815260208101848484011115614b5f57614b5e614a70565b5b614b6a848285614b21565b509392505050565b600082601f830112614b8757614b86614a6b565b5b8135614b97848260208601614b30565b91505092915050565b600060208284031215614bb657614bb561467f565b5b600082013567ffffffffffffffff811115614bd457614bd3614684565b5b614be084828501614b72565b91505092915050565b600060208284031215614bff57614bfe61467f565b5b6000614c0d848285016148cc565b91505092915050565b600080fd5b600080fd5b60008083601f840112614c3657614c35614a6b565b5b8235905067ffffffffffffffff811115614c5357614c52614c16565b5b602083019150836020820283011115614c6f57614c6e614c1b565b5b9250929050565b600080600060408486031215614c8f57614c8e61467f565b5b6000614c9d86828701614817565b935050602084013567ffffffffffffffff811115614cbe57614cbd614684565b5b614cca86828701614c20565b92509250509250925092565b614cdf8161470e565b8114614cea57600080fd5b50565b600081359050614cfc81614cd6565b92915050565b60008060408385031215614d1957614d1861467f565b5b6000614d27858286016148cc565b9250506020614d3885828601614ced565b9150509250929050565b600067ffffffffffffffff821115614d5d57614d5c614a75565b5b614d668261478a565b9050602081019050919050565b6000614d86614d8184614d42565b614ad5565b905082815260208101848484011115614da257614da1614a70565b5b614dad848285614b21565b509392505050565b600082601f830112614dca57614dc9614a6b565b5b8135614dda848260208601614d73565b91505092915050565b60008060008060808587031215614dfd57614dfc61467f565b5b6000614e0b878288016148cc565b9450506020614e1c878288016148cc565b9350506040614e2d87828801614817565b925050606085013567ffffffffffffffff811115614e4e57614e4d614684565b5b614e5a87828801614db5565b91505092959194509250565b60008060408385031215614e7d57614e7c61467f565b5b6000614e8b858286016148cc565b9250506020614e9c858286016148cc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614eed57607f821691505b602082108103614f0057614eff614ea6565b5b50919050565b6000604082019050614f1b600083018561488b565b614f28602083018461488b565b9392505050565b600081519050614f3e81614cd6565b92915050565b600060208284031215614f5a57614f5961467f565b5b6000614f6884828501614f2f565b91505092915050565b7f4769766561776179732065786861757374656400000000000000000000000000600082015250565b6000614fa760138361474f565b9150614fb282614f71565b602082019050919050565b60006020820190508181036000830152614fd681614f9a565b9050919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000615013600e8361474f565b915061501e82614fdd565b602082019050919050565b6000602082019050818103600083015261504281615006565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026150ab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261506e565b6150b5868361506e565b95508019841693508086168417925050509392505050565b6000819050919050565b60006150f26150ed6150e8846147f6565b6150cd565b6147f6565b9050919050565b6000819050919050565b61510c836150d7565b615120615118826150f9565b84845461507b565b825550505050565b600090565b615135615128565b615140818484615103565b505050565b5b818110156151645761515960008261512d565b600181019050615146565b5050565b601f8211156151a95761517a81615049565b6151838461505e565b81016020851015615192578190505b6151a661519e8561505e565b830182615145565b50505b505050565b600082821c905092915050565b60006151cc600019846008026151ae565b1980831691505092915050565b60006151e583836151bb565b9150826002028217905092915050565b6151fe82614744565b67ffffffffffffffff81111561521757615216614a75565b5b6152218254614ed5565b61522c828285615168565b600060209050601f83116001811461525f576000841561524d578287015190505b61525785826151d9565b8655506152bf565b601f19841661526d86615049565b60005b8281101561529557848901518255600182019150602085019450602081019050615270565b868310156152b257848901516152ae601f8916826151bb565b8355505b6001600288020188555050505b505050505050565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b60006152fd600a8361474f565b9150615308826152c7565b602082019050919050565b6000602082019050818103600083015261532c816152f0565b9050919050565b600081905092915050565b50565b600061534e600083615333565b91506153598261533e565b600082019050919050565b600061536f82615341565b9150819050919050565b7f5769746864726177616c206661696c65642e0000000000000000000000000000600082015250565b60006153af60128361474f565b91506153ba82615379565b602082019050919050565b600060208201905081810360008301526153de816153a2565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b600061541b601e8361474f565b9150615426826153e5565b602082019050919050565b6000602082019050818103600083015261544a8161540e565b9050919050565b7f57686974656c6973742053616c65206d7573742062652061637469766520746f60008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b60006154ad60258361474f565b91506154b882615451565b604082019050919050565b600060208201905081810360008301526154dc816154a0565b9050919050565b7f546f74616c20564950574c20537570706c7920686173206265656e206d696e7460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061553f60228361474f565b915061554a826154e3565b604082019050919050565b6000602082019050818103600083015261556e81615532565b9050919050565b7f43616e206f6e6c79206d696e74206d6178204e46547320696e2061207472616e60008201527f73616374696f6e00000000000000000000000000000000000000000000000000602082015250565b60006155d160278361474f565b91506155dc82615575565b604082019050919050565b60006020820190508181036000830152615600816155c4565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061563d601f8361474f565b915061564882615607565b602082019050919050565b6000602082019050818103600083015261566c81615630565b9050919050565b7f45786365656473204d6178206d696e747320616c6c6f7765642070657220776860008201527f6974656c69737465642077616c6c657400000000000000000000000000000000602082015250565b60006156cf60308361474f565b91506156da82615673565b604082019050919050565b600060208201905081810360008301526156fe816156c2565b9050919050565b60008160601b9050919050565b600061571d82615705565b9050919050565b600061572f82615712565b9050919050565b61574761574282614879565b615724565b82525050565b60006157598284615736565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b600061579e600d8361474f565b91506157a982615768565b602082019050919050565b600060208201905081810360008301526157cd81615791565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b600061580a601b8361474f565b9150615815826157d4565b602082019050919050565b60006020820190508181036000830152615839816157fd565b9050919050565b7f546f74616c20537570706c7920686173206265656e206d696e74656400000000600082015250565b6000615876601c8361474f565b915061588182615840565b602082019050919050565b600060208201905081810360008301526158a581615869565b9050919050565b7f312070545820616c6c6f77656400000000000000000000000000000000000000600082015250565b60006158e2600d8361474f565b91506158ed826158ac565b602082019050919050565b60006020820190508181036000830152615911816158d5565b9050919050565b7f45786365656473204d6178206d696e747320616c6c6f7765642070657220776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b600061597460248361474f565b915061597f82615918565b604082019050919050565b600060208201905081810360008301526159a381615967565b9050919050565b600081905092915050565b60006159c082614744565b6159ca81856159aa565b93506159da818560208601614760565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000615a1c6005836159aa565b9150615a27826159e6565b600582019050919050565b6000615a3e82856159b5565b9150615a4a82846159b5565b9150615a5582615a0f565b91508190509392505050565b7f546f74616c20574c20537570706c7920686173206265656e206d696e74656400600082015250565b6000615a97601f8361474f565b9150615aa282615a61565b602082019050919050565b60006020820190508181036000830152615ac681615a8a565b9050919050565b7f43616e206f6e6c79206d696e74207570746f2031204e46547320696e2061207460008201527f72616e73616374696f6e00000000000000000000000000000000000000000000602082015250565b6000615b29602a8361474f565b9150615b3482615acd565b604082019050919050565b60006020820190508181036000830152615b5881615b1c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615bbb60268361474f565b9150615bc682615b5f565b604082019050919050565b60006020820190508181036000830152615bea81615bae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615c2760208361474f565b9150615c3282615bf1565b602082019050919050565b60006020820190508181036000830152615c5681615c1a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000615c97826147f6565b9150615ca2836147f6565b9250828203905081811115615cba57615cb9615c5d565b5b92915050565b6000615ccb826147f6565b9150615cd6836147f6565b9250828202615ce4816147f6565b91508282048414831517615cfb57615cfa615c5d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615d3c826147f6565b9150615d47836147f6565b925082615d5757615d56615d02565b5b828204905092915050565b6000615d6d826147f6565b9150615d78836147f6565b9250828201905080821115615d9057615d8f615c5d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000615dd0826147f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615e0257615e01615c5d565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000615e3482615e0d565b615e3e8185615e18565b9350615e4e818560208601614760565b615e578161478a565b840191505092915050565b6000608082019050615e77600083018761488b565b615e84602083018661488b565b615e916040830185614921565b8181036060830152615ea38184615e29565b905095945050505050565b600081519050615ebd816146b5565b92915050565b600060208284031215615ed957615ed861467f565b5b6000615ee784828501615eae565b9150509291505056fea2646970667358221220a0578191388c15618a1db882c9be7249a66e5b43ffc1d06c7f9c7ccf06b1a72d64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103975760003560e01c8063853828b6116101dc578063b53cff0f11610102578063d547cfb7116100a0578063ea64f7dd1161006f578063ea64f7dd14610cc9578063eacfc0ae14610cf2578063eb8d244414610d1d578063f2fde38b14610d4857610397565b8063d547cfb714610bf9578063db37faaf14610c24578063dc33e68114610c4f578063e985e9c514610c8c57610397565b8063c87b56dd116100dc578063c87b56dd14610b60578063c9d9b9f514610b9d578063d1beca6414610bc6578063d2cab05614610bdd57610397565b8063b53cff0f14610ae3578063b88d4fde14610b0c578063c56acc8f14610b3557610397565b806395d89b411161017a578063a22cb46511610149578063a22cb46514610a3d578063a29f1f6414610a66578063a64a281a14610a91578063adc5636f14610aba57610397565b806395d89b41146109a0578063977b055b146109cb5780639db7863f146109f6578063a0712d6814610a2157610397565b80638d859f3e116101b65780638d859f3e146108f85780638da5cb5b146109235780638f3a89cf1461094e57806391b7f5ed1461097757610397565b8063853828b61461089c57806387ea9f21146108b357806388ef0018146108dc57610397565b806345e313aa116102c15780636895f1ca1161025f578063715018a61161022e578063715018a61461080657806372a1056c1461081d5780637437681e1461084857806381d8488f1461087357610397565b80636895f1ca1461074c5780636d181fe6146107755780636f8b44b0146107a057806370a08231146107c957610397565b806355f804b31161029b57806355f804b31461069257806358ae3c54146106bb5780636352211e146106e657806364f5a5bb1461072357610397565b806345e313aa146106155780634783f0ef1461063e5780634f8f591b1461066757610397565b8063261d3b211161033957806334918dfd1161030857806334918dfd146105935780633ccfd60b146105aa5780633f676c50146105c157806342842e0e146105ec57610397565b8063261d3b21146104e95780632eb4a7ab1461051257806331c3c7a01461053d57806332cb6b0c1461056857610397565b8063095ea7b311610375578063095ea7b31461044157806310b5454d1461046a57806318160ddd1461049557806323b872dd146104c057610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be91906146e1565b610d71565b6040516103d09190614729565b60405180910390f35b3480156103e557600080fd5b506103ee610e53565b6040516103fb91906147d4565b60405180910390f35b34801561041057600080fd5b5061042b6004803603810190610426919061482c565b610ee5565b604051610438919061489a565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906148e1565b610f61565b005b34801561047657600080fd5b5061047f61106b565b60405161048c9190614729565b60405180910390f35b3480156104a157600080fd5b506104aa61107e565b6040516104b79190614930565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e2919061494b565b611095565b005b3480156104f557600080fd5b50610510600480360381019061050b919061499e565b611277565b005b34801561051e57600080fd5b50610527611300565b60405161053491906149f7565b60405180910390f35b34801561054957600080fd5b50610552611306565b60405161055f9190614930565b60405180910390f35b34801561057457600080fd5b5061057d61130c565b60405161058a9190614930565b60405180910390f35b34801561059f57600080fd5b506105a8611312565b005b3480156105b657600080fd5b506105bf611346565b005b3480156105cd57600080fd5b506105d661139d565b6040516105e39190614930565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e919061494b565b6113a3565b005b34801561062157600080fd5b5061063c6004803603810190610637919061482c565b611585565b005b34801561064a57600080fd5b5061066560048036038101906106609190614a3e565b61165c565b005b34801561067357600080fd5b5061067c61166e565b6040516106899190614930565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190614ba0565b611674565b005b3480156106c757600080fd5b506106d061168f565b6040516106dd9190614930565b60405180910390f35b3480156106f257600080fd5b5061070d6004803603810190610708919061482c565b611695565b60405161071a919061489a565b60405180910390f35b34801561072f57600080fd5b5061074a6004803603810190610745919061482c565b6116ab565b005b34801561075857600080fd5b50610773600480360381019061076e919061482c565b611782565b005b34801561078157600080fd5b5061078a611859565b6040516107979190614930565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c2919061482c565b61185f565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190614be9565b611936565b6040516107fd9190614930565b60405180910390f35b34801561081257600080fd5b5061081b611a05565b005b34801561082957600080fd5b50610832611a19565b60405161083f91906149f7565b60405180910390f35b34801561085457600080fd5b5061085d611a1f565b60405161086a9190614930565b60405180910390f35b34801561087f57600080fd5b5061089a6004803603810190610895919061482c565b611a25565b005b3480156108a857600080fd5b506108b1611afc565b005b3480156108bf57600080fd5b506108da60048036038101906108d5919061482c565b611d02565b005b6108f660048036038101906108f19190614c76565b611dd9565b005b34801561090457600080fd5b5061090d6120bc565b60405161091a9190614930565b60405180910390f35b34801561092f57600080fd5b506109386120c2565b604051610945919061489a565b60405180910390f35b34801561095a57600080fd5b506109756004803603810190610970919061482c565b6120ec565b005b34801561098357600080fd5b5061099e6004803603810190610999919061482c565b6121c3565b005b3480156109ac57600080fd5b506109b561229a565b6040516109c291906147d4565b60405180910390f35b3480156109d757600080fd5b506109e061232c565b6040516109ed9190614930565b60405180910390f35b348015610a0257600080fd5b50610a0b612332565b604051610a189190614930565b60405180910390f35b610a3b6004803603810190610a36919061482c565b612338565b005b348015610a4957600080fd5b50610a646004803603810190610a5f9190614d02565b612566565b005b348015610a7257600080fd5b50610a7b6126dd565b604051610a889190614930565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab3919061482c565b6126e3565b005b348015610ac657600080fd5b50610ae16004803603810190610adc919061482c565b6127ba565b005b348015610aef57600080fd5b50610b0a6004803603810190610b05919061482c565b612891565b005b348015610b1857600080fd5b50610b336004803603810190610b2e9190614de3565b612968565b005b348015610b4157600080fd5b50610b4a612b4d565b604051610b579190614930565b60405180910390f35b348015610b6c57600080fd5b50610b876004803603810190610b82919061482c565b612b53565b604051610b9491906147d4565b60405180910390f35b348015610ba957600080fd5b50610bc46004803603810190610bbf9190614a3e565b612bf1565b005b348015610bd257600080fd5b50610bdb612c03565b005b610bf76004803603810190610bf29190614c76565b612c37565b005b348015610c0557600080fd5b50610c0e612f1a565b604051610c1b91906147d4565b60405180910390f35b348015610c3057600080fd5b50610c39612fa8565b604051610c469190614930565b60405180910390f35b348015610c5b57600080fd5b50610c766004803603810190610c719190614be9565b612fae565b604051610c839190614930565b60405180910390f35b348015610c9857600080fd5b50610cb36004803603810190610cae9190614e66565b612fc0565b604051610cc09190614729565b60405180910390f35b348015610cd557600080fd5b50610cf06004803603810190610ceb919061482c565b613054565b005b348015610cfe57600080fd5b50610d0761312b565b604051610d14919061489a565b60405180910390f35b348015610d2957600080fd5b50610d32613151565b604051610d3f9190614729565b60405180910390f35b348015610d5457600080fd5b50610d6f6004803603810190610d6a9190614be9565b613164565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e3c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e4c5750610e4b826131e7565b5b9050919050565b606060028054610e6290614ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e90614ed5565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b5050505050905090565b6000610ef082613251565b610f26576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f6c82611695565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ff261329f565b73ffffffffffffffffffffffffffffffffffffffff161415801561102457506110228161101d61329f565b612fc0565b155b1561105b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110668383836132a7565b505050565b601360009054906101000a900460ff1681565b6000611088613359565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611265573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361110757611102848484613362565b611271565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611150929190614f06565b602060405180830381865afa15801561116d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111919190614f44565b801561122357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111e1929190614f06565b602060405180830381865afa1580156111fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112229190614f44565b5b61126457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161125b919061489a565b60405180910390fd5b5b611270848484613362565b5b50505050565b61127f613372565b6000611296836011546133f090919063ffffffff16565b10156112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90614fbd565b60405180910390fd5b6112e18183613406565b6112f6826011546133f090919063ffffffff16565b6011819055505050565b60095481565b600e5481565b600b5481565b61131a613372565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b61134e613372565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611399573d6000803e3d6000fd5b5050565b600d5481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611573573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361141557611410848484613424565b61157f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161145e929190614f06565b602060405180830381865afa15801561147b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149f9190614f44565b801561153157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016114ef929190614f06565b602060405180830381865afa15801561150c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115309190614f44565b5b61157257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611569919061489a565b60405180910390fd5b5b61157e848484613424565b5b50505050565b61158d6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116135750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990615029565b60405180910390fd5b8060168190555050565b611664613372565b8060098190555050565b601a5481565b61167c613372565b806012908161168b91906151f5565b5050565b60115481565b60006116a082613444565b600001519050919050565b6116b36120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117395750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90615029565b60405180910390fd5b80601b8190555050565b61178a6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806118105750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690615029565b60405180910390fd5b8060188190555050565b60185481565b6118676120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806118ed5750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390615029565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361199d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611a0d613372565b611a1760006136d3565b565b600a5481565b601b5481565b611a2d6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611ab35750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990615029565b60405180910390fd5b80600e8190555050565b611b04613372565b60004711611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90615313565b60405180910390fd5b60004790506000601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611bae6064611ba060328661379990919063ffffffff16565b6137af90919063ffffffff16565b604051611bba90615364565b60006040518083038185875af1925050503d8060008114611bf7576040519150601f19603f3d011682016040523d82523d6000602084013e611bfc565b606091505b505090506000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c626064611c5460328761379990919063ffffffff16565b6137af90919063ffffffff16565b604051611c6e90615364565b60006040518083038185875af1925050503d8060008114611cab576040519150601f19603f3d011682016040523d82523d6000602084013e611cb0565b606091505b50509050818015611cbe5750805b611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf4906153c5565b60405180910390fd5b505050565b611d0a6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611d905750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690615029565b60405180910390fd5b8060198190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90615431565b60405180910390fd5b601360009054906101000a900460ff16611e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8d906154c3565b60405180910390fd5b600d54611eb384611ea561107e565b6137c590919063ffffffff16565b1115611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90615555565b60405180910390fd5b600083118015611f065750601a548311155b611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c906155e7565b60405180910390fd5b611f5a83600f5461379990919063ffffffff16565b3414611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290615653565b60405180910390fd5b601854611fb984611fab33612fae565b6137c590919063ffffffff16565b1115611ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff1906156e5565b60405180910390fd5b61206e828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5433604051602001612053919061574d565b604051602081830303815290604052805190602001206137db565b6120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a4906157b4565b60405180910390fd5b6120b73384613406565b505050565b60105481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120f46120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061217a5750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b090615029565b60405180910390fd5b8060178190555050565b6121cb6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806122515750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790615029565b60405180910390fd5b8060108190555050565b6060600380546122a990614ed5565b80601f01602080910402602001604051908101604052809291908181526020018280546122d590614ed5565b80156123225780601f106122f757610100808354040283529160200191612322565b820191906000526020600020905b81548152906001019060200180831161230557829003601f168201915b5050505050905090565b60165481565b60195481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d90615431565b60405180910390fd5b601360019054906101000a900460ff166123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec90615820565b60405180910390fd5b600b546124128261240461107e565b6137c590919063ffffffff16565b1115612453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244a9061588c565b60405180910390fd5b6124688160105461379990919063ffffffff16565b34146124a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a090615653565b60405180910390fd5b6000811180156124bb5750601b548111155b6124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f1906158f8565b60405180910390fd5b6016546125188261250a33612fae565b6137c590919063ffffffff16565b1115612559576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125509061598a565b60405180910390fd5b6125633382613406565b50565b61256e61329f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125d2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006125df61329f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661268c61329f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126d19190614729565b60405180910390a35050565b600f5481565b6126eb6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806127715750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a790615029565b60405180910390fd5b80601a8190555050565b6127c26120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806128485750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287e90615029565b60405180910390fd5b80600d8190555050565b6128996120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061291f5750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61295e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295590615029565b60405180910390fd5b80600c8190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612b39573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036129db576129d6858585856137f2565b612b46565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401612a24929190614f06565b602060405180830381865afa158015612a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a659190614f44565b8015612af757506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401612ab5929190614f06565b602060405180830381865afa158015612ad2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af69190614f44565b5b612b3857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401612b2f919061489a565b60405180910390fd5b5b612b45858585856137f2565b5b5050505050565b600c5481565b6060612b5e82613251565b612b94576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612b9e61386e565b90506000815111612bbe5760405180602001604052806000815250612be9565b80612bc884613900565b604051602001612bd9929190615a32565b6040516020818303038152906040525b915050919050565b612bf9613372565b80600a8190555050565b612c0b613372565b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9c90615431565b60405180910390fd5b601360009054906101000a900460ff16612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb906154c3565b60405180910390fd5b600c54612d1184612d0361107e565b6137c590919063ffffffff16565b1115612d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4990615aad565b60405180910390fd5b600083118015612d6457506019548311155b612da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9a90615b3f565b60405180910390fd5b612db883600e5461379990919063ffffffff16565b3414612df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df090615653565b60405180910390fd5b601754612e1784612e0933612fae565b6137c590919063ffffffff16565b1115612e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4f906156e5565b60405180910390fd5b612ecc828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060095433604051602001612eb1919061574d565b604051602081830303815290604052805190602001206137db565b612f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f02906157b4565b60405180910390fd5b612f153384613406565b505050565b60128054612f2790614ed5565b80601f0160208091040260200160405190810160405280929190818152602001828054612f5390614ed5565b8015612fa05780601f10612f7557610100808354040283529160200191612fa0565b820191906000526020600020905b815481529060010190602001808311612f8357829003601f168201915b505050505081565b60175481565b6000612fb9826139ce565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61305c6120c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806130e25750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b613121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311890615029565b60405180910390fd5b80600f8190555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360019054906101000a900460ff1681565b61316c613372565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036131db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d290615bd1565b60405180910390fd5b6131e4816136d3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161325c613359565b1115801561326b575060005482105b8015613298575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b61336d838383613a38565b505050565b61337a61329f565b73ffffffffffffffffffffffffffffffffffffffff166133986120c2565b73ffffffffffffffffffffffffffffffffffffffff16146133ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e590615c3d565b60405180910390fd5b565b600081836133fe9190615c8c565b905092915050565b613420828260405180602001604052806000815250613eec565b5050565b61343f83838360405180602001604052806000815250612968565b505050565b61344c614632565b60008290508061345a613359565b11158015613469575060005481105b1561369c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161369a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461357e5780925050506136ce565b5b60011561369957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146136945780925050506136ce565b61357f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836137a79190615cc0565b905092915050565b600081836137bd9190615d31565b905092915050565b600081836137d39190615d62565b905092915050565b6000826137e88584613efe565b1490509392505050565b6137fd848484613a38565b61381c8373ffffffffffffffffffffffffffffffffffffffff16613f54565b8015613831575061382f84848484613f77565b155b15613868576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606012805461387d90614ed5565b80601f01602080910402602001604051908101604052809291908181526020018280546138a990614ed5565b80156138f65780601f106138cb576101008083540402835291602001916138f6565b820191906000526020600020905b8154815290600101906020018083116138d957829003601f168201915b5050505050905090565b60606000600161390f846140c7565b01905060008167ffffffffffffffff81111561392e5761392d614a75565b5b6040519080825280601f01601f1916602001820160405280156139605781602001600182028036833780820191505090505b509050600082602001820190505b6001156139c3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816139b7576139b6615d02565b5b0494506000850361396e575b819350505050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000613a4382613444565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613aae576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16613acf61329f565b73ffffffffffffffffffffffffffffffffffffffff161480613afe5750613afd85613af861329f565b612fc0565b5b80613b435750613b0c61329f565b73ffffffffffffffffffffffffffffffffffffffff16613b2b84610ee5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613b7c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613be2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613bef858585600161421a565b613bfb600084876132a7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613e7a576000548214613e7957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ee58585856001614220565b5050505050565b613ef98383836001614226565b505050565b60008082905060005b8451811015613f4957613f3482868381518110613f2757613f26615d96565b5b60200260200101516145f0565b91508080613f4190615dc5565b915050613f07565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613f9d61329f565b8786866040518563ffffffff1660e01b8152600401613fbf9493929190615e62565b6020604051808303816000875af1925050508015613ffb57506040513d601f19601f82011682018060405250810190613ff89190615ec3565b60015b614074573d806000811461402b576040519150601f19603f3d011682016040523d82523d6000602084013e614030565b606091505b50600081510361406c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310614125577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161411b5761411a615d02565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310614162576d04ee2d6d415b85acef8100000000838161415857614157615d02565b5b0492506020810190505b662386f26fc10000831061419157662386f26fc10000838161418757614186615d02565b5b0492506010810190505b6305f5e10083106141ba576305f5e10083816141b0576141af615d02565b5b0492506008810190505b61271083106141df5761271083816141d5576141d4615d02565b5b0492506004810190505b6064831061420257606483816141f8576141f7615d02565b5b0492506002810190505b600a8310614211576001810190505b80915050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603614292576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036142cc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6142d9600086838761421a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156144a357506144a28773ffffffffffffffffffffffffffffffffffffffff16613f54565b5b15614568575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46145186000888480600101955088613f77565b61454e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036144a957826000541461456357600080fd5b6145d3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203614569575b8160008190555050506145e96000868387614220565b5050505050565b600081831061460857614603828461461b565b614613565b614612838361461b565b5b905092915050565b600082600052816020526040600020905092915050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6146be81614689565b81146146c957600080fd5b50565b6000813590506146db816146b5565b92915050565b6000602082840312156146f7576146f661467f565b5b6000614705848285016146cc565b91505092915050565b60008115159050919050565b6147238161470e565b82525050565b600060208201905061473e600083018461471a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561477e578082015181840152602081019050614763565b60008484015250505050565b6000601f19601f8301169050919050565b60006147a682614744565b6147b0818561474f565b93506147c0818560208601614760565b6147c98161478a565b840191505092915050565b600060208201905081810360008301526147ee818461479b565b905092915050565b6000819050919050565b614809816147f6565b811461481457600080fd5b50565b60008135905061482681614800565b92915050565b6000602082840312156148425761484161467f565b5b600061485084828501614817565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061488482614859565b9050919050565b61489481614879565b82525050565b60006020820190506148af600083018461488b565b92915050565b6148be81614879565b81146148c957600080fd5b50565b6000813590506148db816148b5565b92915050565b600080604083850312156148f8576148f761467f565b5b6000614906858286016148cc565b925050602061491785828601614817565b9150509250929050565b61492a816147f6565b82525050565b60006020820190506149456000830184614921565b92915050565b6000806000606084860312156149645761496361467f565b5b6000614972868287016148cc565b9350506020614983868287016148cc565b925050604061499486828701614817565b9150509250925092565b600080604083850312156149b5576149b461467f565b5b60006149c385828601614817565b92505060206149d4858286016148cc565b9150509250929050565b6000819050919050565b6149f1816149de565b82525050565b6000602082019050614a0c60008301846149e8565b92915050565b614a1b816149de565b8114614a2657600080fd5b50565b600081359050614a3881614a12565b92915050565b600060208284031215614a5457614a5361467f565b5b6000614a6284828501614a29565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614aad8261478a565b810181811067ffffffffffffffff82111715614acc57614acb614a75565b5b80604052505050565b6000614adf614675565b9050614aeb8282614aa4565b919050565b600067ffffffffffffffff821115614b0b57614b0a614a75565b5b614b148261478a565b9050602081019050919050565b82818337600083830152505050565b6000614b43614b3e84614af0565b614ad5565b905082815260208101848484011115614b5f57614b5e614a70565b5b614b6a848285614b21565b509392505050565b600082601f830112614b8757614b86614a6b565b5b8135614b97848260208601614b30565b91505092915050565b600060208284031215614bb657614bb561467f565b5b600082013567ffffffffffffffff811115614bd457614bd3614684565b5b614be084828501614b72565b91505092915050565b600060208284031215614bff57614bfe61467f565b5b6000614c0d848285016148cc565b91505092915050565b600080fd5b600080fd5b60008083601f840112614c3657614c35614a6b565b5b8235905067ffffffffffffffff811115614c5357614c52614c16565b5b602083019150836020820283011115614c6f57614c6e614c1b565b5b9250929050565b600080600060408486031215614c8f57614c8e61467f565b5b6000614c9d86828701614817565b935050602084013567ffffffffffffffff811115614cbe57614cbd614684565b5b614cca86828701614c20565b92509250509250925092565b614cdf8161470e565b8114614cea57600080fd5b50565b600081359050614cfc81614cd6565b92915050565b60008060408385031215614d1957614d1861467f565b5b6000614d27858286016148cc565b9250506020614d3885828601614ced565b9150509250929050565b600067ffffffffffffffff821115614d5d57614d5c614a75565b5b614d668261478a565b9050602081019050919050565b6000614d86614d8184614d42565b614ad5565b905082815260208101848484011115614da257614da1614a70565b5b614dad848285614b21565b509392505050565b600082601f830112614dca57614dc9614a6b565b5b8135614dda848260208601614d73565b91505092915050565b60008060008060808587031215614dfd57614dfc61467f565b5b6000614e0b878288016148cc565b9450506020614e1c878288016148cc565b9350506040614e2d87828801614817565b925050606085013567ffffffffffffffff811115614e4e57614e4d614684565b5b614e5a87828801614db5565b91505092959194509250565b60008060408385031215614e7d57614e7c61467f565b5b6000614e8b858286016148cc565b9250506020614e9c858286016148cc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614eed57607f821691505b602082108103614f0057614eff614ea6565b5b50919050565b6000604082019050614f1b600083018561488b565b614f28602083018461488b565b9392505050565b600081519050614f3e81614cd6565b92915050565b600060208284031215614f5a57614f5961467f565b5b6000614f6884828501614f2f565b91505092915050565b7f4769766561776179732065786861757374656400000000000000000000000000600082015250565b6000614fa760138361474f565b9150614fb282614f71565b602082019050919050565b60006020820190508181036000830152614fd681614f9a565b9050919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000615013600e8361474f565b915061501e82614fdd565b602082019050919050565b6000602082019050818103600083015261504281615006565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026150ab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261506e565b6150b5868361506e565b95508019841693508086168417925050509392505050565b6000819050919050565b60006150f26150ed6150e8846147f6565b6150cd565b6147f6565b9050919050565b6000819050919050565b61510c836150d7565b615120615118826150f9565b84845461507b565b825550505050565b600090565b615135615128565b615140818484615103565b505050565b5b818110156151645761515960008261512d565b600181019050615146565b5050565b601f8211156151a95761517a81615049565b6151838461505e565b81016020851015615192578190505b6151a661519e8561505e565b830182615145565b50505b505050565b600082821c905092915050565b60006151cc600019846008026151ae565b1980831691505092915050565b60006151e583836151bb565b9150826002028217905092915050565b6151fe82614744565b67ffffffffffffffff81111561521757615216614a75565b5b6152218254614ed5565b61522c828285615168565b600060209050601f83116001811461525f576000841561524d578287015190505b61525785826151d9565b8655506152bf565b601f19841661526d86615049565b60005b8281101561529557848901518255600182019150602085019450602081019050615270565b868310156152b257848901516152ae601f8916826151bb565b8355505b6001600288020188555050505b505050505050565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b60006152fd600a8361474f565b9150615308826152c7565b602082019050919050565b6000602082019050818103600083015261532c816152f0565b9050919050565b600081905092915050565b50565b600061534e600083615333565b91506153598261533e565b600082019050919050565b600061536f82615341565b9150819050919050565b7f5769746864726177616c206661696c65642e0000000000000000000000000000600082015250565b60006153af60128361474f565b91506153ba82615379565b602082019050919050565b600060208201905081810360008301526153de816153a2565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b600061541b601e8361474f565b9150615426826153e5565b602082019050919050565b6000602082019050818103600083015261544a8161540e565b9050919050565b7f57686974656c6973742053616c65206d7573742062652061637469766520746f60008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b60006154ad60258361474f565b91506154b882615451565b604082019050919050565b600060208201905081810360008301526154dc816154a0565b9050919050565b7f546f74616c20564950574c20537570706c7920686173206265656e206d696e7460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061553f60228361474f565b915061554a826154e3565b604082019050919050565b6000602082019050818103600083015261556e81615532565b9050919050565b7f43616e206f6e6c79206d696e74206d6178204e46547320696e2061207472616e60008201527f73616374696f6e00000000000000000000000000000000000000000000000000602082015250565b60006155d160278361474f565b91506155dc82615575565b604082019050919050565b60006020820190508181036000830152615600816155c4565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b600061563d601f8361474f565b915061564882615607565b602082019050919050565b6000602082019050818103600083015261566c81615630565b9050919050565b7f45786365656473204d6178206d696e747320616c6c6f7765642070657220776860008201527f6974656c69737465642077616c6c657400000000000000000000000000000000602082015250565b60006156cf60308361474f565b91506156da82615673565b604082019050919050565b600060208201905081810360008301526156fe816156c2565b9050919050565b60008160601b9050919050565b600061571d82615705565b9050919050565b600061572f82615712565b9050919050565b61574761574282614879565b615724565b82525050565b60006157598284615736565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b600061579e600d8361474f565b91506157a982615768565b602082019050919050565b600060208201905081810360008301526157cd81615791565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b600061580a601b8361474f565b9150615815826157d4565b602082019050919050565b60006020820190508181036000830152615839816157fd565b9050919050565b7f546f74616c20537570706c7920686173206265656e206d696e74656400000000600082015250565b6000615876601c8361474f565b915061588182615840565b602082019050919050565b600060208201905081810360008301526158a581615869565b9050919050565b7f312070545820616c6c6f77656400000000000000000000000000000000000000600082015250565b60006158e2600d8361474f565b91506158ed826158ac565b602082019050919050565b60006020820190508181036000830152615911816158d5565b9050919050565b7f45786365656473204d6178206d696e747320616c6c6f7765642070657220776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b600061597460248361474f565b915061597f82615918565b604082019050919050565b600060208201905081810360008301526159a381615967565b9050919050565b600081905092915050565b60006159c082614744565b6159ca81856159aa565b93506159da818560208601614760565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000615a1c6005836159aa565b9150615a27826159e6565b600582019050919050565b6000615a3e82856159b5565b9150615a4a82846159b5565b9150615a5582615a0f565b91508190509392505050565b7f546f74616c20574c20537570706c7920686173206265656e206d696e74656400600082015250565b6000615a97601f8361474f565b9150615aa282615a61565b602082019050919050565b60006020820190508181036000830152615ac681615a8a565b9050919050565b7f43616e206f6e6c79206d696e74207570746f2031204e46547320696e2061207460008201527f72616e73616374696f6e00000000000000000000000000000000000000000000602082015250565b6000615b29602a8361474f565b9150615b3482615acd565b604082019050919050565b60006020820190508181036000830152615b5881615b1c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615bbb60268361474f565b9150615bc682615b5f565b604082019050919050565b60006020820190508181036000830152615bea81615bae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615c2760208361474f565b9150615c3282615bf1565b602082019050919050565b60006020820190508181036000830152615c5681615c1a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000615c97826147f6565b9150615ca2836147f6565b9250828203905081811115615cba57615cb9615c5d565b5b92915050565b6000615ccb826147f6565b9150615cd6836147f6565b9250828202615ce4816147f6565b91508282048414831517615cfb57615cfa615c5d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615d3c826147f6565b9150615d47836147f6565b925082615d5757615d56615d02565b5b828204905092915050565b6000615d6d826147f6565b9150615d78836147f6565b9250828201905080821115615d9057615d8f615c5d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000615dd0826147f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615e0257615e01615c5d565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000615e3482615e0d565b615e3e8185615e18565b9350615e4e818560208601614760565b615e578161478a565b840191505092915050565b6000608082019050615e77600083018761488b565b615e84602083018661488b565b615e916040830185614921565b8181036060830152615ea38184615e29565b905095945050505050565b600081519050615ebd816146b5565b92915050565b600060208284031215615ed957615ed861467f565b5b6000615ee784828501615eae565b9150509291505056fea2646970667358221220a0578191388c15618a1db882c9be7249a66e5b43ffc1d06c7f9c7ccf06b1a72d64736f6c63430008120033

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.