ETH Price: $2,674.92 (+10.35%)
Gas: 1 Gwei

Token

WOAHS (WS)
 

Overview

Max Total Supply

1,632 WS

Holders

183

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 WS
0x08b5bfeb412443cfc54e38656ae88f6bdde4920f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
WOAHS

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)
// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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


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

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

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

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

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

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

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

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

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

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

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

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)


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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

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

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

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

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

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


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


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


/**
 * @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: erc721a/contracts/IERC721A.sol


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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/WOAHS.sol


    contract WOAHS is Ownable, ERC721A, ReentrancyGuard {
        string public notRevealedUri;   
        string public baseExtension = ".json";
        
        uint256 public MAX_SUPPLY = 5000;
        uint256 public PRICE = 0.04 ether;
        uint256 public PRESALE_PRICE = 0.03 ether;
        uint256 public _reserveCounter;
        uint256 public _airdropCounter;
        uint256 public _preSaleListCounter;
        uint256 public _publicCounter;
        uint256 public maxPresaleMintAmount = 3;
        uint256 public maxpublicsaleMintAmount = 100;
        uint256 public saleMode = 0; // 1- presale 2- public sale
        
        bool public _revealed = false;

        mapping(address => bool) public allowList;
        mapping(address => uint256) public _preSaleMintCounter;
        mapping(address => uint256) public _publicsaleMintCounter;

        // merkle root
        bytes32 public preSaleRoot;

        constructor(
            string memory name,
            string memory symbol,
            string memory _notRevealedUri
        )
            ERC721A(name, symbol)
        {
            setNotRevealedURI(_notRevealedUri);
        }

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

            if(_revealed == false) {
                return notRevealedUri;
            }

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

        function setMode(uint256 mode) public onlyOwner{
            saleMode = mode;
        }

        function getSaleMode() public view returns (uint256){
            return saleMode;
        }

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

        function setMaxPresaleMintAmount(uint256 _newQty) public onlyOwner {
            maxPresaleMintAmount = _newQty;
        }

        function setPublicsaleMintAmount(uint256 _newQty) public onlyOwner {
            maxpublicsaleMintAmount = _newQty;
        }

        function setCost(uint256 _newCost) public onlyOwner {
            PRICE = _newCost;
        }

        function setPresaleMintPrice(uint256 _newCost) public onlyOwner {
            PRESALE_PRICE = _newCost;
        }

        function setPreSaleRoot(bytes32 _merkleRoot) public onlyOwner {
            preSaleRoot = _merkleRoot;
        }

        function reserveMint(uint256 quantity) public onlyOwner {
            require(
                totalSupply() + quantity <= MAX_SUPPLY,
                "would exceed max supply"
            );
            _safeMint(msg.sender, quantity);
            _reserveCounter = _reserveCounter + quantity;
        }

        function airDrop(address[] calldata _to, uint256 quantity) public onlyOwner{
            require(
                totalSupply() + quantity <= MAX_SUPPLY,
                "would exceed max supply"
            );
            require(quantity > 0, "need to mint at least 1 NFT");
            for (uint256 i = 0; i < _to.length; i++) {
                _safeMint(_to[i], quantity);
                _airdropCounter = _airdropCounter + quantity;
            }
        }

        // metadata URI
        string private _baseTokenURI;

        function setBaseURI(string calldata baseURI) public onlyOwner {
            _baseTokenURI = baseURI;
        }

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

        function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
            notRevealedUri = _notRevealedURI;
        }

        function reveal(bool _state) public onlyOwner {
            _revealed = _state;
        }

        function mintPreSaleTokens(uint8 quantity, bytes32[] calldata _merkleProof)
            public
            payable
        {
            require(saleMode == 1, "Pre sale is not active");
            require(quantity > 0, "Must mint more than 0 tokens");
            require(
                _preSaleMintCounter[msg.sender] + quantity <= maxPresaleMintAmount,
                "exceeds max per address"
            );
            require(
                totalSupply() + quantity <= MAX_SUPPLY,
                "Purchase would exceed max supply of Tokens"
            );
            require(PRESALE_PRICE * quantity == msg.value, "Incorrect funds");

            // check proof & mint
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(
                MerkleProof.verify(_merkleProof, preSaleRoot, leaf) ||
                    allowList[msg.sender],
                "Invalid signature/ Address not whitelisted"
            );
            _safeMint(msg.sender, quantity);
            _preSaleListCounter = _preSaleListCounter + quantity;
            _preSaleMintCounter[msg.sender] = _preSaleMintCounter[msg.sender] + quantity;
        }

        function addToPreSaleOverflow(address[] calldata addresses)
            external
            onlyOwner
        {
            for (uint256 i = 0; i < addresses.length; i++) {
                allowList[addresses[i]] = true;
            }
        }

        // public mint
        function publicSaleMint(uint256 quantity)
            public
            payable
        {
            require(totalSupply() + quantity <= MAX_SUPPLY, "reached max supply");
            require(saleMode == 2, "public sale has not begun yet");
            require(quantity > 0, "Must mint more than 0 tokens");
            require(PRICE * quantity == msg.value, "Incorrect funds");
            require(
                _publicsaleMintCounter[msg.sender] + quantity <= maxpublicsaleMintAmount,
                "exceeds max per address"
            );

            _safeMint(msg.sender, quantity);
            _publicCounter = _publicCounter + quantity;
        }

        function getBalance() public view returns (uint256) {
            return address(this).balance;
        }

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

        function withdraw() public payable onlyOwner nonReentrant{
            uint256 balance = address(this).balance;
            require(balance > 0, "No ether left to withdraw");
            payable(msg.sender).transfer(balance);
        }

    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_airdropCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preSaleListCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_preSaleMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_publicsaleMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserveCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPreSaleOverflow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowList","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxpublicsaleMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintPreSaleTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"preSaleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newQty","type":"uint256"}],"name":"setMaxPresaleMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setPreSaleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newQty","type":"uint256"}],"name":"setPublicsaleMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600b9062000026908262000247565b50611388600c55668e1bc9bf040000600d55666a94d74f430000600e556003601355606460145560006015556016805460ff191690553480156200006957600080fd5b5060405162002b5938038062002b598339810160408190526200008c91620003c2565b82826200009933620000d5565b6003620000a7838262000247565b506004620000b6828262000247565b5050600180805560095550620000cc8162000125565b50505062000453565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200012f62000141565b600a6200013d828262000247565b5050565b6000546001600160a01b03163314620001a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001cd57607f821691505b602082108103620001ee57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024257600081815260208120601f850160051c810160208610156200021d5750805b601f850160051c820191505b818110156200023e5782815560010162000229565b5050505b505050565b81516001600160401b03811115620002635762000263620001a2565b6200027b81620002748454620001b8565b84620001f4565b602080601f831160018114620002b357600084156200029a5750858301515b600019600386901b1c1916600185901b1785556200023e565b600085815260208120601f198616915b82811015620002e457888601518255948401946001909101908401620002c3565b5085821015620003035787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200032557600080fd5b81516001600160401b0380821115620003425762000342620001a2565b604051601f8301601f19908116603f011681019082821181831017156200036d576200036d620001a2565b816040528381526020925086838588010111156200038a57600080fd5b600091505b83821015620003ae57858201830151818301840152908201906200038f565b600093810190920192909252949350505050565b600080600060608486031215620003d857600080fd5b83516001600160401b0380821115620003f057600080fd5b620003fe8783880162000313565b945060208601519150808211156200041557600080fd5b620004238783880162000313565b935060408601519150808211156200043a57600080fd5b50620004498682870162000313565b9150509250925092565b6126f680620004636000396000f3fe6080604052600436106102ff5760003560e01c8063715a609d11610190578063cc523f26116100dc578063e7661c7811610095578063f2fde38b1161006f578063f2fde38b1461083e578063f8c8d4991461085e578063fd1fc4a01461087e578063fe042d491461089e57600080fd5b8063e7661c78146107eb578063e985e9c5146107fe578063f2c4ce1e1461081e57600080fd5b8063cc523f2614610732578063d72dd3b414610748578063d76fd22014610768578063d7719f6414610788578063d99079ca146107b5578063da22488c146107cb57600080fd5b806395d89b4111610149578063b3ab66b011610123578063b3ab66b0146106d7578063b88d4fde146106ea578063c6682862146106fd578063c87b56dd1461071257600080fd5b806395d89b41146106755780639b257d731461068a578063a22cb465146106b757600080fd5b8063715a609d146105df57806385480756146105f557806389f3b22d1461060b5780638d859f3e146106215780638da5cb5b14610637578063940cd05b1461065557600080fd5b80633154b9c21161024f57806355f804b3116102085780636ebeac85116101e25780636ebeac85146105705780636f8b44b01461058a57806370a08231146105aa578063715018a6146105ca57600080fd5b806355f804b31461051a57806362dc6e211461053a5780636352211e1461055057600080fd5b80633154b9c21461049357806332cb6b0c146104a957806337a13193146104bf5780633ccfd60b146104df57806342842e0e146104e757806344a0d68a146104fa57600080fd5b80630deed6a6116102bc57806317c84ce61161029657806317c84ce61461042557806318160ddd1461043b57806323b872dd146104505780632848aeaf1461046357600080fd5b80630deed6a6146103dc57806312065fe0146103f25780631342ff4c1461040557600080fd5b806301ffc9a71461030457806306fdde0314610339578063081812fc1461035b578063081c8c4414610393578063095ea7b3146103a85780630d43ebc2146103bd575b600080fd5b34801561031057600080fd5b5061032461031f366004611ea1565b6108be565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b5061034e610910565b6040516103309190611f0e565b34801561036757600080fd5b5061037b610376366004611f21565b6109a2565b6040516001600160a01b039091168152602001610330565b34801561039f57600080fd5b5061034e6109e6565b6103bb6103b6366004611f56565b610a74565b005b3480156103c957600080fd5b506015545b604051908152602001610330565b3480156103e857600080fd5b506103ce60155481565b3480156103fe57600080fd5b50476103ce565b34801561041157600080fd5b506103bb610420366004611f21565b610b14565b34801561043157600080fd5b506103ce600f5481565b34801561044757600080fd5b506103ce610b9d565b6103bb61045e366004611f80565b610bab565b34801561046f57600080fd5b5061032461047e366004611fbc565b60176020526000908152604090205460ff1681565b34801561049f57600080fd5b506103ce601a5481565b3480156104b557600080fd5b506103ce600c5481565b3480156104cb57600080fd5b506103bb6104da366004611f21565b610d44565b6103bb610d51565b6103bb6104f5366004611f80565b610dea565b34801561050657600080fd5b506103bb610515366004611f21565b610e0a565b34801561052657600080fd5b506103bb610535366004611fd7565b610e17565b34801561054657600080fd5b506103ce600e5481565b34801561055c57600080fd5b5061037b61056b366004611f21565b610e2c565b34801561057c57600080fd5b506016546103249060ff1681565b34801561059657600080fd5b506103bb6105a5366004611f21565b610e37565b3480156105b657600080fd5b506103ce6105c5366004611fbc565b610e44565b3480156105d657600080fd5b506103bb610e93565b3480156105eb57600080fd5b506103ce60125481565b34801561060157600080fd5b506103ce60135481565b34801561061757600080fd5b506103ce60105481565b34801561062d57600080fd5b506103ce600d5481565b34801561064357600080fd5b506000546001600160a01b031661037b565b34801561066157600080fd5b506103bb610670366004612059565b610ea5565b34801561068157600080fd5b5061034e610ec0565b34801561069657600080fd5b506103ce6106a5366004611fbc565b60196020526000908152604090205481565b3480156106c357600080fd5b506103bb6106d2366004612074565b610ecf565b6103bb6106e5366004611f21565b610f3b565b6103bb6106f8366004612133565b611108565b34801561070957600080fd5b5061034e611152565b34801561071e57600080fd5b5061034e61072d366004611f21565b61115f565b34801561073e57600080fd5b506103ce60145481565b34801561075457600080fd5b506103bb610763366004611f21565b6112cf565b34801561077457600080fd5b506103bb610783366004611f21565b6112dc565b34801561079457600080fd5b506103ce6107a3366004611fbc565b60186020526000908152604090205481565b3480156107c157600080fd5b506103ce60115481565b3480156107d757600080fd5b506103bb6107e63660046121fb565b6112e9565b6103bb6107f936600461223d565b611363565b34801561080a57600080fd5b50610324610819366004612298565b61167d565b34801561082a57600080fd5b506103bb6108393660046122c2565b6116ab565b34801561084a57600080fd5b506103bb610859366004611fbc565b6116c3565b34801561086a57600080fd5b506103bb610879366004611f21565b61173c565b34801561088a57600080fd5b506103bb61089936600461230b565b611749565b3480156108aa57600080fd5b506103bb6108b9366004611f21565b61185d565b60006301ffc9a760e01b6001600160e01b0319831614806108ef57506380ac58cd60e01b6001600160e01b03198316145b8061090a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461091f90612357565b80601f016020809104026020016040519081016040528092919081815260200182805461094b90612357565b80156109985780601f1061096d57610100808354040283529160200191610998565b820191906000526020600020905b81548152906001019060200180831161097b57829003601f168201915b5050505050905090565b60006109ad8261186a565b6109ca576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600a80546109f390612357565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1f90612357565b8015610a6c5780601f10610a4157610100808354040283529160200191610a6c565b820191906000526020600020905b815481529060010190602001808311610a4f57829003601f168201915b505050505081565b6000610a7f82610e2c565b9050336001600160a01b03821614610ab857610a9b813361167d565b610ab8576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b1c61189f565b600c5481610b28610b9d565b610b3291906123a7565b1115610b7f5760405162461bcd60e51b8152602060048201526017602482015276776f756c6420657863656564206d617820737570706c7960481b60448201526064015b60405180910390fd5b610b8933826118f9565b80600f54610b9791906123a7565b600f5550565b600254600154036000190190565b6000610bb682611913565b9050836001600160a01b0316816001600160a01b031614610be95760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610c3657610c19863361167d565b610c3657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c5d57604051633a954ecd60e21b815260040160405180910390fd5b8015610c6857600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610cfa57600184016000818152600560205260408120549003610cf8576001548114610cf85760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610d4c61189f565b600e55565b610d5961189f565b610d61611982565b4780610daf5760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f207769746864726177000000000000006044820152606401610b76565b604051339082156108fc029083906000818181858888f19350505050158015610ddc573d6000803e3d6000fd5b5050610de86001600955565b565b610e0583838360405180602001604052806000815250611108565b505050565b610e1261189f565b600d55565b610e1f61189f565b601b610e05828483612400565b600061090a82611913565b610e3f61189f565b600c55565b60006001600160a01b038216610e6d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610e9b61189f565b610de860006119db565b610ead61189f565b6016805460ff1916911515919091179055565b60606004805461091f90612357565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5481610f47610b9d565b610f5191906123a7565b1115610f945760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610b76565b601554600214610fe65760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610b76565b600081116110365760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e73000000006044820152606401610b76565b3481600d5461104591906124c0565b146110845760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b6044820152606401610b76565b601454336000908152601960205260409020546110a29083906123a7565b11156110ea5760405162461bcd60e51b815260206004820152601760248201527665786365656473206d617820706572206164647265737360481b6044820152606401610b76565b6110f433826118f9565b8060125461110291906123a7565b60125550565b611113848484610bab565b6001600160a01b0383163b1561114c5761112f84848484611a2b565b61114c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b80546109f390612357565b606061116a8261186a565b6111cf5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610b76565b60165460ff16151560000361127057600a80546111eb90612357565b80601f016020809104026020016040519081016040528092919081815260200182805461121790612357565b80156112645780601f1061123957610100808354040283529160200191611264565b820191906000526020600020905b81548152906001019060200180831161124757829003601f168201915b50505050509050919050565b600061127a611b17565b9050600081511161129a57604051806020016040528060008152506112c8565b806112a484611b26565b600b6040516020016112b8939291906124d7565b6040516020818303038152906040525b9392505050565b6112d761189f565b601555565b6112e461189f565b601355565b6112f161189f565b60005b81811015610e055760016017600085858581811061131457611314612577565b90506020020160208101906113299190611fbc565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061135b8161258d565b9150506112f4565b6015546001146113ae5760405162461bcd60e51b81526020600482015260166024820152755072652073616c65206973206e6f742061637469766560501b6044820152606401610b76565b60008360ff16116114015760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e73000000006044820152606401610b76565b601354336000908152601860205260409020546114229060ff8616906123a7565b111561146a5760405162461bcd60e51b815260206004820152601760248201527665786365656473206d617820706572206164647265737360481b6044820152606401610b76565b600c548360ff16611479610b9d565b61148391906123a7565b11156114e45760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620546f6b656e7360b01b6064820152608401610b76565b348360ff16600e546114f691906124c0565b146115355760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b6044820152606401610b76565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506115af83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a549150849050611bb9565b806115c957503360009081526017602052604090205460ff165b6116285760405162461bcd60e51b815260206004820152602a60248201527f496e76616c6964207369676e61747572652f2041646472657373206e6f7420776044820152691a1a5d195b1a5cdd195960b21b6064820152608401610b76565b611635338560ff166118f9565b8360ff1660115461164691906123a7565b601155336000908152601860205260409020546116679060ff8616906123a7565b3360009081526018602052604090205550505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6116b361189f565b600a6116bf82826125a6565b5050565b6116cb61189f565b6001600160a01b0381166117305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b76565b611739816119db565b50565b61174461189f565b601455565b61175161189f565b600c548161175d610b9d565b61176791906123a7565b11156117af5760405162461bcd60e51b8152602060048201526017602482015276776f756c6420657863656564206d617820737570706c7960481b6044820152606401610b76565b600081116117ff5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b76565b60005b8281101561114c5761183a84848381811061181f5761181f612577565b90506020020160208101906118349190611fbc565b836118f9565b8160105461184891906123a7565b601055806118558161258d565b915050611802565b61186561189f565b601a55565b60008160011115801561187e575060015482105b801561090a575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610de85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b76565b6116bf828260405180602001604052806000815250611bcf565b60008180600111611969576001548110156119695760008181526005602052604081205490600160e01b82169003611967575b806000036112c8575060001901600081815260056020526040902054611946565b505b604051636f96cda160e11b815260040160405180910390fd5b6002600954036119d45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b76565b6002600955565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a60903390899088908890600401612666565b6020604051808303816000875af1925050508015611a9b575060408051601f3d908101601f19168201909252611a98918101906126a3565b60015b611af9573d808015611ac9576040519150601f19603f3d011682016040523d82523d6000602084013e611ace565b606091505b508051600003611af1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601b805461091f90612357565b60606000611b3383611c3c565b600101905060008167ffffffffffffffff811115611b5357611b536120a7565b6040519080825280601f01601f191660200182016040528015611b7d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b8757509392505050565b600082611bc68584611d14565b14949350505050565b611bd98383611d61565b6001600160a01b0383163b15610e05576001548281035b611c036000868380600101945086611a2b565b611c20576040516368d2bf6b60e11b815260040160405180910390fd5b818110611bf0578160015414611c3557600080fd5b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611c7b5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611ca7576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611cc557662386f26fc10000830492506010015b6305f5e1008310611cdd576305f5e100830492506008015b6127108310611cf157612710830492506004015b60648310611d03576064830492506002015b600a831061090a5760010192915050565b600081815b8451811015611d5957611d4582868381518110611d3857611d38612577565b6020026020010151611e5f565b915080611d518161258d565b915050611d19565b509392505050565b6001546000829003611d865760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611e3557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611dfd565b5081600003611e5657604051622e076360e81b815260040160405180910390fd5b60015550505050565b6000818310611e7b5760008281526020849052604090206112c8565b5060009182526020526040902090565b6001600160e01b03198116811461173957600080fd5b600060208284031215611eb357600080fd5b81356112c881611e8b565b60005b83811015611ed9578181015183820152602001611ec1565b50506000910152565b60008151808452611efa816020860160208601611ebe565b601f01601f19169290920160200192915050565b6020815260006112c86020830184611ee2565b600060208284031215611f3357600080fd5b5035919050565b80356001600160a01b0381168114611f5157600080fd5b919050565b60008060408385031215611f6957600080fd5b611f7283611f3a565b946020939093013593505050565b600080600060608486031215611f9557600080fd5b611f9e84611f3a565b9250611fac60208501611f3a565b9150604084013590509250925092565b600060208284031215611fce57600080fd5b6112c882611f3a565b60008060208385031215611fea57600080fd5b823567ffffffffffffffff8082111561200257600080fd5b818501915085601f83011261201657600080fd5b81358181111561202557600080fd5b86602082850101111561203757600080fd5b60209290920196919550909350505050565b80358015158114611f5157600080fd5b60006020828403121561206b57600080fd5b6112c882612049565b6000806040838503121561208757600080fd5b61209083611f3a565b915061209e60208401612049565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156120d8576120d86120a7565b604051601f8501601f19908116603f01168101908282118183101715612100576121006120a7565b8160405280935085815286868601111561211957600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561214957600080fd5b61215285611f3a565b935061216060208601611f3a565b925060408501359150606085013567ffffffffffffffff81111561218357600080fd5b8501601f8101871361219457600080fd5b6121a3878235602084016120bd565b91505092959194509250565b60008083601f8401126121c157600080fd5b50813567ffffffffffffffff8111156121d957600080fd5b6020830191508360208260051b85010111156121f457600080fd5b9250929050565b6000806020838503121561220e57600080fd5b823567ffffffffffffffff81111561222557600080fd5b612231858286016121af565b90969095509350505050565b60008060006040848603121561225257600080fd5b833560ff8116811461226357600080fd5b9250602084013567ffffffffffffffff81111561227f57600080fd5b61228b868287016121af565b9497909650939450505050565b600080604083850312156122ab57600080fd5b6122b483611f3a565b915061209e60208401611f3a565b6000602082840312156122d457600080fd5b813567ffffffffffffffff8111156122eb57600080fd5b8201601f810184136122fc57600080fd5b611b0f848235602084016120bd565b60008060006040848603121561232057600080fd5b833567ffffffffffffffff81111561233757600080fd5b612343868287016121af565b909790965060209590950135949350505050565b600181811c9082168061236b57607f821691505b60208210810361238b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561090a5761090a612391565b601f821115610e0557600081815260208120601f850160051c810160208610156123e15750805b601f850160051c820191505b81811015610d3c578281556001016123ed565b67ffffffffffffffff831115612418576124186120a7565b61242c836124268354612357565b836123ba565b6000601f84116001811461246057600085156124485750838201355b600019600387901b1c1916600186901b178355611c35565b600083815260209020601f19861690835b828110156124915786850135825560209485019460019092019101612471565b50868210156124ae5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b808202811582820484141761090a5761090a612391565b6000845160206124ea8285838a01611ebe565b8551918401916124fd8184848a01611ebe565b855492019160009061250e81612357565b60018281168015612526576001811461253b57612567565b60ff1984168752821515830287019450612567565b896000528560002060005b8481101561255f57815489820152908301908701612546565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b60006001820161259f5761259f612391565b5060010190565b815167ffffffffffffffff8111156125c0576125c06120a7565b6125d4816125ce8454612357565b846123ba565b602080601f83116001811461260957600084156125f15750858301515b600019600386901b1c1916600185901b178555610d3c565b600085815260208120601f198616915b8281101561263857888601518255948401946001909101908401612619565b50858210156126565787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061269990830184611ee2565b9695505050505050565b6000602082840312156126b557600080fd5b81516112c881611e8b56fea264697066735822122085549f11e9fddbb0b361a5579e911080fbcc0a5c9227e51151b36cef674574f164736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000005574f41485300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025753000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d687474703a2f2f636f6465737065656475702e636f6d2f312e6a736f6e000000

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c8063715a609d11610190578063cc523f26116100dc578063e7661c7811610095578063f2fde38b1161006f578063f2fde38b1461083e578063f8c8d4991461085e578063fd1fc4a01461087e578063fe042d491461089e57600080fd5b8063e7661c78146107eb578063e985e9c5146107fe578063f2c4ce1e1461081e57600080fd5b8063cc523f2614610732578063d72dd3b414610748578063d76fd22014610768578063d7719f6414610788578063d99079ca146107b5578063da22488c146107cb57600080fd5b806395d89b4111610149578063b3ab66b011610123578063b3ab66b0146106d7578063b88d4fde146106ea578063c6682862146106fd578063c87b56dd1461071257600080fd5b806395d89b41146106755780639b257d731461068a578063a22cb465146106b757600080fd5b8063715a609d146105df57806385480756146105f557806389f3b22d1461060b5780638d859f3e146106215780638da5cb5b14610637578063940cd05b1461065557600080fd5b80633154b9c21161024f57806355f804b3116102085780636ebeac85116101e25780636ebeac85146105705780636f8b44b01461058a57806370a08231146105aa578063715018a6146105ca57600080fd5b806355f804b31461051a57806362dc6e211461053a5780636352211e1461055057600080fd5b80633154b9c21461049357806332cb6b0c146104a957806337a13193146104bf5780633ccfd60b146104df57806342842e0e146104e757806344a0d68a146104fa57600080fd5b80630deed6a6116102bc57806317c84ce61161029657806317c84ce61461042557806318160ddd1461043b57806323b872dd146104505780632848aeaf1461046357600080fd5b80630deed6a6146103dc57806312065fe0146103f25780631342ff4c1461040557600080fd5b806301ffc9a71461030457806306fdde0314610339578063081812fc1461035b578063081c8c4414610393578063095ea7b3146103a85780630d43ebc2146103bd575b600080fd5b34801561031057600080fd5b5061032461031f366004611ea1565b6108be565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b5061034e610910565b6040516103309190611f0e565b34801561036757600080fd5b5061037b610376366004611f21565b6109a2565b6040516001600160a01b039091168152602001610330565b34801561039f57600080fd5b5061034e6109e6565b6103bb6103b6366004611f56565b610a74565b005b3480156103c957600080fd5b506015545b604051908152602001610330565b3480156103e857600080fd5b506103ce60155481565b3480156103fe57600080fd5b50476103ce565b34801561041157600080fd5b506103bb610420366004611f21565b610b14565b34801561043157600080fd5b506103ce600f5481565b34801561044757600080fd5b506103ce610b9d565b6103bb61045e366004611f80565b610bab565b34801561046f57600080fd5b5061032461047e366004611fbc565b60176020526000908152604090205460ff1681565b34801561049f57600080fd5b506103ce601a5481565b3480156104b557600080fd5b506103ce600c5481565b3480156104cb57600080fd5b506103bb6104da366004611f21565b610d44565b6103bb610d51565b6103bb6104f5366004611f80565b610dea565b34801561050657600080fd5b506103bb610515366004611f21565b610e0a565b34801561052657600080fd5b506103bb610535366004611fd7565b610e17565b34801561054657600080fd5b506103ce600e5481565b34801561055c57600080fd5b5061037b61056b366004611f21565b610e2c565b34801561057c57600080fd5b506016546103249060ff1681565b34801561059657600080fd5b506103bb6105a5366004611f21565b610e37565b3480156105b657600080fd5b506103ce6105c5366004611fbc565b610e44565b3480156105d657600080fd5b506103bb610e93565b3480156105eb57600080fd5b506103ce60125481565b34801561060157600080fd5b506103ce60135481565b34801561061757600080fd5b506103ce60105481565b34801561062d57600080fd5b506103ce600d5481565b34801561064357600080fd5b506000546001600160a01b031661037b565b34801561066157600080fd5b506103bb610670366004612059565b610ea5565b34801561068157600080fd5b5061034e610ec0565b34801561069657600080fd5b506103ce6106a5366004611fbc565b60196020526000908152604090205481565b3480156106c357600080fd5b506103bb6106d2366004612074565b610ecf565b6103bb6106e5366004611f21565b610f3b565b6103bb6106f8366004612133565b611108565b34801561070957600080fd5b5061034e611152565b34801561071e57600080fd5b5061034e61072d366004611f21565b61115f565b34801561073e57600080fd5b506103ce60145481565b34801561075457600080fd5b506103bb610763366004611f21565b6112cf565b34801561077457600080fd5b506103bb610783366004611f21565b6112dc565b34801561079457600080fd5b506103ce6107a3366004611fbc565b60186020526000908152604090205481565b3480156107c157600080fd5b506103ce60115481565b3480156107d757600080fd5b506103bb6107e63660046121fb565b6112e9565b6103bb6107f936600461223d565b611363565b34801561080a57600080fd5b50610324610819366004612298565b61167d565b34801561082a57600080fd5b506103bb6108393660046122c2565b6116ab565b34801561084a57600080fd5b506103bb610859366004611fbc565b6116c3565b34801561086a57600080fd5b506103bb610879366004611f21565b61173c565b34801561088a57600080fd5b506103bb61089936600461230b565b611749565b3480156108aa57600080fd5b506103bb6108b9366004611f21565b61185d565b60006301ffc9a760e01b6001600160e01b0319831614806108ef57506380ac58cd60e01b6001600160e01b03198316145b8061090a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461091f90612357565b80601f016020809104026020016040519081016040528092919081815260200182805461094b90612357565b80156109985780601f1061096d57610100808354040283529160200191610998565b820191906000526020600020905b81548152906001019060200180831161097b57829003601f168201915b5050505050905090565b60006109ad8261186a565b6109ca576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600a80546109f390612357565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1f90612357565b8015610a6c5780601f10610a4157610100808354040283529160200191610a6c565b820191906000526020600020905b815481529060010190602001808311610a4f57829003601f168201915b505050505081565b6000610a7f82610e2c565b9050336001600160a01b03821614610ab857610a9b813361167d565b610ab8576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b1c61189f565b600c5481610b28610b9d565b610b3291906123a7565b1115610b7f5760405162461bcd60e51b8152602060048201526017602482015276776f756c6420657863656564206d617820737570706c7960481b60448201526064015b60405180910390fd5b610b8933826118f9565b80600f54610b9791906123a7565b600f5550565b600254600154036000190190565b6000610bb682611913565b9050836001600160a01b0316816001600160a01b031614610be95760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610c3657610c19863361167d565b610c3657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c5d57604051633a954ecd60e21b815260040160405180910390fd5b8015610c6857600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610cfa57600184016000818152600560205260408120549003610cf8576001548114610cf85760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610d4c61189f565b600e55565b610d5961189f565b610d61611982565b4780610daf5760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f207769746864726177000000000000006044820152606401610b76565b604051339082156108fc029083906000818181858888f19350505050158015610ddc573d6000803e3d6000fd5b5050610de86001600955565b565b610e0583838360405180602001604052806000815250611108565b505050565b610e1261189f565b600d55565b610e1f61189f565b601b610e05828483612400565b600061090a82611913565b610e3f61189f565b600c55565b60006001600160a01b038216610e6d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610e9b61189f565b610de860006119db565b610ead61189f565b6016805460ff1916911515919091179055565b60606004805461091f90612357565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5481610f47610b9d565b610f5191906123a7565b1115610f945760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610b76565b601554600214610fe65760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610b76565b600081116110365760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e73000000006044820152606401610b76565b3481600d5461104591906124c0565b146110845760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b6044820152606401610b76565b601454336000908152601960205260409020546110a29083906123a7565b11156110ea5760405162461bcd60e51b815260206004820152601760248201527665786365656473206d617820706572206164647265737360481b6044820152606401610b76565b6110f433826118f9565b8060125461110291906123a7565b60125550565b611113848484610bab565b6001600160a01b0383163b1561114c5761112f84848484611a2b565b61114c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b80546109f390612357565b606061116a8261186a565b6111cf5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610b76565b60165460ff16151560000361127057600a80546111eb90612357565b80601f016020809104026020016040519081016040528092919081815260200182805461121790612357565b80156112645780601f1061123957610100808354040283529160200191611264565b820191906000526020600020905b81548152906001019060200180831161124757829003601f168201915b50505050509050919050565b600061127a611b17565b9050600081511161129a57604051806020016040528060008152506112c8565b806112a484611b26565b600b6040516020016112b8939291906124d7565b6040516020818303038152906040525b9392505050565b6112d761189f565b601555565b6112e461189f565b601355565b6112f161189f565b60005b81811015610e055760016017600085858581811061131457611314612577565b90506020020160208101906113299190611fbc565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061135b8161258d565b9150506112f4565b6015546001146113ae5760405162461bcd60e51b81526020600482015260166024820152755072652073616c65206973206e6f742061637469766560501b6044820152606401610b76565b60008360ff16116114015760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e73000000006044820152606401610b76565b601354336000908152601860205260409020546114229060ff8616906123a7565b111561146a5760405162461bcd60e51b815260206004820152601760248201527665786365656473206d617820706572206164647265737360481b6044820152606401610b76565b600c548360ff16611479610b9d565b61148391906123a7565b11156114e45760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620546f6b656e7360b01b6064820152608401610b76565b348360ff16600e546114f691906124c0565b146115355760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b6044820152606401610b76565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506115af83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a549150849050611bb9565b806115c957503360009081526017602052604090205460ff165b6116285760405162461bcd60e51b815260206004820152602a60248201527f496e76616c6964207369676e61747572652f2041646472657373206e6f7420776044820152691a1a5d195b1a5cdd195960b21b6064820152608401610b76565b611635338560ff166118f9565b8360ff1660115461164691906123a7565b601155336000908152601860205260409020546116679060ff8616906123a7565b3360009081526018602052604090205550505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6116b361189f565b600a6116bf82826125a6565b5050565b6116cb61189f565b6001600160a01b0381166117305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b76565b611739816119db565b50565b61174461189f565b601455565b61175161189f565b600c548161175d610b9d565b61176791906123a7565b11156117af5760405162461bcd60e51b8152602060048201526017602482015276776f756c6420657863656564206d617820737570706c7960481b6044820152606401610b76565b600081116117ff5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b76565b60005b8281101561114c5761183a84848381811061181f5761181f612577565b90506020020160208101906118349190611fbc565b836118f9565b8160105461184891906123a7565b601055806118558161258d565b915050611802565b61186561189f565b601a55565b60008160011115801561187e575060015482105b801561090a575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610de85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b76565b6116bf828260405180602001604052806000815250611bcf565b60008180600111611969576001548110156119695760008181526005602052604081205490600160e01b82169003611967575b806000036112c8575060001901600081815260056020526040902054611946565b505b604051636f96cda160e11b815260040160405180910390fd5b6002600954036119d45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b76565b6002600955565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a60903390899088908890600401612666565b6020604051808303816000875af1925050508015611a9b575060408051601f3d908101601f19168201909252611a98918101906126a3565b60015b611af9573d808015611ac9576040519150601f19603f3d011682016040523d82523d6000602084013e611ace565b606091505b508051600003611af1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601b805461091f90612357565b60606000611b3383611c3c565b600101905060008167ffffffffffffffff811115611b5357611b536120a7565b6040519080825280601f01601f191660200182016040528015611b7d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b8757509392505050565b600082611bc68584611d14565b14949350505050565b611bd98383611d61565b6001600160a01b0383163b15610e05576001548281035b611c036000868380600101945086611a2b565b611c20576040516368d2bf6b60e11b815260040160405180910390fd5b818110611bf0578160015414611c3557600080fd5b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611c7b5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611ca7576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611cc557662386f26fc10000830492506010015b6305f5e1008310611cdd576305f5e100830492506008015b6127108310611cf157612710830492506004015b60648310611d03576064830492506002015b600a831061090a5760010192915050565b600081815b8451811015611d5957611d4582868381518110611d3857611d38612577565b6020026020010151611e5f565b915080611d518161258d565b915050611d19565b509392505050565b6001546000829003611d865760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611e3557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611dfd565b5081600003611e5657604051622e076360e81b815260040160405180910390fd5b60015550505050565b6000818310611e7b5760008281526020849052604090206112c8565b5060009182526020526040902090565b6001600160e01b03198116811461173957600080fd5b600060208284031215611eb357600080fd5b81356112c881611e8b565b60005b83811015611ed9578181015183820152602001611ec1565b50506000910152565b60008151808452611efa816020860160208601611ebe565b601f01601f19169290920160200192915050565b6020815260006112c86020830184611ee2565b600060208284031215611f3357600080fd5b5035919050565b80356001600160a01b0381168114611f5157600080fd5b919050565b60008060408385031215611f6957600080fd5b611f7283611f3a565b946020939093013593505050565b600080600060608486031215611f9557600080fd5b611f9e84611f3a565b9250611fac60208501611f3a565b9150604084013590509250925092565b600060208284031215611fce57600080fd5b6112c882611f3a565b60008060208385031215611fea57600080fd5b823567ffffffffffffffff8082111561200257600080fd5b818501915085601f83011261201657600080fd5b81358181111561202557600080fd5b86602082850101111561203757600080fd5b60209290920196919550909350505050565b80358015158114611f5157600080fd5b60006020828403121561206b57600080fd5b6112c882612049565b6000806040838503121561208757600080fd5b61209083611f3a565b915061209e60208401612049565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156120d8576120d86120a7565b604051601f8501601f19908116603f01168101908282118183101715612100576121006120a7565b8160405280935085815286868601111561211957600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561214957600080fd5b61215285611f3a565b935061216060208601611f3a565b925060408501359150606085013567ffffffffffffffff81111561218357600080fd5b8501601f8101871361219457600080fd5b6121a3878235602084016120bd565b91505092959194509250565b60008083601f8401126121c157600080fd5b50813567ffffffffffffffff8111156121d957600080fd5b6020830191508360208260051b85010111156121f457600080fd5b9250929050565b6000806020838503121561220e57600080fd5b823567ffffffffffffffff81111561222557600080fd5b612231858286016121af565b90969095509350505050565b60008060006040848603121561225257600080fd5b833560ff8116811461226357600080fd5b9250602084013567ffffffffffffffff81111561227f57600080fd5b61228b868287016121af565b9497909650939450505050565b600080604083850312156122ab57600080fd5b6122b483611f3a565b915061209e60208401611f3a565b6000602082840312156122d457600080fd5b813567ffffffffffffffff8111156122eb57600080fd5b8201601f810184136122fc57600080fd5b611b0f848235602084016120bd565b60008060006040848603121561232057600080fd5b833567ffffffffffffffff81111561233757600080fd5b612343868287016121af565b909790965060209590950135949350505050565b600181811c9082168061236b57607f821691505b60208210810361238b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561090a5761090a612391565b601f821115610e0557600081815260208120601f850160051c810160208610156123e15750805b601f850160051c820191505b81811015610d3c578281556001016123ed565b67ffffffffffffffff831115612418576124186120a7565b61242c836124268354612357565b836123ba565b6000601f84116001811461246057600085156124485750838201355b600019600387901b1c1916600186901b178355611c35565b600083815260209020601f19861690835b828110156124915786850135825560209485019460019092019101612471565b50868210156124ae5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b808202811582820484141761090a5761090a612391565b6000845160206124ea8285838a01611ebe565b8551918401916124fd8184848a01611ebe565b855492019160009061250e81612357565b60018281168015612526576001811461253b57612567565b60ff1984168752821515830287019450612567565b896000528560002060005b8481101561255f57815489820152908301908701612546565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b60006001820161259f5761259f612391565b5060010190565b815167ffffffffffffffff8111156125c0576125c06120a7565b6125d4816125ce8454612357565b846123ba565b602080601f83116001811461260957600084156125f15750858301515b600019600386901b1c1916600185901b178555610d3c565b600085815260208120601f198616915b8281101561263857888601518255948401946001909101908401612619565b50858210156126565787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061269990830184611ee2565b9695505050505050565b6000602082840312156126b557600080fd5b81516112c881611e8b56fea264697066735822122085549f11e9fddbb0b361a5579e911080fbcc0a5c9227e51151b36cef674574f164736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000005574f41485300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025753000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d687474703a2f2f636f6465737065656475702e636f6d2f312e6a736f6e000000

-----Decoded View---------------
Arg [0] : name (string): WOAHS
Arg [1] : symbol (string): WS
Arg [2] : _notRevealedUri (string): http://codespeedup.com/1.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 574f414853000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 5753000000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [8] : 687474703a2f2f636f6465737065656475702e636f6d2f312e6a736f6e000000


Deployed Bytecode Sourcemap

82624:6841:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49555:639;;;;;;;;;;-1:-1:-1;49555:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;49555:639:0;;;;;;;;50457:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56948:218::-;;;;;;;;;;-1:-1:-1;56948:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;56948:218:0;1533:203:1;82687:28:0;;;;;;;;;;;;;:::i;56381:408::-;;;;;;:::i;:::-;;:::i;:::-;;84550:94;;;;;;;;;;-1:-1:-1;84624:8:0;;84550:94;;;2324:25:1;;;2312:2;2297:18;84550:94:0;2178:177:1;83198:27:0;;;;;;;;;;;;;;;;88977:107;;;;;;;;;;-1:-1:-1;89051:21:0;88977:107;;85412:311;;;;;;;;;;-1:-1:-1;85412:311:0;;;;;:::i;:::-;;:::i;82926:30::-;;;;;;;;;;;;;;;;46208:323;;;;;;;;;;;;;:::i;60587:2825::-;;;;;;:::i;:::-;;:::i;83317:41::-;;;;;;;;;;-1:-1:-1;83317:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;83528:26;;;;;;;;;;;;;;;;82787:32;;;;;;;;;;;;;;;;85159:115;;;;;;;;;;-1:-1:-1;85159:115:0;;;;;:::i;:::-;;:::i;89217:239::-;;;:::i;63508:193::-;;;;;;:::i;:::-;;:::i;85052:95::-;;;;;;;;;;-1:-1:-1;85052:95:0;;;;;:::i;:::-;;:::i;86285:112::-;;;;;;;;;;-1:-1:-1;86285:112:0;;;;;:::i;:::-;;:::i;82874:41::-;;;;;;;;;;;;;;;;51850:152;;;;;;;;;;-1:-1:-1;51850:152:0;;;;;:::i;:::-;;:::i;83275:29::-;;;;;;;;;;-1:-1:-1;83275:29:0;;;;;;;;84656:109;;;;;;;;;;-1:-1:-1;84656:109:0;;;;;:::i;:::-;;:::i;47392:233::-;;;;;;;;;;-1:-1:-1;47392:233:0;;;;;:::i;:::-;;:::i;30384:103::-;;;;;;;;;;;;;:::i;83053:29::-;;;;;;;;;;;;;;;;83093:39;;;;;;;;;;;;;;;;82967:30;;;;;;;;;;;;;;;;82830:33;;;;;;;;;;;;;;;;29736:87;;;;;;;;;;-1:-1:-1;29782:7:0;29809:6;-1:-1:-1;;;;;29809:6:0;29736:87;;86689:91;;;;;;;;;;-1:-1:-1;86689:91:0;;;;;:::i;:::-;;:::i;50633:104::-;;;;;;;;;;;;;:::i;83434:57::-;;;;;;;;;;-1:-1:-1;83434:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;57506:234;;;;;;;;;;-1:-1:-1;57506:234:0;;;;;:::i;:::-;;:::i;88290:675::-;;;;;;:::i;:::-;;:::i;64299:407::-;;;;;;:::i;:::-;;:::i;82729:37::-;;;;;;;;;;;;;:::i;83819:618::-;;;;;;;;;;-1:-1:-1;83819:618:0;;;;;:::i;:::-;;:::i;83143:44::-;;;;;;;;;;;;;;;;84449:89;;;;;;;;;;-1:-1:-1;84449:89:0;;;;;:::i;:::-;;:::i;84777:124::-;;;;;;;;;;-1:-1:-1;84777:124:0;;;;;:::i;:::-;;:::i;83369:54::-;;;;;;;;;;-1:-1:-1;83369:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;83008:34;;;;;;;;;;;;;;;;88002:252;;;;;;;;;;-1:-1:-1;88002:252:0;;;;;:::i;:::-;;:::i;86792:1198::-;;;;;;:::i;:::-;;:::i;57897:164::-;;;;;;;;;;-1:-1:-1;57897:164:0;;;;;:::i;:::-;;:::i;86543:134::-;;;;;;;;;;-1:-1:-1;86543:134:0;;;;;:::i;:::-;;:::i;30642:201::-;;;;;;;;;;-1:-1:-1;30642:201:0;;;;;:::i;:::-;;:::i;84913:127::-;;;;;;;;;;-1:-1:-1;84913:127:0;;;;;:::i;:::-;;:::i;85735:472::-;;;;;;;;;;-1:-1:-1;85735:472:0;;;;;:::i;:::-;;:::i;85286:114::-;;;;;;;;;;-1:-1:-1;85286:114:0;;;;;:::i;:::-;;:::i;49555:639::-;49640:4;-1:-1:-1;;;;;;;;;49964:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;50041:25:0;;;49964:102;:179;;;-1:-1:-1;;;;;;;;;;50118:25:0;;;49964:179;49944:199;49555:639;-1:-1:-1;;49555:639:0:o;50457:100::-;50511:13;50544:5;50537:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50457:100;:::o;56948:218::-;57024:7;57049:16;57057:7;57049;:16::i;:::-;57044:64;;57074:34;;-1:-1:-1;;;57074:34:0;;;;;;;;;;;57044:64;-1:-1:-1;57128:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;57128:30:0;;56948:218::o;82687:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56381:408::-;56470:13;56486:16;56494:7;56486;:16::i;:::-;56470:32;-1:-1:-1;80714:10:0;-1:-1:-1;;;;;56519:28:0;;;56515:175;;56567:44;56584:5;80714:10;57897:164;:::i;56567:44::-;56562:128;;56639:35;;-1:-1:-1;;;56639:35:0;;;;;;;;;;;56562:128;56702:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;56702:35:0;-1:-1:-1;;;;;56702:35:0;;;;;;;;;56753:28;;56702:24;;56753:28;;;;;;;56459:330;56381:408;;:::o;85412:311::-;29622:13;:11;:13::i;:::-;85537:10:::1;;85525:8;85509:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;85483:123;;;::::0;-1:-1:-1;;;85483:123:0;;9388:2:1;85483:123:0::1;::::0;::::1;9370:21:1::0;9427:2;9407:18;;;9400:30;-1:-1:-1;;;9446:18:1;;;9439:53;9509:18;;85483:123:0::1;;;;;;;;;85621:31;85631:10;85643:8;85621:9;:31::i;:::-;85703:8;85685:15;;:26;;;;:::i;:::-;85667:15;:44:::0;-1:-1:-1;85412:311:0:o;46208:323::-;46482:12;;89192:1;46466:13;:28;-1:-1:-1;;46466:46:0;;46208:323::o;60587:2825::-;60729:27;60759;60778:7;60759:18;:27::i;:::-;60729:57;;60844:4;-1:-1:-1;;;;;60803:45:0;60819:19;-1:-1:-1;;;;;60803:45:0;;60799:86;;60857:28;;-1:-1:-1;;;60857:28:0;;;;;;;;;;;60799:86;60899:27;59695:24;;;:15;:24;;;;;59923:26;;80714:10;59320:30;;;-1:-1:-1;;;;;59013:28:0;;59298:20;;;59295:56;61085:180;;61178:43;61195:4;80714:10;57897:164;:::i;61178:43::-;61173:92;;61230:35;;-1:-1:-1;;;61230:35:0;;;;;;;;;;;61173:92;-1:-1:-1;;;;;61282:16:0;;61278:52;;61307:23;;-1:-1:-1;;;61307:23:0;;;;;;;;;;;61278:52;61479:15;61476:160;;;61619:1;61598:19;61591:30;61476:160;-1:-1:-1;;;;;62016:24:0;;;;;;;:18;:24;;;;;;62014:26;;-1:-1:-1;;62014:26:0;;;62085:22;;;;;;;;;62083:24;;-1:-1:-1;62083:24:0;;;55239:11;55214:23;55210:41;55197:63;-1:-1:-1;;;55197:63:0;62378:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;62673:47:0;;:52;;62669:627;;62778:1;62768:11;;62746:19;62901:30;;;:17;:30;;;;;;:35;;62897:384;;63039:13;;63024:11;:28;63020:242;;63186:30;;;;:17;:30;;;;;:52;;;63020:242;62727:569;62669:627;63343:7;63339:2;-1:-1:-1;;;;;63324:27:0;63333:4;-1:-1:-1;;;;;63324:27:0;;;;;;;;;;;63362:42;60718:2694;;;60587:2825;;;:::o;85159:115::-;29622:13;:11;:13::i;:::-;85238::::1;:24:::0;85159:115::o;89217:239::-;29622:13;:11;:13::i;:::-;2378:21:::1;:19;:21::i;:::-;89307::::2;89351:11:::0;89343:49:::2;;;::::0;-1:-1:-1;;;89343:49:0;;9740:2:1;89343:49:0::2;::::0;::::2;9722:21:1::0;9779:2;9759:18;;;9752:30;9818:27;9798:18;;;9791:55;9863:18;;89343:49:0::2;9538:349:1::0;89343:49:0::2;89407:37;::::0;89415:10:::2;::::0;89407:37;::::2;;;::::0;89436:7;;89407:37:::2;::::0;;;89436:7;89415:10;89407:37;::::2;;;;;;;;;;;;;::::0;::::2;;;;;;89274:182;2422:20:::1;1816:1:::0;2942:7;:22;2759:213;2422:20:::1;89217:239::o:0;63508:193::-;63654:39;63671:4;63677:2;63681:7;63654:39;;;;;;;;;;;;:16;:39::i;:::-;63508:193;;;:::o;85052:95::-;29622:13;:11;:13::i;:::-;85119:5:::1;:16:::0;85052:95::o;86285:112::-;29622:13;:11;:13::i;:::-;86362::::1;:23;86378:7:::0;;86362:13;:23:::1;:::i;51850:152::-:0;51922:7;51965:27;51984:7;51965:18;:27::i;84656:109::-;29622:13;:11;:13::i;:::-;84730:10:::1;:23:::0;84656:109::o;47392:233::-;47464:7;-1:-1:-1;;;;;47488:19:0;;47484:60;;47516:28;;-1:-1:-1;;;47516:28:0;;;;;;;;;;;47484:60;-1:-1:-1;;;;;;47562:25:0;;;;;:18;:25;;;;;;41551:13;47562:55;;47392:233::o;30384:103::-;29622:13;:11;:13::i;:::-;30449:30:::1;30476:1;30449:18;:30::i;86689:91::-:0;29622:13;:11;:13::i;:::-;86750:9:::1;:18:::0;;-1:-1:-1;;86750:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;86689:91::o;50633:104::-;50689:13;50722:7;50715:14;;;;;:::i;57506:234::-;80714:10;57601:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;57601:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;57601:60:0;;;;;;;;;;57677:55;;540:41:1;;;57601:49:0;;80714:10;57677:55;;513:18:1;57677:55:0;;;;;;;57506:234;;:::o;88290:675::-;88433:10;;88421:8;88405:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;88397:69;;;;-1:-1:-1;;;88397:69:0;;12152:2:1;88397:69:0;;;12134:21:1;12191:2;12171:18;;;12164:30;-1:-1:-1;;;12210:18:1;;;12203:48;12268:18;;88397:69:0;11950:342:1;88397:69:0;88489:8;;88501:1;88489:13;88481:55;;;;-1:-1:-1;;;88481:55:0;;12499:2:1;88481:55:0;;;12481:21:1;12538:2;12518:18;;;12511:30;12577:31;12557:18;;;12550:59;12626:18;;88481:55:0;12297:353:1;88481:55:0;88570:1;88559:8;:12;88551:53;;;;-1:-1:-1;;;88551:53:0;;12857:2:1;88551:53:0;;;12839:21:1;12896:2;12876:18;;;12869:30;12935;12915:18;;;12908:58;12983:18;;88551:53:0;12655:352:1;88551:53:0;88647:9;88635:8;88627:5;;:16;;;;:::i;:::-;:29;88619:57;;;;-1:-1:-1;;;88619:57:0;;13387:2:1;88619:57:0;;;13369:21:1;13426:2;13406:18;;;13399:30;-1:-1:-1;;;13445:18:1;;;13438:45;13500:18;;88619:57:0;13185:339:1;88619:57:0;88766:23;;88740:10;88717:34;;;;:22;:34;;;;;;:45;;88754:8;;88717:45;:::i;:::-;:72;;88691:157;;;;-1:-1:-1;;;88691:157:0;;13731:2:1;88691:157:0;;;13713:21:1;13770:2;13750:18;;;13743:30;-1:-1:-1;;;13789:18:1;;;13782:53;13852:18;;88691:157:0;13529:347:1;88691:157:0;88865:31;88875:10;88887:8;88865:9;:31::i;:::-;88945:8;88928:14;;:25;;;;:::i;:::-;88911:14;:42;-1:-1:-1;88290:675:0:o;64299:407::-;64474:31;64487:4;64493:2;64497:7;64474:12;:31::i;:::-;-1:-1:-1;;;;;64520:14:0;;;:19;64516:183;;64559:56;64590:4;64596:2;64600:7;64609:5;64559:30;:56::i;:::-;64554:145;;64643:40;;-1:-1:-1;;;64643:40:0;;;;;;;;;;;64554:145;64299:407;;;;:::o;82729:37::-;;;;;;;:::i;83819:618::-;83937:13;84002:16;84010:7;84002;:16::i;:::-;83976:126;;;;-1:-1:-1;;;83976:126:0;;14083:2:1;83976:126:0;;;14065:21:1;14122:2;14102:18;;;14095:30;14161:34;14141:18;;;14134:62;-1:-1:-1;;;14212:18:1;;;14205:46;14268:19;;83976:126:0;13881:412:1;83976:126:0;84122:9;;;;:18;;:9;:18;84119:79;;84168:14;84161:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83819:618;;;:::o;84119:79::-;84214:28;84245:10;:8;:10::i;:::-;84214:41;;84308:1;84283:14;84277:28;:32;:148;;;;;;;;;;;;;;;;;84349:14;84365:25;84382:7;84365:16;:25::i;:::-;84392:13;84332:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84277:148;84270:155;83819:618;-1:-1:-1;;;83819:618:0:o;84449:89::-;29622:13;:11;:13::i;:::-;84511:8:::1;:15:::0;84449:89::o;84777:124::-;29622:13;:11;:13::i;:::-;84859:20:::1;:30:::0;84777:124::o;88002:252::-;29622:13;:11;:13::i;:::-;88136:9:::1;88131:112;88151:20:::0;;::::1;88131:112;;;88223:4;88197:9;:23;88207:9;;88217:1;88207:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;88197:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;88197:23:0;:30;;-1:-1:-1;;88197:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;88173:3;::::1;::::0;::::1;:::i;:::-;;;;88131:112;;86792:1198:::0;86941:8;;86953:1;86941:13;86933:48;;;;-1:-1:-1;;;86933:48:0;;16033:2:1;86933:48:0;;;16015:21:1;16072:2;16052:18;;;16045:30;-1:-1:-1;;;16091:18:1;;;16084:52;16153:18;;86933:48:0;15831:346:1;86933:48:0;87015:1;87004:8;:12;;;86996:53;;;;-1:-1:-1;;;86996:53:0;;12857:2:1;86996:53:0;;;12839:21:1;12896:2;12876:18;;;12869:30;12935;12915:18;;;12908:58;12983:18;;86996:53:0;12655:352:1;86996:53:0;87136:20;;87110:10;87090:31;;;;:19;:31;;;;;;:42;;;;;;;:::i;:::-;:66;;87064:151;;;;-1:-1:-1;;;87064:151:0;;13731:2:1;87064:151:0;;;13713:21:1;13770:2;13750:18;;;13743:30;-1:-1:-1;;;13789:18:1;;;13782:53;13852:18;;87064:151:0;13529:347:1;87064:151:0;87284:10;;87272:8;87256:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;87230:142;;;;-1:-1:-1;;;87230:142:0;;16384:2:1;87230:142:0;;;16366:21:1;16423:2;16403:18;;;16396:30;16462:34;16442:18;;;16435:62;-1:-1:-1;;;16513:18:1;;;16506:40;16563:19;;87230:142:0;16182:406:1;87230:142:0;87423:9;87411:8;87395:24;;:13;;:24;;;;:::i;:::-;:37;87387:65;;;;-1:-1:-1;;;87387:65:0;;13387:2:1;87387:65:0;;;13369:21:1;13426:2;13406:18;;;13399:30;-1:-1:-1;;;13445:18:1;;;13438:45;13500:18;;87387:65:0;13185:339:1;87387:65:0;87529:28;;-1:-1:-1;;87546:10:0;16742:2:1;16738:15;16734:53;87529:28:0;;;16722:66:1;87504:12:0;;16804::1;;87529:28:0;;;;;;;;;;;;87519:39;;;;;;87504:54;;87599:51;87618:12;;87599:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;87632:11:0;;;-1:-1:-1;87645:4:0;;-1:-1:-1;87599:18:0;:51::i;:::-;:97;;;-1:-1:-1;87685:10:0;87675:21;;;;:9;:21;;;;;;;;87599:97;87573:201;;;;-1:-1:-1;;;87573:201:0;;17029:2:1;87573:201:0;;;17011:21:1;17068:2;17048:18;;;17041:30;17107:34;17087:18;;;17080:62;-1:-1:-1;;;17158:18:1;;;17151:40;17208:19;;87573:201:0;16827:406:1;87573:201:0;87789:31;87799:10;87811:8;87789:31;;:9;:31::i;:::-;87879:8;87857:30;;:19;;:30;;;;:::i;:::-;87835:19;:52;87956:10;87936:31;;;;:19;:31;;;;;;:42;;;;;;;:::i;:::-;87922:10;87902:31;;;;:19;:31;;;;;:76;-1:-1:-1;;;;86792:1198:0:o;57897:164::-;-1:-1:-1;;;;;58018:25:0;;;57994:4;58018:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57897:164::o;86543:134::-;29622:13;:11;:13::i;:::-;86633:14:::1;:32;86650:15:::0;86633:14;:32:::1;:::i;:::-;;86543:134:::0;:::o;30642:201::-;29622:13;:11;:13::i;:::-;-1:-1:-1;;;;;30731:22:0;::::1;30723:73;;;::::0;-1:-1:-1;;;30723:73:0;;18797:2:1;30723:73:0::1;::::0;::::1;18779:21:1::0;18836:2;18816:18;;;18809:30;18875:34;18855:18;;;18848:62;-1:-1:-1;;;18926:18:1;;;18919:36;18972:19;;30723:73:0::1;18595:402:1::0;30723:73:0::1;30807:28;30826:8;30807:18;:28::i;:::-;30642:201:::0;:::o;84913:127::-;29622:13;:11;:13::i;:::-;84995:23:::1;:33:::0;84913:127::o;85735:472::-;29622:13;:11;:13::i;:::-;85879:10:::1;;85867:8;85851:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;85825:123;;;::::0;-1:-1:-1;;;85825:123:0;;9388:2:1;85825:123:0::1;::::0;::::1;9370:21:1::0;9427:2;9407:18;;;9400:30;-1:-1:-1;;;9446:18:1;;;9439:53;9509:18;;85825:123:0::1;9186:347:1::0;85825:123:0::1;85982:1;85971:8;:12;85963:52;;;::::0;-1:-1:-1;;;85963:52:0;;19204:2:1;85963:52:0::1;::::0;::::1;19186:21:1::0;19243:2;19223:18;;;19216:30;19282:29;19262:18;;;19255:57;19329:18;;85963:52:0::1;19002:351:1::0;85963:52:0::1;86035:9;86030:166;86050:14:::0;;::::1;86030:166;;;86090:27;86100:3;;86104:1;86100:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;86108:8;86090:9;:27::i;:::-;86172:8;86154:15;;:26;;;;:::i;:::-;86136:15;:44:::0;86066:3;::::1;::::0;::::1;:::i;:::-;;;;86030:166;;85286:114:::0;29622:13;:11;:13::i;:::-;85363:11:::1;:25:::0;85286:114::o;58319:282::-;58384:4;58440:7;89192:1;58421:26;;:66;;;;;58474:13;;58464:7;:23;58421:66;:153;;;;-1:-1:-1;;58525:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;58525:44:0;:49;;58319:282::o;29901:132::-;29782:7;29809:6;-1:-1:-1;;;;;29809:6:0;80714:10;29965:23;29957:68;;;;-1:-1:-1;;;29957:68:0;;19560:2:1;29957:68:0;;;19542:21:1;;;19579:18;;;19572:30;19638:34;19618:18;;;19611:62;19690:18;;29957:68:0;19358:356:1;74459:112:0;74536:27;74546:2;74550:8;74536:27;;;;;;;;;;;;:9;:27::i;53005:1275::-;53072:7;53107;;89192:1;53156:23;53152:1061;;53209:13;;53202:4;:20;53198:1015;;;53247:14;53264:23;;;:17;:23;;;;;;;-1:-1:-1;;;53353:24:0;;:29;;53349:845;;54018:113;54025:6;54035:1;54025:11;54018:113;;-1:-1:-1;;;54096:6:0;54078:25;;;;:17;:25;;;;;;54018:113;;53349:845;53224:989;53198:1015;54241:31;;-1:-1:-1;;;54241:31:0;;;;;;;;;;;2458:293;1860:1;2592:7;;:19;2584:63;;;;-1:-1:-1;;;2584:63:0;;19921:2:1;2584:63:0;;;19903:21:1;19960:2;19940:18;;;19933:30;19999:33;19979:18;;;19972:61;20050:18;;2584:63:0;19719:355:1;2584:63:0;1860:1;2725:7;:18;2458:293::o;31003:191::-;31077:16;31096:6;;-1:-1:-1;;;;;31113:17:0;;;-1:-1:-1;;;;;;31113:17:0;;;;;;31146:40;;31096:6;;;;;;;31146:40;;31077:16;31146:40;31066:128;31003:191;:::o;66790:716::-;66974:88;;-1:-1:-1;;;66974:88:0;;66953:4;;-1:-1:-1;;;;;66974:45:0;;;;;:88;;80714:10;;67041:4;;67047:7;;67056:5;;66974:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66974:88:0;;;;;;;;-1:-1:-1;;66974:88:0;;;;;;;;;;;;:::i;:::-;;;66970:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67257:6;:13;67274:1;67257:18;67253:235;;67303:40;;-1:-1:-1;;;67303:40:0;;;;;;;;;;;67253:235;67446:6;67440:13;67431:6;67427:2;67423:15;67416:38;66970:529;-1:-1:-1;;;;;;67133:64:0;-1:-1:-1;;;67133:64:0;;-1:-1:-1;66970:529:0;66790:716;;;;;;:::o;86409:122::-;86469:13;86506;86499:20;;;;;:::i;25766:716::-;25822:13;25873:14;25890:17;25901:5;25890:10;:17::i;:::-;25910:1;25890:21;25873:38;;25926:20;25960:6;25949:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25949:18:0;-1:-1:-1;25926:41:0;-1:-1:-1;26091:28:0;;;26107:2;26091:28;26148:288;-1:-1:-1;;26180:5:0;-1:-1:-1;;;26317:2:0;26306:14;;26301:30;26180:5;26288:44;26378:2;26369:11;;;-1:-1:-1;26399:21:0;26148:288;26399:21;-1:-1:-1;26457:6:0;25766:716;-1:-1:-1;;;25766:716:0:o;4174:190::-;4299:4;4352;4323:25;4336:5;4343:4;4323:12;:25::i;:::-;:33;;4174:190;-1:-1:-1;;;;4174:190:0:o;73686:689::-;73817:19;73823:2;73827:8;73817:5;:19::i;:::-;-1:-1:-1;;;;;73878:14:0;;;:19;73874:483;;73932:13;;73980:14;;;74013:233;74044:62;74083:1;74087:2;74091:7;;;;;;74100:5;74044:30;:62::i;:::-;74039:167;;74142:40;;-1:-1:-1;;;74142:40:0;;;;;;;;;;;74039:167;74241:3;74233:5;:11;74013:233;;74328:3;74311:13;;:20;74307:34;;74333:8;;;74307:34;73899:458;;73686:689;;;:::o;22659:922::-;22712:7;;-1:-1:-1;;;22790:15:0;;22786:102;;-1:-1:-1;;;22826:15:0;;;-1:-1:-1;22870:2:0;22860:12;22786:102;22915:6;22906:5;:15;22902:102;;22951:6;22942:15;;;-1:-1:-1;22986:2:0;22976:12;22902:102;23031:6;23022:5;:15;23018:102;;23067:6;23058:15;;;-1:-1:-1;23102:2:0;23092:12;23018:102;23147:5;23138;:14;23134:99;;23182:5;23173:14;;;-1:-1:-1;23216:1:0;23206:11;23134:99;23260:5;23251;:14;23247:99;;23295:5;23286:14;;;-1:-1:-1;23329:1:0;23319:11;23247:99;23373:5;23364;:14;23360:99;;23408:5;23399:14;;;-1:-1:-1;23442:1:0;23432:11;23360:99;23486:5;23477;:14;23473:66;;23522:1;23512:11;23567:6;22659:922;-1:-1:-1;;22659:922:0:o;5041:296::-;5124:7;5167:4;5124:7;5182:118;5206:5;:12;5202:1;:16;5182:118;;;5255:33;5265:12;5279:5;5285:1;5279:8;;;;;;;;:::i;:::-;;;;;;;5255:9;:33::i;:::-;5240:48;-1:-1:-1;5220:3:0;;;;:::i;:::-;;;;5182:118;;;-1:-1:-1;5317:12:0;5041:296;-1:-1:-1;;;5041:296:0:o;67968:2966::-;68064:13;;68041:20;68092:13;;;68088:44;;68114:18;;-1:-1:-1;;;68114:18:0;;;;;;;;;;;68088:44;-1:-1:-1;;;;;68620:22:0;;;;;;:18;:22;;;;41689:2;68620:22;;;:71;;68658:32;68646:45;;68620:71;;;68934:31;;;:17;:31;;;;;-1:-1:-1;55670:15:0;;55644:24;55640:46;55239:11;55214:23;55210:41;55207:52;55197:63;;68934:173;;69169:23;;;;68934:31;;68620:22;;69934:25;68620:22;;69787:335;70448:1;70434:12;70430:20;70388:346;70489:3;70480:7;70477:16;70388:346;;70707:7;70697:8;70694:1;70667:25;70664:1;70661;70656:59;70542:1;70529:15;70388:346;;;70392:77;70767:8;70779:1;70767:13;70763:45;;70789:19;;-1:-1:-1;;;70789:19:0;;;;;;;;;;;70763:45;70825:13;:19;-1:-1:-1;63508:193:0;;;:::o;12081:149::-;12144:7;12175:1;12171;:5;:51;;12306:13;12400:15;;;12436:4;12429:15;;;12483:4;12467:21;;12171:51;;;-1:-1:-1;12306:13:0;12400:15;;;12436:4;12429:15;12483:4;12467:21;;;12081:149::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;3066:592::-;3137:6;3145;3198:2;3186:9;3177:7;3173:23;3169:32;3166:52;;;3214:1;3211;3204:12;3166:52;3254:9;3241:23;3283:18;3324:2;3316:6;3313:14;3310:34;;;3340:1;3337;3330:12;3310:34;3378:6;3367:9;3363:22;3353:32;;3423:7;3416:4;3412:2;3408:13;3404:27;3394:55;;3445:1;3442;3435:12;3394:55;3485:2;3472:16;3511:2;3503:6;3500:14;3497:34;;;3527:1;3524;3517:12;3497:34;3572:7;3567:2;3558:6;3554:2;3550:15;3546:24;3543:37;3540:57;;;3593:1;3590;3583:12;3540:57;3624:2;3616:11;;;;;3646:6;;-1:-1:-1;3066:592:1;;-1:-1:-1;;;;3066:592:1:o;3663:160::-;3728:20;;3784:13;;3777:21;3767:32;;3757:60;;3813:1;3810;3803:12;3828:180;3884:6;3937:2;3925:9;3916:7;3912:23;3908:32;3905:52;;;3953:1;3950;3943:12;3905:52;3976:26;3992:9;3976:26;:::i;4013:254::-;4078:6;4086;4139:2;4127:9;4118:7;4114:23;4110:32;4107:52;;;4155:1;4152;4145:12;4107:52;4178:29;4197:9;4178:29;:::i;:::-;4168:39;;4226:35;4257:2;4246:9;4242:18;4226:35;:::i;:::-;4216:45;;4013:254;;;;;:::o;4272:127::-;4333:10;4328:3;4324:20;4321:1;4314:31;4364:4;4361:1;4354:15;4388:4;4385:1;4378:15;4404:631;4468:5;4498:18;4539:2;4531:6;4528:14;4525:40;;;4545:18;;:::i;:::-;4620:2;4614:9;4588:2;4674:15;;-1:-1:-1;;4670:24:1;;;4696:2;4666:33;4662:42;4650:55;;;4720:18;;;4740:22;;;4717:46;4714:72;;;4766:18;;:::i;:::-;4806:10;4802:2;4795:22;4835:6;4826:15;;4865:6;4857;4850:22;4905:3;4896:6;4891:3;4887:16;4884:25;4881:45;;;4922:1;4919;4912:12;4881:45;4972:6;4967:3;4960:4;4952:6;4948:17;4935:44;5027:1;5020:4;5011:6;5003;4999:19;4995:30;4988:41;;;;4404:631;;;;;:::o;5040:666::-;5135:6;5143;5151;5159;5212:3;5200:9;5191:7;5187:23;5183:33;5180:53;;;5229:1;5226;5219:12;5180:53;5252:29;5271:9;5252:29;:::i;:::-;5242:39;;5300:38;5334:2;5323:9;5319:18;5300:38;:::i;:::-;5290:48;;5385:2;5374:9;5370:18;5357:32;5347:42;;5440:2;5429:9;5425:18;5412:32;5467:18;5459:6;5456:30;5453:50;;;5499:1;5496;5489:12;5453:50;5522:22;;5575:4;5567:13;;5563:27;-1:-1:-1;5553:55:1;;5604:1;5601;5594:12;5553:55;5627:73;5692:7;5687:2;5674:16;5669:2;5665;5661:11;5627:73;:::i;:::-;5617:83;;;5040:666;;;;;;;:::o;5711:367::-;5774:8;5784:6;5838:3;5831:4;5823:6;5819:17;5815:27;5805:55;;5856:1;5853;5846:12;5805:55;-1:-1:-1;5879:20:1;;5922:18;5911:30;;5908:50;;;5954:1;5951;5944:12;5908:50;5991:4;5983:6;5979:17;5967:29;;6051:3;6044:4;6034:6;6031:1;6027:14;6019:6;6015:27;6011:38;6008:47;6005:67;;;6068:1;6065;6058:12;6005:67;5711:367;;;;;:::o;6083:437::-;6169:6;6177;6230:2;6218:9;6209:7;6205:23;6201:32;6198:52;;;6246:1;6243;6236:12;6198:52;6286:9;6273:23;6319:18;6311:6;6308:30;6305:50;;;6351:1;6348;6341:12;6305:50;6390:70;6452:7;6443:6;6432:9;6428:22;6390:70;:::i;:::-;6479:8;;6364:96;;-1:-1:-1;6083:437:1;-1:-1:-1;;;;6083:437:1:o;6525:594::-;6618:6;6626;6634;6687:2;6675:9;6666:7;6662:23;6658:32;6655:52;;;6703:1;6700;6693:12;6655:52;6742:9;6729:23;6792:4;6785:5;6781:16;6774:5;6771:27;6761:55;;6812:1;6809;6802:12;6761:55;6835:5;-1:-1:-1;6891:2:1;6876:18;;6863:32;6918:18;6907:30;;6904:50;;;6950:1;6947;6940:12;6904:50;6989:70;7051:7;7042:6;7031:9;7027:22;6989:70;:::i;:::-;6525:594;;7078:8;;-1:-1:-1;6963:96:1;;-1:-1:-1;;;;6525:594:1:o;7124:260::-;7192:6;7200;7253:2;7241:9;7232:7;7228:23;7224:32;7221:52;;;7269:1;7266;7259:12;7221:52;7292:29;7311:9;7292:29;:::i;:::-;7282:39;;7340:38;7374:2;7363:9;7359:18;7340:38;:::i;7389:450::-;7458:6;7511:2;7499:9;7490:7;7486:23;7482:32;7479:52;;;7527:1;7524;7517:12;7479:52;7567:9;7554:23;7600:18;7592:6;7589:30;7586:50;;;7632:1;7629;7622:12;7586:50;7655:22;;7708:4;7700:13;;7696:27;-1:-1:-1;7686:55:1;;7737:1;7734;7727:12;7686:55;7760:73;7825:7;7820:2;7807:16;7802:2;7798;7794:11;7760:73;:::i;7844:505::-;7939:6;7947;7955;8008:2;7996:9;7987:7;7983:23;7979:32;7976:52;;;8024:1;8021;8014:12;7976:52;8064:9;8051:23;8097:18;8089:6;8086:30;8083:50;;;8129:1;8126;8119:12;8083:50;8168:70;8230:7;8221:6;8210:9;8206:22;8168:70;:::i;:::-;8257:8;;8142:96;;-1:-1:-1;8339:2:1;8324:18;;;;8311:32;;7844:505;-1:-1:-1;;;;7844:505:1:o;8539:380::-;8618:1;8614:12;;;;8661;;;8682:61;;8736:4;8728:6;8724:17;8714:27;;8682:61;8789:2;8781:6;8778:14;8758:18;8755:38;8752:161;;8835:10;8830:3;8826:20;8823:1;8816:31;8870:4;8867:1;8860:15;8898:4;8895:1;8888:15;8752:161;;8539:380;;;:::o;8924:127::-;8985:10;8980:3;8976:20;8973:1;8966:31;9016:4;9013:1;9006:15;9040:4;9037:1;9030:15;9056:125;9121:9;;;9142:10;;;9139:36;;;9155:18;;:::i;10018:545::-;10120:2;10115:3;10112:11;10109:448;;;10156:1;10181:5;10177:2;10170:17;10226:4;10222:2;10212:19;10296:2;10284:10;10280:19;10277:1;10273:27;10267:4;10263:38;10332:4;10320:10;10317:20;10314:47;;;-1:-1:-1;10355:4:1;10314:47;10410:2;10405:3;10401:12;10398:1;10394:20;10388:4;10384:31;10374:41;;10465:82;10483:2;10476:5;10473:13;10465:82;;;10528:17;;;10509:1;10498:13;10465:82;;10739:1206;10863:18;10858:3;10855:27;10852:53;;;10885:18;;:::i;:::-;10914:94;11004:3;10964:38;10996:4;10990:11;10964:38;:::i;:::-;10958:4;10914:94;:::i;:::-;11034:1;11059:2;11054:3;11051:11;11076:1;11071:616;;;;11731:1;11748:3;11745:93;;;-1:-1:-1;11804:19:1;;;11791:33;11745:93;-1:-1:-1;;10696:1:1;10692:11;;;10688:24;10684:29;10674:40;10720:1;10716:11;;;10671:57;11851:78;;11044:895;;11071:616;9965:1;9958:14;;;10002:4;9989:18;;-1:-1:-1;;11107:17:1;;;11208:9;11230:229;11244:7;11241:1;11238:14;11230:229;;;11333:19;;;11320:33;11305:49;;11440:4;11425:20;;;;11393:1;11381:14;;;;11260:12;11230:229;;;11234:3;11487;11478:7;11475:16;11472:159;;;11611:1;11607:6;11601:3;11595;11592:1;11588:11;11584:21;11580:34;11576:39;11563:9;11558:3;11554:19;11541:33;11537:79;11529:6;11522:95;11472:159;;;11674:1;11668:3;11665:1;11661:11;11657:19;11651:4;11644:33;11044:895;;10739:1206;;;:::o;13012:168::-;13085:9;;;13116;;13133:15;;;13127:22;;13113:37;13103:71;;13154:18;;:::i;14298:1256::-;14522:3;14560:6;14554:13;14586:4;14599:64;14656:6;14651:3;14646:2;14638:6;14634:15;14599:64;:::i;:::-;14726:13;;14685:16;;;;14748:68;14726:13;14685:16;14783:15;;;14748:68;:::i;:::-;14905:13;;14838:20;;;14878:1;;14943:36;14905:13;14943:36;:::i;:::-;14998:1;15015:18;;;15042:141;;;;15197:1;15192:337;;;;15008:521;;15042:141;-1:-1:-1;;15077:24:1;;15063:39;;15154:16;;15147:24;15133:39;;15122:51;;;-1:-1:-1;15042:141:1;;15192:337;15223:6;15220:1;15213:17;15271:2;15268:1;15258:16;15296:1;15310:169;15324:8;15321:1;15318:15;15310:169;;;15406:14;;15391:13;;;15384:37;15449:16;;;;15341:10;;15310:169;;;15314:3;;15510:8;15503:5;15499:20;15492:27;;15008:521;-1:-1:-1;15545:3:1;;14298:1256;-1:-1:-1;;;;;;;;;;14298:1256:1:o;15559:127::-;15620:10;15615:3;15611:20;15608:1;15601:31;15651:4;15648:1;15641:15;15675:4;15672:1;15665:15;15691:135;15730:3;15751:17;;;15748:43;;15771:18;;:::i;:::-;-1:-1:-1;15818:1:1;15807:13;;15691:135::o;17238:1352::-;17364:3;17358:10;17391:18;17383:6;17380:30;17377:56;;;17413:18;;:::i;:::-;17442:97;17532:6;17492:38;17524:4;17518:11;17492:38;:::i;:::-;17486:4;17442:97;:::i;:::-;17594:4;;17658:2;17647:14;;17675:1;17670:663;;;;18377:1;18394:6;18391:89;;;-1:-1:-1;18446:19:1;;;18440:26;18391:89;-1:-1:-1;;10696:1:1;10692:11;;;10688:24;10684:29;10674:40;10720:1;10716:11;;;10671:57;18493:81;;17640:944;;17670:663;9965:1;9958:14;;;10002:4;9989:18;;-1:-1:-1;;17706:20:1;;;17824:236;17838:7;17835:1;17832:14;17824:236;;;17927:19;;;17921:26;17906:42;;18019:27;;;;17987:1;17975:14;;;;17854:19;;17824:236;;;17828:3;18088:6;18079:7;18076:19;18073:201;;;18149:19;;;18143:26;-1:-1:-1;;18232:1:1;18228:14;;;18244:3;18224:24;18220:37;18216:42;18201:58;18186:74;;18073:201;-1:-1:-1;;;;;18320:1:1;18304:14;;;18300:22;18287:36;;-1:-1:-1;17238:1352:1:o;20079:489::-;-1:-1:-1;;;;;20348:15:1;;;20330:34;;20400:15;;20395:2;20380:18;;20373:43;20447:2;20432:18;;20425:34;;;20495:3;20490:2;20475:18;;20468:31;;;20273:4;;20516:46;;20542:19;;20534:6;20516:46;:::i;:::-;20508:54;20079:489;-1:-1:-1;;;;;;20079:489:1:o;20573:249::-;20642:6;20695:2;20683:9;20674:7;20670:23;20666:32;20663:52;;;20711:1;20708;20701:12;20663:52;20743:9;20737:16;20762:30;20786:5;20762:30;:::i

Swarm Source

ipfs://85549f11e9fddbb0b361a5579e911080fbcc0a5c9227e51151b36cef674574f1
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.