ETH Price: $3,392.78 (+1.03%)
Gas: 5 Gwei

Token

STRIK9 LABS (S9L)
 

Overview

Max Total Supply

4,206 S9L

Holders

232

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 S9L
0xc59dc5b9906728a19070bed06f10e31da2313ac6
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:
STRIK9LABS

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-28
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs
pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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

// File: nft.sol


pragma solidity ^0.8.4;





contract STRIK9LABS is ERC721A, Ownable {
    using Strings for uint256;

    // Supply
    uint256 public maxSupply = 5555;

    // URI
    string public baseURI;
    string public hiddenURI;

    // Costs
    uint256 public pack1WhitelistSaleCost = 0.012 ether;
    uint256 public pack1PublicSaleCost = 0.016 ether;

    uint256 public pack2WhitelistSaleCost = 0.022 ether;
    uint256 public pack2PublicSaleCost = 0.028 ether;

    uint256 public pack3WhitelistSaleCost = 0.03 ether;
    uint256 public pack3PublicSaleCost = 0.039 ether;

    uint256 public pack4WhitelistSaleCost = 0.045 ether;
    uint256 public pack4PublicSaleCost = 0.06 ether;

    // States
    bool public freeSale = false;
    bool public whitelistSale = false;
    bool public publicSale = false;

    bool public revealed = false;

    // Merkle Tree Roots
    bytes32 public freeSaleMerkleTreeRoot;
    bytes32 public whitelistSaleMerkleTreeRoot;

    // Balances
    mapping(address => bool) public freeMintClaimed;

    // Companions contract
    address companionsContractAddress = 0x999999999099334c4D6900D09dd18e3C2E9a9460;

    // Constructor
    constructor() ERC721A("STRIK9 LABS", "S9L") {}

    // Free Sale Mint - Functions
    function fetchTotalOwnedCompanions() public view returns (uint256) {
        uint256 totalOwned = IERC721(companionsContractAddress).balanceOf(msg.sender);

        return totalOwned;
    }

    function freeSaleMint(bytes32[] memory _merkleTreeProof) public payable freeSaleMintCompliance(_merkleTreeProof) {
        require(freeSale == true, "MSG: Free sale is not live");

        uint256 _mintAmount = 1;

        uint256 totalOwnedCompanions = fetchTotalOwnedCompanions();

        if(totalOwnedCompanions > 0) {
            _mintAmount = totalOwnedCompanions * 2;
        }

        require(!freeMintClaimed[msg.sender], "MSG: You can only mint 1 time on free sale");
        freeMintClaimed[msg.sender] = true;

        require(totalSupply() + _mintAmount <= maxSupply, "MSG: Max supply exceeded");
        _safeMint(msg.sender, _mintAmount);
    }

    modifier freeSaleMintCompliance(bytes32[] memory _merkleTreeProof) {
        require(isValidFreeSaleMerkleTreeProof(_merkleTreeProof, keccak256(abi.encodePacked(msg.sender))), "MSG: User is not whitelisted");
        _;
    }

    function isValidFreeSaleMerkleTreeProof(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, freeSaleMerkleTreeRoot, leaf);
    }

    // Whitelist Sale Mint - Functions
    function whitelistSaleMint(uint256 _pack, uint256 _quantity, bytes32[] memory _merkleTreeProof) public payable whitelistSaleMintCompliance(_merkleTreeProof) {
        require(whitelistSale == true, "MSG: Whitelist sale is not live");

        require(_pack >= 1 && _pack <= 4, "MSG: Invalid pack");

        uint256 _mintAmount;

        if(_pack == 1) {
            require(msg.value == pack1WhitelistSaleCost * _quantity, "MSG: Insufficient funds");
            _mintAmount = 1 * _quantity;
        } else if(_pack == 2) {
            require(msg.value == pack2WhitelistSaleCost * _quantity, "MSG: Insufficient funds");
            _mintAmount = 2 * _quantity;
        } else if(_pack == 3) {
            require(msg.value == pack3WhitelistSaleCost * _quantity, "MSG: Insufficient funds");
            _mintAmount = 3 * _quantity;
        } else if(_pack == 4) {
            require(msg.value == pack4WhitelistSaleCost * _quantity, "MSG: Insufficient funds");
            _mintAmount = 5 * _quantity;
        }

        require(totalSupply() + _mintAmount <= maxSupply, "MSG: Max supply exceeded");
        _safeMint(msg.sender, _mintAmount);
    }

    modifier whitelistSaleMintCompliance(bytes32[] memory _merkleTreeProof) {
        require(isValidWhitelistSaleMerkleTreeProof(_merkleTreeProof, keccak256(abi.encodePacked(msg.sender))), "MSG: User is not whitelisted");
        _;
    }

    function isValidWhitelistSaleMerkleTreeProof(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, whitelistSaleMerkleTreeRoot, leaf);
    }

    // Public Sale Mint - Functions
    function publicSaleMint(uint256 _pack, uint256 _quantity) public payable {
        require(publicSale == true, "MSG: Public sale is not live");

        require(_pack >= 1 && _pack <= 4, "MSG: Invalid pack");

        uint256 _mintAmount;

        if(_pack == 1) {
            require(msg.value == pack1PublicSaleCost * _quantity, "MSG: Insufficient funds");
            _mintAmount = 1 * _quantity;
        } else if(_pack == 2) {
            require(msg.value == pack2PublicSaleCost * _quantity, "MSG: Insufficient funds");
            _mintAmount = 2 * _quantity;
        } else if(_pack == 3) {
            require(msg.value == pack3PublicSaleCost * _quantity, "MSG: Insufficient funds");
            _mintAmount = 3 * _quantity;
        } else if(_pack == 4) {
            require(msg.value == pack4PublicSaleCost * _quantity, "MSG: Insufficient funds");
            _mintAmount = 5 * _quantity;
        }

        require(totalSupply() + _mintAmount <= maxSupply, "MSG: Max supply exceeded");
        _safeMint(msg.sender, _mintAmount);
    }

    // Owner Mint - Functions
    function ownerMint(uint256 _mintAmount) public onlyOwner {
        require(totalSupply() + _mintAmount <= maxSupply, "MSG: Max supply exceeded");
        _safeMint(msg.sender, _mintAmount);
    }

    function ownerMintForOthers(address _receiver, uint256 _mintAmount) public onlyOwner {
        require(totalSupply() + _mintAmount <= maxSupply, "MSG: Max supply exceeded");
        _safeMint(_receiver, _mintAmount);
    }

    // URI - Functions
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

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

    function setHiddenURI(string memory _uri) public onlyOwner {
        hiddenURI = _uri;
    }

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

        if (revealed == false) {
            return hiddenURI;
        }

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

    // Cost - Functions
    function setPack1WhitelistSaleCost(uint256 _cost) public onlyOwner {
        pack1WhitelistSaleCost = _cost;
    }

    function setPack1PublicSaleCost(uint256 _cost) public onlyOwner {
        pack1PublicSaleCost = _cost;
    }

    function setPack2WhitelistSaleCost(uint256 _cost) public onlyOwner {
        pack2WhitelistSaleCost = _cost;
    }

    function setPack2PublicSaleCost(uint256 _cost) public onlyOwner {
        pack2PublicSaleCost = _cost;
    }

    function setPack3WhitelistSaleCost(uint256 _cost) public onlyOwner {
        pack3WhitelistSaleCost = _cost;
    }

    function setPack3PublicSaleCost(uint256 _cost) public onlyOwner {
        pack3PublicSaleCost = _cost;
    }

    function setPack4WhitelistSaleCost(uint256 _cost) public onlyOwner {
        pack4WhitelistSaleCost = _cost;
    }

    function setPack4PublicSaleCost(uint256 _cost) public onlyOwner {
        pack4PublicSaleCost = _cost;
    }

    // State - Functions
    function setFreeSale(bool _state) public onlyOwner {
        freeSale = _state;
    }

    function setWhitelistSale(bool _state) public onlyOwner {
        whitelistSale = _state;
    }

    function setPublicSale(bool _state) public onlyOwner {
        publicSale = _state;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    // Merkle Tree Root - Functions
    function setFreeSaleMerkleTreeRoot(bytes32 _root) public onlyOwner {
        freeSaleMerkleTreeRoot = _root;
    }
    
    function setWhitelistSaleMerkleTreeRoot(bytes32 _root) public onlyOwner {
        whitelistSaleMerkleTreeRoot = _root;
    }

    // Other Functions
    function setCompanionsContractAddress(address _address) public onlyOwner {
        companionsContractAddress = _address;
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = _startTokenId();
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            TokenOwnership memory ownership = _ownerships[currentTokenId];

            if (!ownership.burned && ownership.addr == _owner) {
                ownedTokenIds[ownedTokenIndex++] = currentTokenId;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    // Withdraw - Function
    function withdraw() public payable onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fetchTotalOwnedCompanions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSaleMerkleTreeRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleTreeProof","type":"bytes32[]"}],"name":"freeSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValidFreeSaleMerkleTreeProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValidWhitelistSaleMerkleTreeProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMintForOthers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pack1PublicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pack1WhitelistSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pack2PublicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pack2WhitelistSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pack3PublicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pack3WhitelistSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pack4PublicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pack4WhitelistSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pack","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setCompanionsContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setFreeSaleMerkleTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPack1PublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPack1WhitelistSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPack2PublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPack2WhitelistSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPack3PublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPack3WhitelistSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPack4PublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPack4WhitelistSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistSaleMerkleTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleMerkleTreeRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pack","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleTreeProof","type":"bytes32[]"}],"name":"whitelistSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526115b3600955662aa1efb94e0000600c556638d7ea4c680000600d55664e28e2290f0000600e55666379da05b60000600f55666a94d74f430000601055668a8e4b1a3d8000601155669fdf42f6e4800060125566d529ae9e8600006013556014805463ffffffff19169055601880546001600160a01b03191673999999999099334c4d6900d09dd18e3c2e9a9460179055348015620000a257600080fd5b506040518060400160405280600b81526020016a535452494b39204c41425360a81b8152506040518060400160405280600381526020016214ce5360ea1b8152508160029081620000f4919062000212565b50600362000103828262000212565b5050600080555062000115336200011b565b620002de565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200019857607f821691505b602082108103620001b957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200020d57600081815260208120601f850160051c81016020861015620001e85750805b601f850160051c820191505b818110156200020957828155600101620001f4565b5050505b505050565b81516001600160401b038111156200022e576200022e6200016d565b62000246816200023f845462000183565b84620001bf565b602080601f8311600181146200027e5760008415620002655750858301515b600019600386901b1c1916600185901b17855562000209565b600085815260208120601f198616915b82811015620002af578886015182559484019460019091019084016200028e565b5085821015620002ce5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61366580620002ee6000396000f3fe6080604052600436106103ad5760003560e01c80637a6b1e9b116101e7578063bd3a17f51161010d578063de633acc116100a0578063ec031d7f1161006f578063ec031d7f14610abf578063f19e75d414610ad5578063f2fde38b14610af5578063fe60e91014610b1557600080fd5b8063de633acc14610a03578063e0a8085314610a19578063e0ec7c3614610a39578063e985e9c514610a6957600080fd5b8063cb91d8b3116100dc578063cb91d8b31461099a578063d15a2fc8146109ad578063d4f13941146109cd578063d5abeb01146109ed57600080fd5b8063bd3a17f514610927578063c4fe8f4914610947578063c87b56dd1461095a578063ca7ce3ec1461097a57600080fd5b806395d89b4111610185578063a4b41a1511610154578063a4b41a15146108ad578063b68f8825146108c7578063b88d4fde146108e7578063bbaac02f1461090757600080fd5b806395d89b41146108385780639bffb27c1461084d5780639cc8c57c1461086d578063a22cb4651461088d57600080fd5b80638da5cb5b116101c15780638da5cb5b146107c15780638f3ea468146107ec57806390a64a4e1461080c578063939749b71461082257600080fd5b80637a6b1e9b1461076c57806380d6c5001461078c5780638cc54e7f146107ac57600080fd5b80632634844c116102d7578063518302271161026a5780636c0360eb116102395780636c0360eb1461070257806370a0823114610717578063715018a61461073757806375f74fca1461074c57600080fd5b8063518302271461068157806355f804b3146106a25780635aca1bb6146106c25780636352211e146106e257600080fd5b80633a2e68e7116102a65780633a2e68e71461060c5780633ccfd60b1461062c57806342842e0e14610634578063438b63001461065457600080fd5b80632634844c1461059757806331d9a103146105b757806331ffd6f1146105cd57806333bc1c5c146105ec57600080fd5b80630e0dfe031161034f57806320b19c571161031e57806320b19c571461052c578063234d7a3f1461054257806323b872dd1461056257806325eabcaa1461058257600080fd5b80630e0dfe03146104bd57806318160ddd146104dd5780631aeeddcc146104f65780631c71369e1461051657600080fd5b806306fdde031161038b57806306fdde0314610420578063076df11214610442578063081812fc14610458578063095ea7b31461049d57600080fd5b806301ffc9a7146103b2578063026c764e146103e757806306623851146103fc575b600080fd5b3480156103be57600080fd5b506103d26103cd366004612e5e565b610b2b565b60405190151581526020015b60405180910390f35b6103fa6103f5366004612f5b565b610c10565b005b34801561040857600080fd5b50610412600c5481565b6040519081526020016103de565b34801561042c57600080fd5b50610435610fb2565b6040516103de9190612ffb565b34801561044e57600080fd5b5061041260115481565b34801561046457600080fd5b5061047861047336600461300e565b611044565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103de565b3480156104a957600080fd5b506103fa6104b8366004613050565b6110ae565b3480156104c957600080fd5b506103fa6104d836600461300e565b611194565b3480156104e957600080fd5b5060015460005403610412565b34801561050257600080fd5b506103fa61051136600461300e565b6111a1565b34801561052257600080fd5b5061041260135481565b34801561053857600080fd5b5061041260155481565b34801561054e57600080fd5b506103fa61055d36600461300e565b6111ae565b34801561056e57600080fd5b506103fa61057d36600461307a565b6111bb565b34801561058e57600080fd5b506104126111c6565b3480156105a357600080fd5b506103fa6105b236600461300e565b61125d565b3480156105c357600080fd5b5061041260105481565b3480156105d957600080fd5b506014546103d290610100900460ff1681565b3480156105f857600080fd5b506014546103d29062010000900460ff1681565b34801561061857600080fd5b506103d26106273660046130b6565b61126a565b6103fa611280565b34801561064057600080fd5b506103fa61064f36600461307a565b6112d1565b34801561066057600080fd5b5061067461066f3660046130fb565b6112ec565b6040516103de9190613116565b34801561068d57600080fd5b506014546103d2906301000000900460ff1681565b3480156106ae57600080fd5b506103fa6106bd3660046131b2565b61146f565b3480156106ce57600080fd5b506103fa6106dd36600461320b565b611487565b3480156106ee57600080fd5b506104786106fd36600461300e565b6114c7565b34801561070e57600080fd5b506104356114d9565b34801561072357600080fd5b506104126107323660046130fb565b611567565b34801561074357600080fd5b506103fa6115e9565b34801561075857600080fd5b506103fa61076736600461320b565b6115fd565b34801561077857600080fd5b506103fa61078736600461300e565b611636565b34801561079857600080fd5b506103fa6107a736600461300e565b611643565b3480156107b857600080fd5b50610435611650565b3480156107cd57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff16610478565b3480156107f857600080fd5b506103fa61080736600461300e565b61165d565b34801561081857600080fd5b5061041260125481565b34801561082e57600080fd5b50610412600e5481565b34801561084457600080fd5b5061043561166a565b34801561085957600080fd5b506103fa61086836600461300e565b611679565b34801561087957600080fd5b506103d26108883660046130b6565b611686565b34801561089957600080fd5b506103fa6108a8366004613226565b611695565b3480156108b957600080fd5b506014546103d29060ff1681565b3480156108d357600080fd5b506103fa6108e23660046130fb565b61177b565b3480156108f357600080fd5b506103fa610902366004613259565b6117ca565b34801561091357600080fd5b506103fa6109223660046131b2565b611841565b34801561093357600080fd5b506103fa610942366004613050565b611855565b6103fa6109553660046132d5565b6118d0565b34801561096657600080fd5b5061043561097536600461300e565b611b1a565b34801561098657600080fd5b506103fa61099536600461320b565b611c9a565b6103fa6109a836600461330a565b611cd9565b3480156109b957600080fd5b506103fa6109c836600461300e565b611fcf565b3480156109d957600080fd5b506103fa6109e836600461300e565b611fdc565b3480156109f957600080fd5b5061041260095481565b348015610a0f57600080fd5b5061041260165481565b348015610a2557600080fd5b506103fa610a3436600461320b565b611fe9565b348015610a4557600080fd5b506103d2610a543660046130fb565b60176020526000908152604090205460ff1681565b348015610a7557600080fd5b506103d2610a8436600461332c565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610acb57600080fd5b50610412600d5481565b348015610ae157600080fd5b506103fa610af036600461300e565b61202a565b348015610b0157600080fd5b506103fa610b103660046130fb565b6120a5565b348015610b2157600080fd5b50610412600f5481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610bbe57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c0a57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201528190610c649082906034016040516020818303038152906040528051906020012061126a565b610cb55760405162461bcd60e51b815260206004820152601c60248201527f4d53473a2055736572206973206e6f742077686974656c69737465640000000060448201526064015b60405180910390fd5b60145460ff610100909104161515600114610d125760405162461bcd60e51b815260206004820152601f60248201527f4d53473a2057686974656c6973742073616c65206973206e6f74206c697665006044820152606401610cac565b60018410158015610d24575060048411155b610d705760405162461bcd60e51b815260206004820152601160248201527f4d53473a20496e76616c6964207061636b0000000000000000000000000000006044820152606401610cac565b600084600103610de85783600c54610d889190613385565b3414610dd65760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b610de1846001613385565b9050610f38565b84600203610e575783600e54610dfe9190613385565b3414610e4c5760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b610de1846002613385565b84600303610ec65783601054610e6d9190613385565b3414610ebb5760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b610de1846003613385565b84600403610f385783601254610edc9190613385565b3414610f2a5760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b610f35846005613385565b90505b60095481610f496001546000540390565b610f53919061339c565b1115610fa15760405162461bcd60e51b815260206004820152601860248201527f4d53473a204d617820737570706c7920657863656564656400000000000000006044820152606401610cac565b610fab338261213f565b5050505050565b606060028054610fc1906133af565b80601f0160208091040260200160405190810160405280929190818152602001828054610fed906133af565b801561103a5780601f1061100f5761010080835404028352916020019161103a565b820191906000526020600020905b81548152906001019060200180831161101d57829003601f168201915b5050505050905090565b600061104f82612159565b611085576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006110b9826114c7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611120576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff82161480159061114d575061114b8133610a84565b155b15611184576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61118f83838361219d565b505050565b61119c61221e565b600c55565b6111a961221e565b601355565b6111b661221e565b600d55565b61118f838383612285565b6018546040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091829173ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015611239573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0a9190613402565b61126561221e565b601055565b600061127983601654846125cf565b9392505050565b61128861221e565b60085460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f193505050501580156112ce573d6000803e3d6000fd5b50565b61118f838383604051806020016040528060008152506117ca565b606060006112f983611567565b905060008167ffffffffffffffff81111561131657611316612e7b565b60405190808252806020026020018201604052801561133f578160200160208202803683370190505b5090506000805b838110801561135757506009548211155b15611465576000828152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff8116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16158015928201839052909161142257508673ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16145b15611452578284836114338161341b565b94508151811061144557611445613435565b6020026020010181815250505b8261145c8161341b565b93505050611346565b5090949350505050565b61147761221e565b600a61148382826134b2565b5050565b61148f61221e565b6014805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60006114d2826125e5565b5192915050565b600a80546114e6906133af565b80601f0160208091040260200160405190810160405280929190818152602001828054611512906133af565b801561155f5780601f106115345761010080835404028352916020019161155f565b820191906000526020600020905b81548152906001019060200180831161154257829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff82166115b6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b6115f161221e565b6115fb6000612795565b565b61160561221e565b601480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61163e61221e565b601255565b61164b61221e565b601555565b600b80546114e6906133af565b61166561221e565b600e55565b606060038054610fc1906133af565b61168161221e565b601655565b600061127983601554846125cf565b3373ffffffffffffffffffffffffffffffffffffffff8316036116e4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61178361221e565b601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6117d5848484612285565b73ffffffffffffffffffffffffffffffffffffffff83163b1515801561180457506118028484848461280c565b155b1561183b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61184961221e565b600b61148382826134b2565b61185d61221e565b6009548161186e6001546000540390565b611878919061339c565b11156118c65760405162461bcd60e51b815260206004820152601860248201527f4d53473a204d617820737570706c7920657863656564656400000000000000006044820152606401610cac565b611483828261213f565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b166020820152819061192490829060340160405160208183030381529060405280519060200120611686565b6119705760405162461bcd60e51b815260206004820152601c60248201527f4d53473a2055736572206973206e6f742077686974656c6973746564000000006044820152606401610cac565b60145460ff1615156001146119c75760405162461bcd60e51b815260206004820152601a60248201527f4d53473a20467265652073616c65206973206e6f74206c6976650000000000006044820152606401610cac565b600160006119d36111c6565b905080156119e9576119e6816002613385565b91505b3360009081526017602052604090205460ff1615611a6f5760405162461bcd60e51b815260206004820152602a60248201527f4d53473a20596f752063616e206f6e6c79206d696e7420312074696d65206f6e60448201527f20667265652073616c65000000000000000000000000000000000000000000006064820152608401610cac565b33600090815260176020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560095482611ab86001546000540390565b611ac2919061339c565b1115611b105760405162461bcd60e51b815260206004820152601860248201527f4d53473a204d617820737570706c7920657863656564656400000000000000006044820152606401610cac565b61183b338361213f565b6060611b2582612159565b611b975760405162461bcd60e51b815260206004820152602560248201527f4d53473a2055524920717565727920666f72206e6f6e6578697374656e74207460448201527f6f6b656e2e0000000000000000000000000000000000000000000000000000006064820152608401610cac565b6014546301000000900460ff161515600003611c3f57600b8054611bba906133af565b80601f0160208091040260200160405190810160405280929190818152602001828054611be6906133af565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b50505050509050919050565b6000611c49612968565b90506000815111611c695760405180602001604052806000815250611279565b80611c7384612977565b604051602001611c84929190613572565b6040516020818303038152906040529392505050565b611ca261221e565b60148054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60145462010000900460ff161515600114611d365760405162461bcd60e51b815260206004820152601c60248201527f4d53473a205075626c69632073616c65206973206e6f74206c697665000000006044820152606401610cac565b60018210158015611d48575060048211155b611d945760405162461bcd60e51b815260206004820152601160248201527f4d53473a20496e76616c6964207061636b0000000000000000000000000000006044820152606401610cac565b600082600103611e0c5781600d54611dac9190613385565b3414611dfa5760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b611e05826001613385565b9050611f5c565b82600203611e7b5781600f54611e229190613385565b3414611e705760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b611e05826002613385565b82600303611eea5781601154611e919190613385565b3414611edf5760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b611e05826003613385565b82600403611f5c5781601354611f009190613385565b3414611f4e5760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b611f59826005613385565b90505b60095481611f6d6001546000540390565b611f77919061339c565b1115611fc55760405162461bcd60e51b815260206004820152601860248201527f4d53473a204d617820737570706c7920657863656564656400000000000000006044820152606401610cac565b61118f338261213f565b611fd761221e565b600f55565b611fe461221e565b601155565b611ff161221e565b601480549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b61203261221e565b600954816120436001546000540390565b61204d919061339c565b111561209b5760405162461bcd60e51b815260206004820152601860248201527f4d53473a204d617820737570706c7920657863656564656400000000000000006044820152606401610cac565b6112ce338261213f565b6120ad61221e565b73ffffffffffffffffffffffffffffffffffffffff81166121365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cac565b6112ce81612795565b611483828260405180602001604052806000815250612a17565b6000805482108015610c0a5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146115fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b6000612290826125e5565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806122d8575081516122d89033610a84565b806123005750336122e884611044565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612339576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123a2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff84166123ef576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123ff600084846000015161219d565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021790925590860180835291205490911661256e5760005481101561256e578251600082815260046020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fab565b6000826125dc8584612a24565b14949350505050565b604080516060810182526000808252602082018190529181019190915281600054811015612763576000818152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff8116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff1615159181018290529061276157805173ffffffffffffffffffffffffffffffffffffffff16156126c0579392505050565b50600019016000818152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff161515928101929092521561275c579392505050565b6126c0565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906128679033908990889088906004016135c9565b6020604051808303816000875af19250505080156128a2575060408051601f3d908101601f1916820190925261289f91810190613612565b60015b612919573d8080156128d0576040519150601f19603f3d011682016040523d82523d6000602084013e6128d5565b606091505b508051600003612911576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600a8054610fc1906133af565b6060600061298483612a71565b600101905060008167ffffffffffffffff8111156129a4576129a4612e7b565b6040519080825280601f01601f1916602001820160405280156129ce576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846129d857509392505050565b61118f8383836001612b53565b600081815b8451811015612a6957612a5582868381518110612a4857612a48613435565b6020026020010151612e01565b915080612a618161341b565b915050612a29565b509392505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612aba577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612ae6576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612b0457662386f26fc10000830492506010015b6305f5e1008310612b1c576305f5e100830492506008015b6127108310612b3057612710830492506004015b60648310612b42576064830492506002015b600a8310610c0a5760010192915050565b60005473ffffffffffffffffffffffffffffffffffffffff8516612ba3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600003612bdd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c01811690920217909155858452600490925290912080547fffffffff000000000000000000000000000000000000000000000000000000001690921774010000000000000000000000000000000000000000429092169190910217905580808501838015612cf8575073ffffffffffffffffffffffffffffffffffffffff87163b15155b15612da6575b604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612d56600088848060010195508861280c565b612d8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612cfe578260005414612da157600080fd5b612df8565b5b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612da7575b50600055610fab565b6000818310612e1d576000828152602084905260409020611279565b6000838152602083905260409020611279565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146112ce57600080fd5b600060208284031215612e7057600080fd5b813561127981612e30565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612ed357612ed3612e7b565b604052919050565b600082601f830112612eec57600080fd5b8135602067ffffffffffffffff821115612f0857612f08612e7b565b8160051b612f17828201612eaa565b9283528481018201928281019087851115612f3157600080fd5b83870192505b84831015612f5057823582529183019190830190612f37565b979650505050505050565b600080600060608486031215612f7057600080fd5b8335925060208401359150604084013567ffffffffffffffff811115612f9557600080fd5b612fa186828701612edb565b9150509250925092565b60005b83811015612fc6578181015183820152602001612fae565b50506000910152565b60008151808452612fe7816020860160208601612fab565b601f01601f19169290920160200192915050565b6020815260006112796020830184612fcf565b60006020828403121561302057600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461304b57600080fd5b919050565b6000806040838503121561306357600080fd5b61306c83613027565b946020939093013593505050565b60008060006060848603121561308f57600080fd5b61309884613027565b92506130a660208501613027565b9150604084013590509250925092565b600080604083850312156130c957600080fd5b823567ffffffffffffffff8111156130e057600080fd5b6130ec85828601612edb565b95602094909401359450505050565b60006020828403121561310d57600080fd5b61127982613027565b6020808252825182820181905260009190848201906040850190845b8181101561314e57835183529284019291840191600101613132565b50909695505050505050565b600067ffffffffffffffff83111561317457613174612e7b565b6131876020601f19601f86011601612eaa565b905082815283838301111561319b57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156131c457600080fd5b813567ffffffffffffffff8111156131db57600080fd5b8201601f810184136131ec57600080fd5b6129608482356020840161315a565b8035801515811461304b57600080fd5b60006020828403121561321d57600080fd5b611279826131fb565b6000806040838503121561323957600080fd5b61324283613027565b9150613250602084016131fb565b90509250929050565b6000806000806080858703121561326f57600080fd5b61327885613027565b935061328660208601613027565b925060408501359150606085013567ffffffffffffffff8111156132a957600080fd5b8501601f810187136132ba57600080fd5b6132c98782356020840161315a565b91505092959194509250565b6000602082840312156132e757600080fd5b813567ffffffffffffffff8111156132fe57600080fd5b61296084828501612edb565b6000806040838503121561331d57600080fd5b50508035926020909101359150565b6000806040838503121561333f57600080fd5b61334883613027565b915061325060208401613027565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417610c0a57610c0a613356565b80820180821115610c0a57610c0a613356565b600181811c908216806133c357607f821691505b6020821081036133fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60006020828403121561341457600080fd5b5051919050565b6000600019820361342e5761342e613356565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b601f82111561118f57600081815260208120601f850160051c8101602086101561348b5750805b601f850160051c820191505b818110156134aa57828155600101613497565b505050505050565b815167ffffffffffffffff8111156134cc576134cc612e7b565b6134e0816134da84546133af565b84613464565b602080601f83116001811461351557600084156134fd5750858301515b600019600386901b1c1916600185901b1785556134aa565b600085815260208120601f198616915b8281101561354457888601518255948401946001909101908401613525565b50858210156135625787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351613584818460208801612fab565b835190830190613598818360208801612fab565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526136086080830184612fcf565b9695505050505050565b60006020828403121561362457600080fd5b815161127981612e3056fea264697066735822122004af7881a128688ac8c0c31905c90804c867edf47f9cf854d5f48b4c004cc94a64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103ad5760003560e01c80637a6b1e9b116101e7578063bd3a17f51161010d578063de633acc116100a0578063ec031d7f1161006f578063ec031d7f14610abf578063f19e75d414610ad5578063f2fde38b14610af5578063fe60e91014610b1557600080fd5b8063de633acc14610a03578063e0a8085314610a19578063e0ec7c3614610a39578063e985e9c514610a6957600080fd5b8063cb91d8b3116100dc578063cb91d8b31461099a578063d15a2fc8146109ad578063d4f13941146109cd578063d5abeb01146109ed57600080fd5b8063bd3a17f514610927578063c4fe8f4914610947578063c87b56dd1461095a578063ca7ce3ec1461097a57600080fd5b806395d89b4111610185578063a4b41a1511610154578063a4b41a15146108ad578063b68f8825146108c7578063b88d4fde146108e7578063bbaac02f1461090757600080fd5b806395d89b41146108385780639bffb27c1461084d5780639cc8c57c1461086d578063a22cb4651461088d57600080fd5b80638da5cb5b116101c15780638da5cb5b146107c15780638f3ea468146107ec57806390a64a4e1461080c578063939749b71461082257600080fd5b80637a6b1e9b1461076c57806380d6c5001461078c5780638cc54e7f146107ac57600080fd5b80632634844c116102d7578063518302271161026a5780636c0360eb116102395780636c0360eb1461070257806370a0823114610717578063715018a61461073757806375f74fca1461074c57600080fd5b8063518302271461068157806355f804b3146106a25780635aca1bb6146106c25780636352211e146106e257600080fd5b80633a2e68e7116102a65780633a2e68e71461060c5780633ccfd60b1461062c57806342842e0e14610634578063438b63001461065457600080fd5b80632634844c1461059757806331d9a103146105b757806331ffd6f1146105cd57806333bc1c5c146105ec57600080fd5b80630e0dfe031161034f57806320b19c571161031e57806320b19c571461052c578063234d7a3f1461054257806323b872dd1461056257806325eabcaa1461058257600080fd5b80630e0dfe03146104bd57806318160ddd146104dd5780631aeeddcc146104f65780631c71369e1461051657600080fd5b806306fdde031161038b57806306fdde0314610420578063076df11214610442578063081812fc14610458578063095ea7b31461049d57600080fd5b806301ffc9a7146103b2578063026c764e146103e757806306623851146103fc575b600080fd5b3480156103be57600080fd5b506103d26103cd366004612e5e565b610b2b565b60405190151581526020015b60405180910390f35b6103fa6103f5366004612f5b565b610c10565b005b34801561040857600080fd5b50610412600c5481565b6040519081526020016103de565b34801561042c57600080fd5b50610435610fb2565b6040516103de9190612ffb565b34801561044e57600080fd5b5061041260115481565b34801561046457600080fd5b5061047861047336600461300e565b611044565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103de565b3480156104a957600080fd5b506103fa6104b8366004613050565b6110ae565b3480156104c957600080fd5b506103fa6104d836600461300e565b611194565b3480156104e957600080fd5b5060015460005403610412565b34801561050257600080fd5b506103fa61051136600461300e565b6111a1565b34801561052257600080fd5b5061041260135481565b34801561053857600080fd5b5061041260155481565b34801561054e57600080fd5b506103fa61055d36600461300e565b6111ae565b34801561056e57600080fd5b506103fa61057d36600461307a565b6111bb565b34801561058e57600080fd5b506104126111c6565b3480156105a357600080fd5b506103fa6105b236600461300e565b61125d565b3480156105c357600080fd5b5061041260105481565b3480156105d957600080fd5b506014546103d290610100900460ff1681565b3480156105f857600080fd5b506014546103d29062010000900460ff1681565b34801561061857600080fd5b506103d26106273660046130b6565b61126a565b6103fa611280565b34801561064057600080fd5b506103fa61064f36600461307a565b6112d1565b34801561066057600080fd5b5061067461066f3660046130fb565b6112ec565b6040516103de9190613116565b34801561068d57600080fd5b506014546103d2906301000000900460ff1681565b3480156106ae57600080fd5b506103fa6106bd3660046131b2565b61146f565b3480156106ce57600080fd5b506103fa6106dd36600461320b565b611487565b3480156106ee57600080fd5b506104786106fd36600461300e565b6114c7565b34801561070e57600080fd5b506104356114d9565b34801561072357600080fd5b506104126107323660046130fb565b611567565b34801561074357600080fd5b506103fa6115e9565b34801561075857600080fd5b506103fa61076736600461320b565b6115fd565b34801561077857600080fd5b506103fa61078736600461300e565b611636565b34801561079857600080fd5b506103fa6107a736600461300e565b611643565b3480156107b857600080fd5b50610435611650565b3480156107cd57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff16610478565b3480156107f857600080fd5b506103fa61080736600461300e565b61165d565b34801561081857600080fd5b5061041260125481565b34801561082e57600080fd5b50610412600e5481565b34801561084457600080fd5b5061043561166a565b34801561085957600080fd5b506103fa61086836600461300e565b611679565b34801561087957600080fd5b506103d26108883660046130b6565b611686565b34801561089957600080fd5b506103fa6108a8366004613226565b611695565b3480156108b957600080fd5b506014546103d29060ff1681565b3480156108d357600080fd5b506103fa6108e23660046130fb565b61177b565b3480156108f357600080fd5b506103fa610902366004613259565b6117ca565b34801561091357600080fd5b506103fa6109223660046131b2565b611841565b34801561093357600080fd5b506103fa610942366004613050565b611855565b6103fa6109553660046132d5565b6118d0565b34801561096657600080fd5b5061043561097536600461300e565b611b1a565b34801561098657600080fd5b506103fa61099536600461320b565b611c9a565b6103fa6109a836600461330a565b611cd9565b3480156109b957600080fd5b506103fa6109c836600461300e565b611fcf565b3480156109d957600080fd5b506103fa6109e836600461300e565b611fdc565b3480156109f957600080fd5b5061041260095481565b348015610a0f57600080fd5b5061041260165481565b348015610a2557600080fd5b506103fa610a3436600461320b565b611fe9565b348015610a4557600080fd5b506103d2610a543660046130fb565b60176020526000908152604090205460ff1681565b348015610a7557600080fd5b506103d2610a8436600461332c565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610acb57600080fd5b50610412600d5481565b348015610ae157600080fd5b506103fa610af036600461300e565b61202a565b348015610b0157600080fd5b506103fa610b103660046130fb565b6120a5565b348015610b2157600080fd5b50610412600f5481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610bbe57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c0a57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201528190610c649082906034016040516020818303038152906040528051906020012061126a565b610cb55760405162461bcd60e51b815260206004820152601c60248201527f4d53473a2055736572206973206e6f742077686974656c69737465640000000060448201526064015b60405180910390fd5b60145460ff610100909104161515600114610d125760405162461bcd60e51b815260206004820152601f60248201527f4d53473a2057686974656c6973742073616c65206973206e6f74206c697665006044820152606401610cac565b60018410158015610d24575060048411155b610d705760405162461bcd60e51b815260206004820152601160248201527f4d53473a20496e76616c6964207061636b0000000000000000000000000000006044820152606401610cac565b600084600103610de85783600c54610d889190613385565b3414610dd65760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b610de1846001613385565b9050610f38565b84600203610e575783600e54610dfe9190613385565b3414610e4c5760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b610de1846002613385565b84600303610ec65783601054610e6d9190613385565b3414610ebb5760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b610de1846003613385565b84600403610f385783601254610edc9190613385565b3414610f2a5760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b610f35846005613385565b90505b60095481610f496001546000540390565b610f53919061339c565b1115610fa15760405162461bcd60e51b815260206004820152601860248201527f4d53473a204d617820737570706c7920657863656564656400000000000000006044820152606401610cac565b610fab338261213f565b5050505050565b606060028054610fc1906133af565b80601f0160208091040260200160405190810160405280929190818152602001828054610fed906133af565b801561103a5780601f1061100f5761010080835404028352916020019161103a565b820191906000526020600020905b81548152906001019060200180831161101d57829003601f168201915b5050505050905090565b600061104f82612159565b611085576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006110b9826114c7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611120576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff82161480159061114d575061114b8133610a84565b155b15611184576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61118f83838361219d565b505050565b61119c61221e565b600c55565b6111a961221e565b601355565b6111b661221e565b600d55565b61118f838383612285565b6018546040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091829173ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015611239573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0a9190613402565b61126561221e565b601055565b600061127983601654846125cf565b9392505050565b61128861221e565b60085460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f193505050501580156112ce573d6000803e3d6000fd5b50565b61118f838383604051806020016040528060008152506117ca565b606060006112f983611567565b905060008167ffffffffffffffff81111561131657611316612e7b565b60405190808252806020026020018201604052801561133f578160200160208202803683370190505b5090506000805b838110801561135757506009548211155b15611465576000828152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff8116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16158015928201839052909161142257508673ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16145b15611452578284836114338161341b565b94508151811061144557611445613435565b6020026020010181815250505b8261145c8161341b565b93505050611346565b5090949350505050565b61147761221e565b600a61148382826134b2565b5050565b61148f61221e565b6014805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60006114d2826125e5565b5192915050565b600a80546114e6906133af565b80601f0160208091040260200160405190810160405280929190818152602001828054611512906133af565b801561155f5780601f106115345761010080835404028352916020019161155f565b820191906000526020600020905b81548152906001019060200180831161154257829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff82166115b6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b6115f161221e565b6115fb6000612795565b565b61160561221e565b601480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61163e61221e565b601255565b61164b61221e565b601555565b600b80546114e6906133af565b61166561221e565b600e55565b606060038054610fc1906133af565b61168161221e565b601655565b600061127983601554846125cf565b3373ffffffffffffffffffffffffffffffffffffffff8316036116e4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61178361221e565b601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6117d5848484612285565b73ffffffffffffffffffffffffffffffffffffffff83163b1515801561180457506118028484848461280c565b155b1561183b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61184961221e565b600b61148382826134b2565b61185d61221e565b6009548161186e6001546000540390565b611878919061339c565b11156118c65760405162461bcd60e51b815260206004820152601860248201527f4d53473a204d617820737570706c7920657863656564656400000000000000006044820152606401610cac565b611483828261213f565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b166020820152819061192490829060340160405160208183030381529060405280519060200120611686565b6119705760405162461bcd60e51b815260206004820152601c60248201527f4d53473a2055736572206973206e6f742077686974656c6973746564000000006044820152606401610cac565b60145460ff1615156001146119c75760405162461bcd60e51b815260206004820152601a60248201527f4d53473a20467265652073616c65206973206e6f74206c6976650000000000006044820152606401610cac565b600160006119d36111c6565b905080156119e9576119e6816002613385565b91505b3360009081526017602052604090205460ff1615611a6f5760405162461bcd60e51b815260206004820152602a60248201527f4d53473a20596f752063616e206f6e6c79206d696e7420312074696d65206f6e60448201527f20667265652073616c65000000000000000000000000000000000000000000006064820152608401610cac565b33600090815260176020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560095482611ab86001546000540390565b611ac2919061339c565b1115611b105760405162461bcd60e51b815260206004820152601860248201527f4d53473a204d617820737570706c7920657863656564656400000000000000006044820152606401610cac565b61183b338361213f565b6060611b2582612159565b611b975760405162461bcd60e51b815260206004820152602560248201527f4d53473a2055524920717565727920666f72206e6f6e6578697374656e74207460448201527f6f6b656e2e0000000000000000000000000000000000000000000000000000006064820152608401610cac565b6014546301000000900460ff161515600003611c3f57600b8054611bba906133af565b80601f0160208091040260200160405190810160405280929190818152602001828054611be6906133af565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b50505050509050919050565b6000611c49612968565b90506000815111611c695760405180602001604052806000815250611279565b80611c7384612977565b604051602001611c84929190613572565b6040516020818303038152906040529392505050565b611ca261221e565b60148054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60145462010000900460ff161515600114611d365760405162461bcd60e51b815260206004820152601c60248201527f4d53473a205075626c69632073616c65206973206e6f74206c697665000000006044820152606401610cac565b60018210158015611d48575060048211155b611d945760405162461bcd60e51b815260206004820152601160248201527f4d53473a20496e76616c6964207061636b0000000000000000000000000000006044820152606401610cac565b600082600103611e0c5781600d54611dac9190613385565b3414611dfa5760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b611e05826001613385565b9050611f5c565b82600203611e7b5781600f54611e229190613385565b3414611e705760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b611e05826002613385565b82600303611eea5781601154611e919190613385565b3414611edf5760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b611e05826003613385565b82600403611f5c5781601354611f009190613385565b3414611f4e5760405162461bcd60e51b815260206004820152601760248201527f4d53473a20496e73756666696369656e742066756e64730000000000000000006044820152606401610cac565b611f59826005613385565b90505b60095481611f6d6001546000540390565b611f77919061339c565b1115611fc55760405162461bcd60e51b815260206004820152601860248201527f4d53473a204d617820737570706c7920657863656564656400000000000000006044820152606401610cac565b61118f338261213f565b611fd761221e565b600f55565b611fe461221e565b601155565b611ff161221e565b601480549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b61203261221e565b600954816120436001546000540390565b61204d919061339c565b111561209b5760405162461bcd60e51b815260206004820152601860248201527f4d53473a204d617820737570706c7920657863656564656400000000000000006044820152606401610cac565b6112ce338261213f565b6120ad61221e565b73ffffffffffffffffffffffffffffffffffffffff81166121365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cac565b6112ce81612795565b611483828260405180602001604052806000815250612a17565b6000805482108015610c0a5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146115fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b6000612290826125e5565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806122d8575081516122d89033610a84565b806123005750336122e884611044565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612339576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123a2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff84166123ef576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123ff600084846000015161219d565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021790925590860180835291205490911661256e5760005481101561256e578251600082815260046020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fab565b6000826125dc8584612a24565b14949350505050565b604080516060810182526000808252602082018190529181019190915281600054811015612763576000818152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff8116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff1615159181018290529061276157805173ffffffffffffffffffffffffffffffffffffffff16156126c0579392505050565b50600019016000818152600460209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff161515928101929092521561275c579392505050565b6126c0565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906128679033908990889088906004016135c9565b6020604051808303816000875af19250505080156128a2575060408051601f3d908101601f1916820190925261289f91810190613612565b60015b612919573d8080156128d0576040519150601f19603f3d011682016040523d82523d6000602084013e6128d5565b606091505b508051600003612911576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600a8054610fc1906133af565b6060600061298483612a71565b600101905060008167ffffffffffffffff8111156129a4576129a4612e7b565b6040519080825280601f01601f1916602001820160405280156129ce576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846129d857509392505050565b61118f8383836001612b53565b600081815b8451811015612a6957612a5582868381518110612a4857612a48613435565b6020026020010151612e01565b915080612a618161341b565b915050612a29565b509392505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612aba577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612ae6576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612b0457662386f26fc10000830492506010015b6305f5e1008310612b1c576305f5e100830492506008015b6127108310612b3057612710830492506004015b60648310612b42576064830492506002015b600a8310610c0a5760010192915050565b60005473ffffffffffffffffffffffffffffffffffffffff8516612ba3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600003612bdd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c01811690920217909155858452600490925290912080547fffffffff000000000000000000000000000000000000000000000000000000001690921774010000000000000000000000000000000000000000429092169190910217905580808501838015612cf8575073ffffffffffffffffffffffffffffffffffffffff87163b15155b15612da6575b604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612d56600088848060010195508861280c565b612d8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612cfe578260005414612da157600080fd5b612df8565b5b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612da7575b50600055610fab565b6000818310612e1d576000828152602084905260409020611279565b6000838152602083905260409020611279565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146112ce57600080fd5b600060208284031215612e7057600080fd5b813561127981612e30565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612ed357612ed3612e7b565b604052919050565b600082601f830112612eec57600080fd5b8135602067ffffffffffffffff821115612f0857612f08612e7b565b8160051b612f17828201612eaa565b9283528481018201928281019087851115612f3157600080fd5b83870192505b84831015612f5057823582529183019190830190612f37565b979650505050505050565b600080600060608486031215612f7057600080fd5b8335925060208401359150604084013567ffffffffffffffff811115612f9557600080fd5b612fa186828701612edb565b9150509250925092565b60005b83811015612fc6578181015183820152602001612fae565b50506000910152565b60008151808452612fe7816020860160208601612fab565b601f01601f19169290920160200192915050565b6020815260006112796020830184612fcf565b60006020828403121561302057600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461304b57600080fd5b919050565b6000806040838503121561306357600080fd5b61306c83613027565b946020939093013593505050565b60008060006060848603121561308f57600080fd5b61309884613027565b92506130a660208501613027565b9150604084013590509250925092565b600080604083850312156130c957600080fd5b823567ffffffffffffffff8111156130e057600080fd5b6130ec85828601612edb565b95602094909401359450505050565b60006020828403121561310d57600080fd5b61127982613027565b6020808252825182820181905260009190848201906040850190845b8181101561314e57835183529284019291840191600101613132565b50909695505050505050565b600067ffffffffffffffff83111561317457613174612e7b565b6131876020601f19601f86011601612eaa565b905082815283838301111561319b57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156131c457600080fd5b813567ffffffffffffffff8111156131db57600080fd5b8201601f810184136131ec57600080fd5b6129608482356020840161315a565b8035801515811461304b57600080fd5b60006020828403121561321d57600080fd5b611279826131fb565b6000806040838503121561323957600080fd5b61324283613027565b9150613250602084016131fb565b90509250929050565b6000806000806080858703121561326f57600080fd5b61327885613027565b935061328660208601613027565b925060408501359150606085013567ffffffffffffffff8111156132a957600080fd5b8501601f810187136132ba57600080fd5b6132c98782356020840161315a565b91505092959194509250565b6000602082840312156132e757600080fd5b813567ffffffffffffffff8111156132fe57600080fd5b61296084828501612edb565b6000806040838503121561331d57600080fd5b50508035926020909101359150565b6000806040838503121561333f57600080fd5b61334883613027565b915061325060208401613027565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417610c0a57610c0a613356565b80820180821115610c0a57610c0a613356565b600181811c908216806133c357607f821691505b6020821081036133fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60006020828403121561341457600080fd5b5051919050565b6000600019820361342e5761342e613356565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b601f82111561118f57600081815260208120601f850160051c8101602086101561348b5750805b601f850160051c820191505b818110156134aa57828155600101613497565b505050505050565b815167ffffffffffffffff8111156134cc576134cc612e7b565b6134e0816134da84546133af565b84613464565b602080601f83116001811461351557600084156134fd5750858301515b600019600386901b1c1916600185901b1785556134aa565b600085815260208120601f198616915b8281101561354457888601518255948401946001909101908401613525565b50858210156135625787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351613584818460208801612fab565b835190830190613598818360208801612fab565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526136086080830184612fcf565b9695505050505050565b60006020828403121561362457600080fd5b815161127981612e3056fea264697066735822122004af7881a128688ac8c0c31905c90804c867edf47f9cf854d5f48b4c004cc94a64736f6c63430008120033

Deployed Bytecode Sourcemap

72307:9327:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54787:305;;;;;;;;;;-1:-1:-1;54787:305:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;54787:305:0;;;;;;;;74926:1173;;;;;;:::i;:::-;;:::i;:::-;;72529:51;;;;;;;;;;;;;;;;;;;2518:25:1;;;2506:2;2491:18;72529:51:0;2372:177:1;58172:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;72816:48::-;;;;;;;;;;;;;;;;59675:204;;;;;;;;;;-1:-1:-1;59675:204:0;;;;;:::i;:::-;;:::i;:::-;;;3730:42:1;3718:55;;;3700:74;;3688:2;3673:18;59675:204:0;3554:226:1;59238:371:0;;;;;;;;;;-1:-1:-1;59238:371:0;;;;;:::i;:::-;;:::i;78943:116::-;;;;;;;;;;-1:-1:-1;78943:116:0;;;;;:::i;:::-;;:::i;54036:303::-;;;;;;;;;;-1:-1:-1;54290:12:0;;54080:7;54274:13;:28;54036:303;;79793:110;;;;;;;;;;-1:-1:-1;79793:110:0;;;;;:::i;:::-;;:::i;72931:47::-;;;;;;;;;;;;;;;;73179:37;;;;;;;;;;;;;;;;79067:110;;;;;;;;;;-1:-1:-1;79067:110:0;;;;;:::i;:::-;;:::i;60532:170::-;;;;;;;;;;-1:-1:-1;60532:170:0;;;;;:::i;:::-;;:::i;73571:193::-;;;;;;;;;;;;;:::i;79427:116::-;;;;;;;;;;-1:-1:-1;79427:116:0;;;;;:::i;:::-;;:::i;72759:50::-;;;;;;;;;;;;;;;;73037:33;;;;;;;;;;-1:-1:-1;73037:33:0;;;;;;;;;;;73077:30;;;;;;;;;;-1:-1:-1;73077:30:0;;;;;;;;;;;76353:196;;;;;;;;;;-1:-1:-1;76353:196:0;;;;;:::i;:::-;;:::i;81519:112::-;;;:::i;60773:185::-;;;;;;;;;;-1:-1:-1;60773:185:0;;;;;:::i;:::-;;:::i;80790:693::-;;;;;;;;;;-1:-1:-1;80790:693:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;73116:28::-;;;;;;;;;;-1:-1:-1;73116:28:0;;;;;;;;;;;78275:90;;;;;;;;;;-1:-1:-1;78275:90:0;;;;;:::i;:::-;;:::i;80137:91::-;;;;;;;;;;-1:-1:-1;80137:91:0;;;;;:::i;:::-;;:::i;57981:124::-;;;;;;;;;;-1:-1:-1;57981:124:0;;;;;:::i;:::-;;:::i;72455:21::-;;;;;;;;;;;;;:::i;55156:206::-;;;;;;;;;;-1:-1:-1;55156:206:0;;;;;:::i;:::-;;:::i;29982:103::-;;;;;;;;;;;;;:::i;79937:87::-;;;;;;;;;;-1:-1:-1;79937:87:0;;;;;:::i;:::-;;:::i;79669:116::-;;;;;;;;;;-1:-1:-1;79669:116:0;;;;;:::i;:::-;;:::i;80368:::-;;;;;;;;;;-1:-1:-1;80368:116:0;;;;;:::i;:::-;;:::i;72483:23::-;;;;;;;;;;;;;:::i;29341:87::-;;;;;;;;;;-1:-1:-1;29414:6:0;;;;29341:87;;79185:116;;;;;;;;;;-1:-1:-1;79185:116:0;;;;;:::i;:::-;;:::i;72873:51::-;;;;;;;;;;;;;;;;72644;;;;;;;;;;;;;;;;58341:104;;;;;;;;;;;;;:::i;80496:126::-;;;;;;;;;;-1:-1:-1;80496:126:0;;;;;:::i;:::-;;:::i;74692:186::-;;;;;;;;;;-1:-1:-1;74692:186:0;;;;;:::i;:::-;;:::i;59951:279::-;;;;;;;;;;-1:-1:-1;59951:279:0;;;;;:::i;:::-;;:::i;73002:28::-;;;;;;;;;;-1:-1:-1;73002:28:0;;;;;;;;80654:128;;;;;;;;;;-1:-1:-1;80654:128:0;;;;;:::i;:::-;;:::i;61029:369::-;;;;;;;;;;-1:-1:-1;61029:369:0;;;;;:::i;:::-;;:::i;78373:94::-;;;;;;;;;;-1:-1:-1;78373:94:0;;;;;:::i;:::-;;:::i;77910:225::-;;;;;;;;;;-1:-1:-1;77910:225:0;;;;;:::i;:::-;;:::i;73772:676::-;;;;;;:::i;:::-;;:::i;78475:435::-;;;;;;;;;;-1:-1:-1;78475:435:0;;;;;:::i;:::-;;:::i;80032:97::-;;;;;;;;;;-1:-1:-1;80032:97:0;;;;;:::i;:::-;;:::i;76594:1071::-;;;;;;:::i;:::-;;:::i;79309:110::-;;;;;;;;;;-1:-1:-1;79309:110:0;;;;;:::i;:::-;;:::i;79551:::-;;;;;;;;;;-1:-1:-1;79551:110:0;;;;;:::i;:::-;;:::i;72403:31::-;;;;;;;;;;;;;;;;73223:42;;;;;;;;;;;;;;;;80236:87;;;;;;;;;;-1:-1:-1;80236:87:0;;;;;:::i;:::-;;:::i;73291:47::-;;;;;;;;;;-1:-1:-1;73291:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;60301:164;;;;;;;;;;-1:-1:-1;60301:164:0;;;;;:::i;:::-;60422:25;;;;60398:4;60422:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;60301:164;72587:48;;;;;;;;;;;;;;;;77704:198;;;;;;;;;;-1:-1:-1;77704:198:0;;;;;:::i;:::-;;:::i;30240:201::-;;;;;;;;;;-1:-1:-1;30240:201:0;;;;;:::i;:::-;;:::i;72702:48::-;;;;;;;;;;;;;;;;54787:305;54889:4;54926:40;;;54941:25;54926:40;;:105;;-1:-1:-1;54983:48:0;;;54998:33;54983:48;54926:105;:158;;;-1:-1:-1;43392:25:0;43377:40;;;;55048:36;54906:178;54787:305;-1:-1:-1;;54787:305:0:o;74926:1173::-;76262:28;;9435:66:1;76279:10:0;9422:2:1;9418:15;9414:88;76262:28:0;;;9402:101:1;75065:16:0;;76198:94;;75065:16;;9519:12:1;;76262:28:0;;;;;;;;;;;;76252:39;;;;;;76198:35;:94::i;:::-;76190:135;;;;-1:-1:-1;;;76190:135:0;;9744:2:1;76190:135:0;;;9726:21:1;9783:2;9763:18;;;9756:30;9822;9802:18;;;9795:58;9870:18;;76190:135:0;;;;;;;;;75102:13:::1;::::0;::::1;;::::0;;::::1;;:21;;:13;:21;75094:65;;;::::0;-1:-1:-1;;;75094:65:0;;10101:2:1;75094:65:0::1;::::0;::::1;10083:21:1::0;10140:2;10120:18;;;10113:30;10179:33;10159:18;;;10152:61;10230:18;;75094:65:0::1;9899:355:1::0;75094:65:0::1;75189:1;75180:5;:10;;:24;;;;;75203:1;75194:5;:10;;75180:24;75172:54;;;::::0;-1:-1:-1;;;75172:54:0;;10461:2:1;75172:54:0::1;::::0;::::1;10443:21:1::0;10500:2;10480:18;;;10473:30;10539:19;10519:18;;;10512:47;10576:18;;75172:54:0::1;10259:341:1::0;75172:54:0::1;75239:19;75274:5;75283:1;75274:10:::0;75271:686:::1;;75347:9;75322:22;;:34;;;;:::i;:::-;75309:9;:47;75301:83;;;::::0;-1:-1:-1;;;75301:83:0;;11169:2:1;75301:83:0::1;::::0;::::1;11151:21:1::0;11208:2;11188:18;;;11181:30;11247:25;11227:18;;;11220:53;11290:18;;75301:83:0::1;10967:347:1::0;75301:83:0::1;75413:13;75417:9:::0;75413:1:::1;:13;:::i;:::-;75399:27;;75271:686;;;75447:5;75456:1;75447:10:::0;75444:513:::1;;75520:9;75495:22;;:34;;;;:::i;:::-;75482:9;:47;75474:83;;;::::0;-1:-1:-1;;;75474:83:0;;11169:2:1;75474:83:0::1;::::0;::::1;11151:21:1::0;11208:2;11188:18;;;11181:30;11247:25;11227:18;;;11220:53;11290:18;;75474:83:0::1;10967:347:1::0;75474:83:0::1;75586:13;75590:9:::0;75586:1:::1;:13;:::i;75444:513::-;75620:5;75629:1;75620:10:::0;75617:340:::1;;75693:9;75668:22;;:34;;;;:::i;:::-;75655:9;:47;75647:83;;;::::0;-1:-1:-1;;;75647:83:0;;11169:2:1;75647:83:0::1;::::0;::::1;11151:21:1::0;11208:2;11188:18;;;11181:30;11247:25;11227:18;;;11220:53;11290:18;;75647:83:0::1;10967:347:1::0;75647:83:0::1;75759:13;75763:9:::0;75759:1:::1;:13;:::i;75617:340::-;75793:5;75802:1;75793:10:::0;75790:167:::1;;75866:9;75841:22;;:34;;;;:::i;:::-;75828:9;:47;75820:83;;;::::0;-1:-1:-1;;;75820:83:0;;11169:2:1;75820:83:0::1;::::0;::::1;11151:21:1::0;11208:2;11188:18;;;11181:30;11247:25;11227:18;;;11220:53;11290:18;;75820:83:0::1;10967:347:1::0;75820:83:0::1;75932:13;75936:9:::0;75932:1:::1;:13;:::i;:::-;75918:27;;75790:167;76008:9;;75993:11;75977:13;54290:12:::0;;54080:7;54274:13;:28;;54036:303;75977:13:::1;:27;;;;:::i;:::-;:40;;75969:77;;;::::0;-1:-1:-1;;;75969:77:0;;11651:2:1;75969:77:0::1;::::0;::::1;11633:21:1::0;11690:2;11670:18;;;11663:30;11729:26;11709:18;;;11702:54;11773:18;;75969:77:0::1;11449:348:1::0;75969:77:0::1;76057:34;76067:10;76079:11;76057:9;:34::i;:::-;75083:1016;74926:1173:::0;;;;:::o;58172:100::-;58226:13;58259:5;58252:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58172:100;:::o;59675:204::-;59743:7;59768:16;59776:7;59768;:16::i;:::-;59763:64;;59793:34;;;;;;;;;;;;;;59763:64;-1:-1:-1;59847:24:0;;;;:15;:24;;;;;;;;;59675:204::o;59238:371::-;59311:13;59327:24;59343:7;59327:15;:24::i;:::-;59311:40;;59372:5;59366:11;;:2;:11;;;59362:48;;59386:24;;;;;;;;;;;;;;59362:48;27972:10;59427:21;;;;;;;:63;;-1:-1:-1;59453:37:0;59470:5;27972:10;60301:164;:::i;59453:37::-;59452:38;59427:63;59423:138;;;59514:35;;;;;;;;;;;;;;59423:138;59573:28;59582:2;59586:7;59595:5;59573:8;:28::i;:::-;59300:309;59238:371;;:::o;78943:116::-;29227:13;:11;:13::i;:::-;79021:22:::1;:30:::0;78943:116::o;79793:110::-;29227:13;:11;:13::i;:::-;79868:19:::1;:27:::0;79793:110::o;79067:::-;29227:13;:11;:13::i;:::-;79142:19:::1;:27:::0;79067:110::o;60532:170::-;60666:28;60676:4;60682:2;60686:7;60666:9;:28::i;73571:193::-;73678:25;;73670:56;;;;;73715:10;73670:56;;;3700:74:1;73629:7:0;;;;73678:25;;;;;73670:44;;3673:18:1;;73670:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;79427:116::-;29227:13;:11;:13::i;:::-;79505:22:::1;:30:::0;79427:116::o;76353:196::-;76457:4;76481:60;76500:5;76507:27;;76536:4;76481:18;:60::i;:::-;76474:67;76353:196;-1:-1:-1;;;76353:196:0:o;81519:112::-;29227:13;:11;:13::i;:::-;29414:6;;81575:48:::1;::::0;29414:6;;;;;81601:21:::1;81575:48:::0;::::1;;;::::0;::::1;::::0;;;81601:21;29414:6;81575:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;81519:112::o:0;60773:185::-;60911:39;60928:4;60934:2;60938:7;60911:39;;;;;;;;;;;;:16;:39::i;80790:693::-;80850:16;80879:23;80905:17;80915:6;80905:9;:17::i;:::-;80879:43;;80933:30;80980:15;80966:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;80966:30:0;-1:-1:-1;80933:63:0;-1:-1:-1;81007:22:0;81058:23;81098:345;81123:15;81105;:33;:64;;;;;81160:9;;81142:14;:27;;81105:64;81098:345;;;81186:31;81220:27;;;:11;:27;;;;;;;;;81186:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81268:45;;;81307:6;81289:24;;:9;:14;;;:24;;;81268:45;81264:135;;;81369:14;81334:13;81348:17;;;;:::i;:::-;;;81334:32;;;;;;;;:::i;:::-;;;;;;:49;;;;;81264:135;81415:16;;;;:::i;:::-;;;;81171:272;81098:345;;;-1:-1:-1;81462:13:0;;80790:693;-1:-1:-1;;;;80790:693:0:o;78275:90::-;29227:13;:11;:13::i;:::-;78343:7:::1;:14;78353:4:::0;78343:7;:14:::1;:::i;:::-;;78275:90:::0;:::o;80137:91::-;29227:13;:11;:13::i;:::-;80201:10:::1;:19:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;80137:91::o;57981:124::-;58045:7;58072:20;58084:7;58072:11;:20::i;:::-;:25;;57981:124;-1:-1:-1;;57981:124:0:o;72455:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55156:206::-;55220:7;55244:19;;;55240:60;;55272:28;;;;;;;;;;;;;;55240:60;-1:-1:-1;55326:19:0;;;;;;:12;:19;;;;;:27;;;;55156:206::o;29982:103::-;29227:13;:11;:13::i;:::-;30047:30:::1;30074:1;30047:18;:30::i;:::-;29982:103::o:0;79937:87::-;29227:13;:11;:13::i;:::-;79999:8:::1;:17:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;79937:87::o;79669:116::-;29227:13;:11;:13::i;:::-;79747:22:::1;:30:::0;79669:116::o;80368:::-;29227:13;:11;:13::i;:::-;80446:22:::1;:30:::0;80368:116::o;72483:23::-;;;;;;;:::i;79185:116::-;29227:13;:11;:13::i;:::-;79263:22:::1;:30:::0;79185:116::o;58341:104::-;58397:13;58430:7;58423:14;;;;;:::i;80496:126::-;29227:13;:11;:13::i;:::-;80579:27:::1;:35:::0;80496:126::o;74692:186::-;74791:4;74815:55;74834:5;74841:22;;74865:4;74815:18;:55::i;59951:279::-;27972:10;60042:24;;;;60038:54;;60075:17;;;;;;;;;;;;;;60038:54;27972:10;60105:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;60174:48;;586:41:1;;;60105:42:0;;27972:10;60174:48;;559:18:1;60174:48:0;;;;;;;59951:279;;:::o;80654:128::-;29227:13;:11;:13::i;:::-;80738:25:::1;:36:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;80654:128::o;61029:369::-;61196:28;61206:4;61212:2;61216:7;61196:9;:28::i;:::-;61239:13;;;32568:19;:23;;61239:76;;;;;61259:56;61290:4;61296:2;61300:7;61309:5;61259:30;:56::i;:::-;61258:57;61239:76;61235:156;;;61339:40;;;;;;;;;;;;;;61235:156;61029:369;;;;:::o;78373:94::-;29227:13;:11;:13::i;:::-;78443:9:::1;:16;78455:4:::0;78443:9;:16:::1;:::i;77910:225::-:0;29227:13;:11;:13::i;:::-;78045:9:::1;;78030:11;78014:13;54290:12:::0;;54080:7;54274:13;:28;;54036:303;78014:13:::1;:27;;;;:::i;:::-;:40;;78006:77;;;::::0;-1:-1:-1;;;78006:77:0;;11651:2:1;78006:77:0::1;::::0;::::1;11633:21:1::0;11690:2;11670:18;;;11663:30;11729:26;11709:18;;;11702:54;11773:18;;78006:77:0::1;11449:348:1::0;78006:77:0::1;78094:33;78104:9;78115:11;78094:9;:33::i;73772:676::-:0;74601:28;;9435:66:1;74618:10:0;9422:2:1;9418:15;9414:88;74601:28:0;;;9402:101:1;73867:16:0;;74542:89;;73867:16;;9519:12:1;;74601:28:0;;;;;;;;;;;;74591:39;;;;;;74542:30;:89::i;:::-;74534:130;;;;-1:-1:-1;;;74534:130:0;;9744:2:1;74534:130:0;;;9726:21:1;9783:2;9763:18;;;9756:30;9822;9802:18;;;9795:58;9870:18;;74534:130:0;9542:352:1;74534:130:0;73904:8:::1;::::0;::::1;;:16;;:8:::0;:16:::1;73896:55;;;::::0;-1:-1:-1;;;73896:55:0;;15407:2:1;73896:55:0::1;::::0;::::1;15389:21:1::0;15446:2;15426:18;;;15419:30;15485:28;15465:18;;;15458:56;15531:18;;73896:55:0::1;15205:350:1::0;73896:55:0::1;73986:1;73964:19;74031:27;:25;:27::i;:::-;74000:58:::0;-1:-1:-1;74074:24:0;;74071:94:::1;;74129:24;:20:::0;74152:1:::1;74129:24;:::i;:::-;74115:38;;74071:94;74202:10;74186:27;::::0;;;:15:::1;:27;::::0;;;;;::::1;;74185:28;74177:83;;;::::0;-1:-1:-1;;;74177:83:0;;15762:2:1;74177:83:0::1;::::0;::::1;15744:21:1::0;15801:2;15781:18;;;15774:30;15840:34;15820:18;;;15813:62;15911:12;15891:18;;;15884:40;15941:19;;74177:83:0::1;15560:406:1::0;74177:83:0::1;74287:10;74271:27;::::0;;;:15:::1;:27;::::0;;;;:34;;;::::1;74301:4;74271:34;::::0;;74357:9:::1;::::0;74342:11;74326:13:::1;54290:12:::0;;54080:7;54274:13;:28;;54036:303;74326:13:::1;:27;;;;:::i;:::-;:40;;74318:77;;;::::0;-1:-1:-1;;;74318:77:0;;11651:2:1;74318:77:0::1;::::0;::::1;11633:21:1::0;11690:2;11670:18;;;11663:30;11729:26;11709:18;;;11702:54;11773:18;;74318:77:0::1;11449:348:1::0;74318:77:0::1;74406:34;74416:10;74428:11;74406:9;:34::i;78475:435::-:0;78549:13;78583:17;78591:8;78583:7;:17::i;:::-;78575:67;;;;-1:-1:-1;;;78575:67:0;;16173:2:1;78575:67:0;;;16155:21:1;16212:2;16192:18;;;16185:30;16251:34;16231:18;;;16224:62;16322:7;16302:18;;;16295:35;16347:19;;78575:67:0;15971:401:1;78575:67:0;78659:8;;;;;;;:17;;78671:5;78659:17;78655:66;;78700:9;78693:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78475:435;;;:::o;78655:66::-;78733:28;78764:10;:8;:10::i;:::-;78733:41;;78823:1;78798:14;78792:28;:32;:110;;;;;;;;;;;;;;;;;78851:14;78867:19;:8;:17;:19::i;:::-;78834:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78785:117;78475:435;-1:-1:-1;;;78475:435:0:o;80032:97::-;29227:13;:11;:13::i;:::-;80099::::1;:22:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;80032:97::o;76594:1071::-;76686:10;;;;;;;:18;;76700:4;76686:18;76678:59;;;;-1:-1:-1;;;76678:59:0;;17247:2:1;76678:59:0;;;17229:21:1;17286:2;17266:18;;;17259:30;17325;17305:18;;;17298:58;17373:18;;76678:59:0;17045:352:1;76678:59:0;76767:1;76758:5;:10;;:24;;;;;76781:1;76772:5;:10;;76758:24;76750:54;;;;-1:-1:-1;;;76750:54:0;;10461:2:1;76750:54:0;;;10443:21:1;10500:2;10480:18;;;10473:30;10539:19;10519:18;;;10512:47;10576:18;;76750:54:0;10259:341:1;76750:54:0;76817:19;76852:5;76861:1;76852:10;76849:674;;76922:9;76900:19;;:31;;;;:::i;:::-;76887:9;:44;76879:80;;;;-1:-1:-1;;;76879:80:0;;11169:2:1;76879:80:0;;;11151:21:1;11208:2;11188:18;;;11181:30;11247:25;11227:18;;;11220:53;11290:18;;76879:80:0;10967:347:1;76879:80:0;76988:13;76992:9;76988:1;:13;:::i;:::-;76974:27;;76849:674;;;77022:5;77031:1;77022:10;77019:504;;77092:9;77070:19;;:31;;;;:::i;:::-;77057:9;:44;77049:80;;;;-1:-1:-1;;;77049:80:0;;11169:2:1;77049:80:0;;;11151:21:1;11208:2;11188:18;;;11181:30;11247:25;11227:18;;;11220:53;11290:18;;77049:80:0;10967:347:1;77049:80:0;77158:13;77162:9;77158:1;:13;:::i;77019:504::-;77192:5;77201:1;77192:10;77189:334;;77262:9;77240:19;;:31;;;;:::i;:::-;77227:9;:44;77219:80;;;;-1:-1:-1;;;77219:80:0;;11169:2:1;77219:80:0;;;11151:21:1;11208:2;11188:18;;;11181:30;11247:25;11227:18;;;11220:53;11290:18;;77219:80:0;10967:347:1;77219:80:0;77328:13;77332:9;77328:1;:13;:::i;77189:334::-;77362:5;77371:1;77362:10;77359:164;;77432:9;77410:19;;:31;;;;:::i;:::-;77397:9;:44;77389:80;;;;-1:-1:-1;;;77389:80:0;;11169:2:1;77389:80:0;;;11151:21:1;11208:2;11188:18;;;11181:30;11247:25;11227:18;;;11220:53;11290:18;;77389:80:0;10967:347:1;77389:80:0;77498:13;77502:9;77498:1;:13;:::i;:::-;77484:27;;77359:164;77574:9;;77559:11;77543:13;54290:12;;54080:7;54274:13;:28;;54036:303;77543:13;:27;;;;:::i;:::-;:40;;77535:77;;;;-1:-1:-1;;;77535:77:0;;11651:2:1;77535:77:0;;;11633:21:1;11690:2;11670:18;;;11663:30;11729:26;11709:18;;;11702:54;11773:18;;77535:77:0;11449:348:1;77535:77:0;77623:34;77633:10;77645:11;77623:9;:34::i;79309:110::-;29227:13;:11;:13::i;:::-;79384:19:::1;:27:::0;79309:110::o;79551:::-;29227:13;:11;:13::i;:::-;79626:19:::1;:27:::0;79551:110::o;80236:87::-;29227:13;:11;:13::i;:::-;80298:8:::1;:17:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;80236:87::o;77704:198::-;29227:13;:11;:13::i;:::-;77811:9:::1;;77796:11;77780:13;54290:12:::0;;54080:7;54274:13;:28;;54036:303;77780:13:::1;:27;;;;:::i;:::-;:40;;77772:77;;;::::0;-1:-1:-1;;;77772:77:0;;11651:2:1;77772:77:0::1;::::0;::::1;11633:21:1::0;11690:2;11670:18;;;11663:30;11729:26;11709:18;;;11702:54;11773:18;;77772:77:0::1;11449:348:1::0;77772:77:0::1;77860:34;77870:10;77882:11;77860:9;:34::i;30240:201::-:0;29227:13;:11;:13::i;:::-;30329:22:::1;::::0;::::1;30321:73;;;::::0;-1:-1:-1;;;30321:73:0;;17604:2:1;30321:73:0::1;::::0;::::1;17586:21:1::0;17643:2;17623:18;;;17616:30;17682:34;17662:18;;;17655:62;17753:8;17733:18;;;17726:36;17779:19;;30321:73:0::1;17402:402:1::0;30321:73:0::1;30405:28;30424:8;30405:18;:28::i;61848:104::-:0;61917:27;61927:2;61931:8;61917:27;;;;;;;;;;;;:9;:27::i;61653:187::-;61710:4;61774:13;;61764:7;:23;61734:98;;;;-1:-1:-1;;61805:20:0;;;;:11;:20;;;;;:27;;;;;;61804:28;;61653:187::o;69264:196::-;69379:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;69424:28;;69379:24;;69424:28;;;;;;;69264:196;;;:::o;29506:132::-;29414:6;;29570:23;29414:6;27972:10;29570:23;29562:68;;;;-1:-1:-1;;;29562:68:0;;18011:2:1;29562:68:0;;;17993:21:1;;;18030:18;;;18023:30;18089:34;18069:18;;;18062:62;18141:18;;29562:68:0;17809:356:1;64766:2112:0;64881:35;64919:20;64931:7;64919:11;:20::i;:::-;64994:18;;64881:58;;-1:-1:-1;64952:22:0;;64978:34;;27972:10;64978:34;;;:101;;;-1:-1:-1;65046:18:0;;65029:50;;27972:10;60301:164;:::i;65029:50::-;64978:154;;;-1:-1:-1;27972:10:0;65096:20;65108:7;65096:11;:20::i;:::-;:36;;;64978:154;64952:181;;65151:17;65146:66;;65177:35;;;;;;;;;;;;;;65146:66;65249:4;65227:26;;:13;:18;;;:26;;;65223:67;;65262:28;;;;;;;;;;;;;;65223:67;65305:16;;;65301:52;;65330:23;;;;;;;;;;;;;;65301:52;65474:49;65491:1;65495:7;65504:13;:18;;;65474:8;:49::i;:::-;65819:18;;;;;;;;:12;:18;;;;;;;;:31;;;;;;;;;;-1:-1:-1;;65819:31:0;;;;;;;65865:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;65865:29:0;;;;;;;;;;;65911:20;;;:11;:20;;;;;;:30;;65956:61;;;;;;66001:15;65956:61;;;;;;;;;;;66291:11;;;66321:24;;;;;:29;66291:11;;66321:29;66317:445;;66546:13;;66532:11;:27;66528:219;;;66616:18;;;66584:24;;;:11;:24;;;;;;;;:50;;66699:28;;;;66657:70;;;;;;;;66584:50;;;;66657:70;;;;;;;66528:219;65794:979;66809:7;66805:2;66790:27;;66799:4;66790:27;;;;;;;;;;;;66828:42;61029:369;1222:156;1313:4;1366;1337:25;1350:5;1357:4;1337:12;:25::i;:::-;:33;;1222:156;-1:-1:-1;;;;1222:156:0:o;56811:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;56921:7:0;57004:13;;56997:4;:20;56966:886;;;57038:31;57072:17;;;:11;:17;;;;;;;;;57038:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57108:729;;57158:14;;:28;;;57154:101;;57222:9;56811:1108;-1:-1:-1;;;56811:1108:0:o;57154:101::-;-1:-1:-1;;;57597:6:0;57642:17;;;;:11;:17;;;;;;;;;57630:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57690:28;57686:109;;57758:9;56811:1108;-1:-1:-1;;;56811:1108:0:o;57686:109::-;57557:261;;;57019:833;56966:886;57880:31;;;;;;;;;;;;;;30601:191;30694:6;;;;30711:17;;;;;;;;;;;30744:40;;30694:6;;;30711:17;30694:6;;30744:40;;30675:16;;30744:40;30664:128;30601:191;:::o;69952:667::-;70136:72;;;;;70115:4;;70136:36;;;;;;:72;;27972:10;;70187:4;;70193:7;;70202:5;;70136:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70136:72:0;;;;;;;;-1:-1:-1;;70136:72:0;;;;;;;;;;;;:::i;:::-;;;70132:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70370:6;:13;70387:1;70370:18;70366:235;;70416:40;;;;;;;;;;;;;;70366:235;70559:6;70553:13;70544:6;70540:2;70536:15;70529:38;70132:480;70255:55;;70265:45;70255:55;;-1:-1:-1;70132:480:0;69952:667;;;;;;:::o;78167:100::-;78219:13;78252:7;78245:14;;;;;:::i;24811:716::-;24867:13;24918:14;24935:17;24946:5;24935:10;:17::i;:::-;24955:1;24935:21;24918:38;;24971:20;25005:6;24994:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24994:18:0;-1:-1:-1;24971:41:0;-1:-1:-1;25136:28:0;;;25152:2;25136:28;25193:288;-1:-1:-1;;25225:5:0;25367:8;25362:2;25351:14;;25346:30;25225:5;25333:44;25423:2;25414:11;;;-1:-1:-1;25444:21:0;25193:288;25444:21;-1:-1:-1;25502:6:0;24811:716;-1:-1:-1;;;24811:716:0:o;62315:163::-;62438:32;62444:2;62448:8;62458:5;62465:4;62438:5;:32::i;2021:296::-;2104:7;2147:4;2104:7;2162:118;2186:5;:12;2182:1;:16;2162:118;;;2235:33;2245:12;2259:5;2265:1;2259:8;;;;;;;;:::i;:::-;;;;;;;2235:9;:33::i;:::-;2220:48;-1:-1:-1;2200:3:0;;;;:::i;:::-;;;;2162:118;;;-1:-1:-1;2297:12:0;2021:296;-1:-1:-1;;;2021:296:0:o;21645:948::-;21698:7;;21785:8;21776:17;;21772:106;;21823:8;21814:17;;;-1:-1:-1;21860:2:0;21850:12;21772:106;21905:8;21896:5;:17;21892:106;;21943:8;21934:17;;;-1:-1:-1;21980:2:0;21970:12;21892:106;22025:8;22016:5;:17;22012:106;;22063:8;22054:17;;;-1:-1:-1;22100:2:0;22090:12;22012:106;22145:7;22136:5;:16;22132:103;;22182:7;22173:16;;;-1:-1:-1;22218:1:0;22208:11;22132:103;22262:7;22253:5;:16;22249:103;;22299:7;22290:16;;;-1:-1:-1;22335:1:0;22325:11;22249:103;22379:7;22370:5;:16;22366:103;;22416:7;22407:16;;;-1:-1:-1;22452:1:0;22442:11;22366:103;22496:7;22487:5;:16;22483:68;;22534:1;22524:11;22579:6;21645:948;-1:-1:-1;;21645:948:0:o;62737:1775::-;62876:20;62899:13;62927:16;;;62923:48;;62952:19;;;;;;;;;;;;;;62923:48;62986:8;62998:1;62986:13;62982:44;;63008:18;;;;;;;;;;;;;;62982:44;63377:16;;;;;;;:12;:16;;;;;;;;:44;;63436:49;;;63377:44;;;;;;;;63436:49;;;;63377:44;;;;;;;63436:49;;;;;;;;;;;;;;;;63502:25;;;:11;:25;;;;;;:35;;63552:66;;;;;;63602:15;63552:66;;;;;;;;;;63502:25;63699:23;;;63743:4;:23;;;;-1:-1:-1;63751:13:0;;;32568:19;:23;;63751:15;63739:641;;;63787:314;63818:38;;63843:12;;63818:38;;;;63835:1;;63818:38;;63835:1;;63818:38;63884:69;63923:1;63927:2;63931:14;;;;;;63947:5;63884:30;:69::i;:::-;63879:174;;63989:40;;;;;;;;;;;;;;63879:174;64096:3;64080:12;:19;63787:314;;64182:12;64165:13;;:29;64161:43;;64196:8;;;64161:43;63739:641;;;64245:120;64276:40;;64301:14;;;;;64276:40;;;;64293:1;;64276:40;;64293:1;;64276:40;64360:3;64344:12;:19;64245:120;;63739:641;-1:-1:-1;64394:13:0;:28;64444:60;61029:369;9459:149;9522:7;9553:1;9549;:5;:51;;9684:13;9778:15;;;9814:4;9807:15;;;9861:4;9845:21;;9549:51;;;9684:13;9778:15;;;9814:4;9807:15;;;9861:4;9845:21;;9557:20;9616:268;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:184::-;690:77;687:1;680:88;787:4;784:1;777:15;811:4;808:1;801:15;827:334;898:2;892:9;954:2;944:13;;-1:-1:-1;;940:86:1;928:99;;1057:18;1042:34;;1078:22;;;1039:62;1036:88;;;1104:18;;:::i;:::-;1140:2;1133:22;827:334;;-1:-1:-1;827:334:1:o;1166:712::-;1220:5;1273:3;1266:4;1258:6;1254:17;1250:27;1240:55;;1291:1;1288;1281:12;1240:55;1327:6;1314:20;1353:4;1376:18;1372:2;1369:26;1366:52;;;1398:18;;:::i;:::-;1444:2;1441:1;1437:10;1467:28;1491:2;1487;1483:11;1467:28;:::i;:::-;1529:15;;;1599;;;1595:24;;;1560:12;;;;1631:15;;;1628:35;;;1659:1;1656;1649:12;1628:35;1695:2;1687:6;1683:15;1672:26;;1707:142;1723:6;1718:3;1715:15;1707:142;;;1789:17;;1777:30;;1740:12;;;;1827;;;;1707:142;;;1867:5;1166:712;-1:-1:-1;;;;;;;1166:712:1:o;1883:484::-;1985:6;1993;2001;2054:2;2042:9;2033:7;2029:23;2025:32;2022:52;;;2070:1;2067;2060:12;2022:52;2106:9;2093:23;2083:33;;2163:2;2152:9;2148:18;2135:32;2125:42;;2218:2;2207:9;2203:18;2190:32;2245:18;2237:6;2234:30;2231:50;;;2277:1;2274;2267:12;2231:50;2300:61;2353:7;2344:6;2333:9;2329:22;2300:61;:::i;:::-;2290:71;;;1883:484;;;;;:::o;2554:250::-;2639:1;2649:113;2663:6;2660:1;2657:13;2649:113;;;2739:11;;;2733:18;2720:11;;;2713:39;2685:2;2678:10;2649:113;;;-1:-1:-1;;2796:1:1;2778:16;;2771:27;2554:250::o;2809:330::-;2851:3;2889:5;2883:12;2916:6;2911:3;2904:19;2932:76;3001:6;2994:4;2989:3;2985:14;2978:4;2971:5;2967:16;2932:76;:::i;:::-;3053:2;3041:15;-1:-1:-1;;3037:88:1;3028:98;;;;3128:4;3024:109;;2809:330;-1:-1:-1;;2809:330:1:o;3144:220::-;3293:2;3282:9;3275:21;3256:4;3313:45;3354:2;3343:9;3339:18;3331:6;3313:45;:::i;3369:180::-;3428:6;3481:2;3469:9;3460:7;3456:23;3452:32;3449:52;;;3497:1;3494;3487:12;3449:52;-1:-1:-1;3520:23:1;;3369:180;-1:-1:-1;3369:180:1:o;3785:196::-;3853:20;;3913:42;3902:54;;3892:65;;3882:93;;3971:1;3968;3961:12;3882:93;3785:196;;;:::o;3986:254::-;4054:6;4062;4115:2;4103:9;4094:7;4090:23;4086:32;4083:52;;;4131:1;4128;4121:12;4083:52;4154:29;4173:9;4154:29;:::i;:::-;4144:39;4230:2;4215:18;;;;4202:32;;-1:-1:-1;;;3986:254:1:o;4427:328::-;4504:6;4512;4520;4573:2;4561:9;4552:7;4548:23;4544:32;4541:52;;;4589:1;4586;4579:12;4541:52;4612:29;4631:9;4612:29;:::i;:::-;4602:39;;4660:38;4694:2;4683:9;4679:18;4660:38;:::i;:::-;4650:48;;4745:2;4734:9;4730:18;4717:32;4707:42;;4427:328;;;;;:::o;4760:416::-;4853:6;4861;4914:2;4902:9;4893:7;4889:23;4885:32;4882:52;;;4930:1;4927;4920:12;4882:52;4970:9;4957:23;5003:18;4995:6;4992:30;4989:50;;;5035:1;5032;5025:12;4989:50;5058:61;5111:7;5102:6;5091:9;5087:22;5058:61;:::i;:::-;5048:71;5166:2;5151:18;;;;5138:32;;-1:-1:-1;;;;4760:416:1:o;5181:186::-;5240:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:52;;;5309:1;5306;5299:12;5261:52;5332:29;5351:9;5332:29;:::i;5372:632::-;5543:2;5595:21;;;5665:13;;5568:18;;;5687:22;;;5514:4;;5543:2;5766:15;;;;5740:2;5725:18;;;5514:4;5809:169;5823:6;5820:1;5817:13;5809:169;;;5884:13;;5872:26;;5953:15;;;;5918:12;;;;5845:1;5838:9;5809:169;;;-1:-1:-1;5995:3:1;;5372:632;-1:-1:-1;;;;;;5372:632:1:o;6009:466::-;6074:5;6108:18;6100:6;6097:30;6094:56;;;6130:18;;:::i;:::-;6168:116;6278:4;-1:-1:-1;;6204:2:1;6196:6;6192:15;6188:88;6184:99;6168:116;:::i;:::-;6159:125;;6307:6;6300:5;6293:21;6347:3;6338:6;6333:3;6329:16;6326:25;6323:45;;;6364:1;6361;6354:12;6323:45;6413:6;6408:3;6401:4;6394:5;6390:16;6377:43;6467:1;6460:4;6451:6;6444:5;6440:18;6436:29;6429:40;6009:466;;;;;:::o;6480:451::-;6549:6;6602:2;6590:9;6581:7;6577:23;6573:32;6570:52;;;6618:1;6615;6608:12;6570:52;6658:9;6645:23;6691:18;6683:6;6680:30;6677:50;;;6723:1;6720;6713:12;6677:50;6746:22;;6799:4;6791:13;;6787:27;-1:-1:-1;6777:55:1;;6828:1;6825;6818:12;6777:55;6851:74;6917:7;6912:2;6899:16;6894:2;6890;6886:11;6851:74;:::i;6936:160::-;7001:20;;7057:13;;7050:21;7040:32;;7030:60;;7086:1;7083;7076:12;7101:180;7157:6;7210:2;7198:9;7189:7;7185:23;7181:32;7178:52;;;7226:1;7223;7216:12;7178:52;7249:26;7265:9;7249:26;:::i;7471:254::-;7536:6;7544;7597:2;7585:9;7576:7;7572:23;7568:32;7565:52;;;7613:1;7610;7603:12;7565:52;7636:29;7655:9;7636:29;:::i;:::-;7626:39;;7684:35;7715:2;7704:9;7700:18;7684:35;:::i;:::-;7674:45;;7471:254;;;;;:::o;7730:667::-;7825:6;7833;7841;7849;7902:3;7890:9;7881:7;7877:23;7873:33;7870:53;;;7919:1;7916;7909:12;7870:53;7942:29;7961:9;7942:29;:::i;:::-;7932:39;;7990:38;8024:2;8013:9;8009:18;7990:38;:::i;:::-;7980:48;;8075:2;8064:9;8060:18;8047:32;8037:42;;8130:2;8119:9;8115:18;8102:32;8157:18;8149:6;8146:30;8143:50;;;8189:1;8186;8179:12;8143:50;8212:22;;8265:4;8257:13;;8253:27;-1:-1:-1;8243:55:1;;8294:1;8291;8284:12;8243:55;8317:74;8383:7;8378:2;8365:16;8360:2;8356;8352:11;8317:74;:::i;:::-;8307:84;;;7730:667;;;;;;;:::o;8402:348::-;8486:6;8539:2;8527:9;8518:7;8514:23;8510:32;8507:52;;;8555:1;8552;8545:12;8507:52;8595:9;8582:23;8628:18;8620:6;8617:30;8614:50;;;8660:1;8657;8650:12;8614:50;8683:61;8736:7;8727:6;8716:9;8712:22;8683:61;:::i;8755:248::-;8823:6;8831;8884:2;8872:9;8863:7;8859:23;8855:32;8852:52;;;8900:1;8897;8890:12;8852:52;-1:-1:-1;;8923:23:1;;;8993:2;8978:18;;;8965:32;;-1:-1:-1;8755:248:1:o;9008:260::-;9076:6;9084;9137:2;9125:9;9116:7;9112:23;9108:32;9105:52;;;9153:1;9150;9143:12;9105:52;9176:29;9195:9;9176:29;:::i;:::-;9166:39;;9224:38;9258:2;9247:9;9243:18;9224:38;:::i;10605:184::-;10657:77;10654:1;10647:88;10754:4;10751:1;10744:15;10778:4;10775:1;10768:15;10794:168;10867:9;;;10898;;10915:15;;;10909:22;;10895:37;10885:71;;10936:18;;:::i;11319:125::-;11384:9;;;11405:10;;;11402:36;;;11418:18;;:::i;11802:437::-;11881:1;11877:12;;;;11924;;;11945:61;;11999:4;11991:6;11987:17;11977:27;;11945:61;12052:2;12044:6;12041:14;12021:18;12018:38;12015:218;;12089:77;12086:1;12079:88;12190:4;12187:1;12180:15;12218:4;12215:1;12208:15;12015:218;;11802:437;;;:::o;12244:184::-;12314:6;12367:2;12355:9;12346:7;12342:23;12338:32;12335:52;;;12383:1;12380;12373:12;12335:52;-1:-1:-1;12406:16:1;;12244:184;-1:-1:-1;12244:184:1:o;12433:195::-;12472:3;-1:-1:-1;;12496:5:1;12493:77;12490:103;;12573:18;;:::i;:::-;-1:-1:-1;12620:1:1;12609:13;;12433:195::o;12633:184::-;12685:77;12682:1;12675:88;12782:4;12779:1;12772:15;12806:4;12803:1;12796:15;12948:545;13050:2;13045:3;13042:11;13039:448;;;13086:1;13111:5;13107:2;13100:17;13156:4;13152:2;13142:19;13226:2;13214:10;13210:19;13207:1;13203:27;13197:4;13193:38;13262:4;13250:10;13247:20;13244:47;;;-1:-1:-1;13285:4:1;13244:47;13340:2;13335:3;13331:12;13328:1;13324:20;13318:4;13314:31;13304:41;;13395:82;13413:2;13406:5;13403:13;13395:82;;;13458:17;;;13439:1;13428:13;13395:82;;;13399:3;;;12948:545;;;:::o;13729:1471::-;13855:3;13849:10;13882:18;13874:6;13871:30;13868:56;;;13904:18;;:::i;:::-;13933:97;14023:6;13983:38;14015:4;14009:11;13983:38;:::i;:::-;13977:4;13933:97;:::i;:::-;14085:4;;14149:2;14138:14;;14166:1;14161:782;;;;14987:1;15004:6;15001:89;;;-1:-1:-1;15056:19:1;;;15050:26;15001:89;-1:-1:-1;;13626:1:1;13622:11;;;13618:84;13614:89;13604:100;13710:1;13706:11;;;13601:117;15103:81;;14131:1063;;14161:782;12895:1;12888:14;;;12932:4;12919:18;;-1:-1:-1;;14197:79:1;;;14374:236;14388:7;14385:1;14382:14;14374:236;;;14477:19;;;14471:26;14456:42;;14569:27;;;;14537:1;14525:14;;;;14404:19;;14374:236;;;14378:3;14638:6;14629:7;14626:19;14623:261;;;14699:19;;;14693:26;-1:-1:-1;;14782:1:1;14778:14;;;14794:3;14774:24;14770:97;14766:102;14751:118;14736:134;;14623:261;-1:-1:-1;;;;;14930:1:1;14914:14;;;14910:22;14897:36;;-1:-1:-1;13729:1471:1:o;16377:663::-;16657:3;16695:6;16689:13;16711:66;16770:6;16765:3;16758:4;16750:6;16746:17;16711:66;:::i;:::-;16840:13;;16799:16;;;;16862:70;16840:13;16799:16;16909:4;16897:17;;16862:70;:::i;:::-;16997:7;16954:20;;16983:22;;;17032:1;17021:13;;16377:663;-1:-1:-1;;;;16377:663:1:o;18170:512::-;18364:4;18393:42;18474:2;18466:6;18462:15;18451:9;18444:34;18526:2;18518:6;18514:15;18509:2;18498:9;18494:18;18487:43;;18566:6;18561:2;18550:9;18546:18;18539:34;18609:3;18604:2;18593:9;18589:18;18582:31;18630:46;18671:3;18660:9;18656:19;18648:6;18630:46;:::i;:::-;18622:54;18170:512;-1:-1:-1;;;;;;18170:512:1:o;18687:249::-;18756:6;18809:2;18797:9;18788:7;18784:23;18780:32;18777:52;;;18825:1;18822;18815:12;18777:52;18857:9;18851:16;18876:30;18900:5;18876:30;:::i

Swarm Source

ipfs://04af7881a128688ac8c0c31905c90804c867edf47f9cf854d5f48b4c004cc94a
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.