ETH Price: $2,270.57 (-6.19%)

Pioneers (PIONEER)
 

Overview

TokenID

213

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
Pioneers

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-17
*/

// File @openzeppelin/contracts/utils/[email protected]

 
// 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/[email protected]

 
// 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/introspection/[email protected]


// 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/token/ERC721/[email protected]


// 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/[email protected]


// 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 @openzeppelin/contracts/utils/introspection/[email protected]

// 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/utils/math/[email protected]

 
// 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/math/[email protected]

 
// 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/[email protected]

 
// 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 contracts/IOperatorFilterRegistry.sol

 
pragma solidity ^0.8.13;

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


// File contracts/OperatorFilterer.sol

 
pragma solidity ^0.8.13;
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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


// File contracts/DefaultOperatorFilterer.sol

 
pragma solidity ^0.8.13;
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

 
// 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/[email protected]

 
// 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 contracts/ERC721A.sol

 

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/cryptography/[email protected]

 
// 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/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.4;
pragma abicoder v2;
contract Pioneers is ERC721A, Ownable, DefaultOperatorFilterer  {
  using SafeMath for uint256;
    using Strings for uint256;
    bytes32 public merkleRoot_whitelist;
    bytes32 public merkleRoot_sheriffs;
    uint256 public MAX_SUPPLY= 2048;
    uint256 public MAX_PUBLIC_SUPPLY = 1724; // 324 reserved for OGs
    uint256 public PRICE = 0.093 ether;
    uint256 public WL_PRICE = 0.093 ether;
    uint256 public SHERIFF_PRICE = 0 ether;
    string public baseTokenURI;

    bool public whitelistSaleIsActive;
    bool public sheriffSaleIsActive;
    bool public publicSaleIsActive;
    bool public saleIsActive;

    address private wallet1 = 0xB6180A2E10f546ee979B22F39D7B6f146844Fd1A;
    address public Authorized = 0xB6180A2E10f546ee979B22F39D7B6f146844Fd1A;

    mapping (address => uint256) private _whitelistedMints;
    mapping (address => uint256) private _sheriffMints;

    uint256 public maxPurchase = 50;
    uint256 public maxTx = 50;

    constructor() ERC721A("Pioneers", "PIONEER") {}

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

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

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

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

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

    function flipSheriffSaleState() external onlyOwner {
        sheriffSaleIsActive = !sheriffSaleIsActive;
    }

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

    function flipPublicSaleState() external onlyOwner {
        publicSaleIsActive = !publicSaleIsActive;
    }


    function updateMerkleRootWhiteList(bytes32 newMerkleRoot) external onlyOwner {
        merkleRoot_whitelist = newMerkleRoot;
    }

    function updateMerkleRootSheriffs(bytes32 newMerkleRoot) external onlyOwner {
        merkleRoot_sheriffs = newMerkleRoot;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
                string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : "";
    }

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

    function sheriffMint(uint256 numberOfTokens, bytes32[] calldata merkleProof) external payable callerIsUser {
        require(saleIsActive, "Hold your horses, sale is not active yet");
        require(sheriffSaleIsActive, "Even Sheriffs can't mint yet");
        require(totalSupply().add(numberOfTokens) <= MAX_SUPPLY, "Total Supply has been minted");
        require(_sheriffMints[msg.sender] == 0, "You have already minted your tokens");

        // no price, free mint
        require(MerkleProof.verify(merkleProof, merkleRoot_sheriffs,  keccak256(abi.encodePacked(msg.sender))  ), "Invalid proof");
                _safeMint(msg.sender, numberOfTokens);
                _sheriffMints[msg.sender] = numberOfTokens;
    }

    function whitelistMint(uint256 numberOfTokens, bytes32[] calldata merkleProof ) payable external callerIsUser {
        require(saleIsActive, "Hold your horses, sale is not active yet");
        require(whitelistSaleIsActive, "Whitelist Sale must be active to mint");
        require(totalSupply().add(numberOfTokens) <= MAX_PUBLIC_SUPPLY, "Total public supply has been minted");
        
        require(msg.value == WL_PRICE.mul(numberOfTokens), "Ether value sent is not correct");
        require(_whitelistedMints[msg.sender] == 0, "You have already minted your tokens");

        // Verify the merkle proof
        require(MerkleProof.verify(merkleProof, merkleRoot_whitelist,  keccak256(abi.encodePacked(msg.sender))  ), "Invalid proof");
                _safeMint(msg.sender, numberOfTokens);
                _whitelistedMints[msg.sender] = numberOfTokens;
    }

    function mint(uint256 numberOfTokens) external payable callerIsUser {
        require(saleIsActive, "Hold your horses, sale is not active yet");
        require(publicSaleIsActive, "Sale must be active to mint");
        require(totalSupply().add(numberOfTokens) <= MAX_PUBLIC_SUPPLY, "Total public supply has been minted");
        require(totalSupply().add(numberOfTokens) <= MAX_SUPPLY, "Total Supply has been minted");

        require(numberMinted(msg.sender).add(numberOfTokens) <= maxPurchase,"Exceeds Max mints allowed per wallet");
        require(numberOfTokens > 0 && numberOfTokens <= maxTx, "too many for one tx");

        require(msg.value == PRICE.mul(numberOfTokens), "Ether value sent is not correct");
        
        _safeMint(msg.sender, numberOfTokens);
    }

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

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

    function giveAway(uint256 numberOfTokens, address to) external onlyOwner {
        require(totalSupply().add(numberOfTokens) <= MAX_SUPPLY, "Total supply has been minted");
        _safeMint(to, numberOfTokens);
    }

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

    function setMaxPublicSupply(uint256 _mxSupply) public onlyAuthorized {
        MAX_PUBLIC_SUPPLY = _mxSupply;
    }

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

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

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

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

    /*
  --Opensea Filterer--
  */

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Authorized","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHERIFF_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSheriffSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot_sheriffs","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot_whitelist","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mxSupply","type":"uint256"}],"name":"setMaxPublicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_txLimit","type":"uint256"}],"name":"setMaxTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlPrice","type":"uint256"}],"name":"setPriceWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"sheriffMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sheriffSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRootSheriffs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRootWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610800600b556106bc600c5567014a6701dc1c8000600d5567014a6701dc1c8000600e556000600f5573b6180a2e10f546ee979b22f39d7b6f146844fd1a601160046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b6180a2e10f546ee979b22f39d7b6f146844fd1a601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060326015556032601655348015620000ee57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f50696f6e656572730000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f50494f4e4545520000000000000000000000000000000000000000000000000081525081600290805190602001906200018a929190620004b0565b508060039080519060200190620001a3929190620004b0565b50620001b4620003d960201b60201c565b6000819055505050620001dc620001d0620003e260201b60201c565b620003ea60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003d157801562000297576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200025d929190620005a5565b600060405180830381600087803b1580156200027857600080fd5b505af11580156200028d573d6000803e3d6000fd5b50505050620003d0565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000351576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000317929190620005a5565b600060405180830381600087803b1580156200033257600080fd5b505af115801562000347573d6000803e3d6000fd5b50505050620003cf565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200039a9190620005d2565b600060405180830381600087803b158015620003b557600080fd5b505af1158015620003ca573d6000803e3d6000fd5b505050505b5b5b505062000653565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004be906200061e565b90600052602060002090601f016020900481019282620004e257600085556200052e565b82601f10620004fd57805160ff19168380011785556200052e565b828001600101855582156200052e579182015b828111156200052d57825182559160200191906001019062000510565b5b5090506200053d919062000541565b5090565b5b808211156200055c57600081600090555060010162000542565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200058d8262000560565b9050919050565b6200059f8162000580565b82525050565b6000604082019050620005bc600083018562000594565b620005cb602083018462000594565b9392505050565b6000602082019050620005e9600083018462000594565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200063757607f821691505b6020821081036200064d576200064c620005ef565b5b50919050565b61554080620006636000396000f3fe6080604052600436106102e45760003560e01c8063715018a611610190578063b88d4fde116100dc578063dc33e68111610095578063eacfc0ae1161006f578063eacfc0ae14610a77578063eb8d244414610aa2578063ece7f9d914610acd578063f2fde38b14610af8576102e4565b8063dc33e681146109d4578063e5bcf06314610a11578063e985e9c514610a3a576102e4565b8063b88d4fde146108e5578063c3a8678b1461090e578063c87b56dd14610939578063d1beca6414610976578063d2cab0561461098d578063d547cfb7146109a9576102e4565b806391b7f5ed11610149578063a0712d6811610123578063a0712d6814610860578063a10866ef1461087c578063a22cb46514610893578063b82311a5146108bc576102e4565b806391b7f5ed146107e157806395d89b411461080a578063977b055b14610835576102e4565b8063715018a6146107095780637437681e1461072057806381d8488f1461074b578063853828b6146107745780638d859f3e1461078b5780638da5cb5b146107b6576102e4565b806332cb6b0c1161024f57806355f804b311610208578063684e915f116101e2578063684e915f1461065f5780636bc5b70c146106765780636ebf8cf6146106a157806370a08231146106cc576102e4565b806355f804b3146105d05780636352211e146105f957806364f5a5bb14610636576102e4565b806332cb6b0c1461050957806334918dfd146105345780633ccfd60b1461054b57806342842e0e1461056257806345e313aa1461058b57806348684ffc146105b4576102e4565b806318160ddd116102a157806318160ddd1461040d5780631fb1b1511461043857806323b872dd14610461578063261d3b211461048a5780632a47f799146104b357806331c3c7a0146104de576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc14610351578063095ea7b31461038e5780630fcf2e75146103b757806310b5454d146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613ffc565b610b21565b60405161031d9190614044565b60405180910390f35b34801561033257600080fd5b5061033b610c03565b60405161034891906140f8565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190614150565b610c95565b60405161038591906141be565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190614205565b610d11565b005b3480156103c357600080fd5b506103cc610e1b565b6040516103d99190614044565b60405180910390f35b3480156103ee57600080fd5b506103f7610e2e565b6040516104049190614044565b60405180910390f35b34801561041957600080fd5b50610422610e41565b60405161042f9190614254565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a91906142a5565b610e58565b005b34801561046d57600080fd5b50610488600480360381019061048391906142d2565b610e6a565b005b34801561049657600080fd5b506104b160048036038101906104ac9190614325565b61104c565b005b3480156104bf57600080fd5b506104c86110c0565b6040516104d59190614254565b60405180910390f35b3480156104ea57600080fd5b506104f36110c6565b6040516105009190614254565b60405180910390f35b34801561051557600080fd5b5061051e6110cc565b60405161052b9190614254565b60405180910390f35b34801561054057600080fd5b506105496110d2565b005b34801561055757600080fd5b50610560611106565b005b34801561056e57600080fd5b50610589600480360381019061058491906142d2565b61115d565b005b34801561059757600080fd5b506105b260048036038101906105ad9190614150565b61133f565b005b6105ce60048036038101906105c991906143ca565b611416565b005b3480156105dc57600080fd5b506105f760048036038101906105f2919061455a565b611708565b005b34801561060557600080fd5b50610620600480360381019061061b9190614150565b61172a565b60405161062d91906141be565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190614150565b611740565b005b34801561066b57600080fd5b50610674611817565b005b34801561068257600080fd5b5061068b61184b565b6040516106989190614044565b60405180910390f35b3480156106ad57600080fd5b506106b661185e565b6040516106c39190614254565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee91906145a3565b611864565b6040516107009190614254565b60405180910390f35b34801561071557600080fd5b5061071e611933565b005b34801561072c57600080fd5b50610735611947565b6040516107429190614254565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190614150565b61194d565b005b34801561078057600080fd5b50610789611a24565b005b34801561079757600080fd5b506107a0611b6c565b6040516107ad9190614254565b60405180910390f35b3480156107c257600080fd5b506107cb611b72565b6040516107d891906141be565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190614150565b611b9c565b005b34801561081657600080fd5b5061081f611c73565b60405161082c91906140f8565b60405180910390f35b34801561084157600080fd5b5061084a611d05565b6040516108579190614254565b60405180910390f35b61087a60048036038101906108759190614150565b611d0b565b005b34801561088857600080fd5b50610891611fe6565b005b34801561089f57600080fd5b506108ba60048036038101906108b591906145fc565b61201a565b005b3480156108c857600080fd5b506108e360048036038101906108de91906142a5565b612191565b005b3480156108f157600080fd5b5061090c600480360381019061090791906146dd565b6121a3565b005b34801561091a57600080fd5b50610923612388565b604051610930919061476f565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190614150565b61238e565b60405161096d91906140f8565b60405180910390f35b34801561098257600080fd5b5061098b61242c565b005b6109a760048036038101906109a291906143ca565b612460565b005b3480156109b557600080fd5b506109be6127a8565b6040516109cb91906140f8565b60405180910390f35b3480156109e057600080fd5b506109fb60048036038101906109f691906145a3565b612836565b604051610a089190614254565b60405180910390f35b348015610a1d57600080fd5b50610a386004803603810190610a339190614150565b612848565b005b348015610a4657600080fd5b50610a616004803603810190610a5c919061478a565b61291f565b604051610a6e9190614044565b60405180910390f35b348015610a8357600080fd5b50610a8c6129b3565b604051610a9991906141be565b60405180910390f35b348015610aae57600080fd5b50610ab76129d9565b604051610ac49190614044565b60405180910390f35b348015610ad957600080fd5b50610ae26129ec565b604051610aef919061476f565b60405180910390f35b348015610b0457600080fd5b50610b1f6004803603810190610b1a91906145a3565b6129f2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bfc5750610bfb82612a75565b5b9050919050565b606060028054610c12906147f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3e906147f9565b8015610c8b5780601f10610c6057610100808354040283529160200191610c8b565b820191906000526020600020905b815481529060010190602001808311610c6e57829003601f168201915b5050505050905090565b6000610ca082612adf565b610cd6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d1c8261172a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d83576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610da2612b2d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610dd45750610dd281610dcd612b2d565b61291f565b155b15610e0b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e16838383612b35565b505050565b601160029054906101000a900460ff1681565b601160009054906101000a900460ff1681565b6000610e4b612be7565b6001546000540303905090565b610e60612bf0565b80600a8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561103a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610edc57610ed7848484612c6e565b611046565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610f2592919061482a565b602060405180830381865afa158015610f42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f669190614868565b8015610ff857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610fb692919061482a565b602060405180830381865afa158015610fd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff79190614868565b5b61103957336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161103091906141be565b60405180910390fd5b5b611045848484612c6e565b5b50505050565b611054612bf0565b600b5461107183611063610e41565b612c7e90919063ffffffff16565b11156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906148e1565b60405180910390fd5b6110bc8183612c94565b5050565b600c5481565b600e5481565b600b5481565b6110da612bf0565b601160039054906101000a900460ff1615601160036101000a81548160ff021916908315150217905550565b61110e612bf0565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611159573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561132d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111cf576111ca848484612cb2565b611339565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161121892919061482a565b602060405180830381865afa158015611235573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112599190614868565b80156112eb57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112a992919061482a565b602060405180830381865afa1580156112c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ea9190614868565b5b61132c57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161132391906141be565b60405180910390fd5b5b611338848484612cb2565b5b50505050565b611347611b72565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806113cd5750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114039061494d565b60405180910390fd5b8060158190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906149b9565b60405180910390fd5b601160039054906101000a900460ff166114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90614a4b565b60405180910390fd5b601160019054906101000a900460ff16611522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151990614ab7565b60405180910390fd5b600b5461153f84611531610e41565b612c7e90919063ffffffff16565b1115611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790614b23565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f990614bb5565b60405180910390fd5b611676828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a543360405160200161165b9190614c1d565b60405160208183030381529060405280519060200120612cd2565b6116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90614c84565b60405180910390fd5b6116bf3384612c94565b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b611710612bf0565b8060109080519060200190611726929190613eaa565b5050565b600061173582612ce9565b600001519050919050565b611748611b72565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117ce5750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61180d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118049061494d565b60405180910390fd5b8060168190555050565b61181f612bf0565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b601160019054906101000a900460ff1681565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118cb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61193b612bf0565b6119456000612f78565b565b60165481565b611955611b72565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806119db5750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a119061494d565b60405180910390fd5b80600e8190555050565b611a2c612bf0565b60004711611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690614cf0565b60405180910390fd5b60004790506000601160049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611ad66064611ac860648661303e90919063ffffffff16565b61305490919063ffffffff16565b604051611ae290614d41565b60006040518083038185875af1925050503d8060008114611b1f576040519150601f19603f3d011682016040523d82523d6000602084013e611b24565b606091505b5050905080611b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5f90614da2565b60405180910390fd5b5050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ba4611b72565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611c2a5750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c609061494d565b60405180910390fd5b80600d8190555050565b606060038054611c82906147f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611cae906147f9565b8015611cfb5780601f10611cd057610100808354040283529160200191611cfb565b820191906000526020600020905b815481529060010190602001808311611cde57829003601f168201915b5050505050905090565b60155481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d70906149b9565b60405180910390fd5b601160039054906101000a900460ff16611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90614a4b565b60405180910390fd5b601160029054906101000a900460ff16611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e90614e0e565b60405180910390fd5b600c54611e3482611e26610e41565b612c7e90919063ffffffff16565b1115611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c90614ea0565b60405180910390fd5b600b54611e9282611e84610e41565b612c7e90919063ffffffff16565b1115611ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eca90614b23565b60405180910390fd5b601554611ef182611ee333612836565b612c7e90919063ffffffff16565b1115611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2990614f32565b60405180910390fd5b600081118015611f4457506016548111155b611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90614f9e565b60405180910390fd5b611f9881600d5461303e90919063ffffffff16565b3414611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd09061500a565b60405180910390fd5b611fe33382612c94565b50565b611fee612bf0565b601160029054906101000a900460ff1615601160026101000a81548160ff021916908315150217905550565b612022612b2d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612086576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612093612b2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612140612b2d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121859190614044565b60405180910390a35050565b612199612bf0565b8060098190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612374573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612216576122118585858561306a565b612381565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161225f92919061482a565b602060405180830381865afa15801561227c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a09190614868565b801561233257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016122f092919061482a565b602060405180830381865afa15801561230d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123319190614868565b5b61237357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161236a91906141be565b60405180910390fd5b5b6123808585858561306a565b5b5050505050565b600a5481565b606061239982612adf565b6123cf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006123d96130e6565b905060008151116123f95760405180602001604052806000815250612424565b8061240384613178565b6040516020016124149291906150b2565b6040516020818303038152906040525b915050919050565b612434612bf0565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146124ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c5906149b9565b60405180910390fd5b601160039054906101000a900460ff1661251d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251490614a4b565b60405180910390fd5b601160009054906101000a900460ff1661256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390615153565b60405180910390fd5b600c546125898461257b610e41565b612c7e90919063ffffffff16565b11156125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c190614ea0565b60405180910390fd5b6125df83600e5461303e90919063ffffffff16565b3414612620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126179061500a565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146126a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269990614bb5565b60405180910390fd5b612716828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954336040516020016126fb9190614c1d565b60405160208183030381529060405280519060200120612cd2565b612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90614c84565b60405180910390fd5b61275f3384612c94565b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b601080546127b5906147f9565b80601f01602080910402602001604051908101604052809291908181526020018280546127e1906147f9565b801561282e5780601f106128035761010080835404028352916020019161282e565b820191906000526020600020905b81548152906001019060200180831161281157829003601f168201915b505050505081565b600061284182613246565b9050919050565b612850611b72565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806128d65750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290c9061494d565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160039054906101000a900460ff1681565b60095481565b6129fa612bf0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a60906151e5565b60405180910390fd5b612a7281612f78565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612aea612be7565b11158015612af9575060005482105b8015612b26575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b612bf8612b2d565b73ffffffffffffffffffffffffffffffffffffffff16612c16611b72565b73ffffffffffffffffffffffffffffffffffffffff1614612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6390615251565b60405180910390fd5b565b612c798383836132b0565b505050565b60008183612c8c91906152a0565b905092915050565b612cae828260405180602001604052806000815250613764565b5050565b612ccd838383604051806020016040528060008152506121a3565b505050565b600082612cdf8584613776565b1490509392505050565b612cf1613f30565b600082905080612cff612be7565b11158015612d0e575060005481105b15612f41576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612f3f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e23578092505050612f73565b5b600115612f3e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f39578092505050612f73565b612e24565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361304c91906152f6565b905092915050565b60008183613062919061537f565b905092915050565b6130758484846132b0565b6130948373ffffffffffffffffffffffffffffffffffffffff166137cc565b80156130a957506130a7848484846137ef565b155b156130e0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060601080546130f5906147f9565b80601f0160208091040260200160405190810160405280929190818152602001828054613121906147f9565b801561316e5780601f106131435761010080835404028352916020019161316e565b820191906000526020600020905b81548152906001019060200180831161315157829003601f168201915b5050505050905090565b6060600060016131878461393f565b01905060008167ffffffffffffffff8111156131a6576131a561442f565b5b6040519080825280601f01601f1916602001820160405280156131d85781602001600182028036833780820191505090505b509050600082602001820190505b60011561323b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161322f5761322e615350565b5b049450600085036131e6575b819350505050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006132bb82612ce9565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613326576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16613347612b2d565b73ffffffffffffffffffffffffffffffffffffffff161480613376575061337585613370612b2d565b61291f565b5b806133bb5750613384612b2d565b73ffffffffffffffffffffffffffffffffffffffff166133a384610c95565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806133f4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361345a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134678585856001613a92565b61347360008487612b35565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036136f25760005482146136f157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461375d8585856001613a98565b5050505050565b6137718383836001613a9e565b505050565b60008082905060005b84518110156137c1576137ac8286838151811061379f5761379e6153b0565b5b6020026020010151613e68565b915080806137b9906153df565b91505061377f565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613815612b2d565b8786866040518563ffffffff1660e01b8152600401613837949392919061547c565b6020604051808303816000875af192505050801561387357506040513d601f19601f8201168201806040525081019061387091906154dd565b60015b6138ec573d80600081146138a3576040519150601f19603f3d011682016040523d82523d6000602084013e6138a8565b606091505b5060008151036138e4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061399d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161399357613992615350565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106139da576d04ee2d6d415b85acef810000000083816139d0576139cf615350565b5b0492506020810190505b662386f26fc100008310613a0957662386f26fc1000083816139ff576139fe615350565b5b0492506010810190505b6305f5e1008310613a32576305f5e1008381613a2857613a27615350565b5b0492506008810190505b6127108310613a57576127108381613a4d57613a4c615350565b5b0492506004810190505b60648310613a7a5760648381613a7057613a6f615350565b5b0492506002810190505b600a8310613a89576001810190505b80915050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613b0a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613b44576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b516000868387613a92565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613d1b5750613d1a8773ffffffffffffffffffffffffffffffffffffffff166137cc565b5b15613de0575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613d9060008884806001019550886137ef565b613dc6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613d21578260005414613ddb57600080fd5b613e4b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613de1575b816000819055505050613e616000868387613a98565b5050505050565b6000818310613e8057613e7b8284613e93565b613e8b565b613e8a8383613e93565b5b905092915050565b600082600052816020526040600020905092915050565b828054613eb6906147f9565b90600052602060002090601f016020900481019282613ed85760008555613f1f565b82601f10613ef157805160ff1916838001178555613f1f565b82800160010185558215613f1f579182015b82811115613f1e578251825591602001919060010190613f03565b5b509050613f2c9190613f73565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613f8c576000816000905550600101613f74565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613fd981613fa4565b8114613fe457600080fd5b50565b600081359050613ff681613fd0565b92915050565b60006020828403121561401257614011613f9a565b5b600061402084828501613fe7565b91505092915050565b60008115159050919050565b61403e81614029565b82525050565b60006020820190506140596000830184614035565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561409957808201518184015260208101905061407e565b838111156140a8576000848401525b50505050565b6000601f19601f8301169050919050565b60006140ca8261405f565b6140d4818561406a565b93506140e481856020860161407b565b6140ed816140ae565b840191505092915050565b6000602082019050818103600083015261411281846140bf565b905092915050565b6000819050919050565b61412d8161411a565b811461413857600080fd5b50565b60008135905061414a81614124565b92915050565b60006020828403121561416657614165613f9a565b5b60006141748482850161413b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141a88261417d565b9050919050565b6141b88161419d565b82525050565b60006020820190506141d360008301846141af565b92915050565b6141e28161419d565b81146141ed57600080fd5b50565b6000813590506141ff816141d9565b92915050565b6000806040838503121561421c5761421b613f9a565b5b600061422a858286016141f0565b925050602061423b8582860161413b565b9150509250929050565b61424e8161411a565b82525050565b60006020820190506142696000830184614245565b92915050565b6000819050919050565b6142828161426f565b811461428d57600080fd5b50565b60008135905061429f81614279565b92915050565b6000602082840312156142bb576142ba613f9a565b5b60006142c984828501614290565b91505092915050565b6000806000606084860312156142eb576142ea613f9a565b5b60006142f9868287016141f0565b935050602061430a868287016141f0565b925050604061431b8682870161413b565b9150509250925092565b6000806040838503121561433c5761433b613f9a565b5b600061434a8582860161413b565b925050602061435b858286016141f0565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261438a57614389614365565b5b8235905067ffffffffffffffff8111156143a7576143a661436a565b5b6020830191508360208202830111156143c3576143c261436f565b5b9250929050565b6000806000604084860312156143e3576143e2613f9a565b5b60006143f18682870161413b565b935050602084013567ffffffffffffffff81111561441257614411613f9f565b5b61441e86828701614374565b92509250509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614467826140ae565b810181811067ffffffffffffffff821117156144865761448561442f565b5b80604052505050565b6000614499613f90565b90506144a5828261445e565b919050565b600067ffffffffffffffff8211156144c5576144c461442f565b5b6144ce826140ae565b9050602081019050919050565b82818337600083830152505050565b60006144fd6144f8846144aa565b61448f565b9050828152602081018484840111156145195761451861442a565b5b6145248482856144db565b509392505050565b600082601f83011261454157614540614365565b5b81356145518482602086016144ea565b91505092915050565b6000602082840312156145705761456f613f9a565b5b600082013567ffffffffffffffff81111561458e5761458d613f9f565b5b61459a8482850161452c565b91505092915050565b6000602082840312156145b9576145b8613f9a565b5b60006145c7848285016141f0565b91505092915050565b6145d981614029565b81146145e457600080fd5b50565b6000813590506145f6816145d0565b92915050565b6000806040838503121561461357614612613f9a565b5b6000614621858286016141f0565b9250506020614632858286016145e7565b9150509250929050565b600067ffffffffffffffff8211156146575761465661442f565b5b614660826140ae565b9050602081019050919050565b600061468061467b8461463c565b61448f565b90508281526020810184848401111561469c5761469b61442a565b5b6146a78482856144db565b509392505050565b600082601f8301126146c4576146c3614365565b5b81356146d484826020860161466d565b91505092915050565b600080600080608085870312156146f7576146f6613f9a565b5b6000614705878288016141f0565b9450506020614716878288016141f0565b93505060406147278782880161413b565b925050606085013567ffffffffffffffff81111561474857614747613f9f565b5b614754878288016146af565b91505092959194509250565b6147698161426f565b82525050565b60006020820190506147846000830184614760565b92915050565b600080604083850312156147a1576147a0613f9a565b5b60006147af858286016141f0565b92505060206147c0858286016141f0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061481157607f821691505b602082108103614824576148236147ca565b5b50919050565b600060408201905061483f60008301856141af565b61484c60208301846141af565b9392505050565b600081519050614862816145d0565b92915050565b60006020828403121561487e5761487d613f9a565b5b600061488c84828501614853565b91505092915050565b7f546f74616c20737570706c7920686173206265656e206d696e74656400000000600082015250565b60006148cb601c8361406a565b91506148d682614895565b602082019050919050565b600060208201905081810360008301526148fa816148be565b9050919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000614937600e8361406a565b915061494282614901565b602082019050919050565b600060208201905081810360008301526149668161492a565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006149a3601e8361406a565b91506149ae8261496d565b602082019050919050565b600060208201905081810360008301526149d281614996565b9050919050565b7f486f6c6420796f757220686f727365732c2073616c65206973206e6f7420616360008201527f7469766520796574000000000000000000000000000000000000000000000000602082015250565b6000614a3560288361406a565b9150614a40826149d9565b604082019050919050565b60006020820190508181036000830152614a6481614a28565b9050919050565b7f4576656e2053686572696666732063616e2774206d696e742079657400000000600082015250565b6000614aa1601c8361406a565b9150614aac82614a6b565b602082019050919050565b60006020820190508181036000830152614ad081614a94565b9050919050565b7f546f74616c20537570706c7920686173206265656e206d696e74656400000000600082015250565b6000614b0d601c8361406a565b9150614b1882614ad7565b602082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b7f596f75206861766520616c7265616479206d696e74656420796f757220746f6b60008201527f656e730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b9f60238361406a565b9150614baa82614b43565b604082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b60008160601b9050919050565b6000614bed82614bd5565b9050919050565b6000614bff82614be2565b9050919050565b614c17614c128261419d565b614bf4565b82525050565b6000614c298284614c06565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000614c6e600d8361406a565b9150614c7982614c38565b602082019050919050565b60006020820190508181036000830152614c9d81614c61565b9050919050565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b6000614cda600a8361406a565b9150614ce582614ca4565b602082019050919050565b60006020820190508181036000830152614d0981614ccd565b9050919050565b600081905092915050565b50565b6000614d2b600083614d10565b9150614d3682614d1b565b600082019050919050565b6000614d4c82614d1e565b9150819050919050565b7f5769746864726177616c206661696c65642e0000000000000000000000000000600082015250565b6000614d8c60128361406a565b9150614d9782614d56565b602082019050919050565b60006020820190508181036000830152614dbb81614d7f565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b6000614df8601b8361406a565b9150614e0382614dc2565b602082019050919050565b60006020820190508181036000830152614e2781614deb565b9050919050565b7f546f74616c207075626c696320737570706c7920686173206265656e206d696e60008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b6000614e8a60238361406a565b9150614e9582614e2e565b604082019050919050565b60006020820190508181036000830152614eb981614e7d565b9050919050565b7f45786365656473204d6178206d696e747320616c6c6f7765642070657220776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b6000614f1c60248361406a565b9150614f2782614ec0565b604082019050919050565b60006020820190508181036000830152614f4b81614f0f565b9050919050565b7f746f6f206d616e7920666f72206f6e6520747800000000000000000000000000600082015250565b6000614f8860138361406a565b9150614f9382614f52565b602082019050919050565b60006020820190508181036000830152614fb781614f7b565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000614ff4601f8361406a565b9150614fff82614fbe565b602082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b600081905092915050565b60006150408261405f565b61504a818561502a565b935061505a81856020860161407b565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061509c60058361502a565b91506150a782615066565b600582019050919050565b60006150be8285615035565b91506150ca8284615035565b91506150d58261508f565b91508190509392505050565b7f57686974656c6973742053616c65206d7573742062652061637469766520746f60008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b600061513d60258361406a565b9150615148826150e1565b604082019050919050565b6000602082019050818103600083015261516c81615130565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151cf60268361406a565b91506151da82615173565b604082019050919050565b600060208201905081810360008301526151fe816151c2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061523b60208361406a565b915061524682615205565b602082019050919050565b6000602082019050818103600083015261526a8161522e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006152ab8261411a565b91506152b68361411a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152eb576152ea615271565b5b828201905092915050565b60006153018261411a565b915061530c8361411a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561534557615344615271565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061538a8261411a565b91506153958361411a565b9250826153a5576153a4615350565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006153ea8261411a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361541c5761541b615271565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b600061544e82615427565b6154588185615432565b935061546881856020860161407b565b615471816140ae565b840191505092915050565b600060808201905061549160008301876141af565b61549e60208301866141af565b6154ab6040830185614245565b81810360608301526154bd8184615443565b905095945050505050565b6000815190506154d781613fd0565b92915050565b6000602082840312156154f3576154f2613f9a565b5b6000615501848285016154c8565b9150509291505056fea2646970667358221220d57fb46ec44502fb501c51ed92be64eac224cb6b1aec93bd0f3220010ea2d53f64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102e45760003560e01c8063715018a611610190578063b88d4fde116100dc578063dc33e68111610095578063eacfc0ae1161006f578063eacfc0ae14610a77578063eb8d244414610aa2578063ece7f9d914610acd578063f2fde38b14610af8576102e4565b8063dc33e681146109d4578063e5bcf06314610a11578063e985e9c514610a3a576102e4565b8063b88d4fde146108e5578063c3a8678b1461090e578063c87b56dd14610939578063d1beca6414610976578063d2cab0561461098d578063d547cfb7146109a9576102e4565b806391b7f5ed11610149578063a0712d6811610123578063a0712d6814610860578063a10866ef1461087c578063a22cb46514610893578063b82311a5146108bc576102e4565b806391b7f5ed146107e157806395d89b411461080a578063977b055b14610835576102e4565b8063715018a6146107095780637437681e1461072057806381d8488f1461074b578063853828b6146107745780638d859f3e1461078b5780638da5cb5b146107b6576102e4565b806332cb6b0c1161024f57806355f804b311610208578063684e915f116101e2578063684e915f1461065f5780636bc5b70c146106765780636ebf8cf6146106a157806370a08231146106cc576102e4565b806355f804b3146105d05780636352211e146105f957806364f5a5bb14610636576102e4565b806332cb6b0c1461050957806334918dfd146105345780633ccfd60b1461054b57806342842e0e1461056257806345e313aa1461058b57806348684ffc146105b4576102e4565b806318160ddd116102a157806318160ddd1461040d5780631fb1b1511461043857806323b872dd14610461578063261d3b211461048a5780632a47f799146104b357806331c3c7a0146104de576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc14610351578063095ea7b31461038e5780630fcf2e75146103b757806310b5454d146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613ffc565b610b21565b60405161031d9190614044565b60405180910390f35b34801561033257600080fd5b5061033b610c03565b60405161034891906140f8565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190614150565b610c95565b60405161038591906141be565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190614205565b610d11565b005b3480156103c357600080fd5b506103cc610e1b565b6040516103d99190614044565b60405180910390f35b3480156103ee57600080fd5b506103f7610e2e565b6040516104049190614044565b60405180910390f35b34801561041957600080fd5b50610422610e41565b60405161042f9190614254565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a91906142a5565b610e58565b005b34801561046d57600080fd5b50610488600480360381019061048391906142d2565b610e6a565b005b34801561049657600080fd5b506104b160048036038101906104ac9190614325565b61104c565b005b3480156104bf57600080fd5b506104c86110c0565b6040516104d59190614254565b60405180910390f35b3480156104ea57600080fd5b506104f36110c6565b6040516105009190614254565b60405180910390f35b34801561051557600080fd5b5061051e6110cc565b60405161052b9190614254565b60405180910390f35b34801561054057600080fd5b506105496110d2565b005b34801561055757600080fd5b50610560611106565b005b34801561056e57600080fd5b50610589600480360381019061058491906142d2565b61115d565b005b34801561059757600080fd5b506105b260048036038101906105ad9190614150565b61133f565b005b6105ce60048036038101906105c991906143ca565b611416565b005b3480156105dc57600080fd5b506105f760048036038101906105f2919061455a565b611708565b005b34801561060557600080fd5b50610620600480360381019061061b9190614150565b61172a565b60405161062d91906141be565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190614150565b611740565b005b34801561066b57600080fd5b50610674611817565b005b34801561068257600080fd5b5061068b61184b565b6040516106989190614044565b60405180910390f35b3480156106ad57600080fd5b506106b661185e565b6040516106c39190614254565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee91906145a3565b611864565b6040516107009190614254565b60405180910390f35b34801561071557600080fd5b5061071e611933565b005b34801561072c57600080fd5b50610735611947565b6040516107429190614254565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190614150565b61194d565b005b34801561078057600080fd5b50610789611a24565b005b34801561079757600080fd5b506107a0611b6c565b6040516107ad9190614254565b60405180910390f35b3480156107c257600080fd5b506107cb611b72565b6040516107d891906141be565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190614150565b611b9c565b005b34801561081657600080fd5b5061081f611c73565b60405161082c91906140f8565b60405180910390f35b34801561084157600080fd5b5061084a611d05565b6040516108579190614254565b60405180910390f35b61087a60048036038101906108759190614150565b611d0b565b005b34801561088857600080fd5b50610891611fe6565b005b34801561089f57600080fd5b506108ba60048036038101906108b591906145fc565b61201a565b005b3480156108c857600080fd5b506108e360048036038101906108de91906142a5565b612191565b005b3480156108f157600080fd5b5061090c600480360381019061090791906146dd565b6121a3565b005b34801561091a57600080fd5b50610923612388565b604051610930919061476f565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190614150565b61238e565b60405161096d91906140f8565b60405180910390f35b34801561098257600080fd5b5061098b61242c565b005b6109a760048036038101906109a291906143ca565b612460565b005b3480156109b557600080fd5b506109be6127a8565b6040516109cb91906140f8565b60405180910390f35b3480156109e057600080fd5b506109fb60048036038101906109f691906145a3565b612836565b604051610a089190614254565b60405180910390f35b348015610a1d57600080fd5b50610a386004803603810190610a339190614150565b612848565b005b348015610a4657600080fd5b50610a616004803603810190610a5c919061478a565b61291f565b604051610a6e9190614044565b60405180910390f35b348015610a8357600080fd5b50610a8c6129b3565b604051610a9991906141be565b60405180910390f35b348015610aae57600080fd5b50610ab76129d9565b604051610ac49190614044565b60405180910390f35b348015610ad957600080fd5b50610ae26129ec565b604051610aef919061476f565b60405180910390f35b348015610b0457600080fd5b50610b1f6004803603810190610b1a91906145a3565b6129f2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bfc5750610bfb82612a75565b5b9050919050565b606060028054610c12906147f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3e906147f9565b8015610c8b5780601f10610c6057610100808354040283529160200191610c8b565b820191906000526020600020905b815481529060010190602001808311610c6e57829003601f168201915b5050505050905090565b6000610ca082612adf565b610cd6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d1c8261172a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d83576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610da2612b2d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610dd45750610dd281610dcd612b2d565b61291f565b155b15610e0b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e16838383612b35565b505050565b601160029054906101000a900460ff1681565b601160009054906101000a900460ff1681565b6000610e4b612be7565b6001546000540303905090565b610e60612bf0565b80600a8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561103a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610edc57610ed7848484612c6e565b611046565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610f2592919061482a565b602060405180830381865afa158015610f42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f669190614868565b8015610ff857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610fb692919061482a565b602060405180830381865afa158015610fd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff79190614868565b5b61103957336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161103091906141be565b60405180910390fd5b5b611045848484612c6e565b5b50505050565b611054612bf0565b600b5461107183611063610e41565b612c7e90919063ffffffff16565b11156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906148e1565b60405180910390fd5b6110bc8183612c94565b5050565b600c5481565b600e5481565b600b5481565b6110da612bf0565b601160039054906101000a900460ff1615601160036101000a81548160ff021916908315150217905550565b61110e612bf0565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611159573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561132d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111cf576111ca848484612cb2565b611339565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161121892919061482a565b602060405180830381865afa158015611235573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112599190614868565b80156112eb57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112a992919061482a565b602060405180830381865afa1580156112c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ea9190614868565b5b61132c57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161132391906141be565b60405180910390fd5b5b611338848484612cb2565b5b50505050565b611347611b72565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806113cd5750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114039061494d565b60405180910390fd5b8060158190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906149b9565b60405180910390fd5b601160039054906101000a900460ff166114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90614a4b565b60405180910390fd5b601160019054906101000a900460ff16611522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151990614ab7565b60405180910390fd5b600b5461153f84611531610e41565b612c7e90919063ffffffff16565b1115611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790614b23565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f990614bb5565b60405180910390fd5b611676828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a543360405160200161165b9190614c1d565b60405160208183030381529060405280519060200120612cd2565b6116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90614c84565b60405180910390fd5b6116bf3384612c94565b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b611710612bf0565b8060109080519060200190611726929190613eaa565b5050565b600061173582612ce9565b600001519050919050565b611748611b72565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117ce5750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61180d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118049061494d565b60405180910390fd5b8060168190555050565b61181f612bf0565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b601160019054906101000a900460ff1681565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118cb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61193b612bf0565b6119456000612f78565b565b60165481565b611955611b72565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806119db5750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a119061494d565b60405180910390fd5b80600e8190555050565b611a2c612bf0565b60004711611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690614cf0565b60405180910390fd5b60004790506000601160049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611ad66064611ac860648661303e90919063ffffffff16565b61305490919063ffffffff16565b604051611ae290614d41565b60006040518083038185875af1925050503d8060008114611b1f576040519150601f19603f3d011682016040523d82523d6000602084013e611b24565b606091505b5050905080611b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5f90614da2565b60405180910390fd5b5050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ba4611b72565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611c2a5750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c609061494d565b60405180910390fd5b80600d8190555050565b606060038054611c82906147f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611cae906147f9565b8015611cfb5780601f10611cd057610100808354040283529160200191611cfb565b820191906000526020600020905b815481529060010190602001808311611cde57829003601f168201915b5050505050905090565b60155481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d70906149b9565b60405180910390fd5b601160039054906101000a900460ff16611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90614a4b565b60405180910390fd5b601160029054906101000a900460ff16611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e90614e0e565b60405180910390fd5b600c54611e3482611e26610e41565b612c7e90919063ffffffff16565b1115611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c90614ea0565b60405180910390fd5b600b54611e9282611e84610e41565b612c7e90919063ffffffff16565b1115611ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eca90614b23565b60405180910390fd5b601554611ef182611ee333612836565b612c7e90919063ffffffff16565b1115611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2990614f32565b60405180910390fd5b600081118015611f4457506016548111155b611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90614f9e565b60405180910390fd5b611f9881600d5461303e90919063ffffffff16565b3414611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd09061500a565b60405180910390fd5b611fe33382612c94565b50565b611fee612bf0565b601160029054906101000a900460ff1615601160026101000a81548160ff021916908315150217905550565b612022612b2d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612086576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612093612b2d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612140612b2d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121859190614044565b60405180910390a35050565b612199612bf0565b8060098190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612374573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612216576122118585858561306a565b612381565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161225f92919061482a565b602060405180830381865afa15801561227c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a09190614868565b801561233257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016122f092919061482a565b602060405180830381865afa15801561230d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123319190614868565b5b61237357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161236a91906141be565b60405180910390fd5b5b6123808585858561306a565b5b5050505050565b600a5481565b606061239982612adf565b6123cf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006123d96130e6565b905060008151116123f95760405180602001604052806000815250612424565b8061240384613178565b6040516020016124149291906150b2565b6040516020818303038152906040525b915050919050565b612434612bf0565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146124ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c5906149b9565b60405180910390fd5b601160039054906101000a900460ff1661251d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251490614a4b565b60405180910390fd5b601160009054906101000a900460ff1661256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390615153565b60405180910390fd5b600c546125898461257b610e41565b612c7e90919063ffffffff16565b11156125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c190614ea0565b60405180910390fd5b6125df83600e5461303e90919063ffffffff16565b3414612620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126179061500a565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146126a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269990614bb5565b60405180910390fd5b612716828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954336040516020016126fb9190614c1d565b60405160208183030381529060405280519060200120612cd2565b612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90614c84565b60405180910390fd5b61275f3384612c94565b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b601080546127b5906147f9565b80601f01602080910402602001604051908101604052809291908181526020018280546127e1906147f9565b801561282e5780601f106128035761010080835404028352916020019161282e565b820191906000526020600020905b81548152906001019060200180831161281157829003601f168201915b505050505081565b600061284182613246565b9050919050565b612850611b72565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806128d65750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290c9061494d565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160039054906101000a900460ff1681565b60095481565b6129fa612bf0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a60906151e5565b60405180910390fd5b612a7281612f78565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612aea612be7565b11158015612af9575060005482105b8015612b26575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b612bf8612b2d565b73ffffffffffffffffffffffffffffffffffffffff16612c16611b72565b73ffffffffffffffffffffffffffffffffffffffff1614612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6390615251565b60405180910390fd5b565b612c798383836132b0565b505050565b60008183612c8c91906152a0565b905092915050565b612cae828260405180602001604052806000815250613764565b5050565b612ccd838383604051806020016040528060008152506121a3565b505050565b600082612cdf8584613776565b1490509392505050565b612cf1613f30565b600082905080612cff612be7565b11158015612d0e575060005481105b15612f41576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612f3f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e23578092505050612f73565b5b600115612f3e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f39578092505050612f73565b612e24565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361304c91906152f6565b905092915050565b60008183613062919061537f565b905092915050565b6130758484846132b0565b6130948373ffffffffffffffffffffffffffffffffffffffff166137cc565b80156130a957506130a7848484846137ef565b155b156130e0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060601080546130f5906147f9565b80601f0160208091040260200160405190810160405280929190818152602001828054613121906147f9565b801561316e5780601f106131435761010080835404028352916020019161316e565b820191906000526020600020905b81548152906001019060200180831161315157829003601f168201915b5050505050905090565b6060600060016131878461393f565b01905060008167ffffffffffffffff8111156131a6576131a561442f565b5b6040519080825280601f01601f1916602001820160405280156131d85781602001600182028036833780820191505090505b509050600082602001820190505b60011561323b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161322f5761322e615350565b5b049450600085036131e6575b819350505050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006132bb82612ce9565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613326576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16613347612b2d565b73ffffffffffffffffffffffffffffffffffffffff161480613376575061337585613370612b2d565b61291f565b5b806133bb5750613384612b2d565b73ffffffffffffffffffffffffffffffffffffffff166133a384610c95565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806133f4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361345a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134678585856001613a92565b61347360008487612b35565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036136f25760005482146136f157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461375d8585856001613a98565b5050505050565b6137718383836001613a9e565b505050565b60008082905060005b84518110156137c1576137ac8286838151811061379f5761379e6153b0565b5b6020026020010151613e68565b915080806137b9906153df565b91505061377f565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613815612b2d565b8786866040518563ffffffff1660e01b8152600401613837949392919061547c565b6020604051808303816000875af192505050801561387357506040513d601f19601f8201168201806040525081019061387091906154dd565b60015b6138ec573d80600081146138a3576040519150601f19603f3d011682016040523d82523d6000602084013e6138a8565b606091505b5060008151036138e4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061399d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161399357613992615350565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106139da576d04ee2d6d415b85acef810000000083816139d0576139cf615350565b5b0492506020810190505b662386f26fc100008310613a0957662386f26fc1000083816139ff576139fe615350565b5b0492506010810190505b6305f5e1008310613a32576305f5e1008381613a2857613a27615350565b5b0492506008810190505b6127108310613a57576127108381613a4d57613a4c615350565b5b0492506004810190505b60648310613a7a5760648381613a7057613a6f615350565b5b0492506002810190505b600a8310613a89576001810190505b80915050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613b0a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613b44576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b516000868387613a92565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613d1b5750613d1a8773ffffffffffffffffffffffffffffffffffffffff166137cc565b5b15613de0575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613d9060008884806001019550886137ef565b613dc6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613d21578260005414613ddb57600080fd5b613e4b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613de1575b816000819055505050613e616000868387613a98565b5050505050565b6000818310613e8057613e7b8284613e93565b613e8b565b613e8a8383613e93565b5b905092915050565b600082600052816020526040600020905092915050565b828054613eb6906147f9565b90600052602060002090601f016020900481019282613ed85760008555613f1f565b82601f10613ef157805160ff1916838001178555613f1f565b82800160010185558215613f1f579182015b82811115613f1e578251825591602001919060010190613f03565b5b509050613f2c9190613f73565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613f8c576000816000905550600101613f74565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613fd981613fa4565b8114613fe457600080fd5b50565b600081359050613ff681613fd0565b92915050565b60006020828403121561401257614011613f9a565b5b600061402084828501613fe7565b91505092915050565b60008115159050919050565b61403e81614029565b82525050565b60006020820190506140596000830184614035565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561409957808201518184015260208101905061407e565b838111156140a8576000848401525b50505050565b6000601f19601f8301169050919050565b60006140ca8261405f565b6140d4818561406a565b93506140e481856020860161407b565b6140ed816140ae565b840191505092915050565b6000602082019050818103600083015261411281846140bf565b905092915050565b6000819050919050565b61412d8161411a565b811461413857600080fd5b50565b60008135905061414a81614124565b92915050565b60006020828403121561416657614165613f9a565b5b60006141748482850161413b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141a88261417d565b9050919050565b6141b88161419d565b82525050565b60006020820190506141d360008301846141af565b92915050565b6141e28161419d565b81146141ed57600080fd5b50565b6000813590506141ff816141d9565b92915050565b6000806040838503121561421c5761421b613f9a565b5b600061422a858286016141f0565b925050602061423b8582860161413b565b9150509250929050565b61424e8161411a565b82525050565b60006020820190506142696000830184614245565b92915050565b6000819050919050565b6142828161426f565b811461428d57600080fd5b50565b60008135905061429f81614279565b92915050565b6000602082840312156142bb576142ba613f9a565b5b60006142c984828501614290565b91505092915050565b6000806000606084860312156142eb576142ea613f9a565b5b60006142f9868287016141f0565b935050602061430a868287016141f0565b925050604061431b8682870161413b565b9150509250925092565b6000806040838503121561433c5761433b613f9a565b5b600061434a8582860161413b565b925050602061435b858286016141f0565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261438a57614389614365565b5b8235905067ffffffffffffffff8111156143a7576143a661436a565b5b6020830191508360208202830111156143c3576143c261436f565b5b9250929050565b6000806000604084860312156143e3576143e2613f9a565b5b60006143f18682870161413b565b935050602084013567ffffffffffffffff81111561441257614411613f9f565b5b61441e86828701614374565b92509250509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614467826140ae565b810181811067ffffffffffffffff821117156144865761448561442f565b5b80604052505050565b6000614499613f90565b90506144a5828261445e565b919050565b600067ffffffffffffffff8211156144c5576144c461442f565b5b6144ce826140ae565b9050602081019050919050565b82818337600083830152505050565b60006144fd6144f8846144aa565b61448f565b9050828152602081018484840111156145195761451861442a565b5b6145248482856144db565b509392505050565b600082601f83011261454157614540614365565b5b81356145518482602086016144ea565b91505092915050565b6000602082840312156145705761456f613f9a565b5b600082013567ffffffffffffffff81111561458e5761458d613f9f565b5b61459a8482850161452c565b91505092915050565b6000602082840312156145b9576145b8613f9a565b5b60006145c7848285016141f0565b91505092915050565b6145d981614029565b81146145e457600080fd5b50565b6000813590506145f6816145d0565b92915050565b6000806040838503121561461357614612613f9a565b5b6000614621858286016141f0565b9250506020614632858286016145e7565b9150509250929050565b600067ffffffffffffffff8211156146575761465661442f565b5b614660826140ae565b9050602081019050919050565b600061468061467b8461463c565b61448f565b90508281526020810184848401111561469c5761469b61442a565b5b6146a78482856144db565b509392505050565b600082601f8301126146c4576146c3614365565b5b81356146d484826020860161466d565b91505092915050565b600080600080608085870312156146f7576146f6613f9a565b5b6000614705878288016141f0565b9450506020614716878288016141f0565b93505060406147278782880161413b565b925050606085013567ffffffffffffffff81111561474857614747613f9f565b5b614754878288016146af565b91505092959194509250565b6147698161426f565b82525050565b60006020820190506147846000830184614760565b92915050565b600080604083850312156147a1576147a0613f9a565b5b60006147af858286016141f0565b92505060206147c0858286016141f0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061481157607f821691505b602082108103614824576148236147ca565b5b50919050565b600060408201905061483f60008301856141af565b61484c60208301846141af565b9392505050565b600081519050614862816145d0565b92915050565b60006020828403121561487e5761487d613f9a565b5b600061488c84828501614853565b91505092915050565b7f546f74616c20737570706c7920686173206265656e206d696e74656400000000600082015250565b60006148cb601c8361406a565b91506148d682614895565b602082019050919050565b600060208201905081810360008301526148fa816148be565b9050919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000614937600e8361406a565b915061494282614901565b602082019050919050565b600060208201905081810360008301526149668161492a565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006149a3601e8361406a565b91506149ae8261496d565b602082019050919050565b600060208201905081810360008301526149d281614996565b9050919050565b7f486f6c6420796f757220686f727365732c2073616c65206973206e6f7420616360008201527f7469766520796574000000000000000000000000000000000000000000000000602082015250565b6000614a3560288361406a565b9150614a40826149d9565b604082019050919050565b60006020820190508181036000830152614a6481614a28565b9050919050565b7f4576656e2053686572696666732063616e2774206d696e742079657400000000600082015250565b6000614aa1601c8361406a565b9150614aac82614a6b565b602082019050919050565b60006020820190508181036000830152614ad081614a94565b9050919050565b7f546f74616c20537570706c7920686173206265656e206d696e74656400000000600082015250565b6000614b0d601c8361406a565b9150614b1882614ad7565b602082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b7f596f75206861766520616c7265616479206d696e74656420796f757220746f6b60008201527f656e730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b9f60238361406a565b9150614baa82614b43565b604082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b60008160601b9050919050565b6000614bed82614bd5565b9050919050565b6000614bff82614be2565b9050919050565b614c17614c128261419d565b614bf4565b82525050565b6000614c298284614c06565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000614c6e600d8361406a565b9150614c7982614c38565b602082019050919050565b60006020820190508181036000830152614c9d81614c61565b9050919050565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b6000614cda600a8361406a565b9150614ce582614ca4565b602082019050919050565b60006020820190508181036000830152614d0981614ccd565b9050919050565b600081905092915050565b50565b6000614d2b600083614d10565b9150614d3682614d1b565b600082019050919050565b6000614d4c82614d1e565b9150819050919050565b7f5769746864726177616c206661696c65642e0000000000000000000000000000600082015250565b6000614d8c60128361406a565b9150614d9782614d56565b602082019050919050565b60006020820190508181036000830152614dbb81614d7f565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b6000614df8601b8361406a565b9150614e0382614dc2565b602082019050919050565b60006020820190508181036000830152614e2781614deb565b9050919050565b7f546f74616c207075626c696320737570706c7920686173206265656e206d696e60008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b6000614e8a60238361406a565b9150614e9582614e2e565b604082019050919050565b60006020820190508181036000830152614eb981614e7d565b9050919050565b7f45786365656473204d6178206d696e747320616c6c6f7765642070657220776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b6000614f1c60248361406a565b9150614f2782614ec0565b604082019050919050565b60006020820190508181036000830152614f4b81614f0f565b9050919050565b7f746f6f206d616e7920666f72206f6e6520747800000000000000000000000000600082015250565b6000614f8860138361406a565b9150614f9382614f52565b602082019050919050565b60006020820190508181036000830152614fb781614f7b565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000614ff4601f8361406a565b9150614fff82614fbe565b602082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b600081905092915050565b60006150408261405f565b61504a818561502a565b935061505a81856020860161407b565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061509c60058361502a565b91506150a782615066565b600582019050919050565b60006150be8285615035565b91506150ca8284615035565b91506150d58261508f565b91508190509392505050565b7f57686974656c6973742053616c65206d7573742062652061637469766520746f60008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b600061513d60258361406a565b9150615148826150e1565b604082019050919050565b6000602082019050818103600083015261516c81615130565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151cf60268361406a565b91506151da82615173565b604082019050919050565b600060208201905081810360008301526151fe816151c2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061523b60208361406a565b915061524682615205565b602082019050919050565b6000602082019050818103600083015261526a8161522e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006152ab8261411a565b91506152b68361411a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152eb576152ea615271565b5b828201905092915050565b60006153018261411a565b915061530c8361411a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561534557615344615271565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061538a8261411a565b91506153958361411a565b9250826153a5576153a4615350565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006153ea8261411a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361541c5761541b615271565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b600061544e82615427565b6154588185615432565b935061546881856020860161407b565b615471816140ae565b840191505092915050565b600060808201905061549160008301876141af565b61549e60208301866141af565b6154ab6040830185614245565b81810360608301526154bd8184615443565b905095945050505050565b6000815190506154d781613fd0565b92915050565b6000602082840312156154f3576154f2613f9a565b5b6000615501848285016154c8565b9150509291505056fea2646970667358221220d57fb46ec44502fb501c51ed92be64eac224cb6b1aec93bd0f3220010ea2d53f64736f6c634300080d0033

Deployed Bytecode Sourcemap

82927:7195:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48284:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51397:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52900:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52463:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83495:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83417:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47533:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85070:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89491:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88550:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83182:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83293:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83144:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84465:91;;;;;;;;;;;;;:::i;:::-;;88093:140;;;;;;;;;;;;;:::i;:::-;;89674:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89333:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85660:734;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84356:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51205:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89227:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84564:112;;;;;;;;;;;;;:::i;:::-;;83457:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83337:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48653:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2783:103;;;;;;;;;;;;;:::i;:::-;;83877:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89024:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88241:301;;;;;;;;;;;;;:::i;:::-;;83252:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89130:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51566:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83839:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87291:794;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84811:109;;;;;;;;;;;;;:::i;:::-;;53176:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84930:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89865:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83103:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85208:331;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84684:118;;;;;;;;;;;;;:::i;:::-;;86402:881;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83382:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88778:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88899:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53534:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83640:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83532:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83061:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3041:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48284:305;48386:4;48438:25;48423:40;;;:11;:40;;;;:105;;;;48495:33;48480:48;;;:11;:48;;;;48423:105;:158;;;;48545:36;48569:11;48545:23;:36::i;:::-;48423:158;48403:178;;48284:305;;;:::o;51397:100::-;51451:13;51484:5;51477:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51397:100;:::o;52900:204::-;52968:7;52993:16;53001:7;52993;:16::i;:::-;52988:64;;53018:34;;;;;;;;;;;;;;52988:64;53072:15;:24;53088:7;53072:24;;;;;;;;;;;;;;;;;;;;;53065:31;;52900:204;;;:::o;52463:371::-;52536:13;52552:24;52568:7;52552:15;:24::i;:::-;52536:40;;52597:5;52591:11;;:2;:11;;;52587:48;;52611:24;;;;;;;;;;;;;;52587:48;52668:5;52652:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;52678:37;52695:5;52702:12;:10;:12::i;:::-;52678:16;:37::i;:::-;52677:38;52652:63;52648:138;;;52739:35;;;;;;;;;;;;;;52648:138;52798:28;52807:2;52811:7;52820:5;52798:8;:28::i;:::-;52525:309;52463:371;;:::o;83495:30::-;;;;;;;;;;;;;:::o;83417:33::-;;;;;;;;;;;;;:::o;47533:303::-;47577:7;47802:15;:13;:15::i;:::-;47787:12;;47771:13;;:28;:46;47764:53;;47533:303;:::o;85070:130::-;2028:13;:11;:13::i;:::-;85179::::1;85157:19;:35;;;;85070:130:::0;:::o;89491:171::-;89592:4;32363:1;31177:42;32317:43;;;:47;32313:699;;;32604:10;32596:18;;:4;:18;;;32592:85;;89613:37:::1;89632:4;89638:2;89642:7;89613:18;:37::i;:::-;32655:7:::0;;32592:85;31177:42;32737:40;;;32786:4;32793:10;32737:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;31177:42;32833:40;;;32882:4;32889;32833:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32737:157;32691:310;;32974:10;32955:30;;;;;;;;;;;:::i;:::-;;;;;;;;32691:310;32313:699;89613:37:::1;89632:4;89638:2;89642:7;89613:18;:37::i;:::-;89491:171:::0;;;;;:::o;88550:220::-;2028:13;:11;:13::i;:::-;88679:10:::1;;88642:33;88660:14;88642:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;88634:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;88733:29;88743:2;88747:14;88733:9;:29::i;:::-;88550:220:::0;;:::o;83182:39::-;;;;:::o;83293:37::-;;;;:::o;83144:31::-;;;;:::o;84465:91::-;2028:13;:11;:13::i;:::-;84536:12:::1;;;;;;;;;;;84535:13;84520:12;;:28;;;;;;;;;;;;;;;;;;84465:91::o:0;88093:140::-;2028:13;:11;:13::i;:::-;88141:12:::1;88156:21;88141:36;;88196:10;88188:28;;:37;88217:7;88188:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;88130:103;88093:140::o:0;89674:179::-;89779:4;32363:1;31177:42;32317:43;;;:47;32313:699;;;32604:10;32596:18;;:4;:18;;;32592:85;;89800:41:::1;89823:4;89829:2;89833:7;89800:22;:41::i;:::-;32655:7:::0;;32592:85;31177:42;32737:40;;;32786:4;32793:10;32737:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;31177:42;32833:40;;;32882:4;32889;32833:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32737:157;32691:310;;32974:10;32955:30;;;;;;;;;;;:::i;:::-;;;;;;;;32691:310;32313:699;89800:41:::1;89823:4;89829:2;89833:7;89800:22;:41::i;:::-;89674:179:::0;;;;;:::o;89333:106::-;84152:7;:5;:7::i;:::-;84138:21;;:10;:21;;;:49;;;;84177:10;;;;;;;;;;;84163:24;;:10;:24;;;84138:49;84130:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;89425:6:::1;89411:11;:20;;;;89333:106:::0;:::o;85660:734::-;84022:10;84009:23;;:9;:23;;;84001:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;85786:12:::1;;;;;;;;;;;85778:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;85862:19;;;;;;;;;;;85854:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;85970:10;;85933:33;85951:14;85933:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;85925:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;86061:1;86032:13;:25;86046:10;86032:25;;;;;;;;;;;;;;;;:30;86024:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;86155:96;86174:11;;86155:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86187:19;;86236:10;86219:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;86209:39;;;;;;86155:18;:96::i;:::-;86147:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;86288:37;86298:10;86310:14;86288:9;:37::i;:::-;86372:14;86344:13;:25;86358:10;86344:25;;;;;;;;;;;;;;;:42;;;;85660:734:::0;;;:::o;84356:101::-;2028:13;:11;:13::i;:::-;84442:7:::1;84427:12;:22;;;;;;;;;;;;:::i;:::-;;84356:101:::0;:::o;51205:125::-;51269:7;51296:21;51309:7;51296:12;:21::i;:::-;:26;;;51289:33;;51205:125;;;:::o;89227:98::-;84152:7;:5;:7::i;:::-;84138:21;;:10;:21;;;:49;;;;84177:10;;;;;;;;;;;84163:24;;:10;:24;;;84138:49;84130:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;89309:8:::1;89301:5;:16;;;;89227:98:::0;:::o;84564:112::-;2028:13;:11;:13::i;:::-;84649:19:::1;;;;;;;;;;;84648:20;84626:19;;:42;;;;;;;;;;;;;;;;;;84564:112::o:0;83457:31::-;;;;;;;;;;;;;:::o;83337:38::-;;;;:::o;48653:206::-;48717:7;48758:1;48741:19;;:5;:19;;;48737:60;;48769:28;;;;;;;;;;;;;;48737:60;48823:12;:19;48836:5;48823:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;48815:36;;48808:43;;48653:206;;;:::o;2783:103::-;2028:13;:11;:13::i;:::-;2848:30:::1;2875:1;2848:18;:30::i;:::-;2783:103::o:0;83877:25::-;;;;:::o;89024:98::-;84152:7;:5;:7::i;:::-;84138:21;;:10;:21;;;:49;;;;84177:10;;;;;;;;;;;84163:24;;:10;:24;;;84138:49;84130:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;89106:8:::1;89095;:19;;;;89024:98:::0;:::o;88241:301::-;2028:13;:11;:13::i;:::-;88326:1:::1;88302:21;:25;88294:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;88353:15;88371:21;88353:39;;88404:19;88429:7;;;;;;;;;;;:12;;88449:25;88470:3;88449:16;88461:3;88449:7;:11;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;88429:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88403:76;;;88498:14;88490:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;88283:259;;88241:301::o:0;83252:34::-;;;;:::o;2142:87::-;2188:7;2215:6;;;;;;;;;;;2208:13;;2142:87;:::o;89130:89::-;84152:7;:5;:7::i;:::-;84138:21;;:10;:21;;;:49;;;;84177:10;;;;;;;;;;;84163:24;;:10;:24;;;84138:49;84130:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;89205:6:::1;89197:5;:14;;;;89130:89:::0;:::o;51566:104::-;51622:13;51655:7;51648:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51566:104;:::o;83839:31::-;;;;:::o;87291:794::-;84022:10;84009:23;;:9;:23;;;84001:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;87378:12:::1;;;;;;;;;;;87370:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;87454:18;;;;;;;;;;;87446:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;87560:17;;87523:33;87541:14;87523:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:54;;87515:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;87673:10;;87636:33;87654:14;87636:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;87628:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;87785:11;;87737:44;87766:14;87737:24;87750:10;87737:12;:24::i;:::-;:28;;:44;;;;:::i;:::-;:59;;87729:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;87872:1;87855:14;:18;:45;;;;;87895:5;;87877:14;:23;;87855:45;87847:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;87958:25;87968:14;87958:5;;:9;;:25;;;;:::i;:::-;87945:9;:38;87937:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;88040:37;88050:10;88062:14;88040:9;:37::i;:::-;87291:794:::0;:::o;84811:109::-;2028:13;:11;:13::i;:::-;84894:18:::1;;;;;;;;;;;84893:19;84872:18;;:40;;;;;;;;;;;;;;;;;;84811:109::o:0;53176:287::-;53287:12;:10;:12::i;:::-;53275:24;;:8;:24;;;53271:54;;53308:17;;;;;;;;;;;;;;53271:54;53383:8;53338:18;:32;53357:12;:10;:12::i;:::-;53338:32;;;;;;;;;;;;;;;:42;53371:8;53338:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;53436:8;53407:48;;53422:12;:10;:12::i;:::-;53407:48;;;53446:8;53407:48;;;;;;:::i;:::-;;;;;;;;53176:287;;:::o;84930:132::-;2028:13;:11;:13::i;:::-;85041::::1;85018:20;:36;;;;84930:132:::0;:::o;89865:252::-;90028:4;32363:1;31177:42;32317:43;;;:47;32313:699;;;32604:10;32596:18;;:4;:18;;;32592:85;;90058:47:::1;90081:4;90087:2;90091:7;90100:4;90058:22;:47::i;:::-;32655:7:::0;;32592:85;31177:42;32737:40;;;32786:4;32793:10;32737:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;31177:42;32833:40;;;32882:4;32889;32833:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32737:157;32691:310;;32974:10;32955:30;;;;;;;;;;;:::i;:::-;;;;;;;;32691:310;32313:699;90058:47:::1;90081:4;90087:2;90091:7;90100:4;90058:22;:47::i;:::-;89865:252:::0;;;;;;:::o;83103:34::-;;;;:::o;85208:331::-;85281:13;85312:16;85320:7;85312;:16::i;:::-;85307:59;;85337:29;;;;;;;;;;;;;;85307:59;85385:21;85409:10;:8;:10::i;:::-;85385:34;;85461:1;85443:7;85437:21;:25;:94;;;;;;;;;;;;;;;;;85489:7;85498:18;:7;:16;:18::i;:::-;85472:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;85437:94;85430:101;;;85208:331;;;:::o;84684:118::-;2028:13;:11;:13::i;:::-;84773:21:::1;;;;;;;;;;;84772:22;84748:21;;:46;;;;;;;;;;;;;;;;;;84684:118::o:0;86402:881::-;84022:10;84009:23;;:9;:23;;;84001:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;86531:12:::1;;;;;;;;;;;86523:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;86607:21;;;;;;;;;;;86599:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;86726:17;;86689:33;86707:14;86689:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:54;;86681:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;86825:28;86838:14;86825:8;;:12;;:28;;;;:::i;:::-;86812:9;:41;86804:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;86941:1;86908:17;:29;86926:10;86908:29;;;;;;;;;;;;;;;;:34;86900:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;87039:97;87058:11;;87039:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87071:20;;87121:10;87104:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;87094:39;;;;;;87039:18;:97::i;:::-;87031:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;87173:37;87183:10;87195:14;87173:9;:37::i;:::-;87261:14;87229:17;:29;87247:10;87229:29;;;;;;;;;;;;;;;:46;;;;86402:881:::0;;;:::o;83382:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;88778:113::-;88836:7;88863:20;88877:5;88863:13;:20::i;:::-;88856:27;;88778:113;;;:::o;88899:117::-;84152:7;:5;:7::i;:::-;84138:21;;:10;:21;;;:49;;;;84177:10;;;;;;;;;;;84163:24;;:10;:24;;;84138:49;84130:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;88999:9:::1;88979:17;:29;;;;88899:117:::0;:::o;53534:164::-;53631:4;53655:18;:25;53674:5;53655:25;;;;;;;;;;;;;;;:35;53681:8;53655:35;;;;;;;;;;;;;;;;;;;;;;;;;53648:42;;53534:164;;;;:::o;83640:70::-;;;;;;;;;;;;;:::o;83532:24::-;;;;;;;;;;;;;:::o;83061:35::-;;;;:::o;3041:201::-;2028:13;:11;:13::i;:::-;3150:1:::1;3130:22;;:8;:22;;::::0;3122:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3206:28;3225:8;3206:18;:28::i;:::-;3041:201:::0;:::o;11211:157::-;11296:4;11335:25;11320:40;;;:11;:40;;;;11313:47;;11211:157;;;:::o;54886:174::-;54943:4;54986:7;54967:15;:13;:15::i;:::-;:26;;:53;;;;;55007:13;;54997:7;:23;54967:53;:85;;;;;55025:11;:20;55037:7;55025:20;;;;;;;;;;;:27;;;;;;;;;;;;55024:28;54967:85;54960:92;;54886:174;;;:::o;686:98::-;739:7;766:10;759:17;;686:98;:::o;63043:196::-;63185:2;63158:15;:24;63174:7;63158:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63223:7;63219:2;63203:28;;63212:5;63203:28;;;;;;;;;;;;63043:196;;;:::o;85551:101::-;85616:7;85643:1;85636:8;;85551:101;:::o;2307:132::-;2382:12;:10;:12::i;:::-;2371:23;;:7;:5;:7::i;:::-;:23;;;2363:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:132::o;53765:170::-;53899:28;53909:4;53915:2;53919:7;53899:9;:28::i;:::-;53765:170;;;:::o;78814:98::-;78872:7;78903:1;78899;:5;;;;:::i;:::-;78892:12;;78814:98;;;;:::o;55068:104::-;55137:27;55147:2;55151:8;55137:27;;;;;;;;;;;;:9;:27::i;:::-;55068:104;;:::o;54006:185::-;54144:39;54161:4;54167:2;54171:7;54144:39;;;;;;;;;;;;:16;:39::i;:::-;54006:185;;;:::o;67260:156::-;67351:4;67404;67375:25;67388:5;67395:4;67375:12;:25::i;:::-;:33;67368:40;;67260:156;;;;;:::o;50034:1109::-;50096:21;;:::i;:::-;50130:12;50145:7;50130:22;;50213:4;50194:15;:13;:15::i;:::-;:23;;:47;;;;;50228:13;;50221:4;:20;50194:47;50190:886;;;50262:31;50296:11;:17;50308:4;50296:17;;;;;;;;;;;50262:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50337:9;:16;;;50332:729;;50408:1;50382:28;;:9;:14;;;:28;;;50378:101;;50446:9;50439:16;;;;;;50378:101;50781:261;50788:4;50781:261;;;50821:6;;;;;;;;50866:11;:17;50878:4;50866:17;;;;;;;;;;;50854:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50940:1;50914:28;;:9;:14;;;:28;;;50910:109;;50982:9;50975:16;;;;;;50910:109;50781:261;;;50332:729;50243:833;50190:886;51104:31;;;;;;;;;;;;;;50034:1109;;;;:::o;3402:191::-;3476:16;3495:6;;;;;;;;;;;3476:25;;3521:8;3512:6;;:17;;;;;;;;;;;;;;;;;;3576:8;3545:40;;3566:8;3545:40;;;;;;;;;;;;3465:128;3402:191;:::o;79552:98::-;79610:7;79641:1;79637;:5;;;;:::i;:::-;79630:12;;79552:98;;;;:::o;79951:::-;80009:7;80040:1;80036;:5;;;;:::i;:::-;80029:12;;79951:98;;;;:::o;54262:369::-;54429:28;54439:4;54445:2;54449:7;54429:9;:28::i;:::-;54472:15;:2;:13;;;:15::i;:::-;:76;;;;;54492:56;54523:4;54529:2;54533:7;54542:5;54492:30;:56::i;:::-;54491:57;54472:76;54468:156;;;54572:40;;;;;;;;;;;;;;54468:156;54262:369;;;;:::o;84235:113::-;84295:13;84328:12;84321:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84235:113;:::o;26320:716::-;26376:13;26427:14;26464:1;26444:17;26455:5;26444:10;:17::i;:::-;:21;26427:38;;26480:20;26514:6;26503:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26480:41;;26536:11;26665:6;26661:2;26657:15;26649:6;26645:28;26638:35;;26702:288;26709:4;26702:288;;;26734:5;;;;;;;;26876:8;26871:2;26864:5;26860:14;26855:30;26850:3;26842:44;26932:2;26923:11;;;;;;:::i;:::-;;;;;26966:1;26957:5;:10;26702:288;26953:21;26702:288;27011:6;27004:13;;;;;26320:716;;;:::o;48941:137::-;49002:7;49037:12;:19;49050:5;49037:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;49029:41;;49022:48;;48941:137;;;:::o;57986:2130::-;58101:35;58139:21;58152:7;58139:12;:21::i;:::-;58101:59;;58199:4;58177:26;;:13;:18;;;:26;;;58173:67;;58212:28;;;;;;;;;;;;;;58173:67;58253:22;58295:4;58279:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;58316:36;58333:4;58339:12;:10;:12::i;:::-;58316:16;:36::i;:::-;58279:73;:126;;;;58393:12;:10;:12::i;:::-;58369:36;;:20;58381:7;58369:11;:20::i;:::-;:36;;;58279:126;58253:153;;58424:17;58419:66;;58450:35;;;;;;;;;;;;;;58419:66;58514:1;58500:16;;:2;:16;;;58496:52;;58525:23;;;;;;;;;;;;;;58496:52;58561:43;58583:4;58589:2;58593:7;58602:1;58561:21;:43::i;:::-;58669:35;58686:1;58690:7;58699:4;58669:8;:35::i;:::-;59030:1;59000:12;:18;59013:4;59000:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59074:1;59046:12;:16;59059:2;59046:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59092:31;59126:11;:20;59138:7;59126:20;;;;;;;;;;;59092:54;;59177:2;59161:8;:13;;;:18;;;;;;;;;;;;;;;;;;59227:15;59194:8;:23;;;:49;;;;;;;;;;;;;;;;;;59495:19;59527:1;59517:7;:11;59495:33;;59543:31;59577:11;:24;59589:11;59577:24;;;;;;;;;;;59543:58;;59645:1;59620:27;;:8;:13;;;;;;;;;;;;:27;;;59616:384;;59830:13;;59815:11;:28;59811:174;;59884:4;59868:8;:13;;;:20;;;;;;;;;;;;;;;;;;59937:13;:28;;;59911:8;:23;;;:54;;;;;;;;;;;;;;;;;;59811:174;59616:384;58975:1036;;;60047:7;60043:2;60028:27;;60037:4;60028:27;;;;;;;;;;;;60066:42;60087:4;60093:2;60097:7;60106:1;60066:20;:42::i;:::-;58090:2026;;57986:2130;;;:::o;55535:163::-;55658:32;55664:2;55668:8;55678:5;55685:4;55658:5;:32::i;:::-;55535:163;;;:::o;68059:296::-;68142:7;68162:20;68185:4;68162:27;;68205:9;68200:118;68224:5;:12;68220:1;:16;68200:118;;;68273:33;68283:12;68297:5;68303:1;68297:8;;;;;;;;:::i;:::-;;;;;;;;68273:9;:33::i;:::-;68258:48;;68238:3;;;;;:::i;:::-;;;;68200:118;;;;68335:12;68328:19;;;68059:296;;;;:::o;35901:326::-;35961:4;36218:1;36196:7;:19;;;:23;36189:30;;35901:326;;;:::o;63731:667::-;63894:4;63931:2;63915:36;;;63952:12;:10;:12::i;:::-;63966:4;63972:7;63981:5;63915:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;63911:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64166:1;64149:6;:13;:18;64145:235;;64195:40;;;;;;;;;;;;;;64145:235;64338:6;64332:13;64323:6;64319:2;64315:15;64308:38;63911:480;64044:45;;;64034:55;;;:6;:55;;;;64027:62;;;63731:667;;;;;;:::o;21799:948::-;21852:7;21872:14;21889:1;21872:18;;21939:8;21930:5;:17;21926:106;;21977:8;21968:17;;;;;;:::i;:::-;;;;;22014:2;22004:12;;;;21926:106;22059:8;22050:5;:17;22046:106;;22097:8;22088:17;;;;;;:::i;:::-;;;;;22134:2;22124:12;;;;22046:106;22179:8;22170:5;:17;22166:106;;22217:8;22208:17;;;;;;:::i;:::-;;;;;22254:2;22244:12;;;;22166:106;22299:7;22290:5;:16;22286:103;;22336:7;22327:16;;;;;;:::i;:::-;;;;;22372:1;22362:11;;;;22286:103;22416:7;22407:5;:16;22403:103;;22453:7;22444:16;;;;;;:::i;:::-;;;;;22489:1;22479:11;;;;22403:103;22533:7;22524:5;:16;22520:103;;22570:7;22561:16;;;;;;:::i;:::-;;;;;22606:1;22596:11;;;;22520:103;22650:7;22641:5;:16;22637:68;;22688:1;22678:11;;;;22637:68;22733:6;22726:13;;;21799:948;;;:::o;65046:159::-;;;;;:::o;65864:158::-;;;;;:::o;55957:1775::-;56096:20;56119:13;;56096:36;;56161:1;56147:16;;:2;:16;;;56143:48;;56172:19;;;;;;;;;;;;;;56143:48;56218:1;56206:8;:13;56202:44;;56228:18;;;;;;;;;;;;;;56202:44;56259:61;56289:1;56293:2;56297:12;56311:8;56259:21;:61::i;:::-;56632:8;56597:12;:16;56610:2;56597:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56696:8;56656:12;:16;56669:2;56656:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56755:2;56722:11;:25;56734:12;56722:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;56822:15;56772:11;:25;56784:12;56772:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;56855:20;56878:12;56855:35;;56905:11;56934:8;56919:12;:23;56905:37;;56963:4;:23;;;;;56971:15;:2;:13;;;:15::i;:::-;56963:23;56959:641;;;57007:314;57063:12;57059:2;57038:38;;57055:1;57038:38;;;;;;;;;;;;57104:69;57143:1;57147:2;57151:14;;;;;;57167:5;57104:30;:69::i;:::-;57099:174;;57209:40;;;;;;;;;;;;;;57099:174;57316:3;57300:12;:19;57007:314;;57402:12;57385:13;;:29;57381:43;;57416:8;;;57381:43;56959:641;;;57465:120;57521:14;;;;;;57517:2;57496:40;;57513:1;57496:40;;;;;;;;;;;;57580:3;57564:12;:19;57465:120;;56959:641;57630:12;57614:13;:28;;;;56572:1082;;57664:60;57693:1;57697:2;57701:12;57715:8;57664:20;:60::i;:::-;56085:1647;55957:1775;;;;:::o;75497:149::-;75560:7;75591:1;75587;:5;:51;;75618:20;75633:1;75636;75618:14;:20::i;:::-;75587:51;;;75595:20;75610:1;75613;75595:14;:20::i;:::-;75587:51;75580:58;;75497:149;;;;:::o;75654:268::-;75722:13;75829:1;75823:4;75816:15;75858:1;75852:4;75845:15;75899:4;75893;75883:21;75874:30;;75654:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:77::-;5327:7;5356:5;5345:16;;5290:77;;;:::o;5373:122::-;5446:24;5464:5;5446:24;:::i;:::-;5439:5;5436:35;5426:63;;5485:1;5482;5475:12;5426:63;5373:122;:::o;5501:139::-;5547:5;5585:6;5572:20;5563:29;;5601:33;5628:5;5601:33;:::i;:::-;5501:139;;;;:::o;5646:329::-;5705:6;5754:2;5742:9;5733:7;5729:23;5725:32;5722:119;;;5760:79;;:::i;:::-;5722:119;5880:1;5905:53;5950:7;5941:6;5930:9;5926:22;5905:53;:::i;:::-;5895:63;;5851:117;5646:329;;;;:::o;5981:619::-;6058:6;6066;6074;6123:2;6111:9;6102:7;6098:23;6094:32;6091:119;;;6129:79;;:::i;:::-;6091:119;6249:1;6274:53;6319:7;6310:6;6299:9;6295:22;6274:53;:::i;:::-;6264:63;;6220:117;6376:2;6402:53;6447:7;6438:6;6427:9;6423:22;6402:53;:::i;:::-;6392:63;;6347:118;6504:2;6530:53;6575:7;6566:6;6555:9;6551:22;6530:53;:::i;:::-;6520:63;;6475:118;5981:619;;;;;:::o;6606:474::-;6674:6;6682;6731:2;6719:9;6710:7;6706:23;6702:32;6699:119;;;6737:79;;:::i;:::-;6699:119;6857:1;6882:53;6927:7;6918:6;6907:9;6903:22;6882:53;:::i;:::-;6872:63;;6828:117;6984:2;7010:53;7055:7;7046:6;7035:9;7031:22;7010:53;:::i;:::-;7000:63;;6955:118;6606:474;;;;;:::o;7086:117::-;7195:1;7192;7185:12;7209:117;7318:1;7315;7308:12;7332:117;7441:1;7438;7431:12;7472:568;7545:8;7555:6;7605:3;7598:4;7590:6;7586:17;7582:27;7572:122;;7613:79;;:::i;:::-;7572:122;7726:6;7713:20;7703:30;;7756:18;7748:6;7745:30;7742:117;;;7778:79;;:::i;:::-;7742:117;7892:4;7884:6;7880:17;7868:29;;7946:3;7938:4;7930:6;7926:17;7916:8;7912:32;7909:41;7906:128;;;7953:79;;:::i;:::-;7906:128;7472:568;;;;;:::o;8046:704::-;8141:6;8149;8157;8206:2;8194:9;8185:7;8181:23;8177:32;8174:119;;;8212:79;;:::i;:::-;8174:119;8332:1;8357:53;8402:7;8393:6;8382:9;8378:22;8357:53;:::i;:::-;8347:63;;8303:117;8487:2;8476:9;8472:18;8459:32;8518:18;8510:6;8507:30;8504:117;;;8540:79;;:::i;:::-;8504:117;8653:80;8725:7;8716:6;8705:9;8701:22;8653:80;:::i;:::-;8635:98;;;;8430:313;8046:704;;;;;:::o;8756:117::-;8865:1;8862;8855:12;8879:180;8927:77;8924:1;8917:88;9024:4;9021:1;9014:15;9048:4;9045:1;9038:15;9065:281;9148:27;9170:4;9148:27;:::i;:::-;9140:6;9136:40;9278:6;9266:10;9263:22;9242:18;9230:10;9227:34;9224:62;9221:88;;;9289:18;;:::i;:::-;9221:88;9329:10;9325:2;9318:22;9108:238;9065:281;;:::o;9352:129::-;9386:6;9413:20;;:::i;:::-;9403:30;;9442:33;9470:4;9462:6;9442:33;:::i;:::-;9352:129;;;:::o;9487:308::-;9549:4;9639:18;9631:6;9628:30;9625:56;;;9661:18;;:::i;:::-;9625:56;9699:29;9721:6;9699:29;:::i;:::-;9691:37;;9783:4;9777;9773:15;9765:23;;9487:308;;;:::o;9801:154::-;9885:6;9880:3;9875;9862:30;9947:1;9938:6;9933:3;9929:16;9922:27;9801:154;;;:::o;9961:412::-;10039:5;10064:66;10080:49;10122:6;10080:49;:::i;:::-;10064:66;:::i;:::-;10055:75;;10153:6;10146:5;10139:21;10191:4;10184:5;10180:16;10229:3;10220:6;10215:3;10211:16;10208:25;10205:112;;;10236:79;;:::i;:::-;10205:112;10326:41;10360:6;10355:3;10350;10326:41;:::i;:::-;10045:328;9961:412;;;;;:::o;10393:340::-;10449:5;10498:3;10491:4;10483:6;10479:17;10475:27;10465:122;;10506:79;;:::i;:::-;10465:122;10623:6;10610:20;10648:79;10723:3;10715:6;10708:4;10700:6;10696:17;10648:79;:::i;:::-;10639:88;;10455:278;10393:340;;;;:::o;10739:509::-;10808:6;10857:2;10845:9;10836:7;10832:23;10828:32;10825:119;;;10863:79;;:::i;:::-;10825:119;11011:1;11000:9;10996:17;10983:31;11041:18;11033:6;11030:30;11027:117;;;11063:79;;:::i;:::-;11027:117;11168:63;11223:7;11214:6;11203:9;11199:22;11168:63;:::i;:::-;11158:73;;10954:287;10739:509;;;;:::o;11254:329::-;11313:6;11362:2;11350:9;11341:7;11337:23;11333:32;11330:119;;;11368:79;;:::i;:::-;11330:119;11488:1;11513:53;11558:7;11549:6;11538:9;11534:22;11513:53;:::i;:::-;11503:63;;11459:117;11254:329;;;;:::o;11589:116::-;11659:21;11674:5;11659:21;:::i;:::-;11652:5;11649:32;11639:60;;11695:1;11692;11685:12;11639:60;11589:116;:::o;11711:133::-;11754:5;11792:6;11779:20;11770:29;;11808:30;11832:5;11808:30;:::i;:::-;11711:133;;;;:::o;11850:468::-;11915:6;11923;11972:2;11960:9;11951:7;11947:23;11943:32;11940:119;;;11978:79;;:::i;:::-;11940:119;12098:1;12123:53;12168:7;12159:6;12148:9;12144:22;12123:53;:::i;:::-;12113:63;;12069:117;12225:2;12251:50;12293:7;12284:6;12273:9;12269:22;12251:50;:::i;:::-;12241:60;;12196:115;11850:468;;;;;:::o;12324:307::-;12385:4;12475:18;12467:6;12464:30;12461:56;;;12497:18;;:::i;:::-;12461:56;12535:29;12557:6;12535:29;:::i;:::-;12527:37;;12619:4;12613;12609:15;12601:23;;12324:307;;;:::o;12637:410::-;12714:5;12739:65;12755:48;12796:6;12755:48;:::i;:::-;12739:65;:::i;:::-;12730:74;;12827:6;12820:5;12813:21;12865:4;12858:5;12854:16;12903:3;12894:6;12889:3;12885:16;12882:25;12879:112;;;12910:79;;:::i;:::-;12879:112;13000:41;13034:6;13029:3;13024;13000:41;:::i;:::-;12720:327;12637:410;;;;;:::o;13066:338::-;13121:5;13170:3;13163:4;13155:6;13151:17;13147:27;13137:122;;13178:79;;:::i;:::-;13137:122;13295:6;13282:20;13320:78;13394:3;13386:6;13379:4;13371:6;13367:17;13320:78;:::i;:::-;13311:87;;13127:277;13066:338;;;;:::o;13410:943::-;13505:6;13513;13521;13529;13578:3;13566:9;13557:7;13553:23;13549:33;13546:120;;;13585:79;;:::i;:::-;13546:120;13705:1;13730:53;13775:7;13766:6;13755:9;13751:22;13730:53;:::i;:::-;13720:63;;13676:117;13832:2;13858:53;13903:7;13894:6;13883:9;13879:22;13858:53;:::i;:::-;13848:63;;13803:118;13960:2;13986:53;14031:7;14022:6;14011:9;14007:22;13986:53;:::i;:::-;13976:63;;13931:118;14116:2;14105:9;14101:18;14088:32;14147:18;14139:6;14136:30;14133:117;;;14169:79;;:::i;:::-;14133:117;14274:62;14328:7;14319:6;14308:9;14304:22;14274:62;:::i;:::-;14264:72;;14059:287;13410:943;;;;;;;:::o;14359:118::-;14446:24;14464:5;14446:24;:::i;:::-;14441:3;14434:37;14359:118;;:::o;14483:222::-;14576:4;14614:2;14603:9;14599:18;14591:26;;14627:71;14695:1;14684:9;14680:17;14671:6;14627:71;:::i;:::-;14483:222;;;;:::o;14711:474::-;14779:6;14787;14836:2;14824:9;14815:7;14811:23;14807:32;14804:119;;;14842:79;;:::i;:::-;14804:119;14962:1;14987:53;15032:7;15023:6;15012:9;15008:22;14987:53;:::i;:::-;14977:63;;14933:117;15089:2;15115:53;15160:7;15151:6;15140:9;15136:22;15115:53;:::i;:::-;15105:63;;15060:118;14711:474;;;;;:::o;15191:180::-;15239:77;15236:1;15229:88;15336:4;15333:1;15326:15;15360:4;15357:1;15350:15;15377:320;15421:6;15458:1;15452:4;15448:12;15438:22;;15505:1;15499:4;15495:12;15526:18;15516:81;;15582:4;15574:6;15570:17;15560:27;;15516:81;15644:2;15636:6;15633:14;15613:18;15610:38;15607:84;;15663:18;;:::i;:::-;15607:84;15428:269;15377:320;;;:::o;15703:332::-;15824:4;15862:2;15851:9;15847:18;15839:26;;15875:71;15943:1;15932:9;15928:17;15919:6;15875:71;:::i;:::-;15956:72;16024:2;16013:9;16009:18;16000:6;15956:72;:::i;:::-;15703:332;;;;;:::o;16041:137::-;16095:5;16126:6;16120:13;16111:22;;16142:30;16166:5;16142:30;:::i;:::-;16041:137;;;;:::o;16184:345::-;16251:6;16300:2;16288:9;16279:7;16275:23;16271:32;16268:119;;;16306:79;;:::i;:::-;16268:119;16426:1;16451:61;16504:7;16495:6;16484:9;16480:22;16451:61;:::i;:::-;16441:71;;16397:125;16184:345;;;;:::o;16535:178::-;16675:30;16671:1;16663:6;16659:14;16652:54;16535:178;:::o;16719:366::-;16861:3;16882:67;16946:2;16941:3;16882:67;:::i;:::-;16875:74;;16958:93;17047:3;16958:93;:::i;:::-;17076:2;17071:3;17067:12;17060:19;;16719:366;;;:::o;17091:419::-;17257:4;17295:2;17284:9;17280:18;17272:26;;17344:9;17338:4;17334:20;17330:1;17319:9;17315:17;17308:47;17372:131;17498:4;17372:131;:::i;:::-;17364:139;;17091:419;;;:::o;17516:164::-;17656:16;17652:1;17644:6;17640:14;17633:40;17516:164;:::o;17686:366::-;17828:3;17849:67;17913:2;17908:3;17849:67;:::i;:::-;17842:74;;17925:93;18014:3;17925:93;:::i;:::-;18043:2;18038:3;18034:12;18027:19;;17686:366;;;:::o;18058:419::-;18224:4;18262:2;18251:9;18247:18;18239:26;;18311:9;18305:4;18301:20;18297:1;18286:9;18282:17;18275:47;18339:131;18465:4;18339:131;:::i;:::-;18331:139;;18058:419;;;:::o;18483:180::-;18623:32;18619:1;18611:6;18607:14;18600:56;18483:180;:::o;18669:366::-;18811:3;18832:67;18896:2;18891:3;18832:67;:::i;:::-;18825:74;;18908:93;18997:3;18908:93;:::i;:::-;19026:2;19021:3;19017:12;19010:19;;18669:366;;;:::o;19041:419::-;19207:4;19245:2;19234:9;19230:18;19222:26;;19294:9;19288:4;19284:20;19280:1;19269:9;19265:17;19258:47;19322:131;19448:4;19322:131;:::i;:::-;19314:139;;19041:419;;;:::o;19466:227::-;19606:34;19602:1;19594:6;19590:14;19583:58;19675:10;19670:2;19662:6;19658:15;19651:35;19466:227;:::o;19699:366::-;19841:3;19862:67;19926:2;19921:3;19862:67;:::i;:::-;19855:74;;19938:93;20027:3;19938:93;:::i;:::-;20056:2;20051:3;20047:12;20040:19;;19699:366;;;:::o;20071:419::-;20237:4;20275:2;20264:9;20260:18;20252:26;;20324:9;20318:4;20314:20;20310:1;20299:9;20295:17;20288:47;20352:131;20478:4;20352:131;:::i;:::-;20344:139;;20071:419;;;:::o;20496:178::-;20636:30;20632:1;20624:6;20620:14;20613:54;20496:178;:::o;20680:366::-;20822:3;20843:67;20907:2;20902:3;20843:67;:::i;:::-;20836:74;;20919:93;21008:3;20919:93;:::i;:::-;21037:2;21032:3;21028:12;21021:19;;20680:366;;;:::o;21052:419::-;21218:4;21256:2;21245:9;21241:18;21233:26;;21305:9;21299:4;21295:20;21291:1;21280:9;21276:17;21269:47;21333:131;21459:4;21333:131;:::i;:::-;21325:139;;21052:419;;;:::o;21477:178::-;21617:30;21613:1;21605:6;21601:14;21594:54;21477:178;:::o;21661:366::-;21803:3;21824:67;21888:2;21883:3;21824:67;:::i;:::-;21817:74;;21900:93;21989:3;21900:93;:::i;:::-;22018:2;22013:3;22009:12;22002:19;;21661:366;;;:::o;22033:419::-;22199:4;22237:2;22226:9;22222:18;22214:26;;22286:9;22280:4;22276:20;22272:1;22261:9;22257:17;22250:47;22314:131;22440:4;22314:131;:::i;:::-;22306:139;;22033:419;;;:::o;22458:222::-;22598:34;22594:1;22586:6;22582:14;22575:58;22667:5;22662:2;22654:6;22650:15;22643:30;22458:222;:::o;22686:366::-;22828:3;22849:67;22913:2;22908:3;22849:67;:::i;:::-;22842:74;;22925:93;23014:3;22925:93;:::i;:::-;23043:2;23038:3;23034:12;23027:19;;22686:366;;;:::o;23058:419::-;23224:4;23262:2;23251:9;23247:18;23239:26;;23311:9;23305:4;23301:20;23297:1;23286:9;23282:17;23275:47;23339:131;23465:4;23339:131;:::i;:::-;23331:139;;23058:419;;;:::o;23483:94::-;23516:8;23564:5;23560:2;23556:14;23535:35;;23483:94;;;:::o;23583:::-;23622:7;23651:20;23665:5;23651:20;:::i;:::-;23640:31;;23583:94;;;:::o;23683:100::-;23722:7;23751:26;23771:5;23751:26;:::i;:::-;23740:37;;23683:100;;;:::o;23789:157::-;23894:45;23914:24;23932:5;23914:24;:::i;:::-;23894:45;:::i;:::-;23889:3;23882:58;23789:157;;:::o;23952:256::-;24064:3;24079:75;24150:3;24141:6;24079:75;:::i;:::-;24179:2;24174:3;24170:12;24163:19;;24199:3;24192:10;;23952:256;;;;:::o;24214:163::-;24354:15;24350:1;24342:6;24338:14;24331:39;24214:163;:::o;24383:366::-;24525:3;24546:67;24610:2;24605:3;24546:67;:::i;:::-;24539:74;;24622:93;24711:3;24622:93;:::i;:::-;24740:2;24735:3;24731:12;24724:19;;24383:366;;;:::o;24755:419::-;24921:4;24959:2;24948:9;24944:18;24936:26;;25008:9;25002:4;24998:20;24994:1;24983:9;24979:17;24972:47;25036:131;25162:4;25036:131;:::i;:::-;25028:139;;24755:419;;;:::o;25180:160::-;25320:12;25316:1;25308:6;25304:14;25297:36;25180:160;:::o;25346:366::-;25488:3;25509:67;25573:2;25568:3;25509:67;:::i;:::-;25502:74;;25585:93;25674:3;25585:93;:::i;:::-;25703:2;25698:3;25694:12;25687:19;;25346:366;;;:::o;25718:419::-;25884:4;25922:2;25911:9;25907:18;25899:26;;25971:9;25965:4;25961:20;25957:1;25946:9;25942:17;25935:47;25999:131;26125:4;25999:131;:::i;:::-;25991:139;;25718:419;;;:::o;26143:147::-;26244:11;26281:3;26266:18;;26143:147;;;;:::o;26296:114::-;;:::o;26416:398::-;26575:3;26596:83;26677:1;26672:3;26596:83;:::i;:::-;26589:90;;26688:93;26777:3;26688:93;:::i;:::-;26806:1;26801:3;26797:11;26790:18;;26416:398;;;:::o;26820:379::-;27004:3;27026:147;27169:3;27026:147;:::i;:::-;27019:154;;27190:3;27183:10;;26820:379;;;:::o;27205:168::-;27345:20;27341:1;27333:6;27329:14;27322:44;27205:168;:::o;27379:366::-;27521:3;27542:67;27606:2;27601:3;27542:67;:::i;:::-;27535:74;;27618:93;27707:3;27618:93;:::i;:::-;27736:2;27731:3;27727:12;27720:19;;27379:366;;;:::o;27751:419::-;27917:4;27955:2;27944:9;27940:18;27932:26;;28004:9;27998:4;27994:20;27990:1;27979:9;27975:17;27968:47;28032:131;28158:4;28032:131;:::i;:::-;28024:139;;27751:419;;;:::o;28176:177::-;28316:29;28312:1;28304:6;28300:14;28293:53;28176:177;:::o;28359:366::-;28501:3;28522:67;28586:2;28581:3;28522:67;:::i;:::-;28515:74;;28598:93;28687:3;28598:93;:::i;:::-;28716:2;28711:3;28707:12;28700:19;;28359:366;;;:::o;28731:419::-;28897:4;28935:2;28924:9;28920:18;28912:26;;28984:9;28978:4;28974:20;28970:1;28959:9;28955:17;28948:47;29012:131;29138:4;29012:131;:::i;:::-;29004:139;;28731:419;;;:::o;29156:222::-;29296:34;29292:1;29284:6;29280:14;29273:58;29365:5;29360:2;29352:6;29348:15;29341:30;29156:222;:::o;29384:366::-;29526:3;29547:67;29611:2;29606:3;29547:67;:::i;:::-;29540:74;;29623:93;29712:3;29623:93;:::i;:::-;29741:2;29736:3;29732:12;29725:19;;29384:366;;;:::o;29756:419::-;29922:4;29960:2;29949:9;29945:18;29937:26;;30009:9;30003:4;29999:20;29995:1;29984:9;29980:17;29973:47;30037:131;30163:4;30037:131;:::i;:::-;30029:139;;29756:419;;;:::o;30181:223::-;30321:34;30317:1;30309:6;30305:14;30298:58;30390:6;30385:2;30377:6;30373:15;30366:31;30181:223;:::o;30410:366::-;30552:3;30573:67;30637:2;30632:3;30573:67;:::i;:::-;30566:74;;30649:93;30738:3;30649:93;:::i;:::-;30767:2;30762:3;30758:12;30751:19;;30410:366;;;:::o;30782:419::-;30948:4;30986:2;30975:9;30971:18;30963:26;;31035:9;31029:4;31025:20;31021:1;31010:9;31006:17;30999:47;31063:131;31189:4;31063:131;:::i;:::-;31055:139;;30782:419;;;:::o;31207:169::-;31347:21;31343:1;31335:6;31331:14;31324:45;31207:169;:::o;31382:366::-;31524:3;31545:67;31609:2;31604:3;31545:67;:::i;:::-;31538:74;;31621:93;31710:3;31621:93;:::i;:::-;31739:2;31734:3;31730:12;31723:19;;31382:366;;;:::o;31754:419::-;31920:4;31958:2;31947:9;31943:18;31935:26;;32007:9;32001:4;31997:20;31993:1;31982:9;31978:17;31971:47;32035:131;32161:4;32035:131;:::i;:::-;32027:139;;31754:419;;;:::o;32179:181::-;32319:33;32315:1;32307:6;32303:14;32296:57;32179:181;:::o;32366:366::-;32508:3;32529:67;32593:2;32588:3;32529:67;:::i;:::-;32522:74;;32605:93;32694:3;32605:93;:::i;:::-;32723:2;32718:3;32714:12;32707:19;;32366:366;;;:::o;32738:419::-;32904:4;32942:2;32931:9;32927:18;32919:26;;32991:9;32985:4;32981:20;32977:1;32966:9;32962:17;32955:47;33019:131;33145:4;33019:131;:::i;:::-;33011:139;;32738:419;;;:::o;33163:148::-;33265:11;33302:3;33287:18;;33163:148;;;;:::o;33317:377::-;33423:3;33451:39;33484:5;33451:39;:::i;:::-;33506:89;33588:6;33583:3;33506:89;:::i;:::-;33499:96;;33604:52;33649:6;33644:3;33637:4;33630:5;33626:16;33604:52;:::i;:::-;33681:6;33676:3;33672:16;33665:23;;33427:267;33317:377;;;;:::o;33700:155::-;33840:7;33836:1;33828:6;33824:14;33817:31;33700:155;:::o;33861:400::-;34021:3;34042:84;34124:1;34119:3;34042:84;:::i;:::-;34035:91;;34135:93;34224:3;34135:93;:::i;:::-;34253:1;34248:3;34244:11;34237:18;;33861:400;;;:::o;34267:701::-;34548:3;34570:95;34661:3;34652:6;34570:95;:::i;:::-;34563:102;;34682:95;34773:3;34764:6;34682:95;:::i;:::-;34675:102;;34794:148;34938:3;34794:148;:::i;:::-;34787:155;;34959:3;34952:10;;34267:701;;;;;:::o;34974:224::-;35114:34;35110:1;35102:6;35098:14;35091:58;35183:7;35178:2;35170:6;35166:15;35159:32;34974:224;:::o;35204:366::-;35346:3;35367:67;35431:2;35426:3;35367:67;:::i;:::-;35360:74;;35443:93;35532:3;35443:93;:::i;:::-;35561:2;35556:3;35552:12;35545:19;;35204:366;;;:::o;35576:419::-;35742:4;35780:2;35769:9;35765:18;35757:26;;35829:9;35823:4;35819:20;35815:1;35804:9;35800:17;35793:47;35857:131;35983:4;35857:131;:::i;:::-;35849:139;;35576:419;;;:::o;36001:225::-;36141:34;36137:1;36129:6;36125:14;36118:58;36210:8;36205:2;36197:6;36193:15;36186:33;36001:225;:::o;36232:366::-;36374:3;36395:67;36459:2;36454:3;36395:67;:::i;:::-;36388:74;;36471:93;36560:3;36471:93;:::i;:::-;36589:2;36584:3;36580:12;36573:19;;36232:366;;;:::o;36604:419::-;36770:4;36808:2;36797:9;36793:18;36785:26;;36857:9;36851:4;36847:20;36843:1;36832:9;36828:17;36821:47;36885:131;37011:4;36885:131;:::i;:::-;36877:139;;36604:419;;;:::o;37029:182::-;37169:34;37165:1;37157:6;37153:14;37146:58;37029:182;:::o;37217:366::-;37359:3;37380:67;37444:2;37439:3;37380:67;:::i;:::-;37373:74;;37456:93;37545:3;37456:93;:::i;:::-;37574:2;37569:3;37565:12;37558:19;;37217:366;;;:::o;37589:419::-;37755:4;37793:2;37782:9;37778:18;37770:26;;37842:9;37836:4;37832:20;37828:1;37817:9;37813:17;37806:47;37870:131;37996:4;37870:131;:::i;:::-;37862:139;;37589:419;;;:::o;38014:180::-;38062:77;38059:1;38052:88;38159:4;38156:1;38149:15;38183:4;38180:1;38173:15;38200:305;38240:3;38259:20;38277:1;38259:20;:::i;:::-;38254:25;;38293:20;38311:1;38293:20;:::i;:::-;38288:25;;38447:1;38379:66;38375:74;38372:1;38369:81;38366:107;;;38453:18;;:::i;:::-;38366:107;38497:1;38494;38490:9;38483:16;;38200:305;;;;:::o;38511:348::-;38551:7;38574:20;38592:1;38574:20;:::i;:::-;38569:25;;38608:20;38626:1;38608:20;:::i;:::-;38603:25;;38796:1;38728:66;38724:74;38721:1;38718:81;38713:1;38706:9;38699:17;38695:105;38692:131;;;38803:18;;:::i;:::-;38692:131;38851:1;38848;38844:9;38833:20;;38511:348;;;;:::o;38865:180::-;38913:77;38910:1;38903:88;39010:4;39007:1;39000:15;39034:4;39031:1;39024:15;39051:185;39091:1;39108:20;39126:1;39108:20;:::i;:::-;39103:25;;39142:20;39160:1;39142:20;:::i;:::-;39137:25;;39181:1;39171:35;;39186:18;;:::i;:::-;39171:35;39228:1;39225;39221:9;39216:14;;39051:185;;;;:::o;39242:180::-;39290:77;39287:1;39280:88;39387:4;39384:1;39377:15;39411:4;39408:1;39401:15;39428:233;39467:3;39490:24;39508:5;39490:24;:::i;:::-;39481:33;;39536:66;39529:5;39526:77;39523:103;;39606:18;;:::i;:::-;39523:103;39653:1;39646:5;39642:13;39635:20;;39428:233;;;:::o;39667:98::-;39718:6;39752:5;39746:12;39736:22;;39667:98;;;:::o;39771:168::-;39854:11;39888:6;39883:3;39876:19;39928:4;39923:3;39919:14;39904:29;;39771:168;;;;:::o;39945:360::-;40031:3;40059:38;40091:5;40059:38;:::i;:::-;40113:70;40176:6;40171:3;40113:70;:::i;:::-;40106:77;;40192:52;40237:6;40232:3;40225:4;40218:5;40214:16;40192:52;:::i;:::-;40269:29;40291:6;40269:29;:::i;:::-;40264:3;40260:39;40253:46;;40035:270;39945:360;;;;:::o;40311:640::-;40506:4;40544:3;40533:9;40529:19;40521:27;;40558:71;40626:1;40615:9;40611:17;40602:6;40558:71;:::i;:::-;40639:72;40707:2;40696:9;40692:18;40683:6;40639:72;:::i;:::-;40721;40789:2;40778:9;40774:18;40765:6;40721:72;:::i;:::-;40840:9;40834:4;40830:20;40825:2;40814:9;40810:18;40803:48;40868:76;40939:4;40930:6;40868:76;:::i;:::-;40860:84;;40311:640;;;;;;;:::o;40957:141::-;41013:5;41044:6;41038:13;41029:22;;41060:32;41086:5;41060:32;:::i;:::-;40957:141;;;;:::o;41104:349::-;41173:6;41222:2;41210:9;41201:7;41197:23;41193:32;41190:119;;;41228:79;;:::i;:::-;41190:119;41348:1;41373:63;41428:7;41419:6;41408:9;41404:22;41373:63;:::i;:::-;41363:73;;41319:127;41104:349;;;;:::o

Swarm Source

ipfs://d57fb46ec44502fb501c51ed92be64eac224cb6b1aec93bd0f3220010ea2d53f
Loading...
Loading
Loading...
Loading
[ 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.