ETH Price: $3,452.50 (-1.96%)
Gas: 3 Gwei

Token

BoredJametPunksClub (BJPC)
 

Overview

Max Total Supply

3,333 BJPC

Holders

1,083

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
tbiddy.eth
Balance
1 BJPC
0x4E9b812BF109cd768BcA453778e406824e8ff5E6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Jamet is an iconic figure known for his dance that rebalances the ETH Network, a hand-drawn collection of NFTs, containing 3333 individually generated NFT supplies.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BoredJametPunksClub

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-15
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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.
 */
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 proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _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}
     *
     * _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 the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _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}
     *
     * _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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.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();

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

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

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @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 bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

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

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

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

    // The 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`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

    // Mapping from token ID to approved address.
    mapping(uint256 => 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 (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

    /**
     * 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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(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-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 {
        transferFrom(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.
     *
     * See {_mint}.
     *
     * 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 (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

    /**
     * @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 Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev 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: contracts/BoredJametPunksClub.sol


pragma solidity ^0.8.15;







enum Mode {
    INIT,
    CLAIM,
    PRESALE,
    PUBLIC,
    FINAL
}

contract BoredJametPunksClub is ERC721A, Ownable, ReentrancyGuard {
    using ECDSA for bytes32;
    using Strings for uint256;

    string private _tokenBaseURI;

    uint256 public constant MAX_QTY = 3_333;

    // gifting config
    uint256 public constant QTY_FOR_GIFT = 33;
    uint256 public qtyMintedForGifting;

    // airdrop claim config
    uint256 public constant QTY_FOR_AIRDROP = 210;
    uint256 public qtyMintedForAirdrop;
    bytes32 private airdropRoot;
    mapping(address => bool) public airdropAddresses;

    // claim config
    uint256 public constant QTY_FOR_CLAIM = 123;
    uint256 public qtyMintedForClaim;
    mapping(address => bool) public claimAddresses;
    address private claimSigner;

    // free after paid mint(s)
    uint256 public constant FREE_AFTER = 2;

    // presale config
    uint256 public presalePrice = 0.0095 ether;
    uint256 public constant QTY_FOR_PRESALE = 2_222;
    uint256 public constant MAX_QTY_PER_PRESALE = 3;
    uint256 public qtyMintedForPresale;
    mapping(address => uint256) public presaleAddresses;
    address private presaleSigner;

    // public sale config
    uint256 public publicPrice = 0.015 ether;
    uint256 public constant MAX_QTY_PER_PUBLIC = 3;
    uint256 public qtyMintedForPublic;
    mapping(address => uint256) public publicAddresses;

    Mode public mode = Mode.INIT;
    bool public paused = false;

    constructor(
        bytes32 airdropRoot_,
        address claimSigner_,
        address presaleSigner_,
        string memory tokenBaseURI_
    ) 
        ERC721A("BoredJametPunksClub", "BJPC")
    {
        airdropRoot = airdropRoot_;
        claimSigner = claimSigner_;
        presaleSigner = presaleSigner_;
        _tokenBaseURI = tokenBaseURI_;
    }

    function gift(address to, uint256 qty) external onlyOwner nonReentrant {
        require(!paused, "paused");
        require(mode == Mode.INIT, "not in init mode");
        require(qtyMintedForGifting + qty <= QTY_FOR_GIFT, "exceeds gift qty");
        require(totalSupply() + qty <= MAX_QTY, "exceeds total supply");

        qtyMintedForGifting += qty;

        _safeMint(to, qty);
    }

    function claimAirdrop(uint256 qty, bytes32[] calldata proof) external nonReentrant {
        require(!paused, "paused");
        require(mode != Mode.INIT, "should not be in init mode");
        require(MerkleProof.verify(proof, airdropRoot, keccak256(
            abi.encodePacked(msg.sender, qty)
        )), "not eligible");
        require(tx.origin == msg.sender, "invalid origin");
        require(qtyMintedForAirdrop + qty <= QTY_FOR_AIRDROP, "exceeds airdrop qty");
        require(totalSupply() + qty <= MAX_QTY, "exceeds total supply");
        require(!airdropAddresses[msg.sender], "already airdropped");

        airdropAddresses[msg.sender] = true;
        qtyMintedForAirdrop += qty;

        _safeMint(msg.sender, qty);
    }

    function recoverSigner(address sender, bytes memory signature) internal pure returns (address) {
        return keccak256(
            abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                bytes32(uint256(uint160(sender)))
            )
        ).recover(signature);
    }

    function claimMint(bytes calldata signature) external nonReentrant {
        require(!paused, "paused");
        require(mode == Mode.CLAIM, "not in claim mode");
        require(claimSigner == recoverSigner(msg.sender, signature), "invalid signature");
        require(tx.origin == msg.sender, "invalid origin");
        require(qtyMintedForClaim + 1 <= QTY_FOR_CLAIM, "exceeds total claim qty");
        require(totalSupply() + 1 <= MAX_QTY, "exceeds total supply");
        require(!claimAddresses[msg.sender], "already claimed");

        claimAddresses[msg.sender] = true;
        qtyMintedForClaim++;

        _safeMint(msg.sender, 1);
    }

    function presaleMint(uint256 qty, bytes calldata signature) external payable nonReentrant {
        require(!paused, "paused");
        require(mode == Mode.PRESALE, "not in presale mode");
        require(presaleSigner == recoverSigner(msg.sender, signature), "invalid signature");
        require(tx.origin == msg.sender, "invalid origin");
        require(qtyMintedForPresale + qty <= QTY_FOR_PRESALE, "exceeds total presale qty");
        require(qty <= MAX_QTY_PER_PRESALE, "exceeds qty per mint");
        require(totalSupply() + qty <= MAX_QTY, "exceeds total supply");

        uint256 oldQty = presaleAddresses[msg.sender];
        uint256 newQty = oldQty + qty;
        require(newQty <= MAX_QTY_PER_PRESALE, "exceeded allowed qty");
        
        uint256 cost = presalePrice;
        if (oldQty < FREE_AFTER) {
            uint256 adjQty = qty;

            if (newQty > FREE_AFTER) {
                adjQty -= (newQty - FREE_AFTER);
            }

            cost *= adjQty;
        } else {
            cost = 0;
        }

        require(msg.value == cost, "incorrect eth");
        presaleAddresses[msg.sender] = newQty;
        qtyMintedForPresale += qty;

        _safeMint(msg.sender, qty);
    }

    function publicMint(uint256 qty) external payable nonReentrant {
        require(!paused, "paused");
        require(mode == Mode.PUBLIC, "not in public mode");
        require(tx.origin == msg.sender, "invalid origin");
        require(qty <= MAX_QTY_PER_PUBLIC, "exceeds qty per mint");
        require(totalSupply() + qty <= MAX_QTY, "exceeds total supply");

        uint256 oldQty = publicAddresses[msg.sender];
        uint256 newQty = oldQty + qty;
        require(newQty <= MAX_QTY_PER_PUBLIC, "exceeds allowed qty");

        uint256 cost = publicPrice;
        if (oldQty < FREE_AFTER) {
            uint256 adjQty = qty;

            if (newQty > FREE_AFTER) {
                adjQty -= (newQty - FREE_AFTER);
            }

            cost *= adjQty;
        } else {
            cost = 0;
        }

        require(msg.value == cost, "incorrect eth");
        publicAddresses[msg.sender] = newQty;
        // qtyMintedForPublic += qty;

        _safeMint(msg.sender, qty);
    }

    function finalMint(address to) external onlyOwner nonReentrant {
        require(!paused, "paused");
        require(mode == Mode.FINAL, "not in final mode");

        uint256 unminted = MAX_QTY - totalSupply();
        require(unminted > 0, "reached max qty");

        _safeMint(to, unminted);
    }

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

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

    function tokenBaseURI() external view returns (string memory) {
        return _tokenBaseURI;
    }

    function setTokenBaseURI(string calldata tokenBaseURI_) external onlyOwner {
        _tokenBaseURI = tokenBaseURI_;
    }

    function tokenURI(uint256 tokenId) public override view returns (string memory) {
        require(_exists(tokenId), "nonexistent token");

        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }

    function setAirdropRoot(bytes32 airdropRoot_) external onlyOwner
    {
        airdropRoot = airdropRoot_;
    }

    function setClaimSigner(address claimSigner_) external onlyOwner
    {
        claimSigner = claimSigner_;
    }

    function setPresaleSigner(address presaleSigner_) external onlyOwner
    {
        presaleSigner = presaleSigner_;
    }

    function setPaused(bool paused_) external onlyOwner {
        paused = paused_;
    }

    function setPresalePrice(uint256 presalePrice_) external onlyOwner {
        presalePrice = presalePrice_;
    }

    function setPublicPrice(uint256 publicPrice_) external onlyOwner {
        publicPrice = publicPrice_;
    }

    function withdraw() external onlyOwner {
        uint256 totalBalance = address(this).balance;
        require(totalBalance > 0, "no balance");

        uint256 balanceA = totalBalance * 30 / 100;
        (bool success, ) = payable(0x2e04434e79Bc456c06F3E6e60143bEe69b7b0c43)
            .call{value: balanceA }("");
        require(success, "failed transfer");

        (success, ) = payable(owner()).call{value: totalBalance - balanceA}("");
        require(success, "failed transfer");
    }

    function setMode(Mode mode_) external onlyOwner {
        mode = mode_;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"airdropRoot_","type":"bytes32"},{"internalType":"address","name":"claimSigner_","type":"address"},{"internalType":"address","name":"presaleSigner_","type":"address"},{"internalType":"string","name":"tokenBaseURI_","type":"string"}],"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":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_AFTER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_QTY_PER_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_QTY_PER_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"QTY_FOR_AIRDROP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"QTY_FOR_CLAIM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"QTY_FOR_GIFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"QTY_FOR_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"airdropAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claimAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"claimMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"finalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mode","outputs":[{"internalType":"enum Mode","name":"","type":"uint8"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"presaleAddresses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicAddresses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"qtyMintedForAirdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"qtyMintedForClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"qtyMintedForGifting","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"qtyMintedForPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"qtyMintedForPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"airdropRoot_","type":"bytes32"}],"name":"setAirdropRoot","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":"address","name":"claimSigner_","type":"address"}],"name":"setClaimSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Mode","name":"mode_","type":"uint8"}],"name":"setMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused_","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presalePrice_","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"presaleSigner_","type":"address"}],"name":"setPresaleSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicPrice_","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenBaseURI_","type":"string"}],"name":"setTokenBaseURI","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":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526621c0331d5dc00060125566354a6ba7a180006016556019805461ffff191690553480156200003257600080fd5b50604051620034e5380380620034e58339810160408190526200005591620001b3565b6040518060400160405280601381526020017f426f7265644a616d657450756e6b73436c75620000000000000000000000000081525060405180604001604052806004815260200163424a504360e01b8152508160029081620000b991906200034e565b506003620000c882826200034e565b5050600160005550620000db336200012e565b6001600955600d849055601180546001600160a01b038086166001600160a01b0319928316179092556015805492851692909116919091179055600a6200012382826200034e565b50505050506200041a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80516001600160a01b03811681146200019857600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215620001ca57600080fd5b845193506020620001dd81870162000180565b9350620001ed6040870162000180565b60608701519093506001600160401b03808211156200020b57600080fd5b818801915088601f8301126200022057600080fd5b8151818111156200023557620002356200019d565b604051601f8201601f19908116603f011681019083821181831017156200026057620002606200019d565b816040528281528b868487010111156200027957600080fd5b600093505b828410156200029d57848401860151818501870152928501926200027e565b82841115620002af5760008684830101525b989b979a50959850505050505050565b600181811c90821680620002d457607f821691505b602082108103620002f557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034957600081815260208120601f850160051c81016020861015620003245750805b601f850160051c820191505b81811015620003455782815560010162000330565b5050505b505050565b81516001600160401b038111156200036a576200036a6200019d565b62000382816200037b8454620002bf565b84620002fb565b602080601f831160018114620003ba5760008415620003a15750858301515b600019600386901b1c1916600185901b17855562000345565b600085815260208120601f198616915b82811015620003eb57888601518255948401946001909101908401620003ca565b50858210156200040a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6130bb806200042a6000396000f3fe6080604052600436106103345760003560e01c80636352211e116101ab578063a22cb465116100f7578063c87b56dd11610095578063f2fde38b1161006f578063f2fde38b14610934578063f736ef0514610954578063fd24a8541461096a578063fed80d431461097d57600080fd5b8063c87b56dd146108ab578063cbce4c97146108cb578063e985e9c5146108eb57600080fd5b8063b88d4fde116100d1578063b88d4fde14610835578063b9f67b2514610855578063c1f34d3514610875578063c62752551461088b57600080fd5b8063a22cb465146107ff578063a945bf801461081f578063b34ac18a146104ae57600080fd5b806380090c04116101645780638f7868b81161013e5780638f7868b81461079557806391653b3e146107b557806395d89b41146107ca5780639d9e7a99146107df57600080fd5b806380090c041461072a5780638da5cb5b146107575780638ef79e911461077557600080fd5b80636352211e1461067357806366fca980146106935780636d6b5bbd146106c057806370a08231146106e0578063715018a61461070057806378d0baf21461071557600080fd5b8063285f23a51161028557806335923cae116102235780634e99b800116101fd5780634e99b800146105f9578063588163631461060e5780635c2c2183146106245780635c975abb1461065457600080fd5b806335923cae146105ae5780633ccfd60b146105c457806342842e0e146105d957600080fd5b80632f4526e31161025f5780632f4526e3146105325780633026374f146105625780633465e298146105785780633549345e1461058e57600080fd5b8063285f23a5146104e3578063295a5212146104f85780632db115441461051f57600080fd5b80630bcae1ac116102f25780631c96cae9116102cc5780631c96cae91461047857806321175b4a1461048e57806322acd3f4146104ae57806323b872dd146104c357600080fd5b80630bcae1ac1461042357806316c38b3c1461044357806318160ddd1461046357600080fd5b80620e7fa81461033957806301ffc9a71461036257806306aa33431461039257806306fdde03146103a7578063081812fc146103c9578063095ea7b314610401575b600080fd5b34801561034557600080fd5b5061034f60125481565b6040519081526020015b60405180910390f35b34801561036e57600080fd5b5061038261037d366004612880565b61099d565b6040519015158152602001610359565b34801561039e57600080fd5b5061034f602181565b3480156103b357600080fd5b506103bc6109ef565b60405161035991906128f5565b3480156103d557600080fd5b506103e96103e4366004612908565b610a81565b6040516001600160a01b039091168152602001610359565b34801561040d57600080fd5b5061042161041c36600461293d565b610ac5565b005b34801561042f57600080fd5b5061042161043e366004612967565b610b65565b34801561044f57600080fd5b5061042161045e3660046129f6565b610e1c565b34801561046f57600080fd5b5061034f610e3e565b34801561048457600080fd5b5061034f610d0581565b34801561049a57600080fd5b506104216104a9366004612a11565b610e4c565b3480156104ba57600080fd5b5061034f600381565b3480156104cf57600080fd5b506104216104de366004612a32565b610e7b565b3480156104ef57600080fd5b5061034f600281565b34801561050457600080fd5b506019546105129060ff1681565b6040516103599190612a84565b61042161052d366004612908565b611014565b34801561053e57600080fd5b5061038261054d366004612aac565b600e6020526000908152604090205460ff1681565b34801561056e57600080fd5b5061034f600f5481565b34801561058457600080fd5b5061034f60135481565b34801561059a57600080fd5b506104216105a9366004612908565b611267565b3480156105ba57600080fd5b5061034f600c5481565b3480156105d057600080fd5b50610421611274565b3480156105e557600080fd5b506104216105f4366004612a32565b611412565b34801561060557600080fd5b506103bc61142d565b34801561061a57600080fd5b5061034f6108ae81565b34801561063057600080fd5b5061038261063f366004612aac565b60106020526000908152604090205460ff1681565b34801561066057600080fd5b5060195461038290610100900460ff1681565b34801561067f57600080fd5b506103e961068e366004612908565b61143c565b34801561069f57600080fd5b5061034f6106ae366004612aac565b60146020526000908152604090205481565b3480156106cc57600080fd5b506104216106db366004612aac565b611447565b3480156106ec57600080fd5b5061034f6106fb366004612aac565b611565565b34801561070c57600080fd5b506104216115b4565b34801561072157600080fd5b5061034f607b81565b34801561073657600080fd5b5061034f610745366004612aac565b60186020526000908152604090205481565b34801561076357600080fd5b506008546001600160a01b03166103e9565b34801561078157600080fd5b50610421610790366004612b09565b6115c8565b3480156107a157600080fd5b506104216107b0366004612b09565b6115dd565b3480156107c157600080fd5b5061034f60d281565b3480156107d657600080fd5b506103bc611853565b3480156107eb57600080fd5b506104216107fa366004612908565b611862565b34801561080b57600080fd5b5061042161081a366004612b4b565b61186f565b34801561082b57600080fd5b5061034f60165481565b34801561084157600080fd5b50610421610850366004612b94565b611904565b34801561086157600080fd5b50610421610870366004612aac565b61194e565b34801561088157600080fd5b5061034f600b5481565b34801561089757600080fd5b506104216108a6366004612908565b611978565b3480156108b757600080fd5b506103bc6108c6366004612908565b611985565b3480156108d757600080fd5b506104216108e636600461293d565b611a02565b3480156108f757600080fd5b50610382610906366004612c70565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561094057600080fd5b5061042161094f366004612aac565b611b59565b34801561096057600080fd5b5061034f60175481565b610421610978366004612c9a565b611bd2565b34801561098957600080fd5b50610421610998366004612aac565b611f31565b60006301ffc9a760e01b6001600160e01b0319831614806109ce57506380ac58cd60e01b6001600160e01b03198316145b806109e95750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546109fe90612ce6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2a90612ce6565b8015610a775780601f10610a4c57610100808354040283529160200191610a77565b820191906000526020600020905b815481529060010190602001808311610a5a57829003601f168201915b5050505050905090565b6000610a8c82611f5b565b610aa9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ad08261143c565b9050336001600160a01b03821614610b0957610aec8133610906565b610b09576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600260095403610b905760405162461bcd60e51b8152600401610b8790612d20565b60405180910390fd5b6002600955601954610100900460ff1615610bbd5760405162461bcd60e51b8152600401610b8790612d57565b600060195460ff166004811115610bd657610bd6612a6e565b03610c235760405162461bcd60e51b815260206004820152601a60248201527f73686f756c64206e6f7420626520696e20696e6974206d6f64650000000000006044820152606401610b87565b610c9f82828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516bffffffffffffffffffffffff193360601b16602082015260348101899052909250605401905060405160208183030381529060405280519060200120611f90565b610cda5760405162461bcd60e51b815260206004820152600c60248201526b6e6f7420656c696769626c6560a01b6044820152606401610b87565b323314610cf95760405162461bcd60e51b8152600401610b8790612d77565b60d283600c54610d099190612db5565b1115610d4d5760405162461bcd60e51b8152602060048201526013602482015272657863656564732061697264726f702071747960681b6044820152606401610b87565b610d0583610d59610e3e565b610d639190612db5565b1115610d815760405162461bcd60e51b8152600401610b8790612dcd565b336000908152600e602052604090205460ff1615610dd65760405162461bcd60e51b8152602060048201526012602482015271185b1c9958591e48185a5c991c9bdc1c195960721b6044820152606401610b87565b336000908152600e60205260408120805460ff19166001179055600c8054859290610e02908490612db5565b90915550610e1290503384611fa6565b5050600160095550565b610e24611fc4565b601980549115156101000261ff0019909216919091179055565b600154600054036000190190565b610e54611fc4565b6019805482919060ff19166001836004811115610e7357610e73612a6e565b021790555050565b6000610e868261201e565b9050836001600160a01b0316816001600160a01b031614610eb95760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610f0657610ee98633610906565b610f0657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610f2d57604051633a954ecd60e21b815260040160405180910390fd5b8015610f3857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610fca57600184016000818152600460205260408120549003610fc8576000548114610fc85760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6002600954036110365760405162461bcd60e51b8152600401610b8790612d20565b6002600955601954610100900460ff16156110635760405162461bcd60e51b8152600401610b8790612d57565b600360195460ff16600481111561107c5761107c612a6e565b146110be5760405162461bcd60e51b81526020600482015260126024820152716e6f7420696e207075626c6963206d6f646560701b6044820152606401610b87565b3233146110dd5760405162461bcd60e51b8152600401610b8790612d77565b60038111156111255760405162461bcd60e51b8152602060048201526014602482015273195e18d959591cc81c5d1e481c195c881b5a5b9d60621b6044820152606401610b87565b610d0581611131610e3e565b61113b9190612db5565b11156111595760405162461bcd60e51b8152600401610b8790612dcd565b33600090815260186020526040812054906111748383612db5565b905060038111156111bd5760405162461bcd60e51b81526020600482015260136024820152726578636565647320616c6c6f7765642071747960681b6044820152606401610b87565b60165460028310156111fd578360028311156111eb576111de600284612dfb565b6111e89082612dfb565b90505b6111f58183612e12565b915050611201565b5060005b8034146112405760405162461bcd60e51b815260206004820152600d60248201526c0d2dcc6dee4e4cac6e840cae8d609b1b6044820152606401610b87565b33600081815260186020526040902083905561125c9085611fa6565b505060016009555050565b61126f611fc4565b601255565b61127c611fc4565b47806112b75760405162461bcd60e51b815260206004820152600a6024820152696e6f2062616c616e636560b01b6044820152606401610b87565b600060646112c683601e612e12565b6112d09190612e47565b604051909150600090732e04434e79bc456c06f3e6e60143bee69b7b0c439083908381818185875af1925050503d8060008114611329576040519150601f19603f3d011682016040523d82523d6000602084013e61132e565b606091505b50509050806113715760405162461bcd60e51b815260206004820152600f60248201526e3330b4b632b2103a3930b739b332b960891b6044820152606401610b87565b6008546001600160a01b03166113878385612dfb565b604051600081818185875af1925050503d80600081146113c3576040519150601f19603f3d011682016040523d82523d6000602084013e6113c8565b606091505b5050809150508061140d5760405162461bcd60e51b815260206004820152600f60248201526e3330b4b632b2103a3930b739b332b960891b6044820152606401610b87565b505050565b61140d83838360405180602001604052806000815250611904565b6060600a80546109fe90612ce6565b60006109e98261201e565b61144f611fc4565b6002600954036114715760405162461bcd60e51b8152600401610b8790612d20565b6002600955601954610100900460ff161561149e5760405162461bcd60e51b8152600401610b8790612d57565b600460195460ff1660048111156114b7576114b7612a6e565b146114f85760405162461bcd60e51b81526020600482015260116024820152706e6f7420696e2066696e616c206d6f646560781b6044820152606401610b87565b6000611502610e3e565b61150e90610d05612dfb565b9050600081116115525760405162461bcd60e51b815260206004820152600f60248201526e72656163686564206d61782071747960881b6044820152606401610b87565b61155c8282611fa6565b50506001600955565b60006001600160a01b03821661158e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6115bc611fc4565b6115c66000612094565b565b6115d0611fc4565b600a61140d828483612ea1565b6002600954036115ff5760405162461bcd60e51b8152600401610b8790612d20565b6002600955601954610100900460ff161561162c5760405162461bcd60e51b8152600401610b8790612d57565b600160195460ff16600481111561164557611645612a6e565b146116865760405162461bcd60e51b81526020600482015260116024820152706e6f7420696e20636c61696d206d6f646560781b6044820152606401610b87565b6116c63383838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506120e692505050565b6011546001600160a01b039081169116146117175760405162461bcd60e51b8152602060048201526011602482015270696e76616c6964207369676e617475726560781b6044820152606401610b87565b3233146117365760405162461bcd60e51b8152600401610b8790612d77565b607b600f5460016117479190612db5565b11156117955760405162461bcd60e51b815260206004820152601760248201527f6578636565647320746f74616c20636c61696d207174790000000000000000006044820152606401610b87565b610d056117a0610e3e565b6117ab906001612db5565b11156117c95760405162461bcd60e51b8152600401610b8790612dcd565b3360009081526010602052604090205460ff161561181b5760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e4818db185a5b5959608a1b6044820152606401610b87565b336000908152601060205260408120805460ff19166001179055600f80549161184383612f61565b919050555061155c336001611fa6565b6060600380546109fe90612ce6565b61186a611fc4565b600d55565b336001600160a01b038316036118985760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61190f848484610e7b565b6001600160a01b0383163b156119485761192b8484848461214e565b611948576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b611956611fc4565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b611980611fc4565b601655565b606061199082611f5b565b6119d05760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610b87565b600a6119db8361223a565b6040516020016119ec929190612f7a565b6040516020818303038152906040529050919050565b611a0a611fc4565b600260095403611a2c5760405162461bcd60e51b8152600401610b8790612d20565b6002600955601954610100900460ff1615611a595760405162461bcd60e51b8152600401610b8790612d57565b600060195460ff166004811115611a7257611a72612a6e565b14611ab25760405162461bcd60e51b815260206004820152601060248201526f6e6f7420696e20696e6974206d6f646560801b6044820152606401610b87565b602181600b54611ac29190612db5565b1115611b035760405162461bcd60e51b815260206004820152601060248201526f6578636565647320676966742071747960801b6044820152606401610b87565b610d0581611b0f610e3e565b611b199190612db5565b1115611b375760405162461bcd60e51b8152600401610b8790612dcd565b80600b6000828254611b499190612db5565b9091555061155c90508282611fa6565b611b61611fc4565b6001600160a01b038116611bc65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b87565b611bcf81612094565b50565b600260095403611bf45760405162461bcd60e51b8152600401610b8790612d20565b6002600955601954610100900460ff1615611c215760405162461bcd60e51b8152600401610b8790612d57565b600260195460ff166004811115611c3a57611c3a612a6e565b14611c7d5760405162461bcd60e51b81526020600482015260136024820152726e6f7420696e2070726573616c65206d6f646560681b6044820152606401610b87565b611cbd3383838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506120e692505050565b6015546001600160a01b03908116911614611d0e5760405162461bcd60e51b8152602060048201526011602482015270696e76616c6964207369676e617475726560781b6044820152606401610b87565b323314611d2d5760405162461bcd60e51b8152600401610b8790612d77565b6108ae83601354611d3e9190612db5565b1115611d8c5760405162461bcd60e51b815260206004820152601960248201527f6578636565647320746f74616c2070726573616c6520717479000000000000006044820152606401610b87565b6003831115611dd45760405162461bcd60e51b8152602060048201526014602482015273195e18d959591cc81c5d1e481c195c881b5a5b9d60621b6044820152606401610b87565b610d0583611de0610e3e565b611dea9190612db5565b1115611e085760405162461bcd60e51b8152600401610b8790612dcd565b3360009081526014602052604081205490611e238583612db5565b90506003811115611e6d5760405162461bcd60e51b8152602060048201526014602482015273657863656564656420616c6c6f7765642071747960601b6044820152606401610b87565b6012546002831015611ead57856002831115611e9b57611e8e600284612dfb565b611e989082612dfb565b90505b611ea58183612e12565b915050611eb1565b5060005b803414611ef05760405162461bcd60e51b815260206004820152600d60248201526c0d2dcc6dee4e4cac6e840cae8d609b1b6044820152606401610b87565b33600090815260146020526040812083905560138054889290611f14908490612db5565b90915550611f2490503387611fa6565b5050600160095550505050565b611f39611fc4565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600111158015611f6f575060005482105b80156109e9575050600090815260046020526040902054600160e01b161590565b600082611f9d858461233b565b14949350505050565b611fc0828260405180602001604052806000815250612388565b5050565b6008546001600160a01b031633146115c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b87565b6000818060011161207b5760005481101561207b5760008181526004602052604081205490600160e01b82169003612079575b80600003612072575060001901600081815260046020526040902054612051565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a33320000000060208201526001600160a01b038316603c820152600090612072908390605c01604051602081830303815290604052805190602001206123f590919063ffffffff16565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612183903390899088908890600401613001565b6020604051808303816000875af19250505080156121be575060408051601f3d908101601f191682019092526121bb9181019061303e565b60015b61221c573d8080156121ec576040519150601f19603f3d011682016040523d82523d6000602084013e6121f1565b606091505b508051600003612214576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036122615750506040805180820190915260018152600360fc1b602082015290565b8160005b811561228b578061227581612f61565b91506122849050600a83612e47565b9150612265565b60008167ffffffffffffffff8111156122a6576122a6612b7e565b6040519080825280601f01601f1916602001820160405280156122d0576020820181803683370190505b5090505b8415612232576122e5600183612dfb565b91506122f2600a8661305b565b6122fd906030612db5565b60f81b8183815181106123125761231261306f565b60200101906001600160f81b031916908160001a905350612334600a86612e47565b94506122d4565b600081815b84518110156123805761236c8286838151811061235f5761235f61306f565b6020026020010151612411565b91508061237881612f61565b915050612340565b509392505050565b6123928383612440565b6001600160a01b0383163b1561140d576000548281035b6123bc600086838060010194508661214e565b6123d9576040516368d2bf6b60e11b815260040160405180910390fd5b8181106123a95781600054146123ee57600080fd5b5050505050565b60008060006124048585612520565b915091506123808161258e565b600081831061242d576000828152602084905260409020612072565b6000838152602083905260409020612072565b6000546001600160a01b03831661246957604051622e076360e81b815260040160405180910390fd5b8160000361248a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106124d45760005550505050565b60008082516041036125565760208301516040840151606085015160001a61254a87828585612744565b94509450505050612587565b825160400361257f5760208301516040840151612574868383612831565b935093505050612587565b506000905060025b9250929050565b60008160048111156125a2576125a2612a6e565b036125aa5750565b60018160048111156125be576125be612a6e565b0361260b5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b87565b600281600481111561261f5761261f612a6e565b0361266c5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b87565b600381600481111561268057612680612a6e565b036126d85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b87565b60048160048111156126ec576126ec612a6e565b03611bcf5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b87565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561277b5750600090506003612828565b8460ff16601b1415801561279357508460ff16601c14155b156127a45750600090506004612828565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156127f8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661282157600060019250925050612828565b9150600090505b94509492505050565b6000806001600160ff1b0383168161284e60ff86901c601b612db5565b905061285c87828885612744565b935093505050935093915050565b6001600160e01b031981168114611bcf57600080fd5b60006020828403121561289257600080fd5b81356120728161286a565b60005b838110156128b85781810151838201526020016128a0565b838111156119485750506000910152565b600081518084526128e181602086016020860161289d565b601f01601f19169290920160200192915050565b60208152600061207260208301846128c9565b60006020828403121561291a57600080fd5b5035919050565b80356001600160a01b038116811461293857600080fd5b919050565b6000806040838503121561295057600080fd5b61295983612921565b946020939093013593505050565b60008060006040848603121561297c57600080fd5b83359250602084013567ffffffffffffffff8082111561299b57600080fd5b818601915086601f8301126129af57600080fd5b8135818111156129be57600080fd5b8760208260051b85010111156129d357600080fd5b6020830194508093505050509250925092565b8035801515811461293857600080fd5b600060208284031215612a0857600080fd5b612072826129e6565b600060208284031215612a2357600080fd5b81356005811061207257600080fd5b600080600060608486031215612a4757600080fd5b612a5084612921565b9250612a5e60208501612921565b9150604084013590509250925092565b634e487b7160e01b600052602160045260246000fd5b6020810160058310612aa657634e487b7160e01b600052602160045260246000fd5b91905290565b600060208284031215612abe57600080fd5b61207282612921565b60008083601f840112612ad957600080fd5b50813567ffffffffffffffff811115612af157600080fd5b60208301915083602082850101111561258757600080fd5b60008060208385031215612b1c57600080fd5b823567ffffffffffffffff811115612b3357600080fd5b612b3f85828601612ac7565b90969095509350505050565b60008060408385031215612b5e57600080fd5b612b6783612921565b9150612b75602084016129e6565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612baa57600080fd5b612bb385612921565b9350612bc160208601612921565b925060408501359150606085013567ffffffffffffffff80821115612be557600080fd5b818701915087601f830112612bf957600080fd5b813581811115612c0b57612c0b612b7e565b604051601f8201601f19908116603f01168101908382118183101715612c3357612c33612b7e565b816040528281528a6020848701011115612c4c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612c8357600080fd5b612c8c83612921565b9150612b7560208401612921565b600080600060408486031215612caf57600080fd5b83359250602084013567ffffffffffffffff811115612ccd57600080fd5b612cd986828701612ac7565b9497909650939450505050565b600181811c90821680612cfa57607f821691505b602082108103612d1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600690820152651c185d5cd95960d21b604082015260600190565b6020808252600e908201526d34b73b30b634b21037b934b3b4b760911b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612dc857612dc8612d9f565b500190565b6020808252601490820152736578636565647320746f74616c20737570706c7960601b604082015260600190565b600082821015612e0d57612e0d612d9f565b500390565b6000816000190483118215151615612e2c57612e2c612d9f565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612e5657612e56612e31565b500490565b601f82111561140d57600081815260208120601f850160051c81016020861015612e825750805b601f850160051c820191505b8181101561100c57828155600101612e8e565b67ffffffffffffffff831115612eb957612eb9612b7e565b612ecd83612ec78354612ce6565b83612e5b565b6000601f841160018114612f015760008515612ee95750838201355b600019600387901b1c1916600186901b1783556123ee565b600083815260209020601f19861690835b82811015612f325786850135825560209485019460019092019101612f12565b5086821015612f4f5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600060018201612f7357612f73612d9f565b5060010190565b6000808454612f8881612ce6565b60018281168015612fa05760018114612fb557612fe4565b60ff1984168752821515830287019450612fe4565b8860005260208060002060005b85811015612fdb5781548a820152908401908201612fc2565b50505082870194505b505050508351612ff881836020880161289d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613034908301846128c9565b9695505050505050565b60006020828403121561305057600080fd5b81516120728161286a565b60008261306a5761306a612e31565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204f633c77fe1d9f1fded3cc9a8de38c23e850bfc2a8bfaa9e55bee18f41e62a8264736f6c634300080f0033683efb0fcc4f4230c3340c14c299826d59f12e18c338505bfc317f35a75714b60000000000000000000000009f28abaefe5dbc4f3e15d85b69f8980ea985630700000000000000000000000015f09559df63ea34e297fac19e57b58e1d976a7b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001668747470733a2f2f63646e2e6a616d65742e7774662f00000000000000000000

Deployed Bytecode

0x6080604052600436106103345760003560e01c80636352211e116101ab578063a22cb465116100f7578063c87b56dd11610095578063f2fde38b1161006f578063f2fde38b14610934578063f736ef0514610954578063fd24a8541461096a578063fed80d431461097d57600080fd5b8063c87b56dd146108ab578063cbce4c97146108cb578063e985e9c5146108eb57600080fd5b8063b88d4fde116100d1578063b88d4fde14610835578063b9f67b2514610855578063c1f34d3514610875578063c62752551461088b57600080fd5b8063a22cb465146107ff578063a945bf801461081f578063b34ac18a146104ae57600080fd5b806380090c04116101645780638f7868b81161013e5780638f7868b81461079557806391653b3e146107b557806395d89b41146107ca5780639d9e7a99146107df57600080fd5b806380090c041461072a5780638da5cb5b146107575780638ef79e911461077557600080fd5b80636352211e1461067357806366fca980146106935780636d6b5bbd146106c057806370a08231146106e0578063715018a61461070057806378d0baf21461071557600080fd5b8063285f23a51161028557806335923cae116102235780634e99b800116101fd5780634e99b800146105f9578063588163631461060e5780635c2c2183146106245780635c975abb1461065457600080fd5b806335923cae146105ae5780633ccfd60b146105c457806342842e0e146105d957600080fd5b80632f4526e31161025f5780632f4526e3146105325780633026374f146105625780633465e298146105785780633549345e1461058e57600080fd5b8063285f23a5146104e3578063295a5212146104f85780632db115441461051f57600080fd5b80630bcae1ac116102f25780631c96cae9116102cc5780631c96cae91461047857806321175b4a1461048e57806322acd3f4146104ae57806323b872dd146104c357600080fd5b80630bcae1ac1461042357806316c38b3c1461044357806318160ddd1461046357600080fd5b80620e7fa81461033957806301ffc9a71461036257806306aa33431461039257806306fdde03146103a7578063081812fc146103c9578063095ea7b314610401575b600080fd5b34801561034557600080fd5b5061034f60125481565b6040519081526020015b60405180910390f35b34801561036e57600080fd5b5061038261037d366004612880565b61099d565b6040519015158152602001610359565b34801561039e57600080fd5b5061034f602181565b3480156103b357600080fd5b506103bc6109ef565b60405161035991906128f5565b3480156103d557600080fd5b506103e96103e4366004612908565b610a81565b6040516001600160a01b039091168152602001610359565b34801561040d57600080fd5b5061042161041c36600461293d565b610ac5565b005b34801561042f57600080fd5b5061042161043e366004612967565b610b65565b34801561044f57600080fd5b5061042161045e3660046129f6565b610e1c565b34801561046f57600080fd5b5061034f610e3e565b34801561048457600080fd5b5061034f610d0581565b34801561049a57600080fd5b506104216104a9366004612a11565b610e4c565b3480156104ba57600080fd5b5061034f600381565b3480156104cf57600080fd5b506104216104de366004612a32565b610e7b565b3480156104ef57600080fd5b5061034f600281565b34801561050457600080fd5b506019546105129060ff1681565b6040516103599190612a84565b61042161052d366004612908565b611014565b34801561053e57600080fd5b5061038261054d366004612aac565b600e6020526000908152604090205460ff1681565b34801561056e57600080fd5b5061034f600f5481565b34801561058457600080fd5b5061034f60135481565b34801561059a57600080fd5b506104216105a9366004612908565b611267565b3480156105ba57600080fd5b5061034f600c5481565b3480156105d057600080fd5b50610421611274565b3480156105e557600080fd5b506104216105f4366004612a32565b611412565b34801561060557600080fd5b506103bc61142d565b34801561061a57600080fd5b5061034f6108ae81565b34801561063057600080fd5b5061038261063f366004612aac565b60106020526000908152604090205460ff1681565b34801561066057600080fd5b5060195461038290610100900460ff1681565b34801561067f57600080fd5b506103e961068e366004612908565b61143c565b34801561069f57600080fd5b5061034f6106ae366004612aac565b60146020526000908152604090205481565b3480156106cc57600080fd5b506104216106db366004612aac565b611447565b3480156106ec57600080fd5b5061034f6106fb366004612aac565b611565565b34801561070c57600080fd5b506104216115b4565b34801561072157600080fd5b5061034f607b81565b34801561073657600080fd5b5061034f610745366004612aac565b60186020526000908152604090205481565b34801561076357600080fd5b506008546001600160a01b03166103e9565b34801561078157600080fd5b50610421610790366004612b09565b6115c8565b3480156107a157600080fd5b506104216107b0366004612b09565b6115dd565b3480156107c157600080fd5b5061034f60d281565b3480156107d657600080fd5b506103bc611853565b3480156107eb57600080fd5b506104216107fa366004612908565b611862565b34801561080b57600080fd5b5061042161081a366004612b4b565b61186f565b34801561082b57600080fd5b5061034f60165481565b34801561084157600080fd5b50610421610850366004612b94565b611904565b34801561086157600080fd5b50610421610870366004612aac565b61194e565b34801561088157600080fd5b5061034f600b5481565b34801561089757600080fd5b506104216108a6366004612908565b611978565b3480156108b757600080fd5b506103bc6108c6366004612908565b611985565b3480156108d757600080fd5b506104216108e636600461293d565b611a02565b3480156108f757600080fd5b50610382610906366004612c70565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561094057600080fd5b5061042161094f366004612aac565b611b59565b34801561096057600080fd5b5061034f60175481565b610421610978366004612c9a565b611bd2565b34801561098957600080fd5b50610421610998366004612aac565b611f31565b60006301ffc9a760e01b6001600160e01b0319831614806109ce57506380ac58cd60e01b6001600160e01b03198316145b806109e95750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546109fe90612ce6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2a90612ce6565b8015610a775780601f10610a4c57610100808354040283529160200191610a77565b820191906000526020600020905b815481529060010190602001808311610a5a57829003601f168201915b5050505050905090565b6000610a8c82611f5b565b610aa9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ad08261143c565b9050336001600160a01b03821614610b0957610aec8133610906565b610b09576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600260095403610b905760405162461bcd60e51b8152600401610b8790612d20565b60405180910390fd5b6002600955601954610100900460ff1615610bbd5760405162461bcd60e51b8152600401610b8790612d57565b600060195460ff166004811115610bd657610bd6612a6e565b03610c235760405162461bcd60e51b815260206004820152601a60248201527f73686f756c64206e6f7420626520696e20696e6974206d6f64650000000000006044820152606401610b87565b610c9f82828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516bffffffffffffffffffffffff193360601b16602082015260348101899052909250605401905060405160208183030381529060405280519060200120611f90565b610cda5760405162461bcd60e51b815260206004820152600c60248201526b6e6f7420656c696769626c6560a01b6044820152606401610b87565b323314610cf95760405162461bcd60e51b8152600401610b8790612d77565b60d283600c54610d099190612db5565b1115610d4d5760405162461bcd60e51b8152602060048201526013602482015272657863656564732061697264726f702071747960681b6044820152606401610b87565b610d0583610d59610e3e565b610d639190612db5565b1115610d815760405162461bcd60e51b8152600401610b8790612dcd565b336000908152600e602052604090205460ff1615610dd65760405162461bcd60e51b8152602060048201526012602482015271185b1c9958591e48185a5c991c9bdc1c195960721b6044820152606401610b87565b336000908152600e60205260408120805460ff19166001179055600c8054859290610e02908490612db5565b90915550610e1290503384611fa6565b5050600160095550565b610e24611fc4565b601980549115156101000261ff0019909216919091179055565b600154600054036000190190565b610e54611fc4565b6019805482919060ff19166001836004811115610e7357610e73612a6e565b021790555050565b6000610e868261201e565b9050836001600160a01b0316816001600160a01b031614610eb95760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610f0657610ee98633610906565b610f0657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610f2d57604051633a954ecd60e21b815260040160405180910390fd5b8015610f3857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610fca57600184016000818152600460205260408120549003610fc8576000548114610fc85760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6002600954036110365760405162461bcd60e51b8152600401610b8790612d20565b6002600955601954610100900460ff16156110635760405162461bcd60e51b8152600401610b8790612d57565b600360195460ff16600481111561107c5761107c612a6e565b146110be5760405162461bcd60e51b81526020600482015260126024820152716e6f7420696e207075626c6963206d6f646560701b6044820152606401610b87565b3233146110dd5760405162461bcd60e51b8152600401610b8790612d77565b60038111156111255760405162461bcd60e51b8152602060048201526014602482015273195e18d959591cc81c5d1e481c195c881b5a5b9d60621b6044820152606401610b87565b610d0581611131610e3e565b61113b9190612db5565b11156111595760405162461bcd60e51b8152600401610b8790612dcd565b33600090815260186020526040812054906111748383612db5565b905060038111156111bd5760405162461bcd60e51b81526020600482015260136024820152726578636565647320616c6c6f7765642071747960681b6044820152606401610b87565b60165460028310156111fd578360028311156111eb576111de600284612dfb565b6111e89082612dfb565b90505b6111f58183612e12565b915050611201565b5060005b8034146112405760405162461bcd60e51b815260206004820152600d60248201526c0d2dcc6dee4e4cac6e840cae8d609b1b6044820152606401610b87565b33600081815260186020526040902083905561125c9085611fa6565b505060016009555050565b61126f611fc4565b601255565b61127c611fc4565b47806112b75760405162461bcd60e51b815260206004820152600a6024820152696e6f2062616c616e636560b01b6044820152606401610b87565b600060646112c683601e612e12565b6112d09190612e47565b604051909150600090732e04434e79bc456c06f3e6e60143bee69b7b0c439083908381818185875af1925050503d8060008114611329576040519150601f19603f3d011682016040523d82523d6000602084013e61132e565b606091505b50509050806113715760405162461bcd60e51b815260206004820152600f60248201526e3330b4b632b2103a3930b739b332b960891b6044820152606401610b87565b6008546001600160a01b03166113878385612dfb565b604051600081818185875af1925050503d80600081146113c3576040519150601f19603f3d011682016040523d82523d6000602084013e6113c8565b606091505b5050809150508061140d5760405162461bcd60e51b815260206004820152600f60248201526e3330b4b632b2103a3930b739b332b960891b6044820152606401610b87565b505050565b61140d83838360405180602001604052806000815250611904565b6060600a80546109fe90612ce6565b60006109e98261201e565b61144f611fc4565b6002600954036114715760405162461bcd60e51b8152600401610b8790612d20565b6002600955601954610100900460ff161561149e5760405162461bcd60e51b8152600401610b8790612d57565b600460195460ff1660048111156114b7576114b7612a6e565b146114f85760405162461bcd60e51b81526020600482015260116024820152706e6f7420696e2066696e616c206d6f646560781b6044820152606401610b87565b6000611502610e3e565b61150e90610d05612dfb565b9050600081116115525760405162461bcd60e51b815260206004820152600f60248201526e72656163686564206d61782071747960881b6044820152606401610b87565b61155c8282611fa6565b50506001600955565b60006001600160a01b03821661158e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6115bc611fc4565b6115c66000612094565b565b6115d0611fc4565b600a61140d828483612ea1565b6002600954036115ff5760405162461bcd60e51b8152600401610b8790612d20565b6002600955601954610100900460ff161561162c5760405162461bcd60e51b8152600401610b8790612d57565b600160195460ff16600481111561164557611645612a6e565b146116865760405162461bcd60e51b81526020600482015260116024820152706e6f7420696e20636c61696d206d6f646560781b6044820152606401610b87565b6116c63383838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506120e692505050565b6011546001600160a01b039081169116146117175760405162461bcd60e51b8152602060048201526011602482015270696e76616c6964207369676e617475726560781b6044820152606401610b87565b3233146117365760405162461bcd60e51b8152600401610b8790612d77565b607b600f5460016117479190612db5565b11156117955760405162461bcd60e51b815260206004820152601760248201527f6578636565647320746f74616c20636c61696d207174790000000000000000006044820152606401610b87565b610d056117a0610e3e565b6117ab906001612db5565b11156117c95760405162461bcd60e51b8152600401610b8790612dcd565b3360009081526010602052604090205460ff161561181b5760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e4818db185a5b5959608a1b6044820152606401610b87565b336000908152601060205260408120805460ff19166001179055600f80549161184383612f61565b919050555061155c336001611fa6565b6060600380546109fe90612ce6565b61186a611fc4565b600d55565b336001600160a01b038316036118985760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61190f848484610e7b565b6001600160a01b0383163b156119485761192b8484848461214e565b611948576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b611956611fc4565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b611980611fc4565b601655565b606061199082611f5b565b6119d05760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610b87565b600a6119db8361223a565b6040516020016119ec929190612f7a565b6040516020818303038152906040529050919050565b611a0a611fc4565b600260095403611a2c5760405162461bcd60e51b8152600401610b8790612d20565b6002600955601954610100900460ff1615611a595760405162461bcd60e51b8152600401610b8790612d57565b600060195460ff166004811115611a7257611a72612a6e565b14611ab25760405162461bcd60e51b815260206004820152601060248201526f6e6f7420696e20696e6974206d6f646560801b6044820152606401610b87565b602181600b54611ac29190612db5565b1115611b035760405162461bcd60e51b815260206004820152601060248201526f6578636565647320676966742071747960801b6044820152606401610b87565b610d0581611b0f610e3e565b611b199190612db5565b1115611b375760405162461bcd60e51b8152600401610b8790612dcd565b80600b6000828254611b499190612db5565b9091555061155c90508282611fa6565b611b61611fc4565b6001600160a01b038116611bc65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b87565b611bcf81612094565b50565b600260095403611bf45760405162461bcd60e51b8152600401610b8790612d20565b6002600955601954610100900460ff1615611c215760405162461bcd60e51b8152600401610b8790612d57565b600260195460ff166004811115611c3a57611c3a612a6e565b14611c7d5760405162461bcd60e51b81526020600482015260136024820152726e6f7420696e2070726573616c65206d6f646560681b6044820152606401610b87565b611cbd3383838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506120e692505050565b6015546001600160a01b03908116911614611d0e5760405162461bcd60e51b8152602060048201526011602482015270696e76616c6964207369676e617475726560781b6044820152606401610b87565b323314611d2d5760405162461bcd60e51b8152600401610b8790612d77565b6108ae83601354611d3e9190612db5565b1115611d8c5760405162461bcd60e51b815260206004820152601960248201527f6578636565647320746f74616c2070726573616c6520717479000000000000006044820152606401610b87565b6003831115611dd45760405162461bcd60e51b8152602060048201526014602482015273195e18d959591cc81c5d1e481c195c881b5a5b9d60621b6044820152606401610b87565b610d0583611de0610e3e565b611dea9190612db5565b1115611e085760405162461bcd60e51b8152600401610b8790612dcd565b3360009081526014602052604081205490611e238583612db5565b90506003811115611e6d5760405162461bcd60e51b8152602060048201526014602482015273657863656564656420616c6c6f7765642071747960601b6044820152606401610b87565b6012546002831015611ead57856002831115611e9b57611e8e600284612dfb565b611e989082612dfb565b90505b611ea58183612e12565b915050611eb1565b5060005b803414611ef05760405162461bcd60e51b815260206004820152600d60248201526c0d2dcc6dee4e4cac6e840cae8d609b1b6044820152606401610b87565b33600090815260146020526040812083905560138054889290611f14908490612db5565b90915550611f2490503387611fa6565b5050600160095550505050565b611f39611fc4565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600111158015611f6f575060005482105b80156109e9575050600090815260046020526040902054600160e01b161590565b600082611f9d858461233b565b14949350505050565b611fc0828260405180602001604052806000815250612388565b5050565b6008546001600160a01b031633146115c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b87565b6000818060011161207b5760005481101561207b5760008181526004602052604081205490600160e01b82169003612079575b80600003612072575060001901600081815260046020526040902054612051565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a33320000000060208201526001600160a01b038316603c820152600090612072908390605c01604051602081830303815290604052805190602001206123f590919063ffffffff16565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612183903390899088908890600401613001565b6020604051808303816000875af19250505080156121be575060408051601f3d908101601f191682019092526121bb9181019061303e565b60015b61221c573d8080156121ec576040519150601f19603f3d011682016040523d82523d6000602084013e6121f1565b606091505b508051600003612214576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036122615750506040805180820190915260018152600360fc1b602082015290565b8160005b811561228b578061227581612f61565b91506122849050600a83612e47565b9150612265565b60008167ffffffffffffffff8111156122a6576122a6612b7e565b6040519080825280601f01601f1916602001820160405280156122d0576020820181803683370190505b5090505b8415612232576122e5600183612dfb565b91506122f2600a8661305b565b6122fd906030612db5565b60f81b8183815181106123125761231261306f565b60200101906001600160f81b031916908160001a905350612334600a86612e47565b94506122d4565b600081815b84518110156123805761236c8286838151811061235f5761235f61306f565b6020026020010151612411565b91508061237881612f61565b915050612340565b509392505050565b6123928383612440565b6001600160a01b0383163b1561140d576000548281035b6123bc600086838060010194508661214e565b6123d9576040516368d2bf6b60e11b815260040160405180910390fd5b8181106123a95781600054146123ee57600080fd5b5050505050565b60008060006124048585612520565b915091506123808161258e565b600081831061242d576000828152602084905260409020612072565b6000838152602083905260409020612072565b6000546001600160a01b03831661246957604051622e076360e81b815260040160405180910390fd5b8160000361248a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106124d45760005550505050565b60008082516041036125565760208301516040840151606085015160001a61254a87828585612744565b94509450505050612587565b825160400361257f5760208301516040840151612574868383612831565b935093505050612587565b506000905060025b9250929050565b60008160048111156125a2576125a2612a6e565b036125aa5750565b60018160048111156125be576125be612a6e565b0361260b5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b87565b600281600481111561261f5761261f612a6e565b0361266c5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b87565b600381600481111561268057612680612a6e565b036126d85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b87565b60048160048111156126ec576126ec612a6e565b03611bcf5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b87565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561277b5750600090506003612828565b8460ff16601b1415801561279357508460ff16601c14155b156127a45750600090506004612828565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156127f8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661282157600060019250925050612828565b9150600090505b94509492505050565b6000806001600160ff1b0383168161284e60ff86901c601b612db5565b905061285c87828885612744565b935093505050935093915050565b6001600160e01b031981168114611bcf57600080fd5b60006020828403121561289257600080fd5b81356120728161286a565b60005b838110156128b85781810151838201526020016128a0565b838111156119485750506000910152565b600081518084526128e181602086016020860161289d565b601f01601f19169290920160200192915050565b60208152600061207260208301846128c9565b60006020828403121561291a57600080fd5b5035919050565b80356001600160a01b038116811461293857600080fd5b919050565b6000806040838503121561295057600080fd5b61295983612921565b946020939093013593505050565b60008060006040848603121561297c57600080fd5b83359250602084013567ffffffffffffffff8082111561299b57600080fd5b818601915086601f8301126129af57600080fd5b8135818111156129be57600080fd5b8760208260051b85010111156129d357600080fd5b6020830194508093505050509250925092565b8035801515811461293857600080fd5b600060208284031215612a0857600080fd5b612072826129e6565b600060208284031215612a2357600080fd5b81356005811061207257600080fd5b600080600060608486031215612a4757600080fd5b612a5084612921565b9250612a5e60208501612921565b9150604084013590509250925092565b634e487b7160e01b600052602160045260246000fd5b6020810160058310612aa657634e487b7160e01b600052602160045260246000fd5b91905290565b600060208284031215612abe57600080fd5b61207282612921565b60008083601f840112612ad957600080fd5b50813567ffffffffffffffff811115612af157600080fd5b60208301915083602082850101111561258757600080fd5b60008060208385031215612b1c57600080fd5b823567ffffffffffffffff811115612b3357600080fd5b612b3f85828601612ac7565b90969095509350505050565b60008060408385031215612b5e57600080fd5b612b6783612921565b9150612b75602084016129e6565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612baa57600080fd5b612bb385612921565b9350612bc160208601612921565b925060408501359150606085013567ffffffffffffffff80821115612be557600080fd5b818701915087601f830112612bf957600080fd5b813581811115612c0b57612c0b612b7e565b604051601f8201601f19908116603f01168101908382118183101715612c3357612c33612b7e565b816040528281528a6020848701011115612c4c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612c8357600080fd5b612c8c83612921565b9150612b7560208401612921565b600080600060408486031215612caf57600080fd5b83359250602084013567ffffffffffffffff811115612ccd57600080fd5b612cd986828701612ac7565b9497909650939450505050565b600181811c90821680612cfa57607f821691505b602082108103612d1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600690820152651c185d5cd95960d21b604082015260600190565b6020808252600e908201526d34b73b30b634b21037b934b3b4b760911b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612dc857612dc8612d9f565b500190565b6020808252601490820152736578636565647320746f74616c20737570706c7960601b604082015260600190565b600082821015612e0d57612e0d612d9f565b500390565b6000816000190483118215151615612e2c57612e2c612d9f565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612e5657612e56612e31565b500490565b601f82111561140d57600081815260208120601f850160051c81016020861015612e825750805b601f850160051c820191505b8181101561100c57828155600101612e8e565b67ffffffffffffffff831115612eb957612eb9612b7e565b612ecd83612ec78354612ce6565b83612e5b565b6000601f841160018114612f015760008515612ee95750838201355b600019600387901b1c1916600186901b1783556123ee565b600083815260209020601f19861690835b82811015612f325786850135825560209485019460019092019101612f12565b5086821015612f4f5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600060018201612f7357612f73612d9f565b5060010190565b6000808454612f8881612ce6565b60018281168015612fa05760018114612fb557612fe4565b60ff1984168752821515830287019450612fe4565b8860005260208060002060005b85811015612fdb5781548a820152908401908201612fc2565b50505082870194505b505050508351612ff881836020880161289d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613034908301846128c9565b9695505050505050565b60006020828403121561305057600080fd5b81516120728161286a565b60008261306a5761306a612e31565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204f633c77fe1d9f1fded3cc9a8de38c23e850bfc2a8bfaa9e55bee18f41e62a8264736f6c634300080f0033

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

683efb0fcc4f4230c3340c14c299826d59f12e18c338505bfc317f35a75714b60000000000000000000000009f28abaefe5dbc4f3e15d85b69f8980ea985630700000000000000000000000015f09559df63ea34e297fac19e57b58e1d976a7b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001668747470733a2f2f63646e2e6a616d65742e7774662f00000000000000000000

-----Decoded View---------------
Arg [0] : airdropRoot_ (bytes32): 0x683efb0fcc4f4230c3340c14c299826d59f12e18c338505bfc317f35a75714b6
Arg [1] : claimSigner_ (address): 0x9F28ABaeFe5DBc4F3E15d85B69f8980EA9856307
Arg [2] : presaleSigner_ (address): 0x15F09559df63eA34e297fAC19E57b58E1D976A7B
Arg [3] : tokenBaseURI_ (string): https://cdn.jamet.wtf/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 683efb0fcc4f4230c3340c14c299826d59f12e18c338505bfc317f35a75714b6
Arg [1] : 0000000000000000000000009f28abaefe5dbc4f3e15d85b69f8980ea9856307
Arg [2] : 00000000000000000000000015f09559df63ea34e297fac19e57b58e1d976a7b
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [5] : 68747470733a2f2f63646e2e6a616d65742e7774662f00000000000000000000


Deployed Bytecode Sourcemap

72128:8589:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72978:42;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;72978:42:0;;;;;;;;41829:615;;;;;;;;;;-1:-1:-1;41829:615:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;41829:615:0;582:187:1;72373:41:0;;;;;;;;;;;;72412:2;72373:41;;47476:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49422:204::-;;;;;;;;;;-1:-1:-1;49422:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;49422:204:0;1710:203:1;48970:386:0;;;;;;;;;;-1:-1:-1;48970:386:0;;;;;:::i;:::-;;:::i;:::-;;74351:756;;;;;;;;;;-1:-1:-1;74351:756:0;;;;;:::i;:::-;;:::i;79787:87::-;;;;;;;;;;-1:-1:-1;79787:87:0;;;;;:::i;:::-;;:::i;40883:315::-;;;;;;;;;;;;;:::i;72302:39::-;;;;;;;;;;;;72336:5;72302:39;;80635:79;;;;;;;;;;-1:-1:-1;80635:79:0;;;;;:::i;:::-;;:::i;73081:47::-;;;;;;;;;;;;73127:1;73081:47;;58687:2800;;;;;;;;;;-1:-1:-1;58687:2800:0;;;;;:::i;:::-;;:::i;72908:38::-;;;;;;;;;;;;72945:1;72908:38;;73498:28;;;;;;;;;;-1:-1:-1;73498:28:0;;;;;;;;;;;;;;;:::i;77360:1022::-;;;;;;:::i;:::-;;:::i;72620:48::-;;;;;;;;;;-1:-1:-1;72620:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;72748:32;;;;;;;;;;;;;;;;73135:34;;;;;;;;;;;;;;;;79882:114;;;;;;;;;;-1:-1:-1;79882:114:0;;;;;:::i;:::-;;:::i;72545:34::-;;;;;;;;;;;;;;;;80122:505;;;;;;;;;;;;;:::i;50312:185::-;;;;;;;;;;-1:-1:-1;50312:185:0;;;;;:::i;:::-;;:::i;78938:101::-;;;;;;;;;;;;;:::i;73027:47::-;;;;;;;;;;;;73069:5;73027:47;;72787:46;;;;;;;;;;-1:-1:-1;72787:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;73533:26;;;;;;;;;;-1:-1:-1;73533:26:0;;;;;;;;;;;47265:144;;;;;;;;;;-1:-1:-1;47265:144:0;;;;;:::i;:::-;;:::i;73176:51::-;;;;;;;;;;-1:-1:-1;73176:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;78390:309;;;;;;;;;;-1:-1:-1;78390:309:0;;;;;:::i;:::-;;:::i;42508:224::-;;;;;;;;;;-1:-1:-1;42508:224:0;;;;;:::i;:::-;;:::i;17695:103::-;;;;;;;;;;;;;:::i;72698:43::-;;;;;;;;;;;;72738:3;72698:43;;73439:50;;;;;;;;;;-1:-1:-1;73439:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;17047:87;;;;;;;;;;-1:-1:-1;17120:6:0;;-1:-1:-1;;;;;17120:6:0;17047:87;;79047:123;;;;;;;;;;-1:-1:-1;79047:123:0;;;;;:::i;:::-;;:::i;75434:660::-;;;;;;;;;;-1:-1:-1;75434:660:0;;;;;:::i;:::-;;:::i;72493:45::-;;;;;;;;;;;;72535:3;72493:45;;47645:104;;;;;;;;;;;;;:::i;79410:115::-;;;;;;;;;;-1:-1:-1;79410:115:0;;;;;:::i;:::-;;:::i;49698:308::-;;;;;;;;;;-1:-1:-1;49698:308:0;;;;;:::i;:::-;;:::i;73299:40::-;;;;;;;;;;;;;;;;50568:399;;;;;;;;;;-1:-1:-1;50568:399:0;;;;;:::i;:::-;;:::i;79656:123::-;;;;;;;;;;-1:-1:-1;79656:123:0;;;;;:::i;:::-;;:::i;72421:34::-;;;;;;;;;;;;;;;;80004:110;;;;;;;;;;-1:-1:-1;80004:110:0;;;;;:::i;:::-;;:::i;79178:224::-;;;;;;;;;;-1:-1:-1;79178:224:0;;;;;:::i;:::-;;:::i;73945:398::-;;;;;;;;;;-1:-1:-1;73945:398:0;;;;;:::i;:::-;;:::i;50077:164::-;;;;;;;;;;-1:-1:-1;50077:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;50198:25:0;;;50174:4;50198:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50077:164;17953:201;;;;;;;;;;-1:-1:-1;17953:201:0;;;;;:::i;:::-;;:::i;73399:33::-;;;;;;;;;;;;;;;;76102:1250;;;;;;:::i;:::-;;:::i;79533:115::-;;;;;;;;;;-1:-1:-1;79533:115:0;;;;;:::i;:::-;;:::i;41829:615::-;41914:4;-1:-1:-1;;;;;;;;;42214:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;42291:25:0;;;42214:102;:179;;;-1:-1:-1;;;;;;;;;;42368:25:0;;;42214:179;42194:199;41829:615;-1:-1:-1;;41829:615:0:o;47476:100::-;47530:13;47563:5;47556:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47476:100;:::o;49422:204::-;49490:7;49515:16;49523:7;49515;:16::i;:::-;49510:64;;49540:34;;-1:-1:-1;;;49540:34:0;;;;;;;;;;;49510:64;-1:-1:-1;49594:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;49594:24:0;;49422:204::o;48970:386::-;49043:13;49059:16;49067:7;49059;:16::i;:::-;49043:32;-1:-1:-1;69870:10:0;-1:-1:-1;;;;;49092:28:0;;;49088:175;;49140:44;49157:5;69870:10;50077:164;:::i;49140:44::-;49135:128;;49212:35;;-1:-1:-1;;;49212:35:0;;;;;;;;;;;49135:128;49275:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;49275:29:0;-1:-1:-1;;;;;49275:29:0;;;;;;;;;49320:28;;49275:24;;49320:28;;;;;;;49032:324;48970:386;;:::o;74351:756::-;13972:1;14570:7;;:19;14562:63;;;;-1:-1:-1;;;14562:63:0;;;;;;;:::i;:::-;;;;;;;;;13972:1;14703:7;:18;74454:6:::1;::::0;::::1;::::0;::::1;;;74453:7;74445:26;;;;-1:-1:-1::0;;;74445:26:0::1;;;;;;;:::i;:::-;74498:9;74490:4;::::0;::::1;;:17;::::0;::::1;;;;;;:::i;:::-;::::0;74482:56:::1;;;::::0;-1:-1:-1;;;74482:56:0;;9593:2:1;74482:56:0::1;::::0;::::1;9575:21:1::0;9632:2;9612:18;;;9605:30;9671:28;9651:18;;;9644:56;9717:18;;74482:56:0::1;9391:350:1::0;74482:56:0::1;74557:108;74576:5;;74557:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;74583:11:0::1;::::0;74620:33:::1;::::0;-1:-1:-1;;74637:10:0::1;9923:2:1::0;9919:15;9915:53;74620:33:0::1;::::0;::::1;9903:66:1::0;9985:12;;;9978:28;;;74583:11:0;;-1:-1:-1;10022:12:1;;;-1:-1:-1;74620:33:0::1;;;;;;;;;;;;74596:68;;;;;;74557:18;:108::i;:::-;74549:133;;;::::0;-1:-1:-1;;;74549:133:0;;10247:2:1;74549:133:0::1;::::0;::::1;10229:21:1::0;10286:2;10266:18;;;10259:30;-1:-1:-1;;;10305:18:1;;;10298:42;10357:18;;74549:133:0::1;10045:336:1::0;74549:133:0::1;74701:9;74714:10;74701:23;74693:50;;;;-1:-1:-1::0;;;74693:50:0::1;;;;;;;:::i;:::-;72535:3;74784;74762:19;;:25;;;;:::i;:::-;:44;;74754:76;;;::::0;-1:-1:-1;;;74754:76:0;;11196:2:1;74754:76:0::1;::::0;::::1;11178:21:1::0;11235:2;11215:18;;;11208:30;-1:-1:-1;;;11254:18:1;;;11247:49;11313:18;;74754:76:0::1;10994:343:1::0;74754:76:0::1;72336:5;74865:3;74849:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:30;;74841:63;;;;-1:-1:-1::0;;;74841:63:0::1;;;;;;;:::i;:::-;74941:10;74924:28;::::0;;;:16:::1;:28;::::0;;;;;::::1;;74923:29;74915:60;;;::::0;-1:-1:-1;;;74915:60:0;;11893:2:1;74915:60:0::1;::::0;::::1;11875:21:1::0;11932:2;11912:18;;;11905:30;-1:-1:-1;;;11951:18:1;;;11944:48;12009:18;;74915:60:0::1;11691:342:1::0;74915:60:0::1;75005:10;74988:28;::::0;;;:16:::1;:28;::::0;;;;:35;;-1:-1:-1;;74988:35:0::1;75019:4;74988:35;::::0;;75034:19:::1;:26:::0;;75057:3;;74988:28;75034:26:::1;::::0;75057:3;;75034:26:::1;:::i;:::-;::::0;;;-1:-1:-1;75073:26:0::1;::::0;-1:-1:-1;75083:10:0::1;75095:3:::0;75073:9:::1;:26::i;:::-;-1:-1:-1::0;;13928:1:0;14882:7;:22;-1:-1:-1;74351:756:0:o;79787:87::-;16933:13;:11;:13::i;:::-;79850:6:::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;79850:16:0;;::::1;::::0;;;::::1;::::0;;79787:87::o;40883:315::-;78799:1;41149:12;40936:7;41133:13;:28;-1:-1:-1;;41133:46:0;;40883:315::o;80635:79::-;16933:13;:11;:13::i;:::-;80694:4:::1;:12:::0;;80701:5;;80694:4;-1:-1:-1;;80694:12:0::1;::::0;80701:5;80694:12:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;80635:79:::0;:::o;58687:2800::-;58821:27;58851;58870:7;58851:18;:27::i;:::-;58821:57;;58936:4;-1:-1:-1;;;;;58895:45:0;58911:19;-1:-1:-1;;;;;58895:45:0;;58891:86;;58949:28;;-1:-1:-1;;;58949:28:0;;;;;;;;;;;58891:86;58991:27;57417:21;;;57244:15;57459:4;57452:36;57541:4;57525:21;;57631:26;;69870:10;58384:30;;;-1:-1:-1;;;;;58082:26:0;;58363:19;;;58360:55;59170:174;;59257:43;59274:4;69870:10;50077:164;:::i;59257:43::-;59252:92;;59309:35;;-1:-1:-1;;;59309:35:0;;;;;;;;;;;59252:92;-1:-1:-1;;;;;59361:16:0;;59357:52;;59386:23;;-1:-1:-1;;;59386:23:0;;;;;;;;;;;59357:52;59558:15;59555:160;;;59698:1;59677:19;59670:30;59555:160;-1:-1:-1;;;;;60093:24:0;;;;;;;:18;:24;;;;;;60091:26;;-1:-1:-1;;60091:26:0;;;60162:22;;;;;;;;;60160:24;;-1:-1:-1;60160:24:0;;;47164:11;47140:22;47136:40;47123:62;-1:-1:-1;;;47123:62:0;60455:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;60749:46:0;;:51;;60745:626;;60853:1;60843:11;;60821:19;60976:30;;;:17;:30;;;;;;:35;;60972:384;;61114:13;;61099:11;:28;61095:242;;61261:30;;;;:17;:30;;;;;:52;;;61095:242;60802:569;60745:626;61418:7;61414:2;-1:-1:-1;;;;;61399:27:0;61408:4;-1:-1:-1;;;;;61399:27:0;;;;;;;;;;;61437:42;58810:2677;;;58687:2800;;;:::o;77360:1022::-;13972:1;14570:7;;:19;14562:63;;;;-1:-1:-1;;;14562:63:0;;;;;;;:::i;:::-;13972:1;14703:7;:18;77443:6:::1;::::0;::::1;::::0;::::1;;;77442:7;77434:26;;;;-1:-1:-1::0;;;77434:26:0::1;;;;;;;:::i;:::-;77487:11;77479:4;::::0;::::1;;:19;::::0;::::1;;;;;;:::i;:::-;;77471:50;;;::::0;-1:-1:-1;;;77471:50:0;;12240:2:1;77471:50:0::1;::::0;::::1;12222:21:1::0;12279:2;12259:18;;;12252:30;-1:-1:-1;;;12298:18:1;;;12291:48;12356:18;;77471:50:0::1;12038:342:1::0;77471:50:0::1;77540:9;77553:10;77540:23;77532:50;;;;-1:-1:-1::0;;;77532:50:0::1;;;;;;;:::i;:::-;73391:1;77601:3;:25;;77593:58;;;::::0;-1:-1:-1;;;77593:58:0;;12587:2:1;77593:58:0::1;::::0;::::1;12569:21:1::0;12626:2;12606:18;;;12599:30;-1:-1:-1;;;12645:18:1;;;12638:50;12705:18;;77593:58:0::1;12385:344:1::0;77593:58:0::1;72336:5;77686:3;77670:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:30;;77662:63;;;;-1:-1:-1::0;;;77662:63:0::1;;;;;;;:::i;:::-;77771:10;77738:14;77755:27:::0;;;:15:::1;:27;::::0;;;;;;77810:12:::1;77819:3:::0;77755:27;77810:12:::1;:::i;:::-;77793:29;;73391:1;77841:6;:28;;77833:60;;;::::0;-1:-1:-1;;;77833:60:0;;12936:2:1;77833:60:0::1;::::0;::::1;12918:21:1::0;12975:2;12955:18;;;12948:30;-1:-1:-1;;;12994:18:1;;;12987:49;13053:18;;77833:60:0::1;12734:343:1::0;77833:60:0::1;77921:11;::::0;72945:1:::1;77947:19:::0;::::1;77943:251;;;78000:3:::0;72945:1:::1;78024:19:::0;::::1;78020:91;;;78075:19;72945:1;78075:6:::0;:19:::1;:::i;:::-;78064:31;::::0;;::::1;:::i;:::-;;;78020:91;78127:14;78135:6:::0;78127:14;::::1;:::i;:::-;;;77968:185;77943:251;;;-1:-1:-1::0;78181:1:0::1;77943:251;78227:4;78214:9;:17;78206:43;;;::::0;-1:-1:-1;;;78206:43:0;;13587:2:1;78206:43:0::1;::::0;::::1;13569:21:1::0;13626:2;13606:18;;;13599:30;-1:-1:-1;;;13645:18:1;;;13638:43;13698:18;;78206:43:0::1;13385:337:1::0;78206:43:0::1;78276:10;78260:27;::::0;;;:15:::1;:27;::::0;;;;:36;;;78348:26:::1;::::0;78370:3;78348:9:::1;:26::i;:::-;-1:-1:-1::0;;13928:1:0;14882:7;:22;-1:-1:-1;;77360:1022:0:o;79882:114::-;16933:13;:11;:13::i;:::-;79960:12:::1;:28:::0;79882:114::o;80122:505::-;16933:13;:11;:13::i;:::-;80195:21:::1;80235:16:::0;80227:39:::1;;;::::0;-1:-1:-1;;;80227:39:0;;13929:2:1;80227:39:0::1;::::0;::::1;13911:21:1::0;13968:2;13948:18;;;13941:30;-1:-1:-1;;;13987:18:1;;;13980:40;14037:18;;80227:39:0::1;13727:334:1::0;80227:39:0::1;80279:16;80318:3;80298:17;:12:::0;80313:2:::1;80298:17;:::i;:::-;:23;;;;:::i;:::-;80351:92;::::0;80279:42;;-1:-1:-1;80333:12:0::1;::::0;80359:42:::1;::::0;80279;;80333:12;80351:92;80333:12;80351:92;80279:42;80359;80351:92:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80332:111;;;80462:7;80454:35;;;::::0;-1:-1:-1;;;80454:35:0;;14735:2:1;80454:35:0::1;::::0;::::1;14717:21:1::0;14774:2;14754:18;;;14747:30;-1:-1:-1;;;14793:18:1;;;14786:45;14848:18;;80454:35:0::1;14533:339:1::0;80454:35:0::1;17120:6:::0;;-1:-1:-1;;;;;17120:6:0;80545:23:::1;80560:8:::0;80545:12;:23:::1;:::i;:::-;80516:57;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80502:71;;;;;80592:7;80584:35;;;::::0;-1:-1:-1;;;80584:35:0;;14735:2:1;80584:35:0::1;::::0;::::1;14717:21:1::0;14774:2;14754:18;;;14747:30;-1:-1:-1;;;14793:18:1;;;14786:45;14848:18;;80584:35:0::1;14533:339:1::0;80584:35:0::1;80161:466;;;80122:505::o:0;50312:185::-;50450:39;50467:4;50473:2;50477:7;50450:39;;;;;;;;;;;;:16;:39::i;78938:101::-;78985:13;79018;79011:20;;;;;:::i;47265:144::-;47329:7;47372:27;47391:7;47372:18;:27::i;78390:309::-;16933:13;:11;:13::i;:::-;13972:1:::1;14570:7;;:19:::0;14562:63:::1;;;;-1:-1:-1::0;;;14562:63:0::1;;;;;;;:::i;:::-;13972:1;14703:7;:18:::0;78473:6:::2;::::0;::::2;::::0;::::2;;;78472:7;78464:26;;;;-1:-1:-1::0;;;78464:26:0::2;;;;;;;:::i;:::-;78517:10;78509:4;::::0;::::2;;:18;::::0;::::2;;;;;;:::i;:::-;;78501:48;;;::::0;-1:-1:-1;;;78501:48:0;;15079:2:1;78501:48:0::2;::::0;::::2;15061:21:1::0;15118:2;15098:18;;;15091:30;-1:-1:-1;;;15137:18:1;;;15130:47;15194:18;;78501:48:0::2;14877:341:1::0;78501:48:0::2;78562:16;78591:13;:11;:13::i;:::-;78581:23;::::0;72336:5:::2;78581:23;:::i;:::-;78562:42;;78634:1;78623:8;:12;78615:40;;;::::0;-1:-1:-1;;;78615:40:0;;15425:2:1;78615:40:0::2;::::0;::::2;15407:21:1::0;15464:2;15444:18;;;15437:30;-1:-1:-1;;;15483:18:1;;;15476:45;15538:18;;78615:40:0::2;15223:339:1::0;78615:40:0::2;78668:23;78678:2;78682:8;78668:9;:23::i;:::-;-1:-1:-1::0;;13928:1:0::1;14882:7;:22:::0;78390:309::o;42508:224::-;42572:7;-1:-1:-1;;;;;42596:19:0;;42592:60;;42624:28;;-1:-1:-1;;;42624:28:0;;;;;;;;;;;42592:60;-1:-1:-1;;;;;;42670:25:0;;;;;:18;:25;;;;;;37063:13;42670:54;;42508:224::o;17695:103::-;16933:13;:11;:13::i;:::-;17760:30:::1;17787:1;17760:18;:30::i;:::-;17695:103::o:0;79047:123::-;16933:13;:11;:13::i;:::-;79133::::1;:29;79149:13:::0;;79133;:29:::1;:::i;75434:660::-:0;13972:1;14570:7;;:19;14562:63;;;;-1:-1:-1;;;14562:63:0;;;;;;;:::i;:::-;13972:1;14703:7;:18;75521:6:::1;::::0;::::1;::::0;::::1;;;75520:7;75512:26;;;;-1:-1:-1::0;;;75512:26:0::1;;;;;;;:::i;:::-;75565:10;75557:4;::::0;::::1;;:18;::::0;::::1;;;;;;:::i;:::-;;75549:48;;;::::0;-1:-1:-1;;;75549:48:0;;17827:2:1;75549:48:0::1;::::0;::::1;17809:21:1::0;17866:2;17846:18;;;17839:30;-1:-1:-1;;;17885:18:1;;;17878:47;17942:18;;75549:48:0::1;17625:341:1::0;75549:48:0::1;75631:36;75645:10;75657:9;;75631:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;75631:13:0::1;::::0;-1:-1:-1;;;75631:36:0:i:1;:::-;75616:11;::::0;-1:-1:-1;;;;;75616:11:0;;::::1;:51:::0;::::1;;75608:81;;;::::0;-1:-1:-1;;;75608:81:0;;18173:2:1;75608:81:0::1;::::0;::::1;18155:21:1::0;18212:2;18192:18;;;18185:30;-1:-1:-1;;;18231:18:1;;;18224:47;18288:18;;75608:81:0::1;17971:341:1::0;75608:81:0::1;75708:9;75721:10;75708:23;75700:50;;;;-1:-1:-1::0;;;75700:50:0::1;;;;;;;:::i;:::-;72738:3;75769:17;;75789:1;75769:21;;;;:::i;:::-;:38;;75761:74;;;::::0;-1:-1:-1;;;75761:74:0;;18519:2:1;75761:74:0::1;::::0;::::1;18501:21:1::0;18558:2;18538:18;;;18531:30;18597:25;18577:18;;;18570:53;18640:18;;75761:74:0::1;18317:347:1::0;75761:74:0::1;72336:5;75854:13;:11;:13::i;:::-;:17;::::0;75870:1:::1;75854:17;:::i;:::-;:28;;75846:61;;;;-1:-1:-1::0;;;75846:61:0::1;;;;;;;:::i;:::-;75942:10;75927:26;::::0;;;:14:::1;:26;::::0;;;;;::::1;;75926:27;75918:55;;;::::0;-1:-1:-1;;;75918:55:0;;18871:2:1;75918:55:0::1;::::0;::::1;18853:21:1::0;18910:2;18890:18;;;18883:30;-1:-1:-1;;;18929:18:1;;;18922:45;18984:18;;75918:55:0::1;18669:339:1::0;75918:55:0::1;76001:10;75986:26;::::0;;;:14:::1;:26;::::0;;;;:33;;-1:-1:-1;;75986:33:0::1;76015:4;75986:33;::::0;;76030:17:::1;:19:::0;;;::::1;::::0;::::1;:::i;:::-;;;;;;76062:24;76072:10;76084:1;76062:9;:24::i;47645:104::-:0;47701:13;47734:7;47727:14;;;;;:::i;79410:115::-;16933:13;:11;:13::i;:::-;79491:11:::1;:26:::0;79410:115::o;49698:308::-;69870:10;-1:-1:-1;;;;;49797:31:0;;;49793:61;;49837:17;;-1:-1:-1;;;49837:17:0;;;;;;;;;;;49793:61;69870:10;49867:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;49867:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;49867:60:0;;;;;;;;;;49943:55;;722:41:1;;;49867:49:0;;69870:10;49943:55;;695:18:1;49943:55:0;;;;;;;49698:308;;:::o;50568:399::-;50735:31;50748:4;50754:2;50758:7;50735:12;:31::i;:::-;-1:-1:-1;;;;;50781:14:0;;;:19;50777:183;;50820:56;50851:4;50857:2;50861:7;50870:5;50820:30;:56::i;:::-;50815:145;;50904:40;;-1:-1:-1;;;50904:40:0;;;;;;;;;;;50815:145;50568:399;;;;:::o;79656:123::-;16933:13;:11;:13::i;:::-;79741::::1;:30:::0;;-1:-1:-1;;;;;;79741:30:0::1;-1:-1:-1::0;;;;;79741:30:0;;;::::1;::::0;;;::::1;::::0;;79656:123::o;80004:110::-;16933:13;:11;:13::i;:::-;80080:11:::1;:26:::0;80004:110::o;79178:224::-;79243:13;79277:16;79285:7;79277;:16::i;:::-;79269:46;;;;-1:-1:-1;;;79269:46:0;;19355:2:1;79269:46:0;;;19337:21:1;19394:2;19374:18;;;19367:30;-1:-1:-1;;;19413:18:1;;;19406:47;19470:18;;79269:46:0;19153:341:1;79269:46:0;79359:13;79374:18;:7;:16;:18::i;:::-;79342:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79328:66;;79178:224;;;:::o;73945:398::-;16933:13;:11;:13::i;:::-;13972:1:::1;14570:7;;:19:::0;14562:63:::1;;;;-1:-1:-1::0;;;14562:63:0::1;;;;;;;:::i;:::-;13972:1;14703:7;:18:::0;74036:6:::2;::::0;::::2;::::0;::::2;;;74035:7;74027:26;;;;-1:-1:-1::0;;;74027:26:0::2;;;;;;;:::i;:::-;74080:9;74072:4;::::0;::::2;;:17;::::0;::::2;;;;;;:::i;:::-;;74064:46;;;::::0;-1:-1:-1;;;74064:46:0;;20713:2:1;74064:46:0::2;::::0;::::2;20695:21:1::0;20752:2;20732:18;;;20725:30;-1:-1:-1;;;20771:18:1;;;20764:46;20827:18;;74064:46:0::2;20511:340:1::0;74064:46:0::2;72412:2;74151:3;74129:19;;:25;;;;:::i;:::-;:41;;74121:70;;;::::0;-1:-1:-1;;;74121:70:0;;21058:2:1;74121:70:0::2;::::0;::::2;21040:21:1::0;21097:2;21077:18;;;21070:30;-1:-1:-1;;;21116:18:1;;;21109:46;21172:18;;74121:70:0::2;20856:340:1::0;74121:70:0::2;72336:5;74226:3;74210:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:30;;74202:63;;;;-1:-1:-1::0;;;74202:63:0::2;;;;;;;:::i;:::-;74301:3;74278:19;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;74317:18:0::2;::::0;-1:-1:-1;74327:2:0;74331:3;74317:9:::2;:18::i;17953:201::-:0;16933:13;:11;:13::i;:::-;-1:-1:-1;;;;;18042:22:0;::::1;18034:73;;;::::0;-1:-1:-1;;;18034:73:0;;21403:2:1;18034:73:0::1;::::0;::::1;21385:21:1::0;21442:2;21422:18;;;21415:30;21481:34;21461:18;;;21454:62;-1:-1:-1;;;21532:18:1;;;21525:36;21578:19;;18034:73:0::1;21201:402:1::0;18034:73:0::1;18118:28;18137:8;18118:18;:28::i;:::-;17953:201:::0;:::o;76102:1250::-;13972:1;14570:7;;:19;14562:63;;;;-1:-1:-1;;;14562:63:0;;;;;;;:::i;:::-;13972:1;14703:7;:18;76212:6:::1;::::0;::::1;::::0;::::1;;;76211:7;76203:26;;;;-1:-1:-1::0;;;76203:26:0::1;;;;;;;:::i;:::-;76256:12;76248:4;::::0;::::1;;:20;::::0;::::1;;;;;;:::i;:::-;;76240:52;;;::::0;-1:-1:-1;;;76240:52:0;;21810:2:1;76240:52:0::1;::::0;::::1;21792:21:1::0;21849:2;21829:18;;;21822:30;-1:-1:-1;;;21868:18:1;;;21861:49;21927:18;;76240:52:0::1;21608:343:1::0;76240:52:0::1;76328:36;76342:10;76354:9;;76328:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;76328:13:0::1;::::0;-1:-1:-1;;;76328:36:0:i:1;:::-;76311:13;::::0;-1:-1:-1;;;;;76311:13:0;;::::1;:53:::0;::::1;;76303:83;;;::::0;-1:-1:-1;;;76303:83:0;;18173:2:1;76303:83:0::1;::::0;::::1;18155:21:1::0;18212:2;18192:18;;;18185:30;-1:-1:-1;;;18231:18:1;;;18224:47;18288:18;;76303:83:0::1;17971:341:1::0;76303:83:0::1;76405:9;76418:10;76405:23;76397:50;;;;-1:-1:-1::0;;;76397:50:0::1;;;;;;;:::i;:::-;73069:5;76488:3;76466:19;;:25;;;;:::i;:::-;:44;;76458:82;;;::::0;-1:-1:-1;;;76458:82:0;;22158:2:1;76458:82:0::1;::::0;::::1;22140:21:1::0;22197:2;22177:18;;;22170:30;22236:27;22216:18;;;22209:55;22281:18;;76458:82:0::1;21956:349:1::0;76458:82:0::1;73127:1;76559:3;:26;;76551:59;;;::::0;-1:-1:-1;;;76551:59:0;;12587:2:1;76551:59:0::1;::::0;::::1;12569:21:1::0;12626:2;12606:18;;;12599:30;-1:-1:-1;;;12645:18:1;;;12638:50;12705:18;;76551:59:0::1;12385:344:1::0;76551:59:0::1;72336:5;76645:3;76629:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:30;;76621:63;;;;-1:-1:-1::0;;;76621:63:0::1;;;;;;;:::i;:::-;76731:10;76697:14;76714:28:::0;;;:16:::1;:28;::::0;;;;;;76770:12:::1;76779:3:::0;76714:28;76770:12:::1;:::i;:::-;76753:29;;73127:1;76801:6;:29;;76793:62;;;::::0;-1:-1:-1;;;76793:62:0;;22512:2:1;76793:62:0::1;::::0;::::1;22494:21:1::0;22551:2;22531:18;;;22524:30;-1:-1:-1;;;22570:18:1;;;22563:50;22630:18;;76793:62:0::1;22310:344:1::0;76793:62:0::1;76891:12;::::0;72945:1:::1;76918:19:::0;::::1;76914:251;;;76971:3:::0;72945:1:::1;76995:19:::0;::::1;76991:91;;;77046:19;72945:1;77046:6:::0;:19:::1;:::i;:::-;77035:31;::::0;;::::1;:::i;:::-;;;76991:91;77098:14;77106:6:::0;77098:14;::::1;:::i;:::-;;;76939:185;76914:251;;;-1:-1:-1::0;77152:1:0::1;76914:251;77198:4;77185:9;:17;77177:43;;;::::0;-1:-1:-1;;;77177:43:0;;13587:2:1;77177:43:0::1;::::0;::::1;13569:21:1::0;13626:2;13606:18;;;13599:30;-1:-1:-1;;;13645:18:1;;;13638:43;13698:18;;77177:43:0::1;13385:337:1::0;77177:43:0::1;77248:10;77231:28;::::0;;;:16:::1;:28;::::0;;;;:37;;;77279:19:::1;:26:::0;;77302:3;;77231:28;77279:26:::1;::::0;77302:3;;77279:26:::1;:::i;:::-;::::0;;;-1:-1:-1;77318:26:0::1;::::0;-1:-1:-1;77328:10:0::1;77340:3:::0;77318:9:::1;:26::i;:::-;-1:-1:-1::0;;13928:1:0;14882:7;:22;-1:-1:-1;;;;76102:1250:0:o;79533:115::-;16933:13;:11;:13::i;:::-;79614:11:::1;:26:::0;;-1:-1:-1;;;;;;79614:26:0::1;-1:-1:-1::0;;;;;79614:26:0;;;::::1;::::0;;;::::1;::::0;;79533:115::o;51222:273::-;51279:4;51335:7;78799:1;51316:26;;:66;;;;;51369:13;;51359:7;:23;51316:66;:152;;;;-1:-1:-1;;51420:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;51420:43:0;:48;;51222:273::o;19731:190::-;19856:4;19909;19880:25;19893:5;19900:4;19880:12;:25::i;:::-;:33;;19731:190;-1:-1:-1;;;;19731:190:0:o;51579:104::-;51648:27;51658:2;51662:8;51648:27;;;;;;;;;;;;:9;:27::i;:::-;51579:104;;:::o;17212:132::-;17120:6;;-1:-1:-1;;;;;17120:6:0;69870:10;17276:23;17268:68;;;;-1:-1:-1;;;17268:68:0;;22861:2:1;17268:68:0;;;22843:21:1;;;22880:18;;;22873:30;22939:34;22919:18;;;22912:62;22991:18;;17268:68:0;22659:356:1;44182:1129:0;44249:7;44284;;78799:1;44333:23;44329:915;;44386:13;;44379:4;:20;44375:869;;;44424:14;44441:23;;;:17;:23;;;;;;;-1:-1:-1;;;44530:23:0;;:28;;44526:699;;45049:113;45056:6;45066:1;45056:11;45049:113;;-1:-1:-1;;;45127:6:0;45109:25;;;;:17;:25;;;;;;45049:113;;;45195:6;44182:1129;-1:-1:-1;;;44182:1129:0:o;44526:699::-;44401:843;44375:869;45272:31;;-1:-1:-1;;;45272:31:0;;;;;;;;;;;18314:191;18407:6;;;-1:-1:-1;;;;;18424:17:0;;;-1:-1:-1;;;;;;18424:17:0;;;;;;;18457:40;;18407:6;;;18424:17;18407:6;;18457:40;;18388:16;;18457:40;18377:128;18314:191;:::o;75115:311::-;75252:136;;23262:66:1;75252:136:0;;;23250:79:1;-1:-1:-1;;;;;75348:24:0;;23345:12:1;;;23338:28;75201:7:0;;75228:190;;75408:9;;23382:12:1;;75252:136:0;;;;;;;;;;;;75228:171;;;;;;:179;;:190;;;;:::i;65438:716::-;65622:88;;-1:-1:-1;;;65622:88:0;;65601:4;;-1:-1:-1;;;;;65622:45:0;;;;;:88;;69870:10;;65689:4;;65695:7;;65704:5;;65622:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65622:88:0;;;;;;;;-1:-1:-1;;65622:88:0;;;;;;;;;;;;:::i;:::-;;;65618:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65905:6;:13;65922:1;65905:18;65901:235;;65951:40;;-1:-1:-1;;;65951:40:0;;;;;;;;;;;65901:235;66094:6;66088:13;66079:6;66075:2;66071:15;66064:38;65618:529;-1:-1:-1;;;;;;65781:64:0;-1:-1:-1;;;65781:64:0;;-1:-1:-1;65618:529:0;65438:716;;;;;;:::o;463:723::-;519:13;740:5;749:1;740:10;736:53;;-1:-1:-1;;767:10:0;;;;;;;;;;;;-1:-1:-1;;;767:10:0;;;;;463:723::o;736:53::-;814:5;799:12;855:78;862:9;;855:78;;888:8;;;;:::i;:::-;;-1:-1:-1;911:10:0;;-1:-1:-1;919:2:0;911:10;;:::i;:::-;;;855:78;;;943:19;975:6;965:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;965:17:0;;943:39;;993:154;1000:10;;993:154;;1027:11;1037:1;1027:11;;:::i;:::-;;-1:-1:-1;1096:10:0;1104:2;1096:5;:10;:::i;:::-;1083:24;;:2;:24;:::i;:::-;1070:39;;1053:6;1060;1053:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1053:56:0;;;;;;;;-1:-1:-1;1124:11:0;1133:2;1124:11;;:::i;:::-;;;993:154;;20598:296;20681:7;20724:4;20681:7;20739:118;20763:5;:12;20759:1;:16;20739:118;;;20812:33;20822:12;20836:5;20842:1;20836:8;;;;;;;;:::i;:::-;;;;;;;20812:9;:33::i;:::-;20797:48;-1:-1:-1;20777:3:0;;;;:::i;:::-;;;;20739:118;;;-1:-1:-1;20874:12:0;20598:296;-1:-1:-1;;;20598:296:0:o;52099:681::-;52222:19;52228:2;52232:8;52222:5;:19::i;:::-;-1:-1:-1;;;;;52283:14:0;;;:19;52279:483;;52323:11;52337:13;52385:14;;;52418:233;52449:62;52488:1;52492:2;52496:7;;;;;;52505:5;52449:30;:62::i;:::-;52444:167;;52547:40;;-1:-1:-1;;;52547:40:0;;;;;;;;;;;52444:167;52646:3;52638:5;:11;52418:233;;52733:3;52716:13;;:20;52712:34;;52738:8;;;52712:34;52304:458;;52099:681;;;:::o;7043:231::-;7121:7;7142:17;7161:18;7183:27;7194:4;7200:9;7183:10;:27::i;:::-;7141:69;;;;7221:18;7233:5;7221:11;:18::i;26805:149::-;26868:7;26899:1;26895;:5;:51;;27030:13;27124:15;;;27160:4;27153:15;;;27207:4;27191:21;;26895:51;;;27030:13;27124:15;;;27160:4;27153:15;;;27207:4;27191:21;;26903:20;26962:268;53053:1529;53118:20;53141:13;-1:-1:-1;;;;;53169:16:0;;53165:48;;53194:19;;-1:-1:-1;;;53194:19:0;;;;;;;;;;;53165:48;53228:8;53240:1;53228:13;53224:44;;53250:18;;-1:-1:-1;;;53250:18:0;;;;;;;;;;;53224:44;-1:-1:-1;;;;;53756:22:0;;;;;;:18;:22;;37200:2;53756:22;;:70;;53794:31;53782:44;;53756:70;;;47164:11;47140:22;47136:40;-1:-1:-1;48874:15:0;;48849:23;48845:45;47133:51;47123:62;54069:31;;;;:17;:31;;;;;:173;54087:12;54318:23;;;54356:101;54383:35;;54408:9;;;;;-1:-1:-1;;;;;54383:35:0;;;54400:1;;54383:35;;54400:1;;54383:35;54452:3;54442:7;:13;54356:101;;54473:13;:19;-1:-1:-1;80161:466:0::1;;;80122:505::o:0;4837:1404::-;4918:7;4927:12;5152:9;:16;5172:2;5152:22;5148:1086;;5496:4;5481:20;;5475:27;5546:4;5531:20;;5525:27;5604:4;5589:20;;5583:27;5191:9;5575:36;5647:25;5658:4;5575:36;5475:27;5525;5647:10;:25::i;:::-;5640:32;;;;;;;;;5148:1086;5694:9;:16;5714:2;5694:22;5690:544;;6017:4;6002:20;;5996:27;6068:4;6053:20;;6047:27;6110:23;6121:4;5996:27;6047;6110:10;:23::i;:::-;6103:30;;;;;;;;5690:544;-1:-1:-1;6182:1:0;;-1:-1:-1;6186:35:0;5690:544;4837:1404;;;;;:::o;3108:643::-;3186:20;3177:5;:29;;;;;;;;:::i;:::-;;3173:571;;3108:643;:::o;3173:571::-;3284:29;3275:5;:38;;;;;;;;:::i;:::-;;3271:473;;3330:34;;-1:-1:-1;;;3330:34:0;;24604:2:1;3330:34:0;;;24586:21:1;24643:2;24623:18;;;24616:30;24682:26;24662:18;;;24655:54;24726:18;;3330:34:0;24402:348:1;3271:473:0;3395:35;3386:5;:44;;;;;;;;:::i;:::-;;3382:362;;3447:41;;-1:-1:-1;;;3447:41:0;;24957:2:1;3447:41:0;;;24939:21:1;24996:2;24976:18;;;24969:30;25035:33;25015:18;;;25008:61;25086:18;;3447:41:0;24755:355:1;3382:362:0;3519:30;3510:5;:39;;;;;;;;:::i;:::-;;3506:238;;3566:44;;-1:-1:-1;;;3566:44:0;;25317:2:1;3566:44:0;;;25299:21:1;25356:2;25336:18;;;25329:30;25395:34;25375:18;;;25368:62;-1:-1:-1;;;25446:18:1;;;25439:32;25488:19;;3566:44:0;25115:398:1;3506:238:0;3641:30;3632:5;:39;;;;;;;;:::i;:::-;;3628:116;;3688:44;;-1:-1:-1;;;3688:44:0;;25720:2:1;3688:44:0;;;25702:21:1;25759:2;25739:18;;;25732:30;25798:34;25778:18;;;25771:62;-1:-1:-1;;;25849:18:1;;;25842:32;25891:19;;3688:44:0;25518:398:1;8495:1632:0;8626:7;;9560:66;9547:79;;9543:163;;;-1:-1:-1;9659:1:0;;-1:-1:-1;9663:30:0;9643:51;;9543:163;9720:1;:7;;9725:2;9720:7;;:18;;;;;9731:1;:7;;9736:2;9731:7;;9720:18;9716:102;;;-1:-1:-1;9771:1:0;;-1:-1:-1;9775:30:0;9755:51;;9716:102;9932:24;;;9915:14;9932:24;;;;;;;;;26148:25:1;;;26221:4;26209:17;;26189:18;;;26182:45;;;;26243:18;;;26236:34;;;26286:18;;;26279:34;;;9932:24:0;;26120:19:1;;9932:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9932:24:0;;-1:-1:-1;;9932:24:0;;;-1:-1:-1;;;;;;;9971:20:0;;9967:103;;10024:1;10028:29;10008:50;;;;;;;9967:103;10090:6;-1:-1:-1;10098:20:0;;-1:-1:-1;8495:1632:0;;;;;;;;:::o;7537:344::-;7651:7;;-1:-1:-1;;;;;7697:80:0;;7651:7;7804:25;7820:3;7805:18;;;7827:2;7804:25;:::i;:::-;7788:42;;7848:25;7859:4;7865:1;7868;7871;7848:10;:25::i;:::-;7841:32;;;;;;7537:344;;;;;;:::o;196:131:1:-;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:683::-;2450:6;2458;2466;2519:2;2507:9;2498:7;2494:23;2490:32;2487:52;;;2535:1;2532;2525:12;2487:52;2571:9;2558:23;2548:33;;2632:2;2621:9;2617:18;2604:32;2655:18;2696:2;2688:6;2685:14;2682:34;;;2712:1;2709;2702:12;2682:34;2750:6;2739:9;2735:22;2725:32;;2795:7;2788:4;2784:2;2780:13;2776:27;2766:55;;2817:1;2814;2807:12;2766:55;2857:2;2844:16;2883:2;2875:6;2872:14;2869:34;;;2899:1;2896;2889:12;2869:34;2952:7;2947:2;2937:6;2934:1;2930:14;2926:2;2922:23;2918:32;2915:45;2912:65;;;2973:1;2970;2963:12;2912:65;3004:2;3000;2996:11;2986:21;;3026:6;3016:16;;;;;2355:683;;;;;:::o;3043:160::-;3108:20;;3164:13;;3157:21;3147:32;;3137:60;;3193:1;3190;3183:12;3208:180;3264:6;3317:2;3305:9;3296:7;3292:23;3288:32;3285:52;;;3333:1;3330;3323:12;3285:52;3356:26;3372:9;3356:26;:::i;3393:265::-;3461:6;3514:2;3502:9;3493:7;3489:23;3485:32;3482:52;;;3530:1;3527;3520:12;3482:52;3569:9;3556:23;3608:1;3601:5;3598:12;3588:40;;3624:1;3621;3614:12;3663:328;3740:6;3748;3756;3809:2;3797:9;3788:7;3784:23;3780:32;3777:52;;;3825:1;3822;3815:12;3777:52;3848:29;3867:9;3848:29;:::i;:::-;3838:39;;3896:38;3930:2;3919:9;3915:18;3896:38;:::i;:::-;3886:48;;3981:2;3970:9;3966:18;3953:32;3943:42;;3663:328;;;;;:::o;3996:127::-;4057:10;4052:3;4048:20;4045:1;4038:31;4088:4;4085:1;4078:15;4112:4;4109:1;4102:15;4128:337;4269:2;4254:18;;4302:1;4291:13;;4281:144;;4347:10;4342:3;4338:20;4335:1;4328:31;4382:4;4379:1;4372:15;4410:4;4407:1;4400:15;4281:144;4434:25;;;4128:337;:::o;4470:186::-;4529:6;4582:2;4570:9;4561:7;4557:23;4553:32;4550:52;;;4598:1;4595;4588:12;4550:52;4621:29;4640:9;4621:29;:::i;4661:348::-;4713:8;4723:6;4777:3;4770:4;4762:6;4758:17;4754:27;4744:55;;4795:1;4792;4785:12;4744:55;-1:-1:-1;4818:20:1;;4861:18;4850:30;;4847:50;;;4893:1;4890;4883:12;4847:50;4930:4;4922:6;4918:17;4906:29;;4982:3;4975:4;4966:6;4958;4954:19;4950:30;4947:39;4944:59;;;4999:1;4996;4989:12;5014:411;5085:6;5093;5146:2;5134:9;5125:7;5121:23;5117:32;5114:52;;;5162:1;5159;5152:12;5114:52;5202:9;5189:23;5235:18;5227:6;5224:30;5221:50;;;5267:1;5264;5257:12;5221:50;5306:59;5357:7;5348:6;5337:9;5333:22;5306:59;:::i;:::-;5384:8;;5280:85;;-1:-1:-1;5014:411:1;-1:-1:-1;;;;5014:411:1:o;6030:254::-;6095:6;6103;6156:2;6144:9;6135:7;6131:23;6127:32;6124:52;;;6172:1;6169;6162:12;6124:52;6195:29;6214:9;6195:29;:::i;:::-;6185:39;;6243:35;6274:2;6263:9;6259:18;6243:35;:::i;:::-;6233:45;;6030:254;;;;;:::o;6289:127::-;6350:10;6345:3;6341:20;6338:1;6331:31;6381:4;6378:1;6371:15;6405:4;6402:1;6395:15;6421:1138;6516:6;6524;6532;6540;6593:3;6581:9;6572:7;6568:23;6564:33;6561:53;;;6610:1;6607;6600:12;6561:53;6633:29;6652:9;6633:29;:::i;:::-;6623:39;;6681:38;6715:2;6704:9;6700:18;6681:38;:::i;:::-;6671:48;;6766:2;6755:9;6751:18;6738:32;6728:42;;6821:2;6810:9;6806:18;6793:32;6844:18;6885:2;6877:6;6874:14;6871:34;;;6901:1;6898;6891:12;6871:34;6939:6;6928:9;6924:22;6914:32;;6984:7;6977:4;6973:2;6969:13;6965:27;6955:55;;7006:1;7003;6996:12;6955:55;7042:2;7029:16;7064:2;7060;7057:10;7054:36;;;7070:18;;:::i;:::-;7145:2;7139:9;7113:2;7199:13;;-1:-1:-1;;7195:22:1;;;7219:2;7191:31;7187:40;7175:53;;;7243:18;;;7263:22;;;7240:46;7237:72;;;7289:18;;:::i;:::-;7329:10;7325:2;7318:22;7364:2;7356:6;7349:18;7404:7;7399:2;7394;7390;7386:11;7382:20;7379:33;7376:53;;;7425:1;7422;7415:12;7376:53;7481:2;7476;7472;7468:11;7463:2;7455:6;7451:15;7438:46;7526:1;7521:2;7516;7508:6;7504:15;7500:24;7493:35;7547:6;7537:16;;;;;;;6421:1138;;;;;;;:::o;7564:260::-;7632:6;7640;7693:2;7681:9;7672:7;7668:23;7664:32;7661:52;;;7709:1;7706;7699:12;7661:52;7732:29;7751:9;7732:29;:::i;:::-;7722:39;;7780:38;7814:2;7803:9;7799:18;7780:38;:::i;7829:478::-;7908:6;7916;7924;7977:2;7965:9;7956:7;7952:23;7948:32;7945:52;;;7993:1;7990;7983:12;7945:52;8029:9;8016:23;8006:33;;8090:2;8079:9;8075:18;8062:32;8117:18;8109:6;8106:30;8103:50;;;8149:1;8146;8139:12;8103:50;8188:59;8239:7;8230:6;8219:9;8215:22;8188:59;:::i;:::-;7829:478;;8266:8;;-1:-1:-1;8162:85:1;;-1:-1:-1;;;;7829:478:1:o;8312:380::-;8391:1;8387:12;;;;8434;;;8455:61;;8509:4;8501:6;8497:17;8487:27;;8455:61;8562:2;8554:6;8551:14;8531:18;8528:38;8525:161;;8608:10;8603:3;8599:20;8596:1;8589:31;8643:4;8640:1;8633:15;8671:4;8668:1;8661:15;8525:161;;8312:380;;;:::o;8697:355::-;8899:2;8881:21;;;8938:2;8918:18;;;8911:30;8977:33;8972:2;8957:18;;8950:61;9043:2;9028:18;;8697:355::o;9057:329::-;9259:2;9241:21;;;9298:1;9278:18;;;9271:29;-1:-1:-1;;;9331:2:1;9316:18;;9309:36;9377:2;9362:18;;9057:329::o;10386:338::-;10588:2;10570:21;;;10627:2;10607:18;;;10600:30;-1:-1:-1;;;10661:2:1;10646:18;;10639:44;10715:2;10700:18;;10386:338::o;10729:127::-;10790:10;10785:3;10781:20;10778:1;10771:31;10821:4;10818:1;10811:15;10845:4;10842:1;10835:15;10861:128;10901:3;10932:1;10928:6;10925:1;10922:13;10919:39;;;10938:18;;:::i;:::-;-1:-1:-1;10974:9:1;;10861:128::o;11342:344::-;11544:2;11526:21;;;11583:2;11563:18;;;11556:30;-1:-1:-1;;;11617:2:1;11602:18;;11595:50;11677:2;11662:18;;11342:344::o;13082:125::-;13122:4;13150:1;13147;13144:8;13141:34;;;13155:18;;:::i;:::-;-1:-1:-1;13192:9:1;;13082:125::o;13212:168::-;13252:7;13318:1;13314;13310:6;13306:14;13303:1;13300:21;13295:1;13288:9;13281:17;13277:45;13274:71;;;13325:18;;:::i;:::-;-1:-1:-1;13365:9:1;;13212:168::o;14066:127::-;14127:10;14122:3;14118:20;14115:1;14108:31;14158:4;14155:1;14148:15;14182:4;14179:1;14172:15;14198:120;14238:1;14264;14254:35;;14269:18;;:::i;:::-;-1:-1:-1;14303:9:1;;14198:120::o;15693:545::-;15795:2;15790:3;15787:11;15784:448;;;15831:1;15856:5;15852:2;15845:17;15901:4;15897:2;15887:19;15971:2;15959:10;15955:19;15952:1;15948:27;15942:4;15938:38;16007:4;15995:10;15992:20;15989:47;;;-1:-1:-1;16030:4:1;15989:47;16085:2;16080:3;16076:12;16073:1;16069:20;16063:4;16059:31;16049:41;;16140:82;16158:2;16151:5;16148:13;16140:82;;;16203:17;;;16184:1;16173:13;16140:82;;16414:1206;16538:18;16533:3;16530:27;16527:53;;;16560:18;;:::i;:::-;16589:94;16679:3;16639:38;16671:4;16665:11;16639:38;:::i;:::-;16633:4;16589:94;:::i;:::-;16709:1;16734:2;16729:3;16726:11;16751:1;16746:616;;;;17406:1;17423:3;17420:93;;;-1:-1:-1;17479:19:1;;;17466:33;17420:93;-1:-1:-1;;16371:1:1;16367:11;;;16363:24;16359:29;16349:40;16395:1;16391:11;;;16346:57;17526:78;;16719:895;;16746:616;15640:1;15633:14;;;15677:4;15664:18;;-1:-1:-1;;16782:17:1;;;16883:9;16905:229;16919:7;16916:1;16913:14;16905:229;;;17008:19;;;16995:33;16980:49;;17115:4;17100:20;;;;17068:1;17056:14;;;;16935:12;16905:229;;;16909:3;17162;17153:7;17150:16;17147:159;;;17286:1;17282:6;17276:3;17270;17267:1;17263:11;17259:21;17255:34;17251:39;17238:9;17233:3;17229:19;17216:33;17212:79;17204:6;17197:95;17147:159;;;17349:1;17343:3;17340:1;17336:11;17332:19;17326:4;17319:33;16719:895;;16414:1206;;;:::o;19013:135::-;19052:3;19073:17;;;19070:43;;19093:18;;:::i;:::-;-1:-1:-1;19140:1:1;19129:13;;19013:135::o;19499:1007::-;19675:3;19704:1;19737:6;19731:13;19767:36;19793:9;19767:36;:::i;:::-;19822:1;19839:18;;;19866:133;;;;20013:1;20008:356;;;;19832:532;;19866:133;-1:-1:-1;;19899:24:1;;19887:37;;19972:14;;19965:22;19953:35;;19944:45;;;-1:-1:-1;19866:133:1;;20008:356;20039:6;20036:1;20029:17;20069:4;20114:2;20111:1;20101:16;20139:1;20153:165;20167:6;20164:1;20161:13;20153:165;;;20245:14;;20232:11;;;20225:35;20288:16;;;;20182:10;;20153:165;;;20157:3;;;20347:6;20342:3;20338:16;20331:23;;19832:532;;;;;20395:6;20389:13;20411:55;20457:8;20452:3;20445:4;20437:6;20433:17;20411:55;:::i;:::-;20482:18;;19499:1007;-1:-1:-1;;;;19499:1007:1:o;23405:489::-;-1:-1:-1;;;;;23674:15:1;;;23656:34;;23726:15;;23721:2;23706:18;;23699:43;23773:2;23758:18;;23751:34;;;23821:3;23816:2;23801:18;;23794:31;;;23599:4;;23842:46;;23868:19;;23860:6;23842:46;:::i;:::-;23834:54;23405:489;-1:-1:-1;;;;;;23405:489:1:o;23899:249::-;23968:6;24021:2;24009:9;24000:7;23996:23;23992:32;23989:52;;;24037:1;24034;24027:12;23989:52;24069:9;24063:16;24088:30;24112:5;24088:30;:::i;24153:112::-;24185:1;24211;24201:35;;24216:18;;:::i;:::-;-1:-1:-1;24250:9:1;;24153:112::o;24270:127::-;24331:10;24326:3;24322:20;24319:1;24312:31;24362:4;24359:1;24352:15;24386:4;24383:1;24376:15

Swarm Source

ipfs://4f633c77fe1d9f1fded3cc9a8de38c23e850bfc2a8bfaa9e55bee18f41e62a82
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.