ETH Price: $2,590.35 (-2.55%)

Token

TextApe (TEXTAPE)
 

Overview

Max Total Supply

320 TEXTAPE

Holders

166

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TEXTAPE
0x984f886c37990086c3a292aee8dceb1c37cf3d71
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TextApes

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : TextApes.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract TextApes is ERC721A, Ownable {

    constructor() ERC721A("TextApe", "TEXTAPE") {}

    string private _uri;

    bytes32 public root;

    uint constant public maxSupply = 10000;
    uint public price = 0.009 ether;
    uint public maxFreePerWallet = 1;
    uint public maxFreeMintCount = 6500;
    uint public freeMintCount = 0;
    uint public maxFeeMintPerWallet = 5;

    bool public paused = false;
    bool public presaleM = false;
    bool public publicM = false;
    
 
    // ---------------------------------------------------------------------------------------------
    // MAPPINGS
    // ---------------------------------------------------------------------------------------------

    mapping(address => uint) public freeMinted; 
    mapping(address => uint) public feeMinted; 

    // ---------------------------------------------------------------------------------------------
    // OWNER SETTERS
    // ---------------------------------------------------------------------------------------------

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

    function setMaxFeeMintCount(uint _count) external onlyOwner {
        maxFeeMintPerWallet = _count;
    }

    function setMaxFreePerWallet(uint amount) external onlyOwner {
        maxFreePerWallet = amount;
    }

    function togglePause() public onlyOwner {
        paused = !paused;
    }

    function togglePresale() public onlyOwner {
        presaleM = !presaleM;
        if (publicM) {
            publicM = !publicM;
        }
    }

    function togglePublicSale() public onlyOwner {
        publicM = !publicM;
        if (presaleM) {
            presaleM = !presaleM;
        }
    }

    function setPrice(uint amount) external onlyOwner {
        price = amount;
    }
    
    function setBaseURI(string calldata uri_) external onlyOwner {
        _uri = uri_;
    }

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

    function setMerkleRoot(bytes32 merkleroot) external onlyOwner {
        root = merkleroot;
    }

    modifier isValidMerkleProof(bytes32[] calldata _proof) {
         require(MerkleProof.verify(
            _proof,
            root,
            keccak256(abi.encodePacked(msg.sender))
            ) == true, "Not allowed origin");
        _;
   }

    function devMint(uint256 amount) external onlyOwner {
        require(amount > 0, "AMOUNT_ERROR!");
        require((_totalMinted() + amount) <= maxSupply, "NOT_ENOUGH_TOKENS");
        _safeMint(msg.sender, amount);
    }

    function airdrop(address[] calldata addrs, uint256 amount) external onlyOwner {
        require(amount > 0, "AMOUNT_ERROR!");
        require((_totalMinted() + amount * addrs.length) <= maxSupply, "NOT_ENOUGH_TOKENS");

        for (uint i = 0; i < addrs.length; i++) {
            _safeMint(addrs[i], amount);
        }
    }

    function presaleMint(address account, uint256 amount, bytes32[] calldata _proof) external payable isValidMerkleProof(_proof) {
        require(msg.sender == account, "ACCOUNT_NOT_ALLOWED");
        require(amount > 0, "AMOUNT_ERROR!");
        require(!paused, "SALE_NOT_ACTIVE!");
        require(presaleM, "SALE_NOT_ACTIVE!");
        require(tx.origin == msg.sender, "NOT_ALLOW_CONTRACT_CALL!");
        require((_totalMinted() + amount) <= maxSupply, "NOT_ENOUGH_TOKENS!");
        if (freeMinted[msg.sender] + amount <= maxFreePerWallet && freeMintCount + amount <= maxFreeMintCount) {
            // free mint
            freeMintCount += amount;
            _safeMint(msg.sender, amount);
            freeMinted[msg.sender] += amount;
        } else {
            require(feeMinted[msg.sender] + amount <= maxFeeMintPerWallet, "OUT_OF_MAX_PER_WALLET");
            require(amount * price <= msg.value, "NOT_ENOUGH_MONEY!");
            _safeMint(msg.sender, amount);
            feeMinted[msg.sender] += amount;
        }
    }

    function mint(uint256 amount) external payable {
        require(amount > 0, "AMOUNT_ERROR!");
        require(!paused, "SALE_NOT_ACTIVE!");
        require(publicM, "SALE_NOT_ACTIVE!");
        require(tx.origin == msg.sender, "NOT_ALLOW_CONTRACT_CALL!");
        require((_totalMinted() + amount) <= maxSupply, "NOT_ENOUGH_TOKENS!");
        if (freeMinted[msg.sender] + amount <= maxFreePerWallet && freeMintCount + amount <= maxFreeMintCount) {
            // free mint
            freeMintCount += amount;
            _safeMint(msg.sender, amount);
            freeMinted[msg.sender] += amount;
        } else {
            require(feeMinted[msg.sender] + amount <= maxFeeMintPerWallet, "OUT_OF_MAX_PER_WALLET");
            require(amount * price <= msg.value, "NOT_ENOUGH_MONEY!");
            _safeMint(msg.sender, amount);
            feeMinted[msg.sender] += amount;
        }
    }

    function burn(uint256 tokenId) external {
        _burn(tokenId, true);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

File 2 of 6 : 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 3 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address.
    mapping(uint256 => 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();
    }

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

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

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

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));

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

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

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 offset;
            do {
                emit Transfer(address(0), to, startTokenId + offset++);
            } while (offset < quantity);

            _currentIndex = startTokenId + quantity;
        }
        _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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

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

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

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

    /**
     * @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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

File 4 of 6 : 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 5 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

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

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

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

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

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

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

    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;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","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":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFeeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxFeeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleroot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052661ff973cafa8000600b556001600c55611964600d556000600e556005600f556010805462ffffff191690553480156200003d57600080fd5b50604051806040016040528060078152602001665465787441706560c81b815250604051806040016040528060078152602001665445585441504560c81b81525081600290816200008f9190620001ad565b5060036200009e8282620001ad565b50506000805550620000b033620000b6565b62000279565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013357607f821691505b6020821081036200015457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a857600081815260208120601f850160051c81016020861015620001835750805b601f850160051c820191505b81811015620001a4578281556001016200018f565b5050505b505050565b81516001600160401b03811115620001c957620001c962000108565b620001e181620001da84546200011e565b846200015a565b602080601f831160018114620002195760008415620002005750858301515b600019600386901b1c1916600185901b178555620001a4565b600085815260208120601f198616915b828110156200024a5788860151825594840194600190910190840162000229565b5085821015620002695787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61231d80620002896000396000f3fe60806040526004361061025c5760003560e01c80637cb6475911610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb01146106d1578063e222c7f9146106e7578063e55f58bb146106fc578063e985e9c514610712578063ebf0c71714610732578063f2fde38b1461074857600080fd5b8063b88d4fde1461062f578063c204642c1461064f578063c4ae31681461066f578063c87b56dd14610684578063d01568aa146106a457600080fd5b806395d89b411161010857806395d89b411461059b578063a035b1fe146105b0578063a0712d68146105c6578063a22cb465146105d9578063a45063c0146105f9578063a70273571461061957600080fd5b80637cb647591461050a5780638d1e63f71461052a5780638da5cb5b1461054a57806391b7f5ed14610568578063954dc3e31461058857600080fd5b8063375a069a116101dd57806355f804b3116101a157806355f804b31461045b5780635c975abb1461047b5780636352211e146104955780636d7c4a4b146104b557806370a08231146104d5578063715018a6146104f557600080fd5b8063375a069a146103b9578063389fcf06146103d95780633ccfd60b1461040657806342842e0e1461041b57806342966c681461043b57600080fd5b80631798d58b116102245780631798d58b1461033657806318160ddd14610355578063185ce4541461036e57806323b872dd1461038457806334393743146103a457600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780630df6515314610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004611c53565b610768565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107ba565b60405161028d9190611cc0565b3480156102c457600080fd5b506102d86102d3366004611cd3565b61084c565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611d08565b610890565b005b34801561031e57600080fd5b50610328600f5481565b60405190815260200161028d565b34801561034257600080fd5b5060105461028190610100900460ff1681565b34801561036157600080fd5b5060015460005403610328565b34801561037a57600080fd5b50610328600d5481565b34801561039057600080fd5b5061031061039f366004611d32565b610930565b3480156103b057600080fd5b50610310610940565b3480156103c557600080fd5b506103106103d4366004611cd3565b610994565b3480156103e557600080fd5b506103286103f4366004611d6e565b60116020526000908152604090205481565b34801561041257600080fd5b50610310610a2b565b34801561042757600080fd5b50610310610436366004611d32565b610a5f565b34801561044757600080fd5b50610310610456366004611cd3565b610a7a565b34801561046757600080fd5b50610310610476366004611d89565b610a85565b34801561048757600080fd5b506010546102819060ff1681565b3480156104a157600080fd5b506102d86104b0366004611cd3565b610a9a565b3480156104c157600080fd5b506103106104d0366004611cd3565b610aa5565b3480156104e157600080fd5b506103286104f0366004611d6e565b610ab2565b34801561050157600080fd5b50610310610afb565b34801561051657600080fd5b50610310610525366004611cd3565b610b0d565b34801561053657600080fd5b50610310610545366004611cd3565b610b1a565b34801561055657600080fd5b506008546001600160a01b03166102d8565b34801561057457600080fd5b50610310610583366004611cd3565b610b27565b610310610596366004611e47565b610b34565b3480156105a757600080fd5b506102ab610ec5565b3480156105bc57600080fd5b50610328600b5481565b6103106105d4366004611cd3565b610ed4565b3480156105e557600080fd5b506103106105f4366004611ea1565b611155565b34801561060557600080fd5b506010546102819062010000900460ff1681565b34801561062557600080fd5b50610328600c5481565b34801561063b57600080fd5b5061031061064a366004611ef3565b6111ea565b34801561065b57600080fd5b5061031061066a366004611fcf565b611234565b34801561067b57600080fd5b50610310611305565b34801561069057600080fd5b506102ab61069f366004611cd3565b611321565b3480156106b057600080fd5b506103286106bf366004611d6e565b60126020526000908152604090205481565b3480156106dd57600080fd5b5061032861271081565b3480156106f357600080fd5b506103106113a5565b34801561070857600080fd5b50610328600e5481565b34801561071e57600080fd5b5061028161072d36600461201b565b6113f7565b34801561073e57600080fd5b50610328600a5481565b34801561075457600080fd5b50610310610763366004611d6e565b611425565b60006301ffc9a760e01b6001600160e01b03198316148061079957506380ac58cd60e01b6001600160e01b03198316145b806107b45750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107c99061204e565b80601f01602080910402602001604051908101604052809291908181526020018280546107f59061204e565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b60006108578261149b565b610874576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089b826114c2565b9050336001600160a01b038216146108d4576108b781336113f7565b6108d4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61093b838383611529565b505050565b6109486116df565b6010805460ff6101008083048216150261ff00199092169190911791829055620100009091041615610992576010805462ff0000198116620100009182900460ff16159091021790555b565b61099c6116df565b600081116109c55760405162461bcd60e51b81526004016109bc90612088565b60405180910390fd5b612710816109d260005490565b6109dc91906120c5565b1115610a1e5760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f544f4b454e5360781b60448201526064016109bc565b610a283382611739565b50565b610a336116df565b60405133904780156108fc02916000818181858888f19350505050158015610a28573d6000803e3d6000fd5b61093b838383604051806020016040528060008152506111ea565b610a28816001611757565b610a8d6116df565b600961093b82848361211e565b60006107b4826114c2565b610aad6116df565b600c55565b600081600003610ad5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b036116df565b61099260006118ce565b610b156116df565b600a55565b610b226116df565b600f55565b610b2f6116df565b600b55565b8181610bab82828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611920565b1515600114610bf15760405162461bcd60e51b81526020600482015260126024820152712737ba1030b63637bbb2b21037b934b3b4b760711b60448201526064016109bc565b336001600160a01b03871614610c3f5760405162461bcd60e51b81526020600482015260136024820152721050d0d3d5539517d393d517d0531313d5d151606a1b60448201526064016109bc565b60008511610c5f5760405162461bcd60e51b81526004016109bc90612088565b60105460ff1615610c825760405162461bcd60e51b81526004016109bc906121de565b601054610100900460ff16610ca95760405162461bcd60e51b81526004016109bc906121de565b323314610cf35760405162461bcd60e51b81526020600482015260186024820152774e4f545f414c4c4f575f434f4e54524143545f43414c4c2160401b60448201526064016109bc565b61271085610d0060005490565b610d0a91906120c5565b1115610d4d5760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b60448201526064016109bc565b600c5433600090815260116020526040902054610d6b9087906120c5565b11158015610d885750600d5485600e54610d8591906120c5565b11155b15610dd95784600e6000828254610d9f91906120c5565b90915550610daf90503386611739565b3360009081526011602052604081208054879290610dce9084906120c5565b90915550610ebd9050565b600f5433600090815260126020526040902054610df79087906120c5565b1115610e3d5760405162461bcd60e51b815260206004820152601560248201527413d55517d3d197d3505617d4115497d5d053131155605a1b60448201526064016109bc565b34600b5486610e4c9190612208565b1115610e8e5760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b60448201526064016109bc565b610e983386611739565b3360009081526012602052604081208054879290610eb79084906120c5565b90915550505b505050505050565b6060600380546107c99061204e565b60008111610ef45760405162461bcd60e51b81526004016109bc90612088565b60105460ff1615610f175760405162461bcd60e51b81526004016109bc906121de565b60105462010000900460ff16610f3f5760405162461bcd60e51b81526004016109bc906121de565b323314610f895760405162461bcd60e51b81526020600482015260186024820152774e4f545f414c4c4f575f434f4e54524143545f43414c4c2160401b60448201526064016109bc565b61271081610f9660005490565b610fa091906120c5565b1115610fe35760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b60448201526064016109bc565b600c54336000908152601160205260409020546110019083906120c5565b1115801561101e5750600d5481600e5461101b91906120c5565b11155b1561106f5780600e600082825461103591906120c5565b9091555061104590503382611739565b33600090815260116020526040812080548392906110649084906120c5565b90915550610a289050565b600f543360009081526012602052604090205461108d9083906120c5565b11156110d35760405162461bcd60e51b815260206004820152601560248201527413d55517d3d197d3505617d4115497d5d053131155605a1b60448201526064016109bc565b34600b54826110e29190612208565b11156111245760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b60448201526064016109bc565b61112e3382611739565b336000908152601260205260408120805483929061114d9084906120c5565b909155505050565b336001600160a01b0383160361117e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111f5848484611529565b6001600160a01b0383163b1561122e5761121184848484611936565b61122e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61123c6116df565b6000811161125c5760405162461bcd60e51b81526004016109bc90612088565b6127106112698383612208565b60005461127691906120c5565b11156112b85760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f544f4b454e5360781b60448201526064016109bc565b60005b8281101561122e576112f38484838181106112d8576112d861221f565b90506020020160208101906112ed9190611d6e565b83611739565b806112fd81612235565b9150506112bb565b61130d6116df565b6010805460ff19811660ff90911615179055565b606061132c8261149b565b61134957604051630a14c4b560e41b815260040160405180910390fd5b6000611353611a21565b90508051600003611373576040518060200160405280600081525061139e565b8061137d84611a30565b60405160200161138e92919061224e565b6040516020818303038152906040525b9392505050565b6113ad6116df565b6010805460ff620100008083048216150262ff00001990921691909117918290556101009091041615610992576010805461ff001981166101009182900460ff1615909102179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61142d6116df565b6001600160a01b0381166114925760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109bc565b610a28816118ce565b60008054821080156107b4575050600090815260046020526040902054600160e01b161590565b6000816000548110156115105760008181526004602052604081205490600160e01b8216900361150e575b8060000361139e5750600019016000818152600460205260409020546114ed565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611534826114c2565b9050836001600160a01b0316816001600160a01b0316146115675760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480611597575061159786336113f7565b806115aa57506001600160a01b03821633145b9050806115ca57604051632ce44b5f60e11b815260040160405180910390fd5b846000036115eb57604051633a954ecd60e21b815260040160405180910390fd5b811561160e57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003611699576001840160008181526004602052604081205490036116975760005481146116975760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ebd565b6008546001600160a01b031633146109925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109bc565b611753828260405180602001604052806000815250611a7f565b5050565b6000611762836114c2565b60008481526006602052604090205490915081906001600160a01b031683156117d8576000336001600160a01b03841614806117a357506117a383336113f7565b806117b657506001600160a01b03821633145b9050806117d657604051632ce44b5f60e11b815260040160405180910390fd5b505b80156117fb57600085815260066020526040902080546001600160a01b03191690555b6001600160a01b038216600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff01905587835260049091528120600360e01b4260a01b8517179055600160e11b84169003611887576001850160008181526004602052604081205490036118855760005481146118855760008181526004602052604090208490555b505b60405185906000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008261192d8584611aec565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061196b90339089908890889060040161228d565b6020604051808303816000875af19250505080156119a6575060408051601f3d908101601f191682019092526119a3918101906122ca565b60015b611a04573d8080156119d4576040519150601f19603f3d011682016040523d82523d6000602084013e6119d9565b606091505b5080516000036119fc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546107c99061204e565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611a6d57600183039250600a81066030018353600a9004611a4f565b50819003601f19909101908152919050565b611a898383611b39565b6001600160a01b0383163b1561093b576000548281035b611ab36000868380600101945086611936565b611ad0576040516368d2bf6b60e11b815260040160405180910390fd5b818110611aa0578160005414611ae557600080fd5b5050505050565b600081815b8451811015611b3157611b1d82868381518110611b1057611b1061221f565b6020026020010151611c11565b915080611b2981612235565b915050611af1565b509392505050565b60005482600003611b5c57604051622e076360e81b815260040160405180910390fd5b81600003611b7d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4828110611bc457500160005550565b6000818310611c2d57600082815260208490526040902061139e565b5060009182526020526040902090565b6001600160e01b031981168114610a2857600080fd5b600060208284031215611c6557600080fd5b813561139e81611c3d565b60005b83811015611c8b578181015183820152602001611c73565b50506000910152565b60008151808452611cac816020860160208601611c70565b601f01601f19169290920160200192915050565b60208152600061139e6020830184611c94565b600060208284031215611ce557600080fd5b5035919050565b80356001600160a01b0381168114611d0357600080fd5b919050565b60008060408385031215611d1b57600080fd5b611d2483611cec565b946020939093013593505050565b600080600060608486031215611d4757600080fd5b611d5084611cec565b9250611d5e60208501611cec565b9150604084013590509250925092565b600060208284031215611d8057600080fd5b61139e82611cec565b60008060208385031215611d9c57600080fd5b823567ffffffffffffffff80821115611db457600080fd5b818501915085601f830112611dc857600080fd5b813581811115611dd757600080fd5b866020828501011115611de957600080fd5b60209290920196919550909350505050565b60008083601f840112611e0d57600080fd5b50813567ffffffffffffffff811115611e2557600080fd5b6020830191508360208260051b8501011115611e4057600080fd5b9250929050565b60008060008060608587031215611e5d57600080fd5b611e6685611cec565b935060208501359250604085013567ffffffffffffffff811115611e8957600080fd5b611e9587828801611dfb565b95989497509550505050565b60008060408385031215611eb457600080fd5b611ebd83611cec565b915060208301358015158114611ed257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611f0957600080fd5b611f1285611cec565b9350611f2060208601611cec565b925060408501359150606085013567ffffffffffffffff80821115611f4457600080fd5b818701915087601f830112611f5857600080fd5b813581811115611f6a57611f6a611edd565b604051601f8201601f19908116603f01168101908382118183101715611f9257611f92611edd565b816040528281528a6020848701011115611fab57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600060408486031215611fe457600080fd5b833567ffffffffffffffff811115611ffb57600080fd5b61200786828701611dfb565b909790965060209590950135949350505050565b6000806040838503121561202e57600080fd5b61203783611cec565b915061204560208401611cec565b90509250929050565b600181811c9082168061206257607f821691505b60208210810361208257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600d908201526c414d4f554e545f4552524f522160981b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107b4576107b46120af565b601f82111561093b57600081815260208120601f850160051c810160208610156120ff5750805b601f850160051c820191505b81811015610ebd5782815560010161210b565b67ffffffffffffffff83111561213657612136611edd565b61214a83612144835461204e565b836120d8565b6000601f84116001811461217e57600085156121665750838201355b600019600387901b1c1916600186901b178355611ae5565b600083815260209020601f19861690835b828110156121af578685013582556020948501946001909201910161218f565b50868210156121cc5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082526010908201526f53414c455f4e4f545f4143544956452160801b604082015260600190565b80820281158282048414176107b4576107b46120af565b634e487b7160e01b600052603260045260246000fd5b600060018201612247576122476120af565b5060010190565b60008351612260818460208801611c70565b835190830190612274818360208801611c70565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122c090830184611c94565b9695505050505050565b6000602082840312156122dc57600080fd5b815161139e81611c3d56fea26469706673582212205e1f9c17842b2b82654aa07d1d9a2f80096759100700fe211899388c895cb7d064736f6c63430008120033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80637cb6475911610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb01146106d1578063e222c7f9146106e7578063e55f58bb146106fc578063e985e9c514610712578063ebf0c71714610732578063f2fde38b1461074857600080fd5b8063b88d4fde1461062f578063c204642c1461064f578063c4ae31681461066f578063c87b56dd14610684578063d01568aa146106a457600080fd5b806395d89b411161010857806395d89b411461059b578063a035b1fe146105b0578063a0712d68146105c6578063a22cb465146105d9578063a45063c0146105f9578063a70273571461061957600080fd5b80637cb647591461050a5780638d1e63f71461052a5780638da5cb5b1461054a57806391b7f5ed14610568578063954dc3e31461058857600080fd5b8063375a069a116101dd57806355f804b3116101a157806355f804b31461045b5780635c975abb1461047b5780636352211e146104955780636d7c4a4b146104b557806370a08231146104d5578063715018a6146104f557600080fd5b8063375a069a146103b9578063389fcf06146103d95780633ccfd60b1461040657806342842e0e1461041b57806342966c681461043b57600080fd5b80631798d58b116102245780631798d58b1461033657806318160ddd14610355578063185ce4541461036e57806323b872dd1461038457806334393743146103a457600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780630df6515314610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004611c53565b610768565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107ba565b60405161028d9190611cc0565b3480156102c457600080fd5b506102d86102d3366004611cd3565b61084c565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611d08565b610890565b005b34801561031e57600080fd5b50610328600f5481565b60405190815260200161028d565b34801561034257600080fd5b5060105461028190610100900460ff1681565b34801561036157600080fd5b5060015460005403610328565b34801561037a57600080fd5b50610328600d5481565b34801561039057600080fd5b5061031061039f366004611d32565b610930565b3480156103b057600080fd5b50610310610940565b3480156103c557600080fd5b506103106103d4366004611cd3565b610994565b3480156103e557600080fd5b506103286103f4366004611d6e565b60116020526000908152604090205481565b34801561041257600080fd5b50610310610a2b565b34801561042757600080fd5b50610310610436366004611d32565b610a5f565b34801561044757600080fd5b50610310610456366004611cd3565b610a7a565b34801561046757600080fd5b50610310610476366004611d89565b610a85565b34801561048757600080fd5b506010546102819060ff1681565b3480156104a157600080fd5b506102d86104b0366004611cd3565b610a9a565b3480156104c157600080fd5b506103106104d0366004611cd3565b610aa5565b3480156104e157600080fd5b506103286104f0366004611d6e565b610ab2565b34801561050157600080fd5b50610310610afb565b34801561051657600080fd5b50610310610525366004611cd3565b610b0d565b34801561053657600080fd5b50610310610545366004611cd3565b610b1a565b34801561055657600080fd5b506008546001600160a01b03166102d8565b34801561057457600080fd5b50610310610583366004611cd3565b610b27565b610310610596366004611e47565b610b34565b3480156105a757600080fd5b506102ab610ec5565b3480156105bc57600080fd5b50610328600b5481565b6103106105d4366004611cd3565b610ed4565b3480156105e557600080fd5b506103106105f4366004611ea1565b611155565b34801561060557600080fd5b506010546102819062010000900460ff1681565b34801561062557600080fd5b50610328600c5481565b34801561063b57600080fd5b5061031061064a366004611ef3565b6111ea565b34801561065b57600080fd5b5061031061066a366004611fcf565b611234565b34801561067b57600080fd5b50610310611305565b34801561069057600080fd5b506102ab61069f366004611cd3565b611321565b3480156106b057600080fd5b506103286106bf366004611d6e565b60126020526000908152604090205481565b3480156106dd57600080fd5b5061032861271081565b3480156106f357600080fd5b506103106113a5565b34801561070857600080fd5b50610328600e5481565b34801561071e57600080fd5b5061028161072d36600461201b565b6113f7565b34801561073e57600080fd5b50610328600a5481565b34801561075457600080fd5b50610310610763366004611d6e565b611425565b60006301ffc9a760e01b6001600160e01b03198316148061079957506380ac58cd60e01b6001600160e01b03198316145b806107b45750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107c99061204e565b80601f01602080910402602001604051908101604052809291908181526020018280546107f59061204e565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b60006108578261149b565b610874576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089b826114c2565b9050336001600160a01b038216146108d4576108b781336113f7565b6108d4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61093b838383611529565b505050565b6109486116df565b6010805460ff6101008083048216150261ff00199092169190911791829055620100009091041615610992576010805462ff0000198116620100009182900460ff16159091021790555b565b61099c6116df565b600081116109c55760405162461bcd60e51b81526004016109bc90612088565b60405180910390fd5b612710816109d260005490565b6109dc91906120c5565b1115610a1e5760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f544f4b454e5360781b60448201526064016109bc565b610a283382611739565b50565b610a336116df565b60405133904780156108fc02916000818181858888f19350505050158015610a28573d6000803e3d6000fd5b61093b838383604051806020016040528060008152506111ea565b610a28816001611757565b610a8d6116df565b600961093b82848361211e565b60006107b4826114c2565b610aad6116df565b600c55565b600081600003610ad5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b036116df565b61099260006118ce565b610b156116df565b600a55565b610b226116df565b600f55565b610b2f6116df565b600b55565b8181610bab82828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611920565b1515600114610bf15760405162461bcd60e51b81526020600482015260126024820152712737ba1030b63637bbb2b21037b934b3b4b760711b60448201526064016109bc565b336001600160a01b03871614610c3f5760405162461bcd60e51b81526020600482015260136024820152721050d0d3d5539517d393d517d0531313d5d151606a1b60448201526064016109bc565b60008511610c5f5760405162461bcd60e51b81526004016109bc90612088565b60105460ff1615610c825760405162461bcd60e51b81526004016109bc906121de565b601054610100900460ff16610ca95760405162461bcd60e51b81526004016109bc906121de565b323314610cf35760405162461bcd60e51b81526020600482015260186024820152774e4f545f414c4c4f575f434f4e54524143545f43414c4c2160401b60448201526064016109bc565b61271085610d0060005490565b610d0a91906120c5565b1115610d4d5760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b60448201526064016109bc565b600c5433600090815260116020526040902054610d6b9087906120c5565b11158015610d885750600d5485600e54610d8591906120c5565b11155b15610dd95784600e6000828254610d9f91906120c5565b90915550610daf90503386611739565b3360009081526011602052604081208054879290610dce9084906120c5565b90915550610ebd9050565b600f5433600090815260126020526040902054610df79087906120c5565b1115610e3d5760405162461bcd60e51b815260206004820152601560248201527413d55517d3d197d3505617d4115497d5d053131155605a1b60448201526064016109bc565b34600b5486610e4c9190612208565b1115610e8e5760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b60448201526064016109bc565b610e983386611739565b3360009081526012602052604081208054879290610eb79084906120c5565b90915550505b505050505050565b6060600380546107c99061204e565b60008111610ef45760405162461bcd60e51b81526004016109bc90612088565b60105460ff1615610f175760405162461bcd60e51b81526004016109bc906121de565b60105462010000900460ff16610f3f5760405162461bcd60e51b81526004016109bc906121de565b323314610f895760405162461bcd60e51b81526020600482015260186024820152774e4f545f414c4c4f575f434f4e54524143545f43414c4c2160401b60448201526064016109bc565b61271081610f9660005490565b610fa091906120c5565b1115610fe35760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b60448201526064016109bc565b600c54336000908152601160205260409020546110019083906120c5565b1115801561101e5750600d5481600e5461101b91906120c5565b11155b1561106f5780600e600082825461103591906120c5565b9091555061104590503382611739565b33600090815260116020526040812080548392906110649084906120c5565b90915550610a289050565b600f543360009081526012602052604090205461108d9083906120c5565b11156110d35760405162461bcd60e51b815260206004820152601560248201527413d55517d3d197d3505617d4115497d5d053131155605a1b60448201526064016109bc565b34600b54826110e29190612208565b11156111245760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b60448201526064016109bc565b61112e3382611739565b336000908152601260205260408120805483929061114d9084906120c5565b909155505050565b336001600160a01b0383160361117e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111f5848484611529565b6001600160a01b0383163b1561122e5761121184848484611936565b61122e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61123c6116df565b6000811161125c5760405162461bcd60e51b81526004016109bc90612088565b6127106112698383612208565b60005461127691906120c5565b11156112b85760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f544f4b454e5360781b60448201526064016109bc565b60005b8281101561122e576112f38484838181106112d8576112d861221f565b90506020020160208101906112ed9190611d6e565b83611739565b806112fd81612235565b9150506112bb565b61130d6116df565b6010805460ff19811660ff90911615179055565b606061132c8261149b565b61134957604051630a14c4b560e41b815260040160405180910390fd5b6000611353611a21565b90508051600003611373576040518060200160405280600081525061139e565b8061137d84611a30565b60405160200161138e92919061224e565b6040516020818303038152906040525b9392505050565b6113ad6116df565b6010805460ff620100008083048216150262ff00001990921691909117918290556101009091041615610992576010805461ff001981166101009182900460ff1615909102179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61142d6116df565b6001600160a01b0381166114925760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109bc565b610a28816118ce565b60008054821080156107b4575050600090815260046020526040902054600160e01b161590565b6000816000548110156115105760008181526004602052604081205490600160e01b8216900361150e575b8060000361139e5750600019016000818152600460205260409020546114ed565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611534826114c2565b9050836001600160a01b0316816001600160a01b0316146115675760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480611597575061159786336113f7565b806115aa57506001600160a01b03821633145b9050806115ca57604051632ce44b5f60e11b815260040160405180910390fd5b846000036115eb57604051633a954ecd60e21b815260040160405180910390fd5b811561160e57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003611699576001840160008181526004602052604081205490036116975760005481146116975760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ebd565b6008546001600160a01b031633146109925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109bc565b611753828260405180602001604052806000815250611a7f565b5050565b6000611762836114c2565b60008481526006602052604090205490915081906001600160a01b031683156117d8576000336001600160a01b03841614806117a357506117a383336113f7565b806117b657506001600160a01b03821633145b9050806117d657604051632ce44b5f60e11b815260040160405180910390fd5b505b80156117fb57600085815260066020526040902080546001600160a01b03191690555b6001600160a01b038216600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff01905587835260049091528120600360e01b4260a01b8517179055600160e11b84169003611887576001850160008181526004602052604081205490036118855760005481146118855760008181526004602052604090208490555b505b60405185906000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008261192d8584611aec565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061196b90339089908890889060040161228d565b6020604051808303816000875af19250505080156119a6575060408051601f3d908101601f191682019092526119a3918101906122ca565b60015b611a04573d8080156119d4576040519150601f19603f3d011682016040523d82523d6000602084013e6119d9565b606091505b5080516000036119fc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546107c99061204e565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611a6d57600183039250600a81066030018353600a9004611a4f565b50819003601f19909101908152919050565b611a898383611b39565b6001600160a01b0383163b1561093b576000548281035b611ab36000868380600101945086611936565b611ad0576040516368d2bf6b60e11b815260040160405180910390fd5b818110611aa0578160005414611ae557600080fd5b5050505050565b600081815b8451811015611b3157611b1d82868381518110611b1057611b1061221f565b6020026020010151611c11565b915080611b2981612235565b915050611af1565b509392505050565b60005482600003611b5c57604051622e076360e81b815260040160405180910390fd5b81600003611b7d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4828110611bc457500160005550565b6000818310611c2d57600082815260208490526040902061139e565b5060009182526020526040902090565b6001600160e01b031981168114610a2857600080fd5b600060208284031215611c6557600080fd5b813561139e81611c3d565b60005b83811015611c8b578181015183820152602001611c73565b50506000910152565b60008151808452611cac816020860160208601611c70565b601f01601f19169290920160200192915050565b60208152600061139e6020830184611c94565b600060208284031215611ce557600080fd5b5035919050565b80356001600160a01b0381168114611d0357600080fd5b919050565b60008060408385031215611d1b57600080fd5b611d2483611cec565b946020939093013593505050565b600080600060608486031215611d4757600080fd5b611d5084611cec565b9250611d5e60208501611cec565b9150604084013590509250925092565b600060208284031215611d8057600080fd5b61139e82611cec565b60008060208385031215611d9c57600080fd5b823567ffffffffffffffff80821115611db457600080fd5b818501915085601f830112611dc857600080fd5b813581811115611dd757600080fd5b866020828501011115611de957600080fd5b60209290920196919550909350505050565b60008083601f840112611e0d57600080fd5b50813567ffffffffffffffff811115611e2557600080fd5b6020830191508360208260051b8501011115611e4057600080fd5b9250929050565b60008060008060608587031215611e5d57600080fd5b611e6685611cec565b935060208501359250604085013567ffffffffffffffff811115611e8957600080fd5b611e9587828801611dfb565b95989497509550505050565b60008060408385031215611eb457600080fd5b611ebd83611cec565b915060208301358015158114611ed257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611f0957600080fd5b611f1285611cec565b9350611f2060208601611cec565b925060408501359150606085013567ffffffffffffffff80821115611f4457600080fd5b818701915087601f830112611f5857600080fd5b813581811115611f6a57611f6a611edd565b604051601f8201601f19908116603f01168101908382118183101715611f9257611f92611edd565b816040528281528a6020848701011115611fab57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600060408486031215611fe457600080fd5b833567ffffffffffffffff811115611ffb57600080fd5b61200786828701611dfb565b909790965060209590950135949350505050565b6000806040838503121561202e57600080fd5b61203783611cec565b915061204560208401611cec565b90509250929050565b600181811c9082168061206257607f821691505b60208210810361208257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600d908201526c414d4f554e545f4552524f522160981b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107b4576107b46120af565b601f82111561093b57600081815260208120601f850160051c810160208610156120ff5750805b601f850160051c820191505b81811015610ebd5782815560010161210b565b67ffffffffffffffff83111561213657612136611edd565b61214a83612144835461204e565b836120d8565b6000601f84116001811461217e57600085156121665750838201355b600019600387901b1c1916600186901b178355611ae5565b600083815260209020601f19861690835b828110156121af578685013582556020948501946001909201910161218f565b50868210156121cc5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082526010908201526f53414c455f4e4f545f4143544956452160801b604082015260600190565b80820281158282048414176107b4576107b46120af565b634e487b7160e01b600052603260045260246000fd5b600060018201612247576122476120af565b5060010190565b60008351612260818460208801611c70565b835190830190612274818360208801611c70565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122c090830184611c94565b9695505050505050565b6000602082840312156122dc57600080fd5b815161139e81611c3d56fea26469706673582212205e1f9c17842b2b82654aa07d1d9a2f80096759100700fe211899388c895cb7d064736f6c63430008120033

Deployed Bytecode Sourcemap

205:5294:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4874:607:3;;;;;;;;;;-1:-1:-1;4874:607:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:6;;558:22;540:41;;528:2;513:18;4874:607:3;;;;;;;;9784:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11731:200::-;;;;;;;;;;-1:-1:-1;11731:200:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:6;;;1679:51;;1667:2;1652:18;11731:200:3;1533:203:6;11265:405:3;;;;;;;;;;-1:-1:-1;11265:405:3;;;;;:::i;:::-;;:::i;:::-;;549:35:5;;;;;;;;;;;;;;;;;;;2324:25:6;;;2312:2;2297:18;549:35:5;2178:177:6;623:28:5;;;;;;;;;;-1:-1:-1;623:28:5;;;;;;;;;;;3957:309:3;;;;;;;;;;-1:-1:-1;4219:12:3;;4010:7;4203:13;:28;3957:309;;473:35:5;;;;;;;;;;;;;;;;12591:164:3;;;;;;;;;;-1:-1:-1;12591:164:3;;;;;:::i;:::-;;:::i;1650:144:5:-;;;;;;;;;;;;;:::i;2594:222::-;;;;;;;;;;-1:-1:-1;2594:222:5;;;;;:::i;:::-;;:::i;916:42::-;;;;;;;;;;-1:-1:-1;916:42:5;;;;;:::i;:::-;;;;;;;;;;;;;;1238:107;;;;;;;;;;;;;:::i;12821:179:3:-;;;;;;;;;;-1:-1:-1;12821:179:3;;;;;:::i;:::-;;:::i;5092:77:5:-;;;;;;;;;;-1:-1:-1;5092:77:5;;;;;:::i;:::-;;:::i;2045:89::-;;;;;;;;;;-1:-1:-1;2045:89:5;;;;;:::i;:::-;;:::i;591:26::-;;;;;;;;;;-1:-1:-1;591:26:5;;;;;;;;9580:142:3;;;;;;;;;;-1:-1:-1;9580:142:3;;;;;:::i;:::-;;:::i;1462:103:5:-;;;;;;;;;;-1:-1:-1;1462:103:5;;;;;:::i;:::-;;:::i;5540:231:3:-;;;;;;;;;;-1:-1:-1;5540:231:3;;;;;:::i;:::-;;:::i;1831:101:0:-;;;;;;;;;;;;;:::i;2241:96:5:-;;;;;;;;;;-1:-1:-1;2241:96:5;;;;;:::i;:::-;;:::i;1351:105::-;;;;;;;;;;-1:-1:-1;1351:105:5;;;;;:::i;:::-;;:::i;1201:85:0:-;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;1954:81:5;;;;;;;;;;-1:-1:-1;1954:81:5;;;;;:::i;:::-;;:::i;3154:1034::-;;;;;;:::i;:::-;;:::i;9946:102:3:-;;;;;;;;;;;;;:::i;398:31:5:-;;;;;;;;;;;;;;;;4194:892;;;;;;:::i;:::-;;:::i;11998:303:3:-;;;;;;;;;;-1:-1:-1;11998:303:3;;;;;:::i;:::-;;:::i;657:27:5:-;;;;;;;;;;-1:-1:-1;657:27:5;;;;;;;;;;;435:32;;;;;;;;;;;;;;;;13066:385:3;;;;;;;;;;-1:-1:-1;13066:385:3;;;;;:::i;:::-;;:::i;2822:326:5:-;;;;;;;;;;-1:-1:-1;2822:326:5;;;;;:::i;:::-;;:::i;1571:73::-;;;;;;;;;;;;;:::i;5175:322::-;;;;;;;;;;-1:-1:-1;5175:322:5;;;;;:::i;:::-;;:::i;965:41::-;;;;;;;;;;-1:-1:-1;965:41:5;;;;;:::i;:::-;;;;;;;;;;;;;;354:38;;;;;;;;;;;;387:5;354:38;;1800:148;;;;;;;;;;;;;:::i;514:29::-;;;;;;;;;;;;;;;;12367:162:3;;;;;;;;;;-1:-1:-1;12367:162:3;;;;;:::i;:::-;;:::i;328:19:5:-;;;;;;;;;;;;;;;;2081:198:0;;;;;;;;;;-1:-1:-1;2081:198:0;;;;;:::i;:::-;;:::i;4874:607:3:-;4959:4;-1:-1:-1;;;;;;;;;5254:25:3;;;;:101;;-1:-1:-1;;;;;;;;;;5330:25:3;;;5254:101;:177;;;-1:-1:-1;;;;;;;;;;5406:25:3;;;5254:177;5235:196;4874:607;-1:-1:-1;;4874:607:3:o;9784:98::-;9838:13;9870:5;9863:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9784:98;:::o;11731:200::-;11799:7;11823:16;11831:7;11823;:16::i;:::-;11818:64;;11848:34;;-1:-1:-1;;;11848:34:3;;;;;;;;;;;11818:64;-1:-1:-1;11900:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;11900:24:3;;11731:200::o;11265:405::-;11337:13;11369:27;11388:7;11369:18;:27::i;:::-;11337:61;-1:-1:-1;26127:10:3;-1:-1:-1;;;;;11413:28:3;;;11409:172;;11460:44;11477:5;26127:10;12367:162;:::i;11460:44::-;11455:126;;11531:35;;-1:-1:-1;;;11531:35:3;;;;;;;;;;;11455:126;11591:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11591:29:3;-1:-1:-1;;;;;11591:29:3;;;;;;;;;11635:28;;11591:24;;11635:28;;;;;;;11327:343;11265:405;;:::o;12591:164::-;12720:28;12730:4;12736:2;12740:7;12720:9;:28::i;:::-;12591:164;;;:::o;1650:144:5:-;1094:13:0;:11;:13::i;:::-;1714:8:5::1;::::0;;::::1;;::::0;;::::1;::::0;::::1;1713:9;1702:20;-1:-1:-1::0;;1702:20:5;;::::1;::::0;;;::::1;::::0;;;;1736:7;;;::::1;;1732:56;;;1770:7;::::0;;-1:-1:-1;;1759:18:5;::::1;1770:7:::0;;;;::::1;;;1769:8;1759:18:::0;;::::1;;::::0;;1732:56:::1;1650:144::o:0;2594:222::-;1094:13:0;:11;:13::i;:::-;2673:1:5::1;2664:6;:10;2656:36;;;;-1:-1:-1::0;;;2656:36:5::1;;;;;;;:::i;:::-;;;;;;;;;387:5;2728:6;2711:14;4406:7:3::0;4590:13;;4359:279;2711:14:5::1;:23;;;;:::i;:::-;2710:38;;2702:68;;;::::0;-1:-1:-1;;;2702:68:5;;8397:2:6;2702:68:5::1;::::0;::::1;8379:21:6::0;8436:2;8416:18;;;8409:30;-1:-1:-1;;;8455:18:6;;;8448:47;8512:18;;2702:68:5::1;8195:341:6::0;2702:68:5::1;2780:29;2790:10;2802:6;2780:9;:29::i;:::-;2594:222:::0;:::o;1238:107::-;1094:13:0;:11;:13::i;:::-;1287:51:5::1;::::0;1295:10:::1;::::0;1316:21:::1;1287:51:::0;::::1;;;::::0;::::1;::::0;;;1316:21;1295:10;1287:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;12821:179:3::0;12954:39;12971:4;12977:2;12981:7;12954:39;;;;;;;;;;;;:16;:39::i;5092:77:5:-;5142:20;5148:7;5157:4;5142:5;:20::i;2045:89::-;1094:13:0;:11;:13::i;:::-;2116:4:5::1;:11;2123:4:::0;;2116;:11:::1;:::i;9580:142:3:-:0;9644:7;9686:27;9705:7;9686:18;:27::i;1462:103:5:-;1094:13:0;:11;:13::i;:::-;1533:16:5::1;:25:::0;1462:103::o;5540:231:3:-;5604:7;5645:5;5655:1;5627:29;5623:70;;5665:28;;-1:-1:-1;;;5665:28:3;;;;;;;;;;;5623:70;-1:-1:-1;;;;;;5710:25:3;;;;;:18;:25;;;;;;1017:13;5710:54;;5540:231::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;2241:96:5:-:0;1094:13:0;:11;:13::i;:::-;2313:4:5::1;:17:::0;2241:96::o;1351:105::-;1094:13:0;:11;:13::i;:::-;1421:19:5::1;:28:::0;1351:105::o;1954:81::-;1094:13:0;:11;:13::i;:::-;2014:5:5::1;:14:::0;1954:81::o;3154:1034::-;3271:6;;2417:123;2449:6;;2417:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2469:4:5;;2497:28;;-1:-1:-1;;2514:10:5;10748:2:6;10744:15;10740:53;2497:28:5;;;10728:66:6;2469:4:5;;-1:-1:-1;10810:12:6;;;-1:-1:-1;2497:28:5;;;;;;;;;;;;2487:39;;;;;;2417:18;:123::i;:::-;:131;;2544:4;2417:131;2409:162;;;;-1:-1:-1;;;2409:162:5;;11035:2:6;2409:162:5;;;11017:21:6;11074:2;11054:18;;;11047:30;-1:-1:-1;;;11093:18:6;;;11086:48;11151:18;;2409:162:5;10833:342:6;2409:162:5;3297:10:::1;-1:-1:-1::0;;;;;3297:21:5;::::1;;3289:53;;;::::0;-1:-1:-1;;;3289:53:5;;11382:2:6;3289:53:5::1;::::0;::::1;11364:21:6::0;11421:2;11401:18;;;11394:30;-1:-1:-1;;;11440:18:6;;;11433:49;11499:18;;3289:53:5::1;11180:343:6::0;3289:53:5::1;3369:1;3360:6;:10;3352:36;;;;-1:-1:-1::0;;;3352:36:5::1;;;;;;;:::i;:::-;3407:6;::::0;::::1;;3406:7;3398:36;;;;-1:-1:-1::0;;;3398:36:5::1;;;;;;;:::i;:::-;3452:8;::::0;::::1;::::0;::::1;;;3444:37;;;;-1:-1:-1::0;;;3444:37:5::1;;;;;;;:::i;:::-;3499:9;3512:10;3499:23;3491:60;;;::::0;-1:-1:-1;;;3491:60:5;;12075:2:6;3491:60:5::1;::::0;::::1;12057:21:6::0;12114:2;12094:18;;;12087:30;-1:-1:-1;;;12133:18:6;;;12126:54;12197:18;;3491:60:5::1;11873:348:6::0;3491:60:5::1;387:5;3587:6;3570:14;4406:7:3::0;4590:13;;4359:279;3570:14:5::1;:23;;;;:::i;:::-;3569:38;;3561:69;;;::::0;-1:-1:-1;;;3561:69:5;;12428:2:6;3561:69:5::1;::::0;::::1;12410:21:6::0;12467:2;12447:18;;;12440:30;-1:-1:-1;;;12486:18:6;;;12479:48;12544:18;;3561:69:5::1;12226:342:6::0;3561:69:5::1;3679:16;::::0;3655:10:::1;3644:22;::::0;;;:10:::1;:22;::::0;;;;;:31:::1;::::0;3669:6;;3644:31:::1;:::i;:::-;:51;;:97;;;;;3725:16;;3715:6;3699:13;;:22;;;;:::i;:::-;:42;;3644:97;3640:542;;;3799:6;3782:13;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;3819:29:5::1;::::0;-1:-1:-1;3829:10:5::1;3841:6:::0;3819:9:::1;:29::i;:::-;3873:10;3862:22;::::0;;;:10:::1;:22;::::0;;;;:32;;3888:6;;3862:22;:32:::1;::::0;3888:6;;3862:32:::1;:::i;:::-;::::0;;;-1:-1:-1;3640:542:5::1;::::0;-1:-1:-1;3640:542:5::1;;3967:19;::::0;3943:10:::1;3933:21;::::0;;;:9:::1;:21;::::0;;;;;:30:::1;::::0;3957:6;;3933:30:::1;:::i;:::-;:53;;3925:87;;;::::0;-1:-1:-1;;;3925:87:5;;12775:2:6;3925:87:5::1;::::0;::::1;12757:21:6::0;12814:2;12794:18;;;12787:30;-1:-1:-1;;;12833:18:6;;;12826:51;12894:18;;3925:87:5::1;12573:345:6::0;3925:87:5::1;4052:9;4043:5;;4034:6;:14;;;;:::i;:::-;:27;;4026:57;;;::::0;-1:-1:-1;;;4026:57:5;;13298:2:6;4026:57:5::1;::::0;::::1;13280:21:6::0;13337:2;13317:18;;;13310:30;-1:-1:-1;;;13356:18:6;;;13349:47;13413:18;;4026:57:5::1;13096:341:6::0;4026:57:5::1;4097:29;4107:10;4119:6;4097:9;:29::i;:::-;4150:10;4140:21;::::0;;;:9:::1;:21;::::0;;;;:31;;4165:6;;4140:21;:31:::1;::::0;4165:6;;4140:31:::1;:::i;:::-;::::0;;;-1:-1:-1;;3640:542:5::1;3154:1034:::0;;;;;;:::o;9946:102:3:-;10002:13;10034:7;10027:14;;;;;:::i;4194:892:5:-;4268:1;4259:6;:10;4251:36;;;;-1:-1:-1;;;4251:36:5;;;;;;;:::i;:::-;4306:6;;;;4305:7;4297:36;;;;-1:-1:-1;;;4297:36:5;;;;;;;:::i;:::-;4351:7;;;;;;;4343:36;;;;-1:-1:-1;;;4343:36:5;;;;;;;:::i;:::-;4397:9;4410:10;4397:23;4389:60;;;;-1:-1:-1;;;4389:60:5;;12075:2:6;4389:60:5;;;12057:21:6;12114:2;12094:18;;;12087:30;-1:-1:-1;;;12133:18:6;;;12126:54;12197:18;;4389:60:5;11873:348:6;4389:60:5;387:5;4485:6;4468:14;4406:7:3;4590:13;;4359:279;4468:14:5;:23;;;;:::i;:::-;4467:38;;4459:69;;;;-1:-1:-1;;;4459:69:5;;12428:2:6;4459:69:5;;;12410:21:6;12467:2;12447:18;;;12440:30;-1:-1:-1;;;12486:18:6;;;12479:48;12544:18;;4459:69:5;12226:342:6;4459:69:5;4577:16;;4553:10;4542:22;;;;:10;:22;;;;;;:31;;4567:6;;4542:31;:::i;:::-;:51;;:97;;;;;4623:16;;4613:6;4597:13;;:22;;;;:::i;:::-;:42;;4542:97;4538:542;;;4697:6;4680:13;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;4717:29:5;;-1:-1:-1;4727:10:5;4739:6;4717:9;:29::i;:::-;4771:10;4760:22;;;;:10;:22;;;;;:32;;4786:6;;4760:22;:32;;4786:6;;4760:32;:::i;:::-;;;;-1:-1:-1;4538:542:5;;-1:-1:-1;4538:542:5;;4865:19;;4841:10;4831:21;;;;:9;:21;;;;;;:30;;4855:6;;4831:30;:::i;:::-;:53;;4823:87;;;;-1:-1:-1;;;4823:87:5;;12775:2:6;4823:87:5;;;12757:21:6;12814:2;12794:18;;;12787:30;-1:-1:-1;;;12833:18:6;;;12826:51;12894:18;;4823:87:5;12573:345:6;4823:87:5;4950:9;4941:5;;4932:6;:14;;;;:::i;:::-;:27;;4924:57;;;;-1:-1:-1;;;4924:57:5;;13298:2:6;4924:57:5;;;13280:21:6;13337:2;13317:18;;;13310:30;-1:-1:-1;;;13356:18:6;;;13349:47;13413:18;;4924:57:5;13096:341:6;4924:57:5;4995:29;5005:10;5017:6;4995:9;:29::i;:::-;5048:10;5038:21;;;;:9;:21;;;;;:31;;5063:6;;5038:21;:31;;5063:6;;5038:31;:::i;:::-;;;;-1:-1:-1;;4194:892:5;:::o;11998:303:3:-;26127:10;-1:-1:-1;;;;;12096:31:3;;;12092:61;;12136:17;;-1:-1:-1;;;12136:17:3;;;;;;;;;;;12092:61;26127:10;12164:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12164:49:3;;;;;;;;;;;;:60;;-1:-1:-1;;12164:60:3;;;;;;;;;;12239:55;;540:41:6;;;12164:49:3;;26127:10;12239:55;;513:18:6;12239:55:3;;;;;;;11998:303;;:::o;13066:385::-;13227:28;13237:4;13243:2;13247:7;13227:9;:28::i;:::-;-1:-1:-1;;;;;13269:14:3;;;:19;13265:180;;13307:56;13338:4;13344:2;13348:7;13357:5;13307:30;:56::i;:::-;13302:143;;13390:40;;-1:-1:-1;;;13390:40:3;;;;;;;;;;;13302:143;13066:385;;;;:::o;2822:326:5:-;1094:13:0;:11;:13::i;:::-;2927:1:5::1;2918:6;:10;2910:36;;;;-1:-1:-1::0;;;2910:36:5::1;;;;;;;:::i;:::-;387:5;2982:21;2991:5:::0;2982:6;:21:::1;:::i;:::-;4406:7:3::0;4590:13;2965:38:5::1;;;;:::i;:::-;2964:53;;2956:83;;;::::0;-1:-1:-1;;;2956:83:5;;8397:2:6;2956:83:5::1;::::0;::::1;8379:21:6::0;8436:2;8416:18;;;8409:30;-1:-1:-1;;;8455:18:6;;;8448:47;8512:18;;2956:83:5::1;8195:341:6::0;2956:83:5::1;3055:6;3050:92;3067:16:::0;;::::1;3050:92;;;3104:27;3114:5;;3120:1;3114:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3124:6;3104:9;:27::i;:::-;3085:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3050:92;;1571:73:::0;1094:13:0;:11;:13::i;:::-;1631:6:5::1;::::0;;-1:-1:-1;;1621:16:5;::::1;1631:6;::::0;;::::1;1630:7;1621:16;::::0;;1571:73::o;5175:322::-;5248:13;5278:16;5286:7;5278;:16::i;:::-;5273:59;;5303:29;;-1:-1:-1;;;5303:29:5;;;;;;;;;;;5273:59;5343:21;5367:10;:8;:10::i;:::-;5343:34;;5400:7;5394:21;5419:1;5394:26;:96;;;;;;;;;;;;;;;;;5447:7;5456:18;5466:7;5456:9;:18::i;:::-;5430:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5394:96;5387:103;5175:322;-1:-1:-1;;;5175:322:5:o;1800:148::-;1094:13:0;:11;:13::i;:::-;1866:7:5::1;::::0;;::::1;::::0;;;::::1;::::0;::::1;1865:8;1855:18;-1:-1:-1::0;;1855:18:5;;::::1;::::0;;;::::1;::::0;;;;1866:7:::1;1887:8:::0;;::::1;;1883:59;;;1923:8;::::0;;-1:-1:-1;;1911:20:5;::::1;1923:8;::::0;;;::::1;;;1922:9;1911:20:::0;;::::1;;::::0;;1800:148::o;12367:162:3:-;-1:-1:-1;;;;;12487:25:3;;;12464:4;12487:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12367:162::o;2081:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;14584:2:6;2161:73:0::1;::::0;::::1;14566:21:6::0;14623:2;14603:18;;;14596:30;14662:34;14642:18;;;14635:62;-1:-1:-1;;;14713:18:6;;;14706:36;14759:19;;2161:73:0::1;14382:402:6::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;13697:268:3:-:0;13754:4;13841:13;;13831:7;:23;13789:150;;;;-1:-1:-1;;13891:26:3;;;;:17;:26;;;;;;-1:-1:-1;;;13891:43:3;:48;;13697:268::o;7157:1105::-;7224:7;7258;7356:13;;7349:4;:20;7345:853;;;7393:14;7410:23;;;:17;:23;;;;;;;-1:-1:-1;;;7497:23:3;;:28;;7493:687;;8008:111;8015:6;8025:1;8015:11;8008:111;;-1:-1:-1;;;8085:6:3;8067:25;;;;:17;:25;;;;;;8008:111;;7493:687;7371:827;7345:853;8224:31;;-1:-1:-1;;;8224:31:3;;;;;;;;;;;17258:2595;17368:27;17398;17417:7;17398:18;:27::i;:::-;17368:57;;17481:4;-1:-1:-1;;;;;17440:45:3;17456:19;-1:-1:-1;;;;;17440:45:3;;17436:86;;17494:28;;-1:-1:-1;;;17494:28:3;;;;;;;;;;;17436:86;17533:23;17559:24;;;:15;:24;;;;;;-1:-1:-1;;;;;17559:24:3;;;;17533:23;17620:27;;26127:10;17620:27;;:86;;-1:-1:-1;17663:43:3;17680:4;26127:10;12367:162;:::i;17663:43::-;17620:140;;;-1:-1:-1;;;;;;17722:38:3;;26127:10;17722:38;17620:140;17594:167;;17777:17;17772:66;;17803:35;;-1:-1:-1;;;17803:35:3;;;;;;;;;;;17772:66;17870:2;17877:1;17852:26;17848:62;;17887:23;;-1:-1:-1;;;17887:23:3;;;;;;;;;;;17848:62;18049:15;18031:39;18027:101;;18093:24;;;;:15;:24;;;;;18086:31;;-1:-1:-1;;;;;;18086:31:3;;;18027:101;-1:-1:-1;;;;;18488:24:3;;;;;;;:18;:24;;;;;;;;18486:26;;-1:-1:-1;;18486:26:3;;;18556:22;;;;;;;;18554:24;;-1:-1:-1;18554:24:3;;;18842:26;;;:17;:26;;;;;-1:-1:-1;;;18928:15:3;1656:3;18928:41;18887:83;;:126;;18842:171;;;19130:46;;:51;;19126:616;;19233:1;19223:11;;19201:19;19354:30;;;:17;:30;;;;;;:35;;19350:378;;19490:13;;19475:11;:28;19471:239;;19635:30;;;;:17;:30;;;;;:52;;;19471:239;19183:559;19126:616;19786:7;19782:2;-1:-1:-1;;;;;19767:27:3;19776:4;-1:-1:-1;;;;;19767:27:3;;;;;;;;;;;19804:42;13066:385;1359:130:0;1273:6;;-1:-1:-1;;;;;1273:6:0;26127:10:3;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;14991:2:6;1414:68:0;;;14973:21:6;;;15010:18;;;15003:30;15069:34;15049:18;;;15042:62;15121:18;;1414:68:0;14789:356:6;14044:102:3;14112:27;14122:2;14126:8;14112:27;;;;;;;;;;;;:9;:27::i;:::-;14044:102;;:::o;20230:2870::-;20309:27;20339;20358:7;20339:18;:27::i;:::-;20377:12;20465:24;;;:15;:24;;;;;;20309:57;;-1:-1:-1;20309:57:3;;-1:-1:-1;;;;;20465:24:3;20500:300;;;;20533:22;26127:10;-1:-1:-1;;;;;20559:27:3;;;;:90;;-1:-1:-1;20606:43:3;20623:4;26127:10;12367:162;:::i;20606:43::-;20559:148;;;-1:-1:-1;;;;;;20669:38:3;;26127:10;20669:38;20559:148;20533:175;;20728:17;20723:66;;20754:35;;-1:-1:-1;;;20754:35:3;;;;;;;;;;;20723:66;20519:281;20500:300;20946:15;20928:39;20924:101;;20990:24;;;;:15;:24;;;;;20983:31;;-1:-1:-1;;;;;;20983:31:3;;;20924:101;-1:-1:-1;;;;;21601:24:3;;;;;;:18;:24;;;;;;;;:59;;21629:31;21601:59;;;21891:26;;;:17;:26;;;;;-1:-1:-1;;;21979:15:3;1656:3;21979:41;21936:85;;:161;21891:206;;-1:-1:-1;;;22214:46:3;;:51;;22210:616;;22317:1;22307:11;;22285:19;22438:30;;;:17;:30;;;;;;:35;;22434:378;;22574:13;;22559:11;:28;22555:239;;22719:30;;;;:17;:30;;;;;:52;;;22555:239;22267:559;22210:616;22851:35;;22878:7;;22874:1;;-1:-1:-1;;;;;22851:35:3;;;;;22874:1;;22851:35;-1:-1:-1;;23069:12:3;:14;;;;;;-1:-1:-1;;;20230:2870:3:o;2433:187:0:-;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;;;;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;1156:184:2:-;1277:4;1329;1300:25;1313:5;1320:4;1300:12;:25::i;:::-;:33;;1156:184;-1:-1:-1;;;;1156:184:2:o;23581:697:3:-;23759:88;;-1:-1:-1;;;23759:88:3;;23739:4;;-1:-1:-1;;;;;23759:45:3;;;;;:88;;26127:10;;23826:4;;23832:7;;23841:5;;23759:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23759:88:3;;;;;;;;-1:-1:-1;;23759:88:3;;;;;;;;;;;;:::i;:::-;;;23755:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24037:6;:13;24054:1;24037:18;24033:229;;24082:40;;-1:-1:-1;;;24082:40:3;;;;;;;;;;;24033:229;24222:6;24216:13;24207:6;24203:2;24199:15;24192:38;23755:517;-1:-1:-1;;;;;;23915:64:3;-1:-1:-1;;;23915:64:3;;-1:-1:-1;23581:697:3;;;;;;:::o;2140:95:5:-;2192:13;2224:4;2217:11;;;;;:::i;26245:1920:3:-;26708:4;26702:11;;26715:3;26698:21;;26791:17;;;;27474:11;;;27355:5;27604:2;27618;27608:13;;27600:22;27474:11;27587:36;27658:2;27648:13;;27249:682;27676:4;27249:682;;;27862:1;27857:3;27853:11;27846:18;;27912:2;27906:4;27902:13;27898:2;27894:22;27889:3;27881:36;27769:2;27759:13;;27249:682;;;-1:-1:-1;27959:13:3;;;-1:-1:-1;;28072:12:3;;;28130:19;;;28072:12;26245:1920;-1:-1:-1;26245:1920:3:o;14520:661::-;14638:19;14644:2;14648:8;14638:5;:19::i;:::-;-1:-1:-1;;;;;14696:14:3;;;:19;14692:473;;14735:11;14749:13;14796:14;;;14828:229;14858:62;14897:1;14901:2;14905:7;;;;;;14914:5;14858:30;:62::i;:::-;14853:165;;14955:40;;-1:-1:-1;;;14955:40:3;;;;;;;;;;;14853:165;15052:3;15044:5;:11;14828:229;;15137:3;15120:13;;:20;15116:34;;15142:8;;;15116:34;14717:448;;14520:661;;;:::o;1994:290:2:-;2077:7;2119:4;2077:7;2133:116;2157:5;:12;2153:1;:16;2133:116;;;2205:33;2215:12;2229:5;2235:1;2229:8;;;;;;;;:::i;:::-;;;;;;;2205:9;:33::i;:::-;2190:48;-1:-1:-1;2171:3:2;;;;:::i;:::-;;;;2133:116;;;-1:-1:-1;2265:12:2;1994:290;-1:-1:-1;;;1994:290:2:o;15442:1574:3:-;15506:20;15529:13;15574:2;15581:1;15556:26;15552:58;;15591:19;;-1:-1:-1;;;15591:19:3;;;;;;;;;;;15552:58;15624:8;15636:1;15624:13;15620:44;;15646:18;;-1:-1:-1;;;15646:18:3;;;;;;;;;;;15620:44;-1:-1:-1;;;;;16200:22:3;;;;;;:18;:22;;;;1151:2;16200:22;;;:70;;16238:31;16226:44;;16200:70;;;16506:31;;;:17;:31;;;;;16597:15;1656:3;16597:41;16556:83;;-1:-1:-1;16674:13:3;;1909:3;16659:56;16556:160;16506:210;;16759:117;16785:49;;16825:8;;;;16810:23;;;-1:-1:-1;;;;;16785:49:3;;;16802:1;;16785:49;;16802:1;;16785:49;16866:8;16857:6;:17;16759:117;;-1:-1:-1;16906:23:3;16890:13;:39;-1:-1:-1;12591:164:3:o;8879:147:2:-;8942:7;8972:1;8968;:5;:51;;9100:13;9191:15;;;9226:4;9219:15;;;9272:4;9256:21;;8968:51;;;-1:-1:-1;9100:13:2;9191:15;;;9226:4;9219:15;9272:4;9256:21;;;8879:147::o;14:131:6:-;-1:-1:-1;;;;;;88:32:6;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:6;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:6;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:6:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:6;;1348:180;-1:-1:-1;1348:180:6:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:6;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:6:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:592::-;2955:6;2963;3016:2;3004:9;2995:7;2991:23;2987:32;2984:52;;;3032:1;3029;3022:12;2984:52;3072:9;3059:23;3101:18;3142:2;3134:6;3131:14;3128:34;;;3158:1;3155;3148:12;3128:34;3196:6;3185:9;3181:22;3171:32;;3241:7;3234:4;3230:2;3226:13;3222:27;3212:55;;3263:1;3260;3253:12;3212:55;3303:2;3290:16;3329:2;3321:6;3318:14;3315:34;;;3345:1;3342;3335:12;3315:34;3390:7;3385:2;3376:6;3372:2;3368:15;3364:24;3361:37;3358:57;;;3411:1;3408;3401:12;3358:57;3442:2;3434:11;;;;;3464:6;;-1:-1:-1;2884:592:6;;-1:-1:-1;;;;2884:592:6:o;3666:367::-;3729:8;3739:6;3793:3;3786:4;3778:6;3774:17;3770:27;3760:55;;3811:1;3808;3801:12;3760:55;-1:-1:-1;3834:20:6;;3877:18;3866:30;;3863:50;;;3909:1;3906;3899:12;3863:50;3946:4;3938:6;3934:17;3922:29;;4006:3;3999:4;3989:6;3986:1;3982:14;3974:6;3970:27;3966:38;3963:47;3960:67;;;4023:1;4020;4013:12;3960:67;3666:367;;;;;:::o;4038:579::-;4142:6;4150;4158;4166;4219:2;4207:9;4198:7;4194:23;4190:32;4187:52;;;4235:1;4232;4225:12;4187:52;4258:29;4277:9;4258:29;:::i;:::-;4248:39;;4334:2;4323:9;4319:18;4306:32;4296:42;;4389:2;4378:9;4374:18;4361:32;4416:18;4408:6;4405:30;4402:50;;;4448:1;4445;4438:12;4402:50;4487:70;4549:7;4540:6;4529:9;4525:22;4487:70;:::i;:::-;4038:579;;;;-1:-1:-1;4576:8:6;-1:-1:-1;;;;4038:579:6:o;4622:347::-;4687:6;4695;4748:2;4736:9;4727:7;4723:23;4719:32;4716:52;;;4764:1;4761;4754:12;4716:52;4787:29;4806:9;4787:29;:::i;:::-;4777:39;;4866:2;4855:9;4851:18;4838:32;4913:5;4906:13;4899:21;4892:5;4889:32;4879:60;;4935:1;4932;4925:12;4879:60;4958:5;4948:15;;;4622:347;;;;;:::o;4974:127::-;5035:10;5030:3;5026:20;5023:1;5016:31;5066:4;5063:1;5056:15;5090:4;5087:1;5080:15;5106:1138;5201:6;5209;5217;5225;5278:3;5266:9;5257:7;5253:23;5249:33;5246:53;;;5295:1;5292;5285:12;5246:53;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5451:2;5440:9;5436:18;5423:32;5413:42;;5506:2;5495:9;5491:18;5478:32;5529:18;5570:2;5562:6;5559:14;5556:34;;;5586:1;5583;5576:12;5556:34;5624:6;5613:9;5609:22;5599:32;;5669:7;5662:4;5658:2;5654:13;5650:27;5640:55;;5691:1;5688;5681:12;5640:55;5727:2;5714:16;5749:2;5745;5742:10;5739:36;;;5755:18;;:::i;:::-;5830:2;5824:9;5798:2;5884:13;;-1:-1:-1;;5880:22:6;;;5904:2;5876:31;5872:40;5860:53;;;5928:18;;;5948:22;;;5925:46;5922:72;;;5974:18;;:::i;:::-;6014:10;6010:2;6003:22;6049:2;6041:6;6034:18;6089:7;6084:2;6079;6075;6071:11;6067:20;6064:33;6061:53;;;6110:1;6107;6100:12;6061:53;6166:2;6161;6157;6153:11;6148:2;6140:6;6136:15;6123:46;6211:1;6206:2;6201;6193:6;6189:15;6185:24;6178:35;6232:6;6222:16;;;;;;;5106:1138;;;;;;;:::o;6249:505::-;6344:6;6352;6360;6413:2;6401:9;6392:7;6388:23;6384:32;6381:52;;;6429:1;6426;6419:12;6381:52;6469:9;6456:23;6502:18;6494:6;6491:30;6488:50;;;6534:1;6531;6524:12;6488:50;6573:70;6635:7;6626:6;6615:9;6611:22;6573:70;:::i;:::-;6662:8;;6547:96;;-1:-1:-1;6744:2:6;6729:18;;;;6716:32;;6249:505;-1:-1:-1;;;;6249:505:6:o;6759:260::-;6827:6;6835;6888:2;6876:9;6867:7;6863:23;6859:32;6856:52;;;6904:1;6901;6894:12;6856:52;6927:29;6946:9;6927:29;:::i;:::-;6917:39;;6975:38;7009:2;6998:9;6994:18;6975:38;:::i;:::-;6965:48;;6759:260;;;;;:::o;7206:380::-;7285:1;7281:12;;;;7328;;;7349:61;;7403:4;7395:6;7391:17;7381:27;;7349:61;7456:2;7448:6;7445:14;7425:18;7422:38;7419:161;;7502:10;7497:3;7493:20;7490:1;7483:31;7537:4;7534:1;7527:15;7565:4;7562:1;7555:15;7419:161;;7206:380;;;:::o;7591:337::-;7793:2;7775:21;;;7832:2;7812:18;;;7805:30;-1:-1:-1;;;7866:2:6;7851:18;;7844:43;7919:2;7904:18;;7591:337::o;7933:127::-;7994:10;7989:3;7985:20;7982:1;7975:31;8025:4;8022:1;8015:15;8049:4;8046:1;8039:15;8065:125;8130:9;;;8151:10;;;8148:36;;;8164:18;;:::i;8667:545::-;8769:2;8764:3;8761:11;8758:448;;;8805:1;8830:5;8826:2;8819:17;8875:4;8871:2;8861:19;8945:2;8933:10;8929:19;8926:1;8922:27;8916:4;8912:38;8981:4;8969:10;8966:20;8963:47;;;-1:-1:-1;9004:4:6;8963:47;9059:2;9054:3;9050:12;9047:1;9043:20;9037:4;9033:31;9023:41;;9114:82;9132:2;9125:5;9122:13;9114:82;;;9177:17;;;9158:1;9147:13;9114:82;;9388:1206;9512:18;9507:3;9504:27;9501:53;;;9534:18;;:::i;:::-;9563:94;9653:3;9613:38;9645:4;9639:11;9613:38;:::i;:::-;9607:4;9563:94;:::i;:::-;9683:1;9708:2;9703:3;9700:11;9725:1;9720:616;;;;10380:1;10397:3;10394:93;;;-1:-1:-1;10453:19:6;;;10440:33;10394:93;-1:-1:-1;;9345:1:6;9341:11;;;9337:24;9333:29;9323:40;9369:1;9365:11;;;9320:57;10500:78;;9693:895;;9720:616;8614:1;8607:14;;;8651:4;8638:18;;-1:-1:-1;;9756:17:6;;;9857:9;9879:229;9893:7;9890:1;9887:14;9879:229;;;9982:19;;;9969:33;9954:49;;10089:4;10074:20;;;;10042:1;10030:14;;;;9909:12;9879:229;;;9883:3;10136;10127:7;10124:16;10121:159;;;10260:1;10256:6;10250:3;10244;10241:1;10237:11;10233:21;10229:34;10225:39;10212:9;10207:3;10203:19;10190:33;10186:79;10178:6;10171:95;10121:159;;;10323:1;10317:3;10314:1;10310:11;10306:19;10300:4;10293:33;9693:895;;9388:1206;;;:::o;11528:340::-;11730:2;11712:21;;;11769:2;11749:18;;;11742:30;-1:-1:-1;;;11803:2:6;11788:18;;11781:46;11859:2;11844:18;;11528:340::o;12923:168::-;12996:9;;;13027;;13044:15;;;13038:22;;13024:37;13014:71;;13065:18;;:::i;13442:127::-;13503:10;13498:3;13494:20;13491:1;13484:31;13534:4;13531:1;13524:15;13558:4;13555:1;13548:15;13574:135;13613:3;13634:17;;;13631:43;;13654:18;;:::i;:::-;-1:-1:-1;13701:1:6;13690:13;;13574:135::o;13714:663::-;13994:3;14032:6;14026:13;14048:66;14107:6;14102:3;14095:4;14087:6;14083:17;14048:66;:::i;:::-;14177:13;;14136:16;;;;14199:70;14177:13;14136:16;14246:4;14234:17;;14199:70;:::i;:::-;-1:-1:-1;;;14291:20:6;;14320:22;;;14369:1;14358:13;;13714:663;-1:-1:-1;;;;13714:663:6:o;15150:489::-;-1:-1:-1;;;;;15419:15:6;;;15401:34;;15471:15;;15466:2;15451:18;;15444:43;15518:2;15503:18;;15496:34;;;15566:3;15561:2;15546:18;;15539:31;;;15344:4;;15587:46;;15613:19;;15605:6;15587:46;:::i;:::-;15579:54;15150:489;-1:-1:-1;;;;;;15150:489:6:o;15644:249::-;15713:6;15766:2;15754:9;15745:7;15741:23;15737:32;15734:52;;;15782:1;15779;15772:12;15734:52;15814:9;15808:16;15833:30;15857:5;15833:30;:::i

Swarm Source

ipfs://5e1f9c17842b2b82654aa07d1d9a2f80096759100700fe211899388c895cb7d0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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